diff --git a/Content.Client/Chat/UI/EmotesMenu.xaml b/Content.Client/Chat/UI/EmotesMenu.xaml index 819a6543c4d..cc4d5bb77e9 100644 --- a/Content.Client/Chat/UI/EmotesMenu.xaml +++ b/Content.Client/Chat/UI/EmotesMenu.xaml @@ -12,7 +12,7 @@ - + diff --git a/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs b/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs index 284c6681905..8774c1dfb5c 100644 --- a/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs +++ b/Content.Client/Shuttles/UI/BaseShuttleControl.xaml.cs @@ -100,7 +100,7 @@ protected void DrawCircles(DrawingHandleScreen handle) var textDimensions = handle.GetDimensions(Font, text, UIScale); handle.DrawCircle(origin, scaledRadius, color, false); - handle.DrawString(Font, ScalePosition(new Vector2(0f, -radius)) - new Vector2(0f, textDimensions.Y), text, color); + handle.DrawString(Font, ScalePosition(new Vector2(0f, -radius)) - new Vector2(0f, textDimensions.Y), text, UIScale, color); } const int gridLinesRadial = 8; diff --git a/Content.Client/Station/StationSpawningSystem.cs b/Content.Client/Station/StationSpawningSystem.cs index 65da518d229..71dce5a78f3 100644 --- a/Content.Client/Station/StationSpawningSystem.cs +++ b/Content.Client/Station/StationSpawningSystem.cs @@ -2,7 +2,4 @@ namespace Content.Client.Station; -public sealed class StationSpawningSystem : SharedStationSpawningSystem -{ - -} +public sealed class StationSpawningSystem : SharedStationSpawningSystem; diff --git a/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs b/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs index af93033a9d3..6327757dec2 100644 --- a/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs +++ b/Content.Client/UserInterface/Systems/Alerts/Controls/AlertControl.cs @@ -3,7 +3,6 @@ using Content.Client.Cooldown; using Content.Shared.Alert; using Robust.Client.GameObjects; -using Robust.Client.Graphics; using Robust.Client.UserInterface; using Robust.Client.UserInterface.Controls; using Robust.Shared.Timing; @@ -117,7 +116,9 @@ protected override void FrameUpdate(FrameEventArgs args) protected override void Dispose(bool disposing) { base.Dispose(disposing); - _entityManager.QueueDeleteEntity(_spriteViewEntity); + + if (!_entityManager.Deleted(_spriteViewEntity)) + _entityManager.QueueDeleteEntity(_spriteViewEntity); } } diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs index 414cf4bb56f..37dca721373 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifier.cs @@ -3,6 +3,7 @@ using Robust.Shared.GameObjects; using Robust.Shared.Map; using Robust.Shared.Prototypes; +using static Robust.UnitTesting.RobustIntegrationTest; namespace Content.IntegrationTests.Tests.Interaction; @@ -54,7 +55,7 @@ public static implicit operator EntitySpecifier((string, int) tuple) /// /// Convert applicable entity prototypes into stack prototypes. /// - public void ConvertToStack(IPrototypeManager protoMan, IComponentFactory factory) + public async Task ConvertToStack(IPrototypeManager protoMan, IComponentFactory factory, ServerIntegrationInstance server) { if (Converted) return; @@ -73,11 +74,14 @@ public void ConvertToStack(IPrototypeManager protoMan, IComponentFactory factory return; } - if (entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), - out var stackComp)) + StackComponent? stack = null; + await server.WaitPost(() => { - Prototype = stackComp.StackTypeId; - } + entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), out stack); + }); + + if (stack != null) + Prototype = stack.StackTypeId; } } @@ -100,11 +104,14 @@ await Server.WaitPost(() => return default; } - if (entProto.TryGetComponent(Factory.GetComponentName(typeof(StackComponent)), - out var stackComp)) + StackComponent? stack = null; + await Server.WaitPost(() => { - return await SpawnEntity((stackComp.StackTypeId, spec.Quantity), coords); - } + entProto.TryGetComponent(Factory.GetComponentName(typeof(StackComponent)), out stack); + }); + + if (stack != null) + 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)); diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs index 520d2699c14..7f7de3318b4 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.EntitySpecifierCollection.cs @@ -5,6 +5,7 @@ using Robust.Shared.GameObjects; using Robust.Shared.Prototypes; using Robust.Shared.Utility; +using static Robust.UnitTesting.RobustIntegrationTest; namespace Content.IntegrationTests.Tests.Interaction; @@ -111,7 +112,7 @@ public EntitySpecifierCollection Clone() /// /// Convert applicable entity prototypes into stack prototypes. /// - public void ConvertToStacks(IPrototypeManager protoMan, IComponentFactory factory) + public async Task ConvertToStacks(IPrototypeManager protoMan, IComponentFactory factory, ServerIntegrationInstance server) { if (Converted) return; @@ -130,14 +131,17 @@ public void ConvertToStacks(IPrototypeManager protoMan, IComponentFactory factor continue; } - if (!entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), - out var stackComp)) + StackComponent? stack = null; + await server.WaitPost(() => { + entProto.TryGetComponent(factory.GetComponentName(typeof(StackComponent)), out stack); + }); + + if (stack == null) continue; - } toRemove.Add(id); - toAdd.Add((stackComp.StackTypeId, quantity)); + toAdd.Add((stack.StackTypeId, quantity)); } foreach (var id in toRemove) diff --git a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs index 95cf8a06dfa..19ca83a9715 100644 --- a/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs +++ b/Content.IntegrationTests/Tests/Interaction/InteractionTest.Helpers.cs @@ -5,12 +5,9 @@ using System.Numerics; using System.Reflection; using Content.Client.Construction; -using Content.Server.Atmos; -using Content.Server.Atmos.Components; using Content.Server.Atmos.EntitySystems; using Content.Server.Construction.Components; using Content.Server.Gravity; -using Content.Server.Item; using Content.Server.Power.Components; using Content.Shared.Atmos; using Content.Shared.Construction.Prototypes; @@ -634,7 +631,7 @@ protected async Task AssertEntityLookup( var entities = await DoEntityLookup(flags); var found = ToEntityCollection(entities); expected.Remove(found); - expected.ConvertToStacks(ProtoMan, Factory); + await expected.ConvertToStacks(ProtoMan, Factory, Server); if (expected.Entities.Count == 0) return; @@ -670,7 +667,7 @@ protected async Task FindEntity( LookupFlags flags = LookupFlags.Uncontained | LookupFlags.Contained, bool shouldSucceed = true) { - spec.ConvertToStack(ProtoMan, Factory); + await spec.ConvertToStack(ProtoMan, Factory, Server); var entities = await DoEntityLookup(flags); foreach (var uid in entities) diff --git a/Content.IntegrationTests/Tests/StorageTest.cs b/Content.IntegrationTests/Tests/StorageTest.cs index 659b310661b..2d28534347d 100644 --- a/Content.IntegrationTests/Tests/StorageTest.cs +++ b/Content.IntegrationTests/Tests/StorageTest.cs @@ -92,23 +92,32 @@ public async Task TestSufficientSpaceForFill() var allSizes = protoMan.EnumeratePrototypes().ToList(); allSizes.Sort(); - Assert.Multiple(() => + await Assert.MultipleAsync(async () => { foreach (var proto in pair.GetPrototypesWithComponent()) { if (proto.HasComponent(compFact)) continue; - if (!proto.TryGetComponent("Storage", out var storage)) + StorageComponent? storage = null; + ItemComponent? item = null; + StorageFillComponent fill = default!; + var size = 0; + await server.WaitAssertion(() => { - Assert.Fail($"Entity {proto.ID} has storage-fill without a storage component!"); - continue; - } + if (!proto.TryGetComponent("Storage", out storage)) + { + Assert.Fail($"Entity {proto.ID} has storage-fill without a storage component!"); + return; + } - proto.TryGetComponent("Item", out var item); + proto.TryGetComponent("Item", out item); + fill = (StorageFillComponent) proto.Components[id].Component; + size = GetFillSize(fill, false, protoMan, itemSys); + }); - var fill = (StorageFillComponent) proto.Components[id].Component; - var size = GetFillSize(fill, false, protoMan, itemSys); + if (storage == null) + continue; var maxSize = storage.MaxItemSize; if (storage.MaxItemSize == null) @@ -138,7 +147,13 @@ public async Task TestSufficientSpaceForFill() if (!protoMan.TryIndex(entry.PrototypeId, out var fillItem)) continue; - if (!fillItem.TryGetComponent("Item", out var entryItem)) + ItemComponent? entryItem = null; + await server.WaitPost(() => + { + fillItem.TryGetComponent("Item", out entryItem); + }); + + if (entryItem == null) continue; Assert.That(protoMan.Index(entryItem.Size).Weight, @@ -164,25 +179,25 @@ public async Task TestSufficientSpaceForEntityStorageFill() var itemSys = entMan.System(); - Assert.Multiple(() => + foreach (var proto in pair.GetPrototypesWithComponent()) { - foreach (var proto in pair.GetPrototypesWithComponent()) - { - if (proto.HasComponent(compFact)) - continue; + if (proto.HasComponent(compFact)) + continue; - if (!proto.TryGetComponent("EntityStorage", out var entStorage)) - { + await server.WaitAssertion(() => + { + if (!proto.TryGetComponent("EntityStorage", out EntityStorageComponent? entStorage)) Assert.Fail($"Entity {proto.ID} has storage-fill without a storage component!"); - continue; - } + + if (entStorage == null) + return; var fill = (StorageFillComponent) proto.Components[id].Component; var size = GetFillSize(fill, true, protoMan, itemSys); Assert.That(size, Is.LessThanOrEqualTo(entStorage.Capacity), $"{proto.ID} storage fill is too large."); - } - }); + }); + } await pair.CleanReturnAsync(); } diff --git a/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs b/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs index 6b47ec4d8eb..19b25816fa3 100644 --- a/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs +++ b/Content.IntegrationTests/Tests/Utility/EntityWhitelistTest.cs @@ -64,7 +64,8 @@ public async Task Test() var testMap = await pair.CreateTestMap(); var mapCoordinates = testMap.MapCoords; - var sEntities = server.ResolveDependency(); + var sEntities = server.EntMan; + var sys = server.System(); await server.WaitAssertion(() => { @@ -80,22 +81,14 @@ await server.WaitAssertion(() => Components = new[] { $"{ValidComponent}" }, Tags = new() { "WhitelistTestValidTag" } }; - whitelistInst.UpdateRegistrations(); - Assert.That(whitelistInst, Is.Not.Null); Assert.Multiple(() => { - Assert.That(whitelistInst.Components, Is.Not.Null); - Assert.That(whitelistInst.Tags, Is.Not.Null); - }); - - Assert.Multiple(() => - { - Assert.That(whitelistInst.IsValid(validComponent), Is.True); - Assert.That(whitelistInst.IsValid(WhitelistTestValidTag), Is.True); + Assert.That(sys.IsValid(whitelistInst, validComponent), Is.True); + Assert.That(sys.IsValid(whitelistInst, WhitelistTestValidTag), Is.True); - Assert.That(whitelistInst.IsValid(invalidComponent), Is.False); - Assert.That(whitelistInst.IsValid(WhitelistTestInvalidTag), Is.False); + Assert.That(sys.IsValid(whitelistInst, invalidComponent), Is.False); + Assert.That(sys.IsValid(whitelistInst, WhitelistTestInvalidTag), Is.False); }); // Test from serialized @@ -111,11 +104,11 @@ await server.WaitAssertion(() => Assert.Multiple(() => { - Assert.That(whitelistSer.IsValid(validComponent), Is.True); - Assert.That(whitelistSer.IsValid(WhitelistTestValidTag), Is.True); + Assert.That(sys.IsValid(whitelistSer, validComponent), Is.True); + Assert.That(sys.IsValid(whitelistSer, WhitelistTestValidTag), Is.True); - Assert.That(whitelistSer.IsValid(invalidComponent), Is.False); - Assert.That(whitelistSer.IsValid(WhitelistTestInvalidTag), Is.False); + Assert.That(sys.IsValid(whitelistSer, invalidComponent), Is.False); + Assert.That(sys.IsValid(whitelistSer, WhitelistTestInvalidTag), Is.False); }); }); await pair.CleanReturnAsync(); diff --git a/Content.Server/Access/Systems/PresetIdCardSystem.cs b/Content.Server/Access/Systems/PresetIdCardSystem.cs index 696b7a1dcfd..3e775b9c35d 100644 --- a/Content.Server/Access/Systems/PresetIdCardSystem.cs +++ b/Content.Server/Access/Systems/PresetIdCardSystem.cs @@ -33,8 +33,8 @@ private void PlayerJobsAssigned(RulePlayerJobsAssignedEvent ev) var station = _stationSystem.GetOwningStation(uid); // If we're not on an extended access station, the ID is already configured correctly from MapInit. - if (station == null || !Comp(station.Value).ExtendedAccess) - return; + if (station == null || !TryComp(station.Value, out var jobsComp) || !jobsComp.ExtendedAccess) + continue; SetupIdAccess(uid, card, true); SetupIdName(uid, card); diff --git a/Content.Server/AlertLevel/AlertLevelSystem.cs b/Content.Server/AlertLevel/AlertLevelSystem.cs index 848170ba9dc..0b49d7e4bfa 100644 --- a/Content.Server/AlertLevel/AlertLevelSystem.cs +++ b/Content.Server/AlertLevel/AlertLevelSystem.cs @@ -96,6 +96,16 @@ private void OnPrototypeReload(PrototypesReloadedEventArgs args) RaiseLocalEvent(new AlertLevelPrototypeReloadedEvent()); } + public string GetLevel(EntityUid station, AlertLevelComponent? alert = null) + { + if (!Resolve(station, ref alert)) + { + return string.Empty; + } + + return alert.CurrentLevel; + } + public float GetAlertLevelDelay(EntityUid station, AlertLevelComponent? alert = null) { if (!Resolve(station, ref alert)) diff --git a/Content.Server/Antag/AntagSelectionSystem.API.cs b/Content.Server/Antag/AntagSelectionSystem.API.cs index f8ec5bcafcd..6acd17a35b2 100644 --- a/Content.Server/Antag/AntagSelectionSystem.API.cs +++ b/Content.Server/Antag/AntagSelectionSystem.API.cs @@ -7,6 +7,7 @@ using Content.Shared.Mind; using JetBrains.Annotations; using Robust.Shared.Audio; +using Robust.Shared.Enums; using Robust.Shared.Player; namespace Content.Server.Antag; @@ -63,15 +64,17 @@ public int GetTargetAntagCount(Entity ent, AntagSelecti /// public int GetTargetAntagCount(Entity ent, AntagSelectionPlayerPool? pool, AntagSelectionDefinition def) { - var poolSize = pool?.Count ?? _playerManager.Sessions.Length; + var poolSize = pool?.Count ?? _playerManager.Sessions + .Count(s => s.State.Status is not SessionStatus.Disconnected and not SessionStatus.Zombie); + // factor in other definitions' affect on the count. var countOffset = 0; foreach (var otherDef in ent.Comp.Definitions) { - countOffset += Math.Clamp(poolSize / otherDef.PlayerRatio, otherDef.Min, otherDef.Max) * otherDef.PlayerRatio; + countOffset += Math.Clamp((poolSize - countOffset) / otherDef.PlayerRatio, otherDef.Min, otherDef.Max) * otherDef.PlayerRatio; } // make sure we don't double-count the current selection - countOffset -= Math.Clamp((poolSize + countOffset) / def.PlayerRatio, def.Min, def.Max) * def.PlayerRatio; + countOffset -= Math.Clamp(poolSize / def.PlayerRatio, def.Min, def.Max) * def.PlayerRatio; return Math.Clamp((poolSize - countOffset) / def.PlayerRatio, def.Min, def.Max); } diff --git a/Content.Server/Antag/AntagSelectionSystem.cs b/Content.Server/Antag/AntagSelectionSystem.cs index 6bfb7394f5b..57df82d6fd9 100644 --- a/Content.Server/Antag/AntagSelectionSystem.cs +++ b/Content.Server/Antag/AntagSelectionSystem.cs @@ -280,11 +280,13 @@ public void MakeAntag(Entity ent, ICommonSession? sessi _transform.SetMapCoordinates((player, playerXform), pos); } + // If we want to just do a ghost role spawner, set up data here and then return early. + // This could probably be an event in the future if we want to be more refined about it. if (isSpawner) { if (!TryComp(player, out var spawnerComp)) { - Log.Error("Antag spawner with GhostRoleAntagSpawnerComponent."); + Log.Error($"Antag spawner {player} does not have a GhostRoleAntagSpawnerComponent."); return; } @@ -293,6 +295,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi return; } + // The following is where we apply components, equipment, and other changes to our antagonist entity. EntityManager.AddComponents(player, def.Components); _stationSpawning.EquipStartingGear(player, def.StartingGear); @@ -308,11 +311,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi _mind.TransferTo(curMind.Value, antagEnt, ghostCheckOverride: true); _role.MindAddRoles(curMind.Value, def.MindComponents); ent.Comp.SelectedMinds.Add((curMind.Value, Name(player))); - } - - if (def.Briefing is { } briefing) - { - SendBriefing(session, briefing); + SendBriefing(session, def.Briefing); } var afterEv = new AfterAntagEntitySelectedEvent(session, player, ent, def); @@ -325,7 +324,7 @@ public void MakeAntag(Entity ent, ICommonSession? sessi public AntagSelectionPlayerPool GetPlayerPool(Entity ent, List sessions, AntagSelectionDefinition def) { var preferredList = new List(); - var secondBestList = new List(); + var fallbackList = new List(); var unwantedList = new List(); var invalidList = new List(); foreach (var session in sessions) @@ -344,7 +343,7 @@ public AntagSelectionPlayerPool GetPlayerPool(Entity en } else if (def.FallbackRoles.Count != 0 && pref.AntagPreferences.Any(p => def.FallbackRoles.Contains(p))) { - secondBestList.Add(session); + fallbackList.Add(session); } else { @@ -352,7 +351,7 @@ public AntagSelectionPlayerPool GetPlayerPool(Entity en } } - return new AntagSelectionPlayerPool(new() { preferredList, secondBestList, unwantedList, invalidList }); + return new AntagSelectionPlayerPool(new() { preferredList, fallbackList, unwantedList, invalidList }); } /// diff --git a/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs b/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs index d89d61606db..8e96595b4fb 100644 --- a/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs +++ b/Content.Server/Antag/Mimic/MobReplacementRuleComponent.cs @@ -17,5 +17,5 @@ public sealed partial class MobReplacementRuleComponent : Component /// Chance per-entity. /// [DataField] - public float Chance = 0.001f; + public float Chance = 0.004f; } diff --git a/Content.Server/Atmos/Components/BreathToolComponent.cs b/Content.Server/Atmos/Components/BreathToolComponent.cs index f3688ef7ffc..ae17a5d872f 100644 --- a/Content.Server/Atmos/Components/BreathToolComponent.cs +++ b/Content.Server/Atmos/Components/BreathToolComponent.cs @@ -12,9 +12,10 @@ public sealed partial class BreathToolComponent : Component /// /// Tool is functional only in allowed slots /// - [DataField("allowedSlots")] + [DataField] public SlotFlags AllowedSlots = SlotFlags.MASK | SlotFlags.HEAD; public bool IsFunctional; + public EntityUid? ConnectedInternalsEntity; } } diff --git a/Content.Server/Body/Systems/InternalsSystem.cs b/Content.Server/Body/Systems/InternalsSystem.cs index 972967fb15a..8afd1c767f6 100644 --- a/Content.Server/Body/Systems/InternalsSystem.cs +++ b/Content.Server/Body/Systems/InternalsSystem.cs @@ -8,6 +8,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Internals; using Content.Shared.Inventory; +using Content.Shared.Roles; using Content.Shared.Verbs; using Robust.Shared.Containers; using Robust.Shared.Utility; @@ -23,17 +24,29 @@ public sealed class InternalsSystem : EntitySystem [Dependency] private readonly InventorySystem _inventory = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; - public const SlotFlags InventorySlots = SlotFlags.POCKET | SlotFlags.BELT; + private EntityQuery _internalsQuery; public override void Initialize() { base.Initialize(); + _internalsQuery = GetEntityQuery(); + SubscribeLocalEvent(OnInhaleLocation); SubscribeLocalEvent(OnInternalsStartup); SubscribeLocalEvent(OnInternalsShutdown); SubscribeLocalEvent>(OnGetInteractionVerbs); SubscribeLocalEvent(OnDoAfter); + + SubscribeLocalEvent(OnStartingGear); + } + + private void OnStartingGear(ref StartingGearEquippedEvent ev) + { + if (!_internalsQuery.TryComp(ev.Entity, out var internals) || internals.BreathToolEntity == null) + return; + + ToggleInternals(ev.Entity, ev.Entity, force: false, internals); } private void OnGetInteractionVerbs( @@ -217,7 +230,7 @@ private short GetSeverity(InternalsComponent component) if (component.BreathToolEntity is null || !AreInternalsWorking(component)) return 2; - // If pressure in the tank is below low pressure threshhold, flash warning on internals UI + // If pressure in the tank is below low pressure threshold, flash warning on internals UI if (TryComp(component.GasTankEntity, out var gasTank) && gasTank.IsLowPressure) { diff --git a/Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs b/Content.Server/Chemistry/ReagentEffects/ChemCleanBloodstream.cs similarity index 100% rename from Content.Server/Chemistry/ReagentEffects/ChemCleanBoodstream.cs rename to Content.Server/Chemistry/ReagentEffects/ChemCleanBloodstream.cs diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs index 27a9edbad71..cbd981e99e6 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.Utility.cs @@ -1,7 +1,10 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Server.GameTicking.Components; using Content.Server.GameTicking.Rules.Components; using Content.Server.Station.Components; +using Content.Shared.Random.Helpers; +using Robust.Server.GameObjects; using Robust.Shared.Collections; using Robust.Shared.Map; using Robust.Shared.Map.Components; @@ -82,17 +85,23 @@ protected bool TryFindRandomTileOnStation(Entity station, targetCoords = EntityCoordinates.Invalid; targetGrid = EntityUid.Invalid; - var possibleTargets = station.Comp.Grids; - if (possibleTargets.Count == 0) + // Weight grid choice by tilecount + var weights = new Dictionary, float>(); + foreach (var possibleTarget in station.Comp.Grids) + { + if (!TryComp(possibleTarget, out var comp)) + continue; + + weights.Add((possibleTarget, comp), _map.GetAllTiles(possibleTarget, comp).Count()); + } + + if (weights.Count == 0) { targetGrid = EntityUid.Invalid; return false; } - targetGrid = RobustRandom.Pick(possibleTargets); - - if (!TryComp(targetGrid, out var gridComp)) - return false; + (targetGrid, var gridComp) = RobustRandom.Pick(weights); var found = false; var aabb = gridComp.LocalAABB; diff --git a/Content.Server/GameTicking/Rules/GameRuleSystem.cs b/Content.Server/GameTicking/Rules/GameRuleSystem.cs index c167ae7b6c7..05374aa1396 100644 --- a/Content.Server/GameTicking/Rules/GameRuleSystem.cs +++ b/Content.Server/GameTicking/Rules/GameRuleSystem.cs @@ -26,7 +26,7 @@ public override void Initialize() SubscribeLocalEvent(OnGameRuleAdded); SubscribeLocalEvent(OnGameRuleStarted); SubscribeLocalEvent(OnGameRuleEnded); - SubscribeLocalEvent(OnRoundEndTextAppend); + SubscribeLocalEvent(OnRoundEndTextAppend); } private void OnStartAttempt(RoundStartAttemptEvent args) @@ -70,11 +70,16 @@ private void OnGameRuleEnded(EntityUid uid, T component, ref GameRuleEndedEvent Ended(uid, component, ruleData, args); } - private void OnRoundEndTextAppend(Entity ent, ref RoundEndTextAppendEvent args) + private void OnRoundEndTextAppend(RoundEndTextAppendEvent ev) { - if (!TryComp(ent, out var ruleData)) - return; - AppendRoundEndText(ent, ent, ruleData, ref args); + var query = AllEntityQuery(); + while (query.MoveNext(out var uid, out var comp)) + { + if (!TryComp(uid, out var ruleData)) + continue; + + AppendRoundEndText(uid, comp, ruleData, ref ev); + } } /// diff --git a/Content.Server/Geras/GerasSystem.cs b/Content.Server/Geras/GerasSystem.cs index e25ea8f0283..e7999d64d87 100644 --- a/Content.Server/Geras/GerasSystem.cs +++ b/Content.Server/Geras/GerasSystem.cs @@ -1,7 +1,7 @@ -using Content.Server.Actions; using Content.Server.Polymorph.Systems; +using Content.Shared.Zombies; +using Content.Server.Actions; using Content.Server.Popups; -using Content.Shared.Actions; using Content.Shared.Geras; using Robust.Shared.Player; @@ -10,8 +10,9 @@ namespace Content.Server.Geras; /// public sealed class GerasSystem : SharedGerasSystem { - [Dependency] private readonly ActionsSystem _actionsSystem = default!; [Dependency] private readonly PolymorphSystem _polymorphSystem = default!; + [Dependency] private readonly MetaDataSystem _metaDataSystem = default!; + [Dependency] private readonly ActionsSystem _actionsSystem = default!; [Dependency] private readonly PopupSystem _popupSystem = default!; /// @@ -19,6 +20,12 @@ public override void Initialize() { SubscribeLocalEvent(OnMorphIntoGeras); SubscribeLocalEvent(OnMapInit); + SubscribeLocalEvent(OnZombification); + } + + private void OnZombification(EntityUid uid, GerasComponent component, EntityZombifiedEvent args) + { + _actionsSystem.RemoveAction(uid, component.GerasActionEntity); } private void OnMapInit(EntityUid uid, GerasComponent component, MapInitEvent args) @@ -29,6 +36,9 @@ private void OnMapInit(EntityUid uid, GerasComponent component, MapInitEvent arg private void OnMorphIntoGeras(EntityUid uid, GerasComponent component, MorphIntoGeras args) { + if (HasComp(uid)) + return; // i hate zomber. + var ent = _polymorphSystem.PolymorphEntity(uid, component.GerasPolymorphId); if (!ent.HasValue) @@ -36,6 +46,7 @@ private void OnMorphIntoGeras(EntityUid uid, GerasComponent component, MorphInto _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-others", ("entity", ent.Value)), ent.Value, Filter.PvsExcept(ent.Value), true); _popupSystem.PopupEntity(Loc.GetString("geras-popup-morph-message-user"), ent.Value, ent.Value); + args.Handled = true; } } diff --git a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs index 6a58c209cfa..ff3c8176fd0 100644 --- a/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs +++ b/Content.Server/Salvage/Expeditions/SalvageExpeditionComponent.cs @@ -40,14 +40,21 @@ public sealed partial class SalvageExpeditionComponent : SharedSalvageExpedition /// /// Countdown audio stream. /// + [DataField, AutoNetworkedField] public EntityUid? Stream = null; /// /// Sound that plays when the mission end is imminent. /// - [ViewVariables(VVAccess.ReadWrite), DataField("sound")] - public SoundSpecifier Sound = new SoundPathSpecifier("/Audio/Misc/tension_session.ogg") + [ViewVariables(VVAccess.ReadWrite), DataField] + public SoundSpecifier Sound = new SoundCollectionSpecifier("ExpeditionEnd") { Params = AudioParams.Default.WithVolume(-5), }; + + /// + /// Song selected on MapInit so we can predict the audio countdown properly. + /// + [DataField] + public SoundPathSpecifier SelectedSong; } diff --git a/Content.Server/Salvage/SalvageSystem.Expeditions.cs b/Content.Server/Salvage/SalvageSystem.Expeditions.cs index 4d5d569dabd..923880169d5 100644 --- a/Content.Server/Salvage/SalvageSystem.Expeditions.cs +++ b/Content.Server/Salvage/SalvageSystem.Expeditions.cs @@ -4,7 +4,9 @@ using Content.Server.Salvage.Expeditions.Structure; using Content.Shared.CCVar; using Content.Shared.Examine; +using Content.Shared.Random.Helpers; using Content.Shared.Salvage.Expeditions; +using Robust.Shared.Audio; using Robust.Shared.CPUJob.JobQueues; using Robust.Shared.CPUJob.JobQueues.Queues; using Robust.Shared.GameStates; @@ -32,6 +34,7 @@ private void InitializeExpeditions() SubscribeLocalEvent(OnSalvageConsoleParent); SubscribeLocalEvent(OnSalvageClaimMessage); + SubscribeLocalEvent(OnExpeditionMapInit); SubscribeLocalEvent(OnExpeditionShutdown); SubscribeLocalEvent(OnExpeditionGetState); @@ -64,6 +67,12 @@ private void SetCooldownChange(float obj) _cooldown = obj; } + private void OnExpeditionMapInit(EntityUid uid, SalvageExpeditionComponent component, MapInitEvent args) + { + var selectedFile = _audio.GetSound(component.Sound); + component.SelectedSong = new SoundPathSpecifier(selectedFile, component.Sound.Params); + } + private void OnExpeditionShutdown(EntityUid uid, SalvageExpeditionComponent component, ComponentShutdown args) { component.Stream = _audio.Stop(component.Stream); diff --git a/Content.Server/Salvage/SalvageSystem.Runner.cs b/Content.Server/Salvage/SalvageSystem.Runner.cs index 8a1498cbe96..e6e29eb5775 100644 --- a/Content.Server/Salvage/SalvageSystem.Runner.cs +++ b/Content.Server/Salvage/SalvageSystem.Runner.cs @@ -144,6 +144,7 @@ private void UpdateRunner() while (query.MoveNext(out var uid, out var comp)) { var remaining = comp.EndTime - _timing.CurTime; + var audioLength = _audio.GetAudioLength(comp.SelectedSong.Path.ToString()); if (comp.Stage < ExpeditionStage.FinalCountdown && remaining < TimeSpan.FromSeconds(45)) { @@ -151,13 +152,14 @@ private void UpdateRunner() Dirty(uid, comp); Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-seconds", ("duration", TimeSpan.FromSeconds(45).Seconds))); } - else if (comp.Stage < ExpeditionStage.MusicCountdown && remaining < TimeSpan.FromMinutes(2)) + else if (comp.Stream == null && remaining < audioLength) { - // TODO: Some way to play audio attached to a map for players. - comp.Stream = _audio.PlayGlobal(comp.Sound, Filter.BroadcastMap(Comp(uid).MapId), true).Value.Entity; + var audio = _audio.PlayPvs(comp.Sound, uid).Value; + comp.Stream = audio.Entity; + _audio.SetMapAudio(audio); comp.Stage = ExpeditionStage.MusicCountdown; Dirty(uid, comp); - Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", TimeSpan.FromMinutes(2).Minutes))); + Announce(uid, Loc.GetString("salvage-expedition-announcement-countdown-minutes", ("duration", audioLength.Minutes))); } else if (comp.Stage < ExpeditionStage.Countdown && remaining < TimeSpan.FromMinutes(4)) { diff --git a/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs b/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs new file mode 100644 index 00000000000..43612650802 --- /dev/null +++ b/Content.Server/Shuttles/Components/DockingSignalControlComponent.cs @@ -0,0 +1,14 @@ +using Content.Shared.DeviceLinking; +using Robust.Shared.Prototypes; + +namespace Content.Server.Shuttles.Components; + +[RegisterComponent] +public sealed partial class DockingSignalControlComponent : Component +{ + /// + /// Output port that is high while docked. + /// + [DataField] + public ProtoId DockStatusSignalPort = "DockStatus"; +} diff --git a/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs b/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs new file mode 100644 index 00000000000..34cade7f1c1 --- /dev/null +++ b/Content.Server/Shuttles/Systems/DockingSignalControlSystem.cs @@ -0,0 +1,28 @@ +using Content.Server.DeviceLinking.Systems; +using Content.Server.Shuttles.Components; +using Content.Server.Shuttles.Events; + +namespace Content.Server.Shuttles.Systems; + +public sealed class DockingSignalControlSystem : EntitySystem +{ + [Dependency] private readonly DeviceLinkSystem _deviceLinkSystem = default!; + + public override void Initialize() + { + base.Initialize(); + + SubscribeLocalEvent(OnDocked); + SubscribeLocalEvent(OnUndocked); + } + + private void OnDocked(Entity ent, ref DockEvent args) + { + _deviceLinkSystem.SendSignal(ent, ent.Comp.DockStatusSignalPort, signal: true); + } + + private void OnUndocked(Entity ent, ref UndockEvent args) + { + _deviceLinkSystem.SendSignal(ent, ent.Comp.DockStatusSignalPort, signal: false); + } +} diff --git a/Content.Server/Speech/Components/ReplacementAccentComponent.cs b/Content.Server/Speech/Components/ReplacementAccentComponent.cs index ac4e9fbafef..e7f57b80d04 100644 --- a/Content.Server/Speech/Components/ReplacementAccentComponent.cs +++ b/Content.Server/Speech/Components/ReplacementAccentComponent.cs @@ -32,5 +32,11 @@ public sealed partial class ReplacementAccentComponent : Component { [DataField("accent", customTypeSerializer: typeof(PrototypeIdSerializer), required: true)] public string Accent = default!; + + /// + /// Allows you to substitute words, not always, but with some chance + /// + [DataField] + public float ReplacementChance = 1f; } } diff --git a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs index 56372887325..f6d259c1153 100644 --- a/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/FrenchAccentSystem.cs @@ -10,6 +10,10 @@ public sealed class FrenchAccentSystem : EntitySystem { [Dependency] private readonly ReplacementAccentSystem _replacement = default!; + private static readonly Regex RegexTh = new(@"th", RegexOptions.IgnoreCase); + private static readonly Regex RegexStartH = new(@"(? ссс diff --git a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs index f026664b383..0e9b0a34ef2 100644 --- a/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MobsterAccentSystem.cs @@ -1,4 +1,3 @@ -using System.Globalization; using System.Linq; using System.Text.RegularExpressions; using Content.Server.Speech.Components; @@ -8,59 +7,17 @@ namespace Content.Server.Speech.EntitySystems; public sealed class MobsterAccentSystem : EntitySystem { + private static readonly Regex RegexIng = new(@"(?<=\w\w)(in)g(?!\w)", RegexOptions.IgnoreCase); + private static readonly Regex RegexLowerOr = new(@"(?<=\w)o[Rr](?=\w)"); + private static readonly Regex RegexUpperOr = new(@"(?<=\w)O[Rr](?=\w)"); + private static readonly Regex RegexLowerAr = new(@"(?<=\w)a[Rr](?=\w)"); + private static readonly Regex RegexUpperAr = new(@"(?<=\w)A[Rr](?=\w)"); + private static readonly Regex RegexFirstWord = new(@"^(\S+)"); + private static readonly Regex RegexLastWord = new(@"(\S+)$"); + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ReplacementAccentSystem _replacement = default!; - private static readonly Dictionary DirectReplacements = new() - { - // Corvax-Localization-Start - { "утащил", "сдёрнул" }, - { "принеси", "надыбай" }, - { "принесите", "надыбайте" }, - { "сб", "мусора" }, - { "враг", "шелупонь" }, - { "враги", "шелупонь" }, - { "тревога", "шухер" }, - { "заметили", "спалили" }, - { "оружие", "валына" }, - { "убийство", "мокруха" }, - { "убить", "замочить" }, - { "убей", "вальни" }, - { "убейте", "завалите" }, - { "еда", "жратва"}, - { "еды", "жратвы"}, - { "убили", "замаслили" }, - { "ранен", "словил маслину"}, - { "мертв", "спит с рыбами"}, - { "мёртв", "спит с рыбами"}, - { "мертва", "спит с рыбами"}, - { "хэй", "йоу" }, - { "хей", "йоу" }, - { "здесь", "здеся" }, - { "тут", "тута" }, - { "привет", "аве" }, - { "плохо", "ацтой" }, - { "хорошо", "агонь" }, - // Corvax-Localization-End - { "let me", "lemme" }, - { "should", "oughta" }, - { "the", "da" }, - { "them", "dem" }, - { "attack", "whack" }, - { "kill", "whack" }, - { "murder", "whack" }, - { "dead", "sleepin' with da fishies"}, - { "hey", "ey'o" }, - { "hi", "ey'o"}, - { "hello", "ey'o"}, - { "rules", "roolz" }, - { "you", "yous" }, - { "have to", "gotta" }, - { "going to", "boutta" }, - { "about to", "boutta" }, - { "here", "'ere" } - }; - public override void Initialize() { base.Initialize(); @@ -80,20 +37,20 @@ public string Accentuate(string message, MobsterAccentComponent component) // thinking -> thinkin' // king -> king //Uses captures groups to make sure the captialization of IN is kept - msg = Regex.Replace(msg, @"(?<=\w\w)(in)g(?!\w)", "$1'", RegexOptions.IgnoreCase); + msg = RegexIng.Replace(msg, "$1'"); // or -> uh and ar -> ah in the middle of words (fuhget, tahget) - msg = Regex.Replace(msg, @"(?<=\w)o[Rr](?=\w)", "uh"); - msg = Regex.Replace(msg, @"(?<=\w)O[Rr](?=\w)", "UH"); - msg = Regex.Replace(msg, @"(?<=\w)a[Rr](?=\w)", "ah"); - msg = Regex.Replace(msg, @"(?<=\w)A[Rr](?=\w)", "AH"); + msg = RegexLowerOr.Replace(msg, "uh"); + msg = RegexUpperOr.Replace(msg, "UH"); + msg = RegexLowerAr.Replace(msg, "ah"); + msg = RegexUpperAr.Replace(msg, "AH"); // Prefix if (_random.Prob(0.15f)) { //Checks if the first word of the sentence is all caps //So the prefix can be allcapped and to not resanitize the captial - var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); + var firstWordAllCaps = !RegexFirstWord.Match(msg).Value.Any(char.IsLower); var pick = _random.Next(1, 2); // Reverse sanitize capital @@ -113,7 +70,7 @@ public string Accentuate(string message, MobsterAccentComponent component) { //Checks if the last word of the sentence is all caps //So the suffix can be allcapped - var lastWordAllCaps = !Regex.Match(msg, @"(\S+)$").Value.Any(char.IsLower); + var lastWordAllCaps = !RegexLastWord.Match(msg).Value.Any(char.IsLower); var suffix = ""; if (component.IsBoss) { @@ -123,7 +80,7 @@ public string Accentuate(string message, MobsterAccentComponent component) else { var pick = _random.Next(1, 3); - suffix = Loc.GetString($"accent-mobster-suffix-minion-{pick}"); + suffix = Loc.GetString($"accent-mobster-suffix-minion-{pick}"); } if (lastWordAllCaps) suffix = suffix.ToUpper(); diff --git a/Content.Server/Speech/EntitySystems/MothAccentSystem.cs b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs index ef2bf17b3ce..7a1449ae9d4 100644 --- a/Content.Server/Speech/EntitySystems/MothAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/MothAccentSystem.cs @@ -8,6 +8,9 @@ public sealed class MothAccentSystem : EntitySystem { [Dependency] private readonly IRobustRandom _random = default!; // Corvax-Localization + private static readonly Regex RegexLowerBuzz = new Regex("z{1,3}"); + private static readonly Regex RegexUpperBuzz = new Regex("Z{1,3}"); + public override void Initialize() { base.Initialize(); @@ -19,9 +22,9 @@ private void OnAccent(EntityUid uid, MothAccentComponent component, AccentGetEve var message = args.Message; // buzzz - message = Regex.Replace(message, "z{1,3}", "zzz"); + message = RegexLowerBuzz.Replace(message, "zzz"); // buZZZ - message = Regex.Replace(message, "Z{1,3}", "ZZZ"); + message = RegexUpperBuzz.Replace(message, "ZZZ"); // Corvax-Localization-Start // ж => жжж diff --git a/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs b/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs index 10437c235d6..ae8fe522b9b 100644 --- a/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ParrotAccentSystem.cs @@ -7,6 +7,8 @@ namespace Content.Server.Speech.EntitySystems; public sealed partial class ParrotAccentSystem : EntitySystem { + private static readonly Regex WordCleanupRegex = new Regex("[^A-Za-z0-9 -]"); + [Dependency] private readonly IRobustRandom _random = default!; public override void Initialize() @@ -27,7 +29,7 @@ public string Accentuate(Entity entity, string message) if (_random.Prob(entity.Comp.LongestWordRepeatChance)) { // Don't count non-alphanumeric characters as parts of words - var cleaned = Regex.Replace(message, "[^A-Za-z0-9 -]", string.Empty); + var cleaned = WordCleanupRegex.Replace(message, string.Empty); // Split on whitespace and favor words towards the end of the message var words = cleaned.Split(null).Reverse(); // Find longest word diff --git a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs index 9f5f8080b9b..84298cbf01a 100644 --- a/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/PirateAccentSystem.cs @@ -7,6 +7,8 @@ namespace Content.Server.Speech.EntitySystems; public sealed class PirateAccentSystem : EntitySystem { + private static readonly Regex FirstWordAllCapsRegex = new(@"^(\S+)"); + [Dependency] private readonly IRobustRandom _random = default!; [Dependency] private readonly ReplacementAccentSystem _replacement = default!; @@ -26,7 +28,7 @@ public string Accentuate(string message, PirateAccentComponent component) return msg; //Checks if the first word of the sentence is all caps //So the prefix can be allcapped and to not resanitize the captial - var firstWordAllCaps = !Regex.Match(msg, @"^(\S+)").Value.Any(char.IsLower); + var firstWordAllCaps = !FirstWordAllCapsRegex.Match(msg).Value.Any(char.IsLower); var pick = _random.Pick(component.PirateWords); var pirateWord = Loc.GetString(pick); diff --git a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs index 36fa7e07ad5..c332c6cda8f 100644 --- a/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs +++ b/Content.Server/Speech/EntitySystems/ReplacementAccentSystem.cs @@ -24,6 +24,9 @@ public override void Initialize() private void OnAccent(EntityUid uid, ReplacementAccentComponent component, AccentGetEvent args) { + if (!_random.Prob(component.ReplacementChance)) + return; + args.Message = ApplyReplacements(args.Message, component.Accent); } @@ -46,6 +49,12 @@ public string ApplyReplacements(string message, string accent) if (prototype.WordReplacements == null) return message; + // Prohibition of repeated word replacements. + // All replaced words placed in the final message are placed here as dashes (___) with the same length. + // The regex search goes through this buffer message, from which the already replaced words are crossed out, + // ensuring that the replaced words cannot be replaced again. + var maskMessage = message; + foreach (var (first, replace) in prototype.WordReplacements) { var f = _loc.GetString(first); @@ -53,10 +62,10 @@ public string ApplyReplacements(string message, string accent) // this is kind of slow but its not that bad // essentially: go over all matches, try to match capitalization where possible, then replace // rather than using regex.replace - for (int i = Regex.Count(message, $@"(? 0; i--) + for (int i = Regex.Count(maskMessage, $@"(? 0; i--) { // fetch the match again as the character indices may have changed - Match match = Regex.Match(message, $@"(? public override void Initialize() { + base.Initialize(); Subs.CVar(_configurationManager, CCVars.ICRandomCharacters, e => _randomizeCharacters = e, true); _spawnerCallbacks = new Dictionary>() @@ -181,7 +182,7 @@ public EntityUid SpawnPlayerMob( if (prototype?.StartingGear != null) { var startingGear = _prototypeManager.Index(prototype.StartingGear); - EquipStartingGear(entity.Value, startingGear); + EquipStartingGear(entity.Value, startingGear, raiseEvent: false); } // Run loadouts after so stuff like storage loadouts can get @@ -217,11 +218,14 @@ public EntityUid SpawnPlayerMob( } // Handle any extra data here. - EquipStartingGear(entity.Value, startingGear); + EquipStartingGear(entity.Value, startingGear, raiseEvent: false); } } } + var gearEquippedEv = new StartingGearEquippedEvent(entity.Value); + RaiseLocalEvent(entity.Value, ref gearEquippedEv, true); + if (profile != null) { if (prototype != null) diff --git a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs index efa9cc096dd..7e32f546bed 100644 --- a/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs +++ b/Content.Server/StationEvents/BasicStationEventSchedulerSystem.cs @@ -1,5 +1,6 @@ using System.Linq; using Content.Server.Administration; +using Content.Server.GameTicking; using Content.Server.GameTicking.Components; using Content.Server.GameTicking.Rules; using Content.Server.GameTicking.Rules.Components; @@ -22,6 +23,9 @@ public sealed class BasicStationEventSchedulerSystem : GameRuleSystem private void ResetTimer(BasicStationEventSchedulerComponent component) { - component.TimeUntilNextEvent = _random.Next(3 * 60, 10 * 60); + component.TimeUntilNextEvent = _random.NextFloat(MinEventTime, MaxEventTime); } } @@ -66,6 +70,59 @@ private void ResetTimer(BasicStationEventSchedulerComponent component) public sealed class StationEventCommand : ToolshedCommand { private EventManagerSystem? _stationEvent; + private BasicStationEventSchedulerSystem? _basicScheduler; + private IRobustRandom? _random; + + /// + /// Estimates the expected number of times an event will run over the course of X rounds, taking into account weights and + /// how many events are expected to run over a given timeframe for a given playercount by repeatedly simulating rounds. + /// Effectively /100 (if you put 100 rounds) = probability an event will run per round. + /// + /// + /// This isn't perfect. Code path eventually goes into , which requires + /// state from . As a result, you should probably just run this locally and not doing + /// a real round (it won't pollute the state, but it will get contaminated by previously ran events in the actual round) + /// and things like `MaxOccurrences` and `ReoccurrenceDelay` won't be respected. + /// + /// I consider these to not be that relevant to the analysis here though (and I don't want most uses of them + /// to even exist) so I think it's fine. + /// + [CommandImplementation("simulate")] + public IEnumerable<(string, float)> Simulate([CommandArgument] int rounds, [CommandArgument] int playerCount, [CommandArgument] float roundEndMean, [CommandArgument] float roundEndStdDev) + { + _stationEvent ??= GetSys(); + _basicScheduler ??= GetSys(); + _random ??= IoCManager.Resolve(); + + var occurrences = new Dictionary(); + + foreach (var ev in _stationEvent.AllEvents()) + { + occurrences.Add(ev.Key.ID, 0); + } + + for (var i = 0; i < rounds; i++) + { + var curTime = TimeSpan.Zero; + var randomEndTime = _random.NextGaussian(roundEndMean, roundEndStdDev) * 60; // *60 = minutes to seconds + if (randomEndTime <= 0) + continue; + + while (curTime.TotalSeconds < randomEndTime) + { + // sim an event + curTime += TimeSpan.FromSeconds(_random.NextFloat(BasicStationEventSchedulerSystem.MinEventTime, BasicStationEventSchedulerSystem.MaxEventTime)); + var available = _stationEvent.AvailableEvents(false, playerCount, curTime); + var ev = _stationEvent.FindEvent(available); + if (ev == null) + continue; + + occurrences[ev] += 1; + } + } + + return occurrences.Select(p => (p.Key, (float) p.Value)).OrderByDescending(p => p.Item2); + } [CommandImplementation("lsprob")] public IEnumerable<(string, float)> LsProb() diff --git a/Content.Server/StationEvents/Components/AlertLevelInterceptionRuleComponent.cs b/Content.Server/StationEvents/Components/AlertLevelInterceptionRuleComponent.cs new file mode 100644 index 00000000000..6907aa61760 --- /dev/null +++ b/Content.Server/StationEvents/Components/AlertLevelInterceptionRuleComponent.cs @@ -0,0 +1,15 @@ +using Content.Server.StationEvents.Events; +using Content.Server.AlertLevel; +using Robust.Shared.Prototypes; + +namespace Content.Server.StationEvents.Components; + +[RegisterComponent, Access(typeof(AlertLevelInterceptionRule))] +public sealed partial class AlertLevelInterceptionRuleComponent : Component +{ + /// + /// Alert level to set the station to when the event starts. + /// + [DataField] + public string AlertLevel = "blue"; +} diff --git a/Content.Server/StationEvents/EventManagerSystem.cs b/Content.Server/StationEvents/EventManagerSystem.cs index 1a26417b057..c8552895aff 100644 --- a/Content.Server/StationEvents/EventManagerSystem.cs +++ b/Content.Server/StationEvents/EventManagerSystem.cs @@ -61,7 +61,7 @@ public string RunRandomEvent() /// Pick a random event from the available events at this time, also considering their weightings. /// /// - private string? FindEvent(Dictionary availableEvents) + public string? FindEvent(Dictionary availableEvents) { if (availableEvents.Count == 0) { @@ -95,16 +95,20 @@ public string RunRandomEvent() /// /// Gets the events that have met their player count, time-until start, etc. /// - /// + /// Override for player count, if using this to simulate events rather than in an actual round. + /// Override for round time, if using this to simulate events rather than in an actual round. /// - private Dictionary AvailableEvents(bool ignoreEarliestStart = false) + public Dictionary AvailableEvents( + bool ignoreEarliestStart = false, + int? playerCountOverride = null, + TimeSpan? currentTimeOverride = null) { - var playerCount = _playerManager.PlayerCount; + var playerCount = playerCountOverride ?? _playerManager.PlayerCount; // playerCount does a lock so we'll just keep the variable here - var currentTime = !ignoreEarliestStart + var currentTime = currentTimeOverride ?? (!ignoreEarliestStart ? GameTicker.RoundDuration() - : TimeSpan.Zero; + : TimeSpan.Zero); var result = new Dictionary(); @@ -112,7 +116,6 @@ private Dictionary AvailableEvents(bool { if (CanRun(proto, stationEvent, playerCount, currentTime)) { - Log.Debug($"Adding event {proto.ID} to possibilities"); result.Add(proto, stationEvent); } } diff --git a/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs b/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs new file mode 100644 index 00000000000..a78a542d3b3 --- /dev/null +++ b/Content.Server/StationEvents/Events/AlertLevelInterceptionRule.cs @@ -0,0 +1,23 @@ +using Content.Server.GameTicking.Components; +using Content.Server.StationEvents.Components; +using Content.Server.AlertLevel; + +namespace Content.Server.StationEvents.Events; + +public sealed class AlertLevelInterceptionRule : StationEventSystem +{ + [Dependency] private readonly AlertLevelSystem _alertLevelSystem = default!; + + protected override void Started(EntityUid uid, AlertLevelInterceptionRuleComponent component, GameRuleComponent gameRule, + GameRuleStartedEvent args) + { + base.Started(uid, component, gameRule, args); + + if (!TryGetRandomStation(out var chosenStation)) + return; + if (_alertLevelSystem.GetLevel(chosenStation.Value) != "green") + return; + + _alertLevelSystem.SetLevel(chosenStation.Value, component.AlertLevel, true, true, true); + } +} \ No newline at end of file diff --git a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs index e74c1463804..4b910070855 100644 --- a/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs +++ b/Content.Shared/Chemistry/EntitySystems/SharedSolutionContainerSystem.cs @@ -733,7 +733,7 @@ private void OnExamineSolution(Entity entity, ref E return; } - if (!CanSeeHiddenSolution(entity,args.Examiner)) + if (!CanSeeHiddenSolution(entity, args.Examiner)) return; var primaryReagent = solution.GetPrimaryReagentId(); @@ -832,7 +832,7 @@ private void OnSolutionExaminableVerb(Entity entity return; } - if (!CanSeeHiddenSolution(entity,args.User)) + if (!CanSeeHiddenSolution(entity, args.User)) return; var target = args.Target; @@ -881,6 +881,9 @@ private FormattedMessage GetSolutionExamine(Solution solution) , ("amount", quantity))); } + msg.PushNewline(); + msg.AddMarkup(Loc.GetString("scannable-solution-temperature", ("temperature", Math.Round(solution.Temperature)))); + return msg; } diff --git a/Content.Shared/Geras/SharedGerasSystem.cs b/Content.Shared/Geras/SharedGerasSystem.cs index f5dea466a2e..8c998371b64 100644 --- a/Content.Shared/Geras/SharedGerasSystem.cs +++ b/Content.Shared/Geras/SharedGerasSystem.cs @@ -3,7 +3,7 @@ namespace Content.Shared.Geras; /// -/// A Geras is the small morph of a slime. This system handles exactly that. +/// Geras is the god of old age, and A geras is the small morph of a slime. This system allows the slimes to have the morphing action. /// public abstract class SharedGerasSystem : EntitySystem { diff --git a/Content.Shared/Inventory/InventorySystem.Slots.cs b/Content.Shared/Inventory/InventorySystem.Slots.cs index 1da44155b95..e0f2a695576 100644 --- a/Content.Shared/Inventory/InventorySystem.Slots.cs +++ b/Content.Shared/Inventory/InventorySystem.Slots.cs @@ -151,7 +151,6 @@ public bool TryGetSlots(EntityUid uid, [NotNullWhen(true)] out SlotDefinition[]? slotDefinitions = null; return false; } - slotDefinitions = inv.Slots; return true; } diff --git a/Content.Shared/Preferences/HumanoidCharacterProfile.cs b/Content.Shared/Preferences/HumanoidCharacterProfile.cs index f872e94e0d1..f30497bd9a0 100644 --- a/Content.Shared/Preferences/HumanoidCharacterProfile.cs +++ b/Content.Shared/Preferences/HumanoidCharacterProfile.cs @@ -27,6 +27,9 @@ namespace Content.Shared.Preferences [Serializable, NetSerializable] public sealed partial class HumanoidCharacterProfile : ICharacterProfile { + private static readonly Regex RestrictedNameRegex = new("[^А-Яа-яёЁ0-9' -]"); + private static readonly Regex ICNameCaseRegex = new(@"^(?\w)|\b(?\w)(?=\w*$)"); + public const int MaxNameLength = 32; public const int MaxDescLength = 512; @@ -446,15 +449,13 @@ public void EnsureValid(ICommonSession session, IDependencyCollection collection if (configManager.GetCVar(CCVars.RestrictedNames)) { - name = Regex.Replace(name, @"[^А-Яа-яёЁ0-9' -]", string.Empty); // Corvax: Only cyrillic names + name = RestrictedNameRegex.Replace(name, string.Empty); } if (configManager.GetCVar(CCVars.ICNameCase)) { // This regex replaces the first character of the first and last words of the name with their uppercase version - name = Regex.Replace(name, - @"^(?\w)|\b(?\w)(?=\w*$)", - m => m.Groups["word"].Value.ToUpper()); + name = ICNameCaseRegex.Replace(name, m => m.Groups["word"].Value.ToUpper()); } if (string.IsNullOrEmpty(name)) diff --git a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs index dcdc9d61d98..20e57e94212 100644 --- a/Content.Shared/Random/Helpers/SharedRandomExtensions.cs +++ b/Content.Shared/Random/Helpers/SharedRandomExtensions.cs @@ -57,7 +57,8 @@ public static string Pick(this IWeightedRandomPrototype prototype, IRobustRandom throw new InvalidOperationException($"Invalid weighted pick for {prototype.ID}!"); } - public static string Pick(this IRobustRandom random, Dictionary weights) + public static T Pick(this IRobustRandom random, Dictionary weights) + where T: notnull { var sum = weights.Values.Sum(); var accumulated = 0f; @@ -74,7 +75,7 @@ public static string Pick(this IRobustRandom random, Dictionary w } } - throw new InvalidOperationException($"Invalid weighted pick"); + throw new InvalidOperationException("Invalid weighted pick"); } public static (string reagent, FixedPoint2 quantity) Pick(this WeightedRandomFillSolutionPrototype prototype, IRobustRandom? random = null) diff --git a/Content.Shared/Roles/StartingGearEquippedEvent.cs b/Content.Shared/Roles/StartingGearEquippedEvent.cs new file mode 100644 index 00000000000..41b6caccff6 --- /dev/null +++ b/Content.Shared/Roles/StartingGearEquippedEvent.cs @@ -0,0 +1,10 @@ +namespace Content.Shared.Roles; + +/// +/// Raised directed on an entity when a new starting gear prototype has been equipped. +/// +[ByRefEvent] +public record struct StartingGearEquippedEvent(EntityUid Entity) +{ + public readonly EntityUid Entity = Entity; +} diff --git a/Content.Shared/Station/SharedStationSpawningSystem.cs b/Content.Shared/Station/SharedStationSpawningSystem.cs index 363fb3f91e6..8a063938ee3 100644 --- a/Content.Shared/Station/SharedStationSpawningSystem.cs +++ b/Content.Shared/Station/SharedStationSpawningSystem.cs @@ -17,12 +17,24 @@ public abstract class SharedStationSpawningSystem : EntitySystem [Dependency] private readonly SharedStorageSystem _storage = default!; [Dependency] private readonly SharedTransformSystem _xformSystem = default!; + private EntityQuery _handsQuery; + private EntityQuery _inventoryQuery; + private EntityQuery _storageQuery; + private EntityQuery _xformQuery; + + public override void Initialize() + { + base.Initialize(); + _handsQuery = GetEntityQuery(); + _inventoryQuery = GetEntityQuery(); + _storageQuery = GetEntityQuery(); + _xformQuery = GetEntityQuery(); + } + /// - /// Equips starting gear onto the given entity. + /// /// - /// Entity to load out. - /// Starting gear to use. - public void EquipStartingGear(EntityUid entity, ProtoId? startingGear) + public void EquipStartingGear(EntityUid entity, ProtoId? startingGear, bool raiseEvent = true) { PrototypeManager.TryIndex(startingGear, out var gearProto); EquipStartingGear(entity, gearProto); @@ -33,11 +45,14 @@ public void EquipStartingGear(EntityUid entity, ProtoId? /// /// Entity to load out. /// Starting gear to use. - public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear) + /// Should we raise the event for equipped. Set to false if you will call this manually + public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingGear, bool raiseEvent = true) { if (startingGear == null) return; + var xform = _xformQuery.GetComponent(entity); + if (InventorySystem.TryGetSlots(entity, out var slotDefinitions)) { foreach (var slot in slotDefinitions) @@ -45,16 +60,16 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG var equipmentStr = startingGear.GetGear(slot.Name); if (!string.IsNullOrEmpty(equipmentStr)) { - var equipmentEntity = EntityManager.SpawnEntity(equipmentStr, EntityManager.GetComponent(entity).Coordinates); + var equipmentEntity = EntityManager.SpawnEntity(equipmentStr, xform.Coordinates); InventorySystem.TryEquip(entity, equipmentEntity, slot.Name, silent: true, force:true); } } } - if (TryComp(entity, out HandsComponent? handsComponent)) + if (_handsQuery.TryComp(entity, out var handsComponent)) { var inhand = startingGear.Inhand; - var coords = EntityManager.GetComponent(entity).Coordinates; + var coords = xform.Coordinates; foreach (var prototype in inhand) { var inhandEntity = EntityManager.SpawnEntity(prototype, coords); @@ -70,7 +85,7 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG { var coords = _xformSystem.GetMapCoordinates(entity); var ents = new ValueList(); - TryComp(entity, out InventoryComponent? inventoryComp); + _inventoryQuery.TryComp(entity, out var inventoryComp); foreach (var (slot, entProtos) in startingGear.Storage) { @@ -84,7 +99,7 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG if (inventoryComp != null && InventorySystem.TryGetSlotEntity(entity, slot, out var slotEnt, inventoryComponent: inventoryComp) && - TryComp(slotEnt, out StorageComponent? storage)) + _storageQuery.TryComp(slotEnt, out var storage)) { foreach (var ent in ents) { @@ -93,5 +108,11 @@ public void EquipStartingGear(EntityUid entity, StartingGearPrototype? startingG } } } + + if (raiseEvent) + { + var ev = new StartingGearEquippedEvent(entity); + RaiseLocalEvent(entity, ref ev, true); + } } } diff --git a/Content.Shared/Tag/TagSystem.cs b/Content.Shared/Tag/TagSystem.cs index fdb7de1f757..7bcb887a410 100644 --- a/Content.Shared/Tag/TagSystem.cs +++ b/Content.Shared/Tag/TagSystem.cs @@ -1,3 +1,4 @@ +using System.Diagnostics; using System.Linq; using Robust.Shared.GameStates; using Robust.Shared.Prototypes; @@ -185,6 +186,7 @@ public bool HasTag(EntityUid entity, string id) /// /// Checks if a tag has been added to an entity. /// + [Obsolete] public bool HasTag(EntityUid entity, string id, EntityQuery tagQuery) { return tagQuery.TryGetComponent(entity, out var component) && @@ -243,7 +245,7 @@ public bool HasAllTags(EntityUid entity, IEnumerable ids) /// public bool HasAllTags(EntityUid entity, List> ids) { - return TryComp(entity, out var component) && + return _tagQuery.TryComp(entity, out var component) && HasAllTags(component, ids); } @@ -521,16 +523,18 @@ public bool HasAllTags(TagComponent component, IEnumerable ids) /// public bool HasAllTags(TagComponent component, List> ids) { - var stringIds = new List(); - foreach (var tag in ids) + foreach (var id in ids) { - stringIds.Add(tag.Id); + AssertValidTag(id); + + if (!component.Tags.Contains(id)) + return false; + } - return HasAllTags(component, stringIds); + return true; } - /// /// Checks if any of the given tags have been added. /// @@ -552,7 +556,6 @@ public bool HasAnyTag(TagComponent component, params string[] ids) return false; } - /// /// Checks if any of the given tags have been added. /// @@ -619,13 +622,15 @@ public bool HasAnyTag(TagComponent component, IEnumerable ids) /// public bool HasAnyTag(TagComponent comp, List> ids) { - var stringIds = new List(); - foreach (var tag in ids) + foreach (var id in ids) { - stringIds.Add(tag.Id); + AssertValidTag(id); + + if (comp.Tags.Contains(id)) + return true; } - return HasAnyTag(comp, stringIds); + return false; } /// diff --git a/Content.Shared/UserInterface/ActivatableUISystem.cs b/Content.Shared/UserInterface/ActivatableUISystem.cs index 5d408012bd0..3ac8835dd02 100644 --- a/Content.Shared/UserInterface/ActivatableUISystem.cs +++ b/Content.Shared/UserInterface/ActivatableUISystem.cs @@ -5,6 +5,7 @@ using Content.Shared.Hands.Components; using Content.Shared.Hands.EntitySystems; using Content.Shared.Interaction; +using Content.Shared.Interaction.Events; using Content.Shared.Popups; using Content.Shared.Verbs; using Robust.Shared.Containers; @@ -27,6 +28,7 @@ public override void Initialize() { base.Initialize(); + SubscribeLocalEvent(OnUseInHand); SubscribeLocalEvent(OnActivate); SubscribeLocalEvent(OnInteractUsing); SubscribeLocalEvent(OnHandDeselected); @@ -99,6 +101,9 @@ private bool ShouldAddVerb(EntityUid uid, ActivatableUIComponent component, G if (!args.CanAccess) return false; + if (!component.RequiredItems?.IsValid(args.Using ?? default, EntityManager) ?? false) + return false; + if (component.RequireHands) { if (args.Hands == null) @@ -117,6 +122,20 @@ private bool ShouldAddVerb(EntityUid uid, ActivatableUIComponent component, G return args.CanInteract || component.AllowSpectator && HasComp(args.User); } + private void OnUseInHand(EntityUid uid, ActivatableUIComponent component, UseInHandEvent args) + { + if (args.Handled) + return; + + if (component.VerbOnly) + return; + + if (component.RequiredItems != null) + return; + + args.Handled = InteractUI(args.User, uid, component); + } + private void OnActivate(EntityUid uid, ActivatableUIComponent component, ActivateInWorldEvent args) { if (args.Handled) diff --git a/Content.Shared/Whitelist/EntityWhitelist.cs b/Content.Shared/Whitelist/EntityWhitelist.cs index 7fa6ce7f824..895759be958 100644 --- a/Content.Shared/Whitelist/EntityWhitelist.cs +++ b/Content.Shared/Whitelist/EntityWhitelist.cs @@ -38,8 +38,8 @@ public sealed partial class EntityWhitelist [DataField] public List>? Sizes; - [NonSerialized] - private List? _registrations; + [NonSerialized, Access(typeof(EntityWhitelistSystem))] + public List? Registrations; /// /// Tags that are allowed in the whitelist. @@ -55,67 +55,13 @@ public sealed partial class EntityWhitelist [DataField] public bool RequireAll; - public void UpdateRegistrations() + [Obsolete("Use WhitelistSystem")] + public bool IsValid(EntityUid uid, IEntityManager? man = null) { + var sys = man?.System() ?? + IoCManager.Resolve().GetEntitySystem(); - if (Components == null) - return; + return sys.IsValid(this, uid); - var compFact = IoCManager.Resolve(); - _registrations = new List(); - foreach (var name in Components) - { - var availability = compFact.GetComponentAvailability(name); - if (compFact.TryGetRegistration(name, out var registration) - && availability == ComponentAvailability.Available) - { - _registrations.Add(registration); - } - else if (availability == ComponentAvailability.Unknown) - { - Logger.Warning($"Unknown component name {name} passed to EntityWhitelist!"); - } - } - } - - /// - /// Returns whether a given entity fits the whitelist. - /// - public bool IsValid(EntityUid uid, IEntityManager? entityManager = null) - { - if (Components != null && _registrations == null) - UpdateRegistrations(); - - IoCManager.Resolve(ref entityManager); - if (_registrations != null) - { - foreach (var reg in _registrations) - { - if (entityManager.HasComponent(uid, reg.Type)) - { - if (!RequireAll) - return true; - } - else if (RequireAll) - return false; - } - } - - if (Sizes != null && entityManager.TryGetComponent(uid, out ItemComponent? itemComp)) - { - if (Sizes.Contains(itemComp.Size)) - return true; - } - - if (Tags != null && entityManager.TryGetComponent(uid, out TagComponent? tags)) - { - var tagSystem = entityManager.System(); - return RequireAll ? tagSystem.HasAllTags(tags, Tags) : tagSystem.HasAnyTag(tags, Tags); - } - - if (RequireAll) - return true; - - return false; } } diff --git a/Content.Shared/Whitelist/EntityWhitelistSystem.cs b/Content.Shared/Whitelist/EntityWhitelistSystem.cs new file mode 100644 index 00000000000..d73646b7e99 --- /dev/null +++ b/Content.Shared/Whitelist/EntityWhitelistSystem.cs @@ -0,0 +1,84 @@ +using System.Diagnostics.CodeAnalysis; +using Content.Shared.Item; +using Content.Shared.Tag; + +namespace Content.Shared.Whitelist; + +public sealed class EntityWhitelistSystem : EntitySystem +{ + [Dependency] private readonly IComponentFactory _factory = default!; + [Dependency] private readonly TagSystem _tag = default!; + + private EntityQuery _itemQuery; + + public override void Initialize() + { + base.Initialize(); + _itemQuery = GetEntityQuery(); + } + + /// + public bool IsValid(EntityWhitelist list, [NotNullWhen(true)] EntityUid? uid) + { + return uid != null && IsValid(list, uid.Value); + } + + /// + /// Checks whether a given entity satisfies a whitelist. + /// + public bool IsValid(EntityWhitelist list, EntityUid uid) + { + if (list.Components != null) + EnsureRegistrations(list); + + if (list.Registrations != null) + { + foreach (var reg in list.Registrations) + { + if (HasComp(uid, reg.Type)) + { + if (!list.RequireAll) + return true; + } + else if (list.RequireAll) + return false; + } + } + + if (list.Sizes != null && _itemQuery.TryComp(uid, out var itemComp)) + { + if (list.Sizes.Contains(itemComp.Size)) + return true; + } + + if (list.Tags != null) + { + return list.RequireAll + ? _tag.HasAllTags(uid, list.Tags) + : _tag.HasAnyTag(uid, list.Tags); + } + + return list.RequireAll; + } + + private void EnsureRegistrations(EntityWhitelist list) + { + if (list.Components == null) + return; + + list.Registrations = new List(); + foreach (var name in list.Components) + { + var availability = _factory.GetComponentAvailability(name); + if (_factory.TryGetRegistration(name, out var registration) + && availability == ComponentAvailability.Available) + { + list.Registrations.Add(registration); + } + else if (availability == ComponentAvailability.Unknown) + { + Log.Warning($"Unknown component name {name} passed to EntityWhitelist!"); + } + } + } +} diff --git a/Resources/Audio/Announcements/attributions.yml b/Resources/Audio/Announcements/attributions.yml index 3e8ade8b201..d7581598a2c 100644 --- a/Resources/Audio/Announcements/attributions.yml +++ b/Resources/Audio/Announcements/attributions.yml @@ -43,6 +43,11 @@ copyright: "Paradise, volume and pitch changed, merged with redalert.ogg" source: "https://github.com/ParadiseSS13/Paradise/blob/07b26ee6b4a11a0607986d322ee007020569feae/sound/effects/siren.ogg" +- files: ["intercept.ogg"] + license: "CC-BY-SA-3.0" + copyright: "Taken from tgstation" + source: "https://github.com/tgstation/tgstation/blob/95731342b97167d7883ff091d389f79c36442ee6/sound/ai/default/intercept.ogg" + - files: ["aliens.ogg", "attention.ogg", "meteors.ogg", "outbreak7.ogg", "power_off.ogg", "power_on.ogg", "radiation.ogg", "shuttle_dock.ogg", "shuttlecalled.ogg", "shuttlerecalled.ogg", "ventclog.ogg", "war.ogg", "welcome.ogg"] license: "CC-BY-SA-3.0" copyright: "discord:Basia (437113799137427460)" diff --git a/Resources/Audio/Announcements/intercept.ogg b/Resources/Audio/Announcements/intercept.ogg new file mode 100644 index 00000000000..3569a07d401 Binary files /dev/null and b/Resources/Audio/Announcements/intercept.ogg differ diff --git a/Resources/Audio/Expedition/attributions.yml b/Resources/Audio/Expedition/attributions.yml new file mode 100644 index 00000000000..8bafcc6f112 --- /dev/null +++ b/Resources/Audio/Expedition/attributions.yml @@ -0,0 +1,9 @@ +- files: ["tension_session.ogg"] + license: "CC-BY-3.0" + copyright: "Created by qwertyquerty" + source: "https://www.youtube.com/@qwertyquerty" + +- files: ["deadline.ogg"] + license: "CC-BY-4.0" + copyright: "Bolgarich" + source: "https://www.youtube.com/watch?v=q7_NFEeeEac" diff --git a/Resources/Audio/Expedition/deadline.ogg b/Resources/Audio/Expedition/deadline.ogg new file mode 100644 index 00000000000..131016d8919 Binary files /dev/null and b/Resources/Audio/Expedition/deadline.ogg differ diff --git a/Resources/Audio/Misc/tension_session.ogg b/Resources/Audio/Expedition/tension_session.ogg similarity index 100% rename from Resources/Audio/Misc/tension_session.ogg rename to Resources/Audio/Expedition/tension_session.ogg diff --git a/Resources/Changelog/Changelog.yml b/Resources/Changelog/Changelog.yml index 718882f0860..6b55aaf094c 100644 --- a/Resources/Changelog/Changelog.yml +++ b/Resources/Changelog/Changelog.yml @@ -1,205 +1,4 @@ Entries: -- author: metalgearsloth - changes: - - message: Remove executions pending code rewrite. - type: Remove - id: 6017 - time: '2024-02-25T11:36:17.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25555 -- author: Krunk - changes: - - message: Candy bowls function properly again! - type: Fix - id: 6018 - time: '2024-02-25T13:08:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25514 -- author: Whisper - changes: - - message: Added juice that makes you Weh! Juice a lizard plushie today! - type: Add - id: 6019 - time: '2024-02-25T13:54:07.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25132 -- author: wafehling - changes: - - message: Secret mode has become more secret, with the 4th option Survival added - to the rotation. - type: Tweak - id: 6020 - time: '2024-02-25T21:15:35.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25568 -- author: Tayrtahn - changes: - - message: Added a live preview display to reagent dispensers. - type: Add - id: 6021 - time: '2024-02-25T23:03:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25391 -- author: Krunk - changes: - - message: Fixed grid inventory occasionally messing with your item rotation. - type: Fix - id: 6022 - time: '2024-02-25T23:24:21.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25510 -- author: Ubaser - changes: - - message: Satchels no longer have darkened space representing a gap, and is instead - transparent. - type: Tweak - id: 6023 - time: '2024-02-25T23:24:59.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25147 -- author: TheShuEd - changes: - - message: Huge flora anomaly nerf - type: Tweak - id: 6024 - time: '2024-02-25T23:41:24.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25499 -- author: OctoRocket - changes: - - message: Removed the hands requirement to read paper. - type: Tweak - id: 6025 - time: '2024-02-26T02:40:22.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25580 -- author: SlamBamActionman - changes: - - message: Self-uncuff damage has been removed, but attempting to self-uncuff now - has a cooldown instead. - type: Tweak - id: 6026 - time: '2024-02-26T02:41:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25161 -- author: deltanedas - changes: - - message: Traitors can now be asked to steal the CMO's Handheld Crew Monitor. - type: Tweak - id: 6027 - time: '2024-02-26T03:40:48.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25563 -- author: MACMAN2003 - changes: - - message: You can now make LED light tubes and LED light bulbs at an autolathe. - type: Add - id: 6028 - time: '2024-02-26T22:58:01.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25616 -- author: botanySupremist - changes: - - message: Fixed a few small typos in ghost role information. - type: Fix - id: 6029 - time: '2024-02-26T22:58:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25613 -- author: Whisper - changes: - - message: Juice that makes you Weh can be found in; anomalies, Artifacts, random - puddles. - type: Add - id: 6030 - time: '2024-02-26T22:59:15.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25611 -- author: Hanzdegloker - changes: - - message: ERT medic PDA now has a health analyzer built in. - type: Tweak - id: 6031 - time: '2024-02-26T23:00:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25606 -- author: Ilya246 - changes: - - message: Macrobomb implant price reduced 20->13 TC. - type: Tweak - id: 6032 - time: '2024-02-26T23:04:26.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25585 -- author: QuietlyWhisper - changes: - - message: Handcuff and handcuff replacements are faster to escape. You can allow - your teammates to uncuff themselves! - type: Tweak - id: 6033 - time: '2024-02-26T23:05:16.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25601 -- author: PoorMansDreams - changes: - - message: New lobby art (of horror) - type: Add - id: 6034 - time: '2024-02-26T23:06:09.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25455 -- author: TheShuEd - changes: - - message: Carpets can now be printed at the uniform printer. - type: Add - - message: Carpets can be collected from the floor and buthered into fabric. - type: Add - - message: New white and cyan carpets. - type: Add - - message: Carpets can now be placed on wooden tables to get beautiful new tables - with tablecloths. - type: Add - id: 6035 - time: '2024-02-26T23:11:20.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25562 -- author: SlamBamActionman - changes: - - message: Added new noses for humans and dwarves. - type: Add - id: 6036 - time: '2024-02-26T23:15:04.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25557 -- author: MACMAN2003 - changes: - - message: Added a NanoTrasen balloon toy. - type: Add - id: 6037 - time: '2024-02-26T23:15:53.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25543 -- author: TheShuEd - changes: - - message: Added a new T2 industrial technology "Space Scanning"! It includes a - mass scanner console board, a Borg GPS module, and a new handheld mass scanner. - type: Add - - message: GPS borg module now have handheld mass scanner. - type: Add - id: 6038 - time: '2024-02-26T23:19:51.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25526 -- author: Sphiral - changes: - - message: NT has finally perfected methods for infusing Plasma/Uranium into Glass! - Windoors now have such varients! And Uranium Slim Windows exist! - type: Add - id: 6039 - time: '2024-02-26T23:25:44.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25501 -- author: Whisper - changes: - - message: Bleed wounds will no longer heal so fast they do not need to be treated. - Please see the medical guidebook. - type: Tweak - - message: Decreased passive bleed wound clotting by 60% (now 0.33u per 3 seconds). - type: Tweak - - message: Decreased all bloodloss damage (as a result of bleeding) by 50%. - type: Tweak - - message: Health analyzers will report if your patient is bleeding. - type: Add - id: 6040 - time: '2024-02-26T23:26:46.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25434 -- author: Velcroboy - changes: - - message: Tweaked wallmounted objects can not be interacted with through thindows - or windoors. - type: Tweak - - message: Fixed NanoMed vendor not being accessible from all directions. - type: Fix - id: 6041 - time: '2024-02-26T23:28:55.0000000+00:00' - url: https://github.com/space-wizards/space-station-14/pull/25451 - author: Lank changes: - message: Diona can no longer split or reform to cure themselves of a zombie infection. @@ -3860,3 +3659,201 @@ id: 6516 time: '2024-05-02T17:09:38.0000000+00:00' url: https://github.com/space-wizards/space-station-14/pull/27628 +- author: ElectroJr + changes: + - message: Fixed various interactions not prioritizing opening a UI. No more trying + to eat mission critical faxes. + type: Fix + id: 6517 + time: '2024-05-02T23:37:21.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27631 +- author: Plykiya + changes: + - message: Blast grenades have had their manufacturing cost tripled. + type: Tweak + - message: Blast grenades are now part of the Basic Shuttle Armament research and + can be printed at the secfab. + type: Tweak + id: 6518 + time: '2024-05-03T00:03:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27580 +- author: Vasilis, Dutch-VanDerLinde + changes: + - message: A new event has been added, syndicate sleeper agents, which raises the + alert level and selects 1-2 players to be traitors rarely throughout the round. + type: Add + id: 6519 + time: '2024-05-03T00:13:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27501 +- author: Errant + changes: + - message: Space Ninjas now automatically turn their internals on when they spawn. + type: Tweak + id: 6520 + time: '2024-05-03T01:24:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/25083 +- author: Hanzdegloker + changes: + - message: Added 6 new energy drink based mixed drinks. + type: Add + - message: Added Red Bool energy drink back to the soda dispenser and gave it a + new canned sprite. + type: Add + id: 6521 + time: '2024-05-03T06:57:37.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27597 +- author: DuskyJay + changes: + - message: Allowed EMP implants to be used while stunned or cuffed. + type: Tweak + id: 6522 + time: '2024-05-03T07:51:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27644 +- author: Just-a-Unity-Dev + changes: + - message: Fixed Geras not having their speed buff. + type: Fix + - message: Geras are no longer immune to other AI mobs. + type: Fix + - message: Slimes can no longer morph into a Geras when zombified. + type: Fix + - message: Lowered the Geras death threshold. + type: Tweak + id: 6523 + time: '2024-05-03T17:26:09.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27308 +- author: nikthechampiongr + changes: + - message: Ninjas will no longer be pointed to random wreckage in space. + type: Fix + id: 6524 + time: '2024-05-03T20:23:43.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27552 +- author: Dutch-VanDerLinde + changes: + - message: Fixed nuclear operatives, zombies, and head revolutionary round end summaries + not showing. + type: Fix + id: 6525 + time: '2024-05-04T00:03:52.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27654 +- author: TheShuEd + changes: + - message: Added Train station! + type: Add + id: 6526 + time: '2024-05-04T11:10:08.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27534 +- author: TheShuEd + changes: + - message: "Added Pathological Liar trait accent. The accent has a 15% chance of\ + \ inverting your message to the opposite. Replacing \u201CYes\u201D with \u201C\ + No\u201D, \u201CCan\u201D with \u201Ccan't\u201D and so on." + type: Add + id: 6527 + time: '2024-05-04T11:11:46.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27618 +- author: Tyzemol + changes: + - message: Fixed NPCs being able to see and attack you hiding in closed lockers + and crates + type: Fix + id: 6528 + time: '2024-05-04T19:57:59.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27677 +- author: Blackern5000 + changes: + - message: Security belts can now hold more items that security commonly uses. + type: Tweak + id: 6529 + time: '2024-05-04T20:00:22.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27674 +- author: Blackern5000 + changes: + - message: Floodlights now use medium power cells instead of small ones. + type: Tweak + id: 6530 + time: '2024-05-04T20:06:16.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27672 +- author: lzk228 + changes: + - message: Grey whistle added to arcade machine prizes. + type: Add + id: 6531 + time: '2024-05-05T14:42:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27676 +- author: Killerqu00 + changes: + - message: Welding masks can now be put on utility belts. + type: Tweak + id: 6532 + time: '2024-05-05T23:30:06.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27694 +- author: Dutch-VanDerLinde + changes: + - message: Chemical analysis goggles now show the scanned solution's temperature. + type: Tweak + id: 6533 + time: '2024-05-05T23:32:44.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27693 +- author: Allen + changes: + - message: Added new icons for the emote wheel + type: Add + id: 6534 + time: '2024-05-06T01:12:30.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27541 +- author: DogZeroX + changes: + - message: 'Added a new salvage song: Deadline by Bolgarich' + type: Add + id: 6535 + time: '2024-05-06T03:51:33.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27707 +- author: '0x6273' + changes: + - message: Shuttle docks now have a "dock status" device link port + type: Add + id: 6536 + time: '2024-05-06T03:59:01.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27646 +- author: DogZeroX + changes: + - message: 'Added new lobby art: Just a week away by Fern' + type: Add + id: 6537 + time: '2024-05-06T08:17:35.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27717 +- author: mirrorcult + changes: + - message: Event weights have been tweaked across the board, and some events removed + (such as false alarm) to hopefully allow for a more interesting and varied slate + of random occurrences per round. + type: Add + id: 6538 + time: '2024-05-06T10:10:12.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27721 +- author: mirrorcult + changes: + - message: Tile weighting for many events and variation rules (messes, dragons, + revenants, kudzu, gasleak, rods, etc) has been fixed. They will now no longer + spawn disproportionately often on smaller grids. + type: Add + id: 6539 + time: '2024-05-06T11:25:11.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27724 +- author: Blackern5000 + changes: + - message: Burn damage is now half as effective at cauterizing wounds as it was + previously + type: Tweak + id: 6540 + time: '2024-05-06T20:19:57.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27726 +- author: Blackern5000 + changes: + - message: Active lights now deal significantly less burn damage when touched. + type: Tweak + id: 6541 + time: '2024-05-06T20:20:19.0000000+00:00' + url: https://github.com/space-wizards/space-station-14/pull/27728 diff --git a/Resources/Credits/GitHub.txt b/Resources/Credits/GitHub.txt index e212aa149e5..00d89d6d0da 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, Aexxie, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUmAndXGabriel08X, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, casperr04, CatTheSystem, Centronias, chairbender, Charlese2, Cheackraze, cheesePizza2, Chief-Engineer, chromiumboy, Chronophylos, 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, DmitriyMX, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, 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, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, K-Dynamic, Kadeo64, KaiShibaa, kalane15, kalanosh, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, liltenhead, LittleBuilderJane, Lomcastar, LordCarve, LordEclipse, luckyshotpictures, LudwigVonChesterfield, Lukasz825700516, lunarcomets, luringens, lvvova1, lzimann, lzk228, M3739, MACMAN2003, Macoron, MagnusCrowe, ManelNavola, Mangohydra, matthst, Matz05, MehimoNemo, MeltedPixel, MemeProof, Menshin, Mervill, metalgearsloth, mhamsterr, MilenVolf, Minty642, Mirino97, mirrorcult, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, 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, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, Saakra, Samsterious, SaphireLattice, ScalyChimp, scrato, Scribbles0, Serkket, SethLafuente, ShadowCommander, Shadowtheprotogen546, shampunj, SignalWalker, Simyon264, SirDragooon, Sirionaut, siyengar04, Skarletto, Skrauz, Skyedra, SlamBamActionman, slarticodefast, Slava0135, snebl, Snowni, snowsignal, SonicHDC, SoulFN, SoulSloth, SpaceManiac, SpeltIncorrectyl, SphiraI, spoogemonster, ssdaniel24, Stealthbomber16, StrawberryMoses, Subversionary, 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, tosatur, TsjipTsjip, Tunguso4ka, TurboTrackerss14, Tyler-IN, Tyzemol, UbaserB, UBlueberry, UKNOWH, Uriende, UristMcDorf, Vaaankas, Varen, VasilisThePikachu, veliebm, Veritius, Vermidia, Verslebas, VigersRay, Visne, volundr-, Vordenburg, vulppine, wafehling, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem +0x6273, 2013HORSEMEATSCANDAL, 20kdc, 21Melkuu, 4dplanner, 612git, 778b, Ablankmann, Acruid, actioninja, adamsong, Admiral-Obvious-001, Adrian16199, Aerocrux, Aexxie, Agoichi, Ahion, AJCM-git, AjexRose, Alekshhh, AlexMorgan3817, AlexUm418, AlmondFlour, AlphaQwerty, Altoids1, amylizzle, ancientpower, ArchPigeon, Arendian, arimah, Arteben, AruMoon, as334, AsikKEsel, asperger-sind, avghdev, AzzyIsNotHere, BananaFlambe, Baptr0b0t, BasedUser, beck-thompson, BellwetherLogic, BGare, BingoJohnson-zz, BismarckShuffle, Bixkitts, Blackern5000, Blazeror, Boaz1111, BobdaBiscuit, brainfood1183, Brandon-Huu, Bright0, brndd, BubblegumBlue, BYONDFuckery, c4llv07e, CakeQ, Callmore, CaptainSqrBeard, Carbonhell, casperr04, 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, Doctor-Cpu, DoctorBeard, DogZeroX, dontbetank, Doru991, DoubleRiceEddiedd, DoutorWhite, DrMelon, DrSmugleaf, drteaspoon420, DTanxxx, DubiousDoggo, Duddino, DuskyJay, 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, GalacticChimp, gbasood, Geekyhobo, Genkail, Ghagliiarghii, Git-Nivrak, github-actions[bot], gituhabu, GNF54, Golinth, GoodWheatley, Gotimanga, graevy, GreyMario, gusxyz, Gyrandola, h3half, Hanzdegloker, Hardly3D, harikattar, Hebiman, Henry12116, HerCoyote23, hitomishirichan, Hmeister-real, HoofedEar, hord-brayden, hubismal, Hugal31, Huxellberger, Hyenh, iacore, IamVelcroboy, icekot8, igorsaux, ike709, Illiux, Ilya246, IlyaElDunaev, Injazz, Insineer, IntegerTempest, Interrobang01, IProduceWidgets, ItsMeThom, j-giebel, Jackal298, Jackrost, jamessimo, janekvap, Jark255, JerryImMouse, Jessetriesagain, jessicamaybe, Jezithyr, jicksaw, JiimBob, JoeHammad1844, joelhed, JohnGinnane, johnku1, joshepvodka, jproads, Jrpl, juliangiebel, JustArt1m, JustCone14, JustinTether, JustinTrotter, K-Dynamic, Kadeo64, KaiShibaa, kalane15, kalanosh, Keer-Sar, KEEYNy, Keikiru, Kelrak, kerisargit, keronshb, KIBORG04, Killerqu00, KingFroozy, kira-er, Kit0vras, KittenColony, Kmc2000, Ko4ergaPunk, komunre, koteq, KrasnoshchekovPavel, Krunklehorn, Kukutis96513, kxvvv, Lamrr, LankLTE, lapatison, Leander-0, LetterN, Level10Cybermancer, lever1209, LightVillet, 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, MishaUnity, MisterMecky, Mith-randalf, Moneyl, Moomoobeef, moony, Morb0, Mr0maks, musicmanvr, Myakot, Myctai, N3X15, Nairodian, Naive817, namespace-Memory, NickPowers43, nikthechampiongr, Nimfar11, Nirnael, nmajask, nok-ko, Nopey, notafet, notquitehadouken, noudoit, noverd, 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, Rane, ravage123321, rbertoche, Redict, RedlineTriad, RednoWCirabrab, RemberBM, RemieRichards, RemTim, rene-descartes2021, RiceMar1244, RieBi, Rinkashikachi, Rockdtben, rolfero, rosieposieeee, 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, Subversionary, 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, 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, waylon531, weaversam8, Willhelm53, wixoaGit, WlarusFromDaSpace, wrexbe, xRiriq, yathxyz, Ygg01, YotaXP, YuriyKiss, zach-hill, Zandario, Zap527, Zealith-Gamer, ZelteHonor, zerorulez, zionnBE, zlodo, ZNixian, ZoldorfTheWizard, Zumorica, Zymem diff --git a/Resources/Locale/en-US/accessories/vox-facial-hair.ftl b/Resources/Locale/en-US/accessories/vox-facial-hair.ftl index 48b19ca74b1..a63b0b5a398 100644 --- a/Resources/Locale/en-US/accessories/vox-facial-hair.ftl +++ b/Resources/Locale/en-US/accessories/vox-facial-hair.ftl @@ -1,5 +1,5 @@ -marking-VoxFacialHairColonel = Vox Colonel -marking-VoxFacialHairFu = Quill Fu -marking-VoxFacialHairNeck = Neck Quills -marking-VoxFacialHairBeard = Quill Beard -marking-VoxFacialHairRuffBeard = Ruff Beard +marking-VoxFacialHairBeard = Vox Beard (Quills) +marking-VoxFacialHairColonel = Vox Moustache (Colonel) +marking-VoxFacialHairFu = Vox Moustache (Quill Fu) +marking-VoxFacialHairNeck = Vox Beard (Neck Quills) +marking-VoxFacialHairMane = Vox Beard (Mane) diff --git a/Resources/Locale/en-US/accessories/vox-hair.ftl b/Resources/Locale/en-US/accessories/vox-hair.ftl index cf98d0b4f98..94483fd6a6c 100644 --- a/Resources/Locale/en-US/accessories/vox-hair.ftl +++ b/Resources/Locale/en-US/accessories/vox-hair.ftl @@ -1,13 +1,22 @@ -marking-VoxHairShortQuills = Short Vox Quills -marking-VoxHairKingly = Vox Kingly marking-VoxHairAfro = Vox Afro -marking-VoxHairMohawk = Vox Mohawk -marking-VoxHairYasuhiro = Vox Yasuhiro +marking-VoxHairBraids = Vox Braids +marking-VoxHairCrestedQuills = Vox Crested Quills +marking-VoxHairEmperorQuills = Vox Emperor Quills +marking-VoxHairFlowing = Vox Flowing +marking-VoxHairHawk = Vox Hawk marking-VoxHairHorns = Vox Horns -marking-VoxHairNights = Vox Nights -marking-VoxHairSurf = Vox Surf -marking-VoxHairCropped = Vox Cropped -marking-VoxHairRuffhawk = Vox Ruffhawk -marking-VoxHairRows = Vox Rows +marking-VoxHairKeelQuills = Vox Keel Quills +marking-VoxHairKeetQuills = Vox Keet Quills +marking-VoxHairKingly = Vox Kingly +marking-VoxHairLongBraid = Vox Long Braid marking-VoxHairMange = Vox Mange +marking-VoxHairMohawk = Vox Mohawk +marking-VoxHairNights = Vox Nights marking-VoxHairPony = Vox Pony +marking-VoxHairRazorClipped = Vox Razor (Clipped) +marking-VoxHairRazor = Vox Razor +marking-VoxHairSortBraid = Vox Short Braid +marking-VoxHairShortQuills = Vox Short Quills +marking-VoxHairSurf = Vox Surf +marking-VoxHairTielQuills = Vox Tiel Quills +marking-VoxHairYasu = Vox Yasuhiro diff --git a/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl b/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl index 8dbbaf3edd7..51a049aab17 100644 --- a/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl +++ b/Resources/Locale/en-US/chemistry/components/solution-scanner-component.ftl @@ -3,3 +3,4 @@ scannable-solution-verb-message = Examine the chemical composition. scannable-solution-main-text = It contains the following chemicals: scannable-solution-empty-container = It contains no chemicals. scannable-solution-chemical = - {$amount}u [color={$color}]{$type}[/color] +scannable-solution-temperature = Solution temperature: {$temperature}K \ No newline at end of file diff --git a/Resources/Locale/en-US/commands/toolshed-commands.ftl b/Resources/Locale/en-US/commands/toolshed-commands.ftl index 04f6aa08fac..e2536f6781b 100644 --- a/Resources/Locale/en-US/commands/toolshed-commands.ftl +++ b/Resources/Locale/en-US/commands/toolshed-commands.ftl @@ -80,3 +80,5 @@ command-description-mind-control = Assumes control of an entity with the given player. command-description-addaccesslog = Adds an access log to this entity. Do note that this bypasses the log's default limit and pause check. +command-description-stationevent-simulate = + Simulates N number of rounds in which events will occur and prints the occurrences of every event after. diff --git a/Resources/Locale/en-US/flavors/flavor-profiles.ftl b/Resources/Locale/en-US/flavors/flavor-profiles.ftl index f861624fb65..39b185bd02f 100644 --- a/Resources/Locale/en-US/flavors/flavor-profiles.ftl +++ b/Resources/Locale/en-US/flavors/flavor-profiles.ftl @@ -243,6 +243,12 @@ flavor-complex-atomic-cola = like hoarding bottle caps flavor-complex-cuba-libre = like spiked cola flavor-complex-gin-tonic = like spiked lemon-lime soda flavor-complex-screwdriver = like spiked orange juice +flavor-complex-vodka-red-bool = like a heart attack +flavor-complex-irish-bool = caffine and Ireland +flavor-complex-xeno-basher = like killing bugs +flavor-complex-budget-insuls-drink = like door hacking +flavor-complex-watermelon-wakeup = like a sweet wakeup call +flavor-complex-rubberneck = like synthetics flavor-complex-irish-car-bomb = like a spiked cola float flavor-complex-themartinez = like violets and lemon vodka flavor-complex-cogchamp = like brass diff --git a/Resources/Locale/en-US/job/job-supervisors.ftl b/Resources/Locale/en-US/job/job-supervisors.ftl index 442852daa17..d92065a40b1 100644 --- a/Resources/Locale/en-US/job/job-supervisors.ftl +++ b/Resources/Locale/en-US/job/job-supervisors.ftl @@ -1,4 +1,4 @@ -job-supervisors-centcom = CentCom official +job-supervisors-centcom = Central Command job-supervisors-captain = the captain job-supervisors-hop = the head of personnel job-supervisors-hos = the head of security diff --git a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl index c685cc8fb78..1d879fcee9d 100644 --- a/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/en-US/machine-linking/transmitter_ports.ftl @@ -19,6 +19,9 @@ signal-port-description-right = This port is invoked whenever the lever is moved signal-port-name-doorstatus = Door status signal-port-description-doorstatus = This port is invoked with HIGH when the door opens and LOW when the door finishes closing. +signal-port-name-dockstatus = Dock status +signal-port-description-dockstatus = This port is invoked with HIGH when docked and LOW when undocked. + signal-port-name-middle = Middle signal-port-description-middle = This port is invoked whenever the lever is moved to the neutral position. diff --git a/Resources/Locale/en-US/markings/vox_tattoos.ftl b/Resources/Locale/en-US/markings/vox_tattoos.ftl new file mode 100644 index 00000000000..f7f3c7292c7 --- /dev/null +++ b/Resources/Locale/en-US/markings/vox_tattoos.ftl @@ -0,0 +1,11 @@ +marking-TattooVoxHeartLeftArm-heart_l_arm = Vox Left Arm Tattoo (Heart) +marking-TattooVoxHeartLeftArm = Vox Left Arm Tattoo (Heart) + +marking-TattooVoxHeartRightArm-heart_r_arm = Vox Right Arm Tattoo (Heart) +marking-TattooVoxHeartRightArm = Vox Right Arm Tattoo (Heart) + +marking-TattooVoxHiveChest-hive_s = Vox Chest Tattoo (hive) +marking-TattooVoxHiveChest = Vox Chest Tattoo (hive) + +marking-TattooVoxNightlingChest-nightling_s = Vox Chest Tattoo (nightling) +marking-TattooVoxNightlingChest = Vox Chest Tattoo (nightling) diff --git a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl index 4c38e925583..1cac0495b02 100644 --- a/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/en-US/reagents/meta/consumable/drink/alcohol.ftl @@ -261,3 +261,21 @@ reagent-desc-whiskey-soda = For the more refined griffon. reagent-name-white-russian = white russian reagent-desc-white-russian = That's just, like, your opinion, man... + +reagent-name-vodka-red-bool = vodka red bool +reagent-desc-vodka-red-bool = Because heart failure and liver failure go hand in hand. + +reagent-name-xeno-basher = xeno basher +reagent-desc-xeno-basher = The perfect drink before an expedition. + +reagent-name-irish-bool = irish bool +reagent-desc-irish-bool = Like a bool in a Ireland shop. + +reagent-name-budget-insuls = budget insuls +reagent-desc-budget-insuls = A tider's preferred drink. + +reagent-name-watermelon-wakeup = watermelon wakeup +reagent-desc-watermelon-wakeup = If you want to be awake, this will do it... Also sweet. + +reagent-name-rubberneck = rubberneck +reagent-desc-rubberneck = A popular drink amongst those adhering to an all synthetic diet. diff --git a/Resources/Locale/en-US/speech/speech-liar.ftl b/Resources/Locale/en-US/speech/speech-liar.ftl new file mode 100644 index 00000000000..4f157d2e236 --- /dev/null +++ b/Resources/Locale/en-US/speech/speech-liar.ftl @@ -0,0 +1,132 @@ +liar-word-1 = yes +liar-word-replacement-1 = no + +liar-word-2 = no +liar-word-replacement-2 = yes + +liar-word-3 = yeah +liar-word-replacement-3 = nah + +liar-word-4 = nah +liar-word-replacement-4 = yeah + +liar-word-5 = yep +liar-word-replacement-5 = nope + +liar-word-6 = nope +liar-word-replacement-6 = yep + +liar-word-7 = sure +liar-word-replacement-7 = nah + +liar-word-8 = was +liar-word-replacement-8 = wasnt + +liar-word-9 = wasnt +liar-word-replacement-9 = was + +liar-word-10 = was +liar-word-replacement-10 = wasnt + +liar-word-11 = is +liar-word-replacement-11 = isnt + +liar-word-12 = will +liar-word-replacement-12 = wont + +liar-word-13 = dont +liar-word-replacement-13 = "" + +liar-word-14 = can +liar-word-replacement-14 = cant + +liar-word-15 = cant +liar-word-replacement-15 = can + +liar-word-16 = should +liar-word-replacement-16 = shouldnt + +liar-word-17 = dead +liar-word-replacement-17 = alive + +liar-word-18 = alive +liar-word-replacement-18 = dead + +liar-word-19 = does +liar-word-replacement-19 = doesnt + +liar-word-20 = did +liar-word-replacement-20 = didnt + +liar-word-21 = didnt +liar-word-replacement-21 = "" + +liar-word-22 = nothing +liar-word-replacement-22 = something + +liar-word-23 = something +liar-word-replacement-23 = nothing + +liar-word-24 = somebody +liar-word-replacement-24 = nobody + +liar-word-25 = nobody +liar-word-replacement-25 = somebody + +liar-word-26 = can +liar-word-replacement-26 = "can't" + +liar-word-27 = "can't" +liar-word-replacement-27 = can + +liar-word-28 = should +liar-word-replacement-28 = "shouldn't" + +liar-word-29 = do +liar-word-replacement-29 = "don't" + +liar-word-30 = "don't" +liar-word-replacement-30 = "" + +liar-word-31 = does +liar-word-replacement-31 = "doesn't" + +liar-word-32 = did +liar-word-replacement-32 = "didn't" + +liar-word-33 = "didn't" +liar-word-replacement-33 = did + +liar-word-34 = ye +liar-word-34-2 = ya +liar-word-replacement-34 = na + +liar-word-35 = na +liar-word-replacement-35 = ye + +liar-word-36 = yuh +liar-word-replacement-36 = nuh + +liar-word-37 = nuh +liar-word-replacement-37 = yuh + +liar-word-38 = love +liar-word-replacement-38 = hate + +liar-word-39 = hate +liar-word-replacement-39 = love + +liar-word-40 = like +liar-word-replacement-40 = don't like + +liar-word-41 = good +liar-word-replacement-41 = bad + +liar-word-42 = bad +liar-word-replacement-42 = good + +liar-word-43 = want +liar-word-replacement-43 = "don't want" + +liar-word-44 = not +liar-word-replacement-44 = "" diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl index 47cfbb9cc23..98264db63fd 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl @@ -1,2 +1,3 @@ -ent-MobReptilian = Urisst' Mzhand +ent-MobReptilian = Urist McScales + .suffix = Urisst' Mzhand .desc = { ent-BaseMobReptilian.desc } diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index 238ad595905..f7e9940974a 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -75,12 +75,18 @@ ent-DrinkBooger = { ent-DrinkGlass } ent-DrinkBraveBullGlass = { ent-DrinkGlass } .suffix = brave bull .desc = { ent-DrinkGlass.desc } +ent-BudgetInsulsDrinkGlass = { ent-DrinkGlass } + .suffix = budget insuls + .desc = { ent-DrinkGlass.desc } ent-DrinkCarrotJuice = { ent-DrinkGlass } .suffix = carrot juice .desc = { ent-DrinkGlass.desc } ent-DrinkChocolateGlass = { ent-DrinkGlass } .suffix = chocolate .desc = { ent-DrinkGlass.desc } +ent-RubberneckGlass = { ent-DrinkGlass } + .suffix = rubberneck + .desc = { ent-DrinkGlass.desc } ent-DrinkCoconutRum = { ent-DrinkGlass } .suffix = coconut rum .desc = { ent-DrinkGlass.desc } @@ -180,6 +186,9 @@ ent-DrinkIceGlass = { ent-DrinkGlass } ent-DrinkIceCreamGlass = { ent-DrinkGlass } .suffix = ice cream .desc = { ent-DrinkGlass.desc } +ent-IrishBoolGlass = { ent-DrinkGlass } + .suffix = irish bool + .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCarBomb = { ent-DrinkGlass } .suffix = irish car bomb .desc = { ent-DrinkGlass.desc } @@ -368,6 +377,9 @@ ent-DrinkVodkaGlass = { ent-DrinkGlass } ent-DrinkVodkaMartiniGlass = { ent-DrinkGlass } .suffix = vodka martini .desc = { ent-DrinkGlass.desc } +ent-DrinkVodkaRedBool = { ent-DrinkGlass } + .suffix = vodka red bool + .desc = { ent-DrinkGlass.desc } ent-DrinkVodkaTonicGlass = { ent-DrinkGlass } .suffix = vodka tonic .desc = { ent-DrinkGlass.desc } @@ -376,6 +388,9 @@ ent-DrinkWaterJug = water jug ent-DrinkWatermelonJuice = { ent-DrinkGlass } .suffix = watermelon juice .desc = { ent-DrinkGlass.desc } +ent-DrinkWatermelonWakeup = { ent-DrinkGlass } + .suffix = watermelon wakeup + .desc = { ent-DrinkGlass.desc } ent-DrinkWhiskeyColaGlass = { ent-DrinkGlass } .suffix = whiskey cola .desc = { ent-DrinkGlass.desc } @@ -391,6 +406,9 @@ ent-DrinkWhiteRussianGlass = { ent-DrinkGlass } ent-DrinkWineGlass = { ent-DrinkGlass } .suffix = wine .desc = { ent-DrinkGlass.desc } +ent-XenoBasherGlass = { ent-DrinkGlass } + .suffix = xeno basher + .desc = { ent-DrinkGlass.desc } ent-DrinkShakeBlue = blue milkshake .desc = { ent-DrinkGlassBase.desc } ent-DrinkShakeEmpty = shakeempty diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl index 5d40be7d818..9afda65e472 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/objects/fun/whistles.ftl @@ -1,5 +1,7 @@ ent-BaseWhistle = whistle .desc = Someone forgot to turn off kettle? +ent-Whistle = { ent-BaseWhistle } + .desc = { ent-BaseWhistle.desc } ent-SecurityWhistle = { ent-BaseWhistle } .desc = Sound of it make you feel fear. ent-SyndicateWhistle = trench whistle diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl index 71241f2630a..6efa8c5b8b1 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/entities/structures/lighting/base_lighting.ftl @@ -14,9 +14,9 @@ ent-AlwaysPoweredLightLED = { ent-AlwaysPoweredWallLight } .desc = { ent-AlwaysPoweredWallLight.desc } ent-PoweredlightExterior = { ent-Poweredlight } .desc = A light fixture. Draws power and produces light when equipped with a light tube. - .suffix = Blue + .suffix = Exterior ent-AlwaysPoweredLightExterior = { ent-AlwaysPoweredWallLight } - .suffix = Always Powered, Blue + .suffix = Always Powered, Exterior .desc = { ent-AlwaysPoweredWallLight.desc } ent-PoweredlightSodium = { ent-Poweredlight } .desc = A light fixture. Draws power and produces light when equipped with a light tube. diff --git a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl index 12467ed2b27..f2ecc77f76c 100644 --- a/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl +++ b/Resources/Locale/en-US/ss14-ru/prototypes/gamerules/events.ftl @@ -18,8 +18,6 @@ ent-NinjaSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-RevenantSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-FalseAlarm = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-GasLeak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-KudzuGrowth = { ent-BaseGameRule } @@ -38,8 +36,6 @@ ent-SolarFlare = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-VentClog = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-VentCritters = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-SlimesSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-SpiderSpawn = { ent-BaseGameRule } @@ -50,6 +46,8 @@ ent-ZombieOutbreak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-LoneOpsSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } +ent-SleeperAgentsRule = { ent-BaseGameRule } + .desc = { ent-BaseGameRule.desc } ent-MassHallucinations = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-ImmovableRodSpawn = { ent-BaseGameRule } diff --git a/Resources/Locale/en-US/station-events/events/immovable-rod.ftl b/Resources/Locale/en-US/station-events/events/immovable-rod.ftl index 1b0e0a478b7..06abcc85c38 100644 --- a/Resources/Locale/en-US/station-events/events/immovable-rod.ftl +++ b/Resources/Locale/en-US/station-events/events/immovable-rod.ftl @@ -1 +1 @@ -station-event-immovable-rod-start-announcement = What the fuck was that?!? +station-event-immovable-rod-start-announcement = High velocity unidentified object is on a collision course with the station. Impact imminent. diff --git a/Resources/Locale/en-US/station-events/events/intercept.ftl b/Resources/Locale/en-US/station-events/events/intercept.ftl new file mode 100644 index 00000000000..3f84b027be7 --- /dev/null +++ b/Resources/Locale/en-US/station-events/events/intercept.ftl @@ -0,0 +1 @@ +station-event-communication-interception = Attention! Enemy communication intercepted. Security level elevated. diff --git a/Resources/Locale/en-US/traits/traits.ftl b/Resources/Locale/en-US/traits/traits.ftl index fa17dc23ec3..c387f297531 100644 --- a/Resources/Locale/en-US/traits/traits.ftl +++ b/Resources/Locale/en-US/traits/traits.ftl @@ -38,3 +38,6 @@ trait-southern-desc = You have a different way of speakin'. trait-snoring-name = Snoring trait-snoring-desc = You will snore while sleeping. + +trait-liar-name = Pathological liar +trait-liar-desc = You can hardly bring yourself to tell the truth. Sometimes you lie anyway. \ No newline at end of file diff --git a/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl b/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl index 78629e10387..f8f273a4e9c 100644 --- a/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/vox-facial-hair.ftl @@ -2,4 +2,4 @@ marking-VoxFacialHairColonel = Вокс Полковник marking-VoxFacialHairFu = Перья Фу marking-VoxFacialHairNeck = Шейные перья marking-VoxFacialHairBeard = Перьевая борода -marking-VoxFacialHairRuffBeard = Грубая борода +marking-VoxFacialHairMane = Vox Beard (Mane) diff --git a/Resources/Locale/ru-RU/accessories/vox-hair.ftl b/Resources/Locale/ru-RU/accessories/vox-hair.ftl index 2cf71696921..e5945776628 100644 --- a/Resources/Locale/ru-RU/accessories/vox-hair.ftl +++ b/Resources/Locale/ru-RU/accessories/vox-hair.ftl @@ -1,13 +1,22 @@ marking-VoxHairShortQuills = Вокс Короткие перья +marking-VoxHairBraids = Vox Braids +marking-VoxHairCrestedQuills = Vox Crested Quills +marking-VoxHairEmperorQuills = Vox Emperor Quills +marking-VoxHairFlowing = Vox Flowing +marking-VoxHairHawk = Vox Hawk marking-VoxHairKingly = Вокс Королевская +marking-VoxHairKeelQuills = Vox Keel Quills +marking-VoxHairKeetQuills = Vox Keet Quills marking-VoxHairAfro = Вокс Афро +marking-VoxHairLongBraid = Vox Long Braid marking-VoxHairMohawk = Вокс Могавк -marking-VoxHairYasuhiro = Вокс Ясухиро marking-VoxHairHorns = Вокс Рога marking-VoxHairNights = Вокс Ночная +marking-VoxHairRazorClipped = Vox Razor (Clipped) +marking-VoxHairRazor = Vox Razor +marking-VoxHairSortBraid = Vox Short Braid marking-VoxHairSurf = Вокс Сёрфер -marking-VoxHairCropped = Вокс Короткая -marking-VoxHairRuffhawk = Вокс Руфхавк -marking-VoxHairRows = Вокс Ряды +marking-VoxHairTielQuills = Vox Tiel Quills +marking-VoxHairYasu = Vox Yasuhiro marking-VoxHairMange = Вокс Лишай marking-VoxHairPony = Вокс Пони diff --git a/Resources/Locale/ru-RU/chat/emotes.ftl b/Resources/Locale/ru-RU/chat/emotes.ftl index d446cda4edd..19c3eb1ec38 100644 --- a/Resources/Locale/ru-RU/chat/emotes.ftl +++ b/Resources/Locale/ru-RU/chat/emotes.ftl @@ -55,6 +55,5 @@ chat-emote-msg-cough = кашляет chat-emote-msg-catmeow = мяукает chat-emote-msg-cathisses = шипит chat-emote-msg-monkeyscreeches = кричит -chat-emote-msg-robotbeep = издаёт бип chat-emote-msg-yawn = зевает chat-emote-msg-snore = храпит diff --git a/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl b/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl index e58b5bf43cf..34d78d4ec29 100644 --- a/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl +++ b/Resources/Locale/ru-RU/chemistry/components/solution-scanner-component.ftl @@ -3,3 +3,4 @@ scannable-solution-verb-message = Изучить химический соста scannable-solution-main-text = Содержит следующие химические вещества: scannable-solution-empty-container = Не содержит химических веществ. scannable-solution-chemical = - { $amount }ед. [color={ $color }]{ $type }[/color] +scannable-solution-temperature = Solution temperature: { $temperature }K diff --git a/Resources/Locale/ru-RU/commands/toolshed-commands.ftl b/Resources/Locale/ru-RU/commands/toolshed-commands.ftl index 6ccb81c506c..ef971d86131 100644 --- a/Resources/Locale/ru-RU/commands/toolshed-commands.ftl +++ b/Resources/Locale/ru-RU/commands/toolshed-commands.ftl @@ -39,3 +39,4 @@ command-description-solution-adjreagent = Adjusts the given reagent on the given command-description-mind-get = Grabs the mind from the entity, if any. command-description-mind-control = Assumes control of an entity with the given player. command-description-addaccesslog = Adds an access log to this entity. Do note that this bypasses the log's default limit and pause check. +command-description-stationevent-simulate = Simulates N number of rounds in which events will occur and prints the occurrences of every event after. diff --git a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl index df48b275f98..8c77313dc59 100644 --- a/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl +++ b/Resources/Locale/ru-RU/flavors/flavor-profiles.ftl @@ -248,6 +248,12 @@ flavor-complex-gin-tonic = как крепкая газировка с лимо flavor-complex-screwdriver = как крепкий апельсиновый сок flavor-complex-cogchamp = как латунь flavor-complex-themartinez = как фиалки и лимонная водка +flavor-complex-vodka-red-bool = like a heart attack +flavor-complex-irish-bool = caffine and Ireland +flavor-complex-xeno-basher = like killing bugs +flavor-complex-budget-insuls-drink = like door hacking +flavor-complex-watermelon-wakeup = like a sweet wakeup call +flavor-complex-rubberneck = like synthetics flavor-complex-irish-car-bomb = как шипучая пенка колы ### This is exactly what pilk tastes like. I'm not even joking. I might've been a little drunk though diff --git a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl index 85e40764d02..80bc4ce0d8a 100644 --- a/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl +++ b/Resources/Locale/ru-RU/machine-linking/transmitter_ports.ftl @@ -12,6 +12,8 @@ signal-port-name-right = Направо signal-port-description-right = Этот порт задействуется всякий раз, когда рычаг перемещается в крайнее правое положение. signal-port-name-doorstatus = Статус шлюза signal-port-description-doorstatus = Этот порт задействуется с высоким уровнем, когда с устройством взаимодействуют, и низким уровнем в закрытом состоянии. +signal-port-name-dockstatus = Dock status +signal-port-description-dockstatus = This port is invoked with HIGH when docked and LOW when undocked. signal-port-name-middle = Середина signal-port-description-middle = Этот порт задействуется всякий раз, когда рычаг перемещается в нейтральное положение. signal-port-name-timer-trigger = Таймер-триггер diff --git a/Resources/Locale/ru-RU/markings/vox_tattoos.ftl b/Resources/Locale/ru-RU/markings/vox_tattoos.ftl new file mode 100644 index 00000000000..e5e9f494e70 --- /dev/null +++ b/Resources/Locale/ru-RU/markings/vox_tattoos.ftl @@ -0,0 +1,8 @@ +marking-TattooVoxHeartLeftArm-heart_l_arm = Vox Left Arm Tattoo (Heart) +marking-TattooVoxHeartLeftArm = Vox Left Arm Tattoo (Heart) +marking-TattooVoxHeartRightArm-heart_r_arm = Vox Right Arm Tattoo (Heart) +marking-TattooVoxHeartRightArm = Vox Right Arm Tattoo (Heart) +marking-TattooVoxHiveChest-hive_s = Vox Chest Tattoo (hive) +marking-TattooVoxHiveChest = Vox Chest Tattoo (hive) +marking-TattooVoxNightlingChest-nightling_s = Vox Chest Tattoo (nightling) +marking-TattooVoxNightlingChest = Vox Chest Tattoo (nightling) diff --git a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl index 0d8567019c0..5b200b32544 100644 --- a/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl +++ b/Resources/Locale/ru-RU/reagents/meta/consumable/drink/alcohol.ftl @@ -174,3 +174,15 @@ reagent-name-whiskey-soda = виски-содовая reagent-desc-whiskey-soda = Невероятно освежающе! reagent-name-white-russian = белый русский reagent-desc-white-russian = Но это только твоё мнение, чувак. +reagent-name-vodka-red-bool = vodka red bool +reagent-desc-vodka-red-bool = Because heart failure and liver failure go hand in hand. +reagent-name-xeno-basher = xeno basher +reagent-desc-xeno-basher = The perfect drink before an expedition. +reagent-name-irish-bool = irish bool +reagent-desc-irish-bool = Like a bool in a Ireland shop. +reagent-name-budget-insuls = budget insuls +reagent-desc-budget-insuls = A tider's preferred drink. +reagent-name-watermelon-wakeup = watermelon wakeup +reagent-desc-watermelon-wakeup = If you want to be awake, this will do it... Also sweet. +reagent-name-rubberneck = rubberneck +reagent-desc-rubberneck = A popular drink amongst those adhering to an all synthetic diet. diff --git a/Resources/Locale/ru-RU/speech/speech-liar.ftl b/Resources/Locale/ru-RU/speech/speech-liar.ftl new file mode 100644 index 00000000000..b0f9c6b012a --- /dev/null +++ b/Resources/Locale/ru-RU/speech/speech-liar.ftl @@ -0,0 +1,89 @@ +liar-word-1 = yes +liar-word-replacement-1 = no +liar-word-2 = no +liar-word-replacement-2 = yes +liar-word-3 = yeah +liar-word-replacement-3 = nah +liar-word-4 = nah +liar-word-replacement-4 = yeah +liar-word-5 = yep +liar-word-replacement-5 = nope +liar-word-6 = nope +liar-word-replacement-6 = yep +liar-word-7 = sure +liar-word-replacement-7 = nah +liar-word-8 = was +liar-word-replacement-8 = wasnt +liar-word-9 = wasnt +liar-word-replacement-9 = was +liar-word-10 = was +liar-word-replacement-10 = wasnt +liar-word-11 = is +liar-word-replacement-11 = isnt +liar-word-12 = will +liar-word-replacement-12 = wont +liar-word-13 = dont +liar-word-replacement-13 = "" +liar-word-14 = can +liar-word-replacement-14 = cant +liar-word-15 = cant +liar-word-replacement-15 = can +liar-word-16 = should +liar-word-replacement-16 = shouldnt +liar-word-17 = dead +liar-word-replacement-17 = alive +liar-word-18 = alive +liar-word-replacement-18 = dead +liar-word-19 = does +liar-word-replacement-19 = doesnt +liar-word-20 = did +liar-word-replacement-20 = didnt +liar-word-21 = didnt +liar-word-replacement-21 = "" +liar-word-22 = nothing +liar-word-replacement-22 = something +liar-word-23 = something +liar-word-replacement-23 = nothing +liar-word-24 = somebody +liar-word-replacement-24 = nobody +liar-word-25 = nobody +liar-word-replacement-25 = somebody +liar-word-26 = can +liar-word-replacement-26 = "can't" +liar-word-27 = "can't" +liar-word-replacement-27 = can +liar-word-28 = should +liar-word-replacement-28 = "shouldn't" +liar-word-29 = do +liar-word-replacement-29 = "don't" +liar-word-30 = "don't" +liar-word-replacement-30 = "" +liar-word-31 = does +liar-word-replacement-31 = "doesn't" +liar-word-32 = did +liar-word-replacement-32 = "didn't" +liar-word-33 = "didn't" +liar-word-replacement-33 = did +liar-word-34 = ye +liar-word-34-2 = ya +liar-word-replacement-34 = na +liar-word-35 = na +liar-word-replacement-35 = ye +liar-word-36 = yuh +liar-word-replacement-36 = nuh +liar-word-37 = nuh +liar-word-replacement-37 = yuh +liar-word-38 = love +liar-word-replacement-38 = hate +liar-word-39 = hate +liar-word-replacement-39 = love +liar-word-40 = like +liar-word-replacement-40 = don't like +liar-word-41 = good +liar-word-replacement-41 = bad +liar-word-42 = bad +liar-word-replacement-42 = good +liar-word-43 = want +liar-word-replacement-43 = "don't want" +liar-word-44 = not +liar-word-replacement-44 = "" diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl index d4adc9de9bc..9c059239bf5 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/mobs/player/reptilian.ftl @@ -1,2 +1,3 @@ ent-MobReptilian = Урист МакХэндс Унатх .desc = { ent-BaseMobReptilian.desc } + .suffix = Urisst' Mzhand diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl index 2fe22c6b653..92931a4c64f 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/consumable/drinks/drinks.ftl @@ -75,12 +75,18 @@ ent-DrinkBooger = { ent-DrinkGlass } ent-DrinkBraveBullGlass = { ent-DrinkGlass } .suffix = Храбрый бык .desc = { ent-DrinkGlass.desc } +ent-BudgetInsulsDrinkGlass = { ent-DrinkGlass } + .suffix = budget insuls + .desc = { ent-DrinkGlass.desc } ent-DrinkCarrotJuice = { ent-DrinkGlass } .suffix = Морковный сок .desc = { ent-DrinkGlass.desc } ent-DrinkChocolateGlass = { ent-DrinkGlass } .suffix = Горячий шоколад .desc = { ent-DrinkGlass.desc } +ent-RubberneckGlass = { ent-DrinkGlass } + .suffix = rubberneck + .desc = { ent-DrinkGlass.desc } ent-DrinkCoconutRum = { ent-DrinkGlass } .suffix = coconut rum .desc = { ent-DrinkGlass.desc } @@ -180,6 +186,9 @@ ent-DrinkIceGlass = { ent-DrinkGlass } ent-DrinkIceCreamGlass = { ent-DrinkGlass } .suffix = Мороженое .desc = { ent-DrinkGlass.desc } +ent-IrishBoolGlass = { ent-DrinkGlass } + .suffix = irish bool + .desc = { ent-DrinkGlass.desc } ent-DrinkIrishCarBomb = { ent-DrinkGlass } .suffix = Ирландская автомобильная бомба .desc = { ent-DrinkGlass.desc } @@ -368,6 +377,9 @@ ent-DrinkVodkaGlass = { ent-DrinkGlass } ent-DrinkVodkaMartiniGlass = { ent-DrinkGlass } .suffix = Водка-мартини .desc = { ent-DrinkGlass.desc } +ent-DrinkVodkaRedBool = { ent-DrinkGlass } + .suffix = vodka red bool + .desc = { ent-DrinkGlass.desc } ent-DrinkVodkaTonicGlass = { ent-DrinkGlass } .suffix = Водка-тоник .desc = { ent-DrinkGlass.desc } @@ -376,6 +388,9 @@ ent-DrinkWaterJug = кувшин воды ent-DrinkWatermelonJuice = { ent-DrinkGlass } .suffix = Арбузный сок .desc = { ent-DrinkGlass.desc } +ent-DrinkWatermelonWakeup = { ent-DrinkGlass } + .suffix = watermelon wakeup + .desc = { ent-DrinkGlass.desc } ent-DrinkWhiskeyColaGlass = { ent-DrinkGlass } .suffix = Виски-кола .desc = { ent-DrinkGlass.desc } @@ -391,6 +406,9 @@ ent-DrinkWhiteRussianGlass = { ent-DrinkGlass } ent-DrinkWineGlass = { ent-DrinkGlass } .suffix = Вино .desc = { ent-DrinkGlass.desc } +ent-XenoBasherGlass = { ent-DrinkGlass } + .suffix = xeno basher + .desc = { ent-DrinkGlass.desc } ent-DrinkShakeBlue = голубой молочный коктейль .desc = { ent-DrinkGlassBase.desc } ent-DrinkShakeEmpty = пустой бокал коктейля diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl index c7dc899045e..f9ee8579d1b 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/devices/syndicate_gadgets/reinforcement_teleporter.ftl @@ -14,4 +14,6 @@ ent-ReinforcementRadioSyndicateCyborgAssault = { ent-ReinforcementRadioSyndicate .suffix = радио подкрепления штурмового киборга Синдиката .desc = Призовите хорошо вооружённого штурмового киборга, немедленно! .suffix = Ядерные оперативники + # Corvax-HiddenDesc-End + diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl index 42970d5adf3..90c4e1ffccd 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/fun/whistles.ftl @@ -1,5 +1,7 @@ ent-BaseWhistle = свисток .desc = Кто-то забыл выключить чайник? +ent-Whistle = { ent-BaseWhistle } + .desc = { ent-BaseWhistle.desc } ent-SecurityWhistle = { ent-BaseWhistle } .desc = Его звук внушает вам ужас. ent-SyndicateWhistle = траншейный свисток diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl index bee94006a02..0d65f2b78c2 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/entities/objects/power/portable_recharger.ftl @@ -1,2 +1,2 @@ -ent-PortableRecharger = переносной зарядник +ent-PortableRecharger = переносной зарядник .desc = Высокотехнологичное зарядное устройство, адаптированное для мобильности. diff --git a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl index e67763b3211..6bfa4450d1a 100644 --- a/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl +++ b/Resources/Locale/ru-RU/ss14-ru/prototypes/gamerules/events.ftl @@ -18,8 +18,6 @@ ent-NinjaSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-RevenantSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-FalseAlarm = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-GasLeak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-KudzuGrowth = { ent-BaseGameRule } @@ -40,12 +38,12 @@ ent-VentClog = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-SlimesSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } -ent-VentCritters = { ent-BaseGameRule } - .desc = { ent-BaseGameRule.desc } ent-SpiderSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-SpiderClownSpawn = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } +ent-SleeperAgentsRule = { ent-BaseGameRule } + .desc = { ent-BaseGameRule.desc } ent-ZombieOutbreak = { ent-BaseGameRule } .desc = { ent-BaseGameRule.desc } ent-LoneOpsSpawn = { ent-BaseGameRule } diff --git a/Resources/Locale/ru-RU/station-events/events/intercept.ftl b/Resources/Locale/ru-RU/station-events/events/intercept.ftl new file mode 100644 index 00000000000..f6867479cf7 --- /dev/null +++ b/Resources/Locale/ru-RU/station-events/events/intercept.ftl @@ -0,0 +1 @@ +station-event-communication-interception = Attention! Enemy communication intercepted. Security level elevated. diff --git a/Resources/Locale/ru-RU/traits/traits.ftl b/Resources/Locale/ru-RU/traits/traits.ftl index 1f01cdd0286..5827288f6b8 100644 --- a/Resources/Locale/ru-RU/traits/traits.ftl +++ b/Resources/Locale/ru-RU/traits/traits.ftl @@ -25,3 +25,5 @@ trait-southern-name = Диалект юга США trait-southern-desc = У вас другая манера речи. Работает только с английским. trait-snoring-name = Храп trait-snoring-desc = Вы храпите во время сна. +trait-liar-name = Pathological liar +trait-liar-desc = You can hardly bring yourself to tell the truth. Sometimes you lie anyway. diff --git a/Resources/Maps/corvax_ishimura.yml b/Resources/Maps/corvax_ishimura.yml index 9ba981e3c99..549f3ec9aa1 100644 --- a/Resources/Maps/corvax_ishimura.yml +++ b/Resources/Maps/corvax_ishimura.yml @@ -3,6 +3,7 @@ meta: postmapinit: false tilemap: 0: Space + 20: FloorArcadeBlue 3: FloorArcadeRed 5: FloorAsteroidIronsand 6: FloorAsteroidIronsandUnvariantized @@ -10,11 +11,15 @@ tilemap: 8: FloorAsteroidSandDug 9: FloorAsteroidSandRed 10: FloorAsteroidSandUnvariantized + 15: FloorAstroGrass + 28: FloorAstroIce 14: FloorBar 16: FloorBlue 17: FloorBlueCircuit + 11: FloorCarpetClown 25: FloorClown 26: FloorConcrete + 39: FloorConcreteMono 29: FloorDark 30: FloorDarkDiagonal 31: FloorDarkDiagonalMini @@ -22,12 +27,14 @@ tilemap: 33: FloorDarkMini 34: FloorDarkMono 35: FloorDarkOffset + 19: FloorDarkPavement 37: FloorDarkPavementVertical 38: FloorDarkPlastic 40: FloorDirt 42: FloorElevatorShaft 44: FloorFreezer 45: FloorGlass + 21: FloorGold 47: FloorGrass 48: FloorGrassDark 50: FloorGrassLight @@ -43,6 +50,9 @@ tilemap: 62: FloorLino 64: FloorMetalDiamond 65: FloorMime + 4: FloorMiningDark + 23: FloorMiningLight + 24: FloorMowedAstroGrass 70: FloorOldConcrete 71: FloorOldConcreteMono 73: FloorPlanetDirt @@ -51,14 +61,19 @@ tilemap: 78: FloorReinforcedHardened 79: FloorRockVault 80: FloorShowroom + 2: FloorShuttleBlack 82: FloorShuttleBlue + 36: FloorShuttleGrey 84: FloorShuttleOrange 86: FloorShuttleRed 87: FloorShuttleWhite 91: FloorSteel + 13: FloorSteelBurnt + 12: FloorSteelDamaged 96: FloorSteelDiagonal 97: FloorSteelDiagonalMini 98: FloorSteelDirty + 18: FloorSteelHerringbone 102: FloorSteelMono 106: FloorTechMaint 107: FloorTechMaint2 @@ -71,228 +86,247 @@ tilemap: 115: FloorWhiteMono 119: FloorWhitePlastic 120: FloorWood + 1: FloorWoodLarge 122: FloorWoodTile 123: Lattice 124: Plating 125: PlatingAsteroid + 22: PlatingBurnt + 27: PlatingDamaged entities: - proto: "" entities: - - uid: 89 + - uid: 1 + components: + - type: MetaData + name: USG_Ishimura + - type: Transform + - type: Map + mapPaused: True + - type: PhysicsMap + - type: GridTree + - type: MovedGrids + - type: Broadphase + - type: OccluderTree + - type: LoadedMap + - type: BecomesStation + id: Ishimura + - type: NavMap + - uid: 2 components: - type: MetaData name: "" - type: Transform - parent: 6561 + parent: 1 - type: MapGrid chunks: -1,-1: ind: -1,-1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAMAAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAMgAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAMAAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAPAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAWwAAAAAAWwAAAAAAMAAAAAAAMgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAcwAAAAAAWwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAcwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAcwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: IQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAWwAAAAAADwAAAAAADwAAAAAAKAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAPAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADwAAAAAAKAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAADwAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAASQAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAWwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAADwAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAADwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAPAAAAAAAPAAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAADwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAPAAAAAAAfAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAKAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAA version: 6 -1,0: ind: -1,0 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbwAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAdwAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 0,0: ind: 0,0 - tiles: WwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAagAAAAAAagAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAIQAAAAAAagAAAAAAagAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + tiles: WwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAHgAAAAAAagAAAAAAagAAAAAAHgAAAAAAHgAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAALQAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAIQAAAAAAHgAAAAAAIQAAAAAAagAAAAAAagAAAAAAIQAAAAAAIQAAAAAALQAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAdwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAdwAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAALQAAAAAALQAAAAAAdwAAAAAAfAAAAAAAdwAAAAAALQAAAAAALQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: WwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAKAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA + tiles: WwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAACwAAAAAACwAAAAAACwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALQAAAAAACwAAAAAALQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAbgAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAA version: 6 1,0: ind: 1,0 - tiles: fAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAHwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAA + tiles: fAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAJwAAAAAANQAAAAAANQAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAHgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHgAAAAAAHgAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAHwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAHwAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAbgAAAAAAbgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAA version: 6 1,-1: ind: 1,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAALQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAA version: 6 2,0: ind: 2,0 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAANQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAANQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAJQAAAAAAJQAAAAAAWwAAAAAAWwAAAAAAHQAAAAAALQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAANQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAALQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAANQAAAAAAfAAAAAAALQAAAAAAHQAAAAAALQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAA version: 6 2,-1: ind: 2,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAWwAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAAHQAAAAAATgAAAAAAYAAAAAAATgAAAAAATgAAAAAATgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAIgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAeAAAAAAAeAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIQAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAALQAAAAAAfAAAAAAALQAAAAAALQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 0,-2: ind: 0,-2 - tiles: fAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAA + tiles: fAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAUAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAVwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAEgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAA version: 6 0,-3: ind: 0,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAATgAAAAAAOQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAOQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAOQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAOQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-2: ind: -1,-2 - tiles: ewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAQAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAQAAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: ewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAEwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAEgAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAWwAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAIgAAAAAAIAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAfAAAAAAAIAAAAAAAIgAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAIAAAAAAAEgAAAAAAIAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA version: 6 -2,-2: ind: -2,-2 - tiles: ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAWwAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAIQAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAIQAAAAAAIQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAWwAAAAAAIQAAAAAA version: 6 -2,-1: ind: -2,-1 - tiles: agAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAAfAAAAAAADgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAA + tiles: agAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAADgAAAAAALQAAAAAADgAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAPgAAAAAAPgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAADgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAA version: 6 1,-2: ind: 1,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -1,-3: ind: -1,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAATQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAewAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAATgAAAAAATgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAOQAAAAAATgAAAAAAOQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAewAAAAAAfAAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAAwAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAEwAAAAAAEwAAAAAAEwAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAA version: 6 -3,-1: ind: -3,-1 - tiles: fAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAbgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAfAAAAAAAagAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAagAAAAAA + tiles: FwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJAAAAAAAJAAAAAAAJAAAAAAAfAAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAQQAAAAAAbgAAAAAAbgAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAbgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAagAAAAAAfAAAAAAAagAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGQAAAAAAGQAAAAAAGQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAagAAAAAA version: 6 -3,-2: ind: -3,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA version: 6 -2,0: ind: -2,0 - tiles: PgAAAAAAPgAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAAfAAAAAAADgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: PgAAAAAAPgAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAADgAAAAAALQAAAAAADgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAfAAAAAAAawAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAawAAAAAAfAAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAFgAAAAAAFgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -3,0: ind: -3,0 - tiles: eAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAawAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA + tiles: eAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAFgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAawAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA version: 6 -4,0: ind: -4,0 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAALQAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAALQAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAeAAAAAAALQAAAAAAeAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAALQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAA version: 6 -4,-1: ind: -4,-1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAATQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: MwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAeAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -5,0: ind: -5,0 - tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAegAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: egAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAegAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALQAAAAAALQAAAAAAegAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAALQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -5,-1: ind: -5,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAYAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAKAAAAAAAKAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAKAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAYAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAagAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAA version: 6 -2,1: ind: -2,1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAewAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAA + tiles: AgAAAAAAWwAAAAAAWwAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAawAAAAAAawAAAAAAfAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAFAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAewAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAA version: 6 -3,1: ind: -3,1 - tiles: awAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA + tiles: awAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAawAAAAAAawAAAAAAawAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAPgAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAA version: 6 -4,1: ind: -4,1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAAgAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAALQAAAAAAWwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAA version: 6 -5,1: ind: -5,1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAawAAAAAAFgAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAALQAAAAAALQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAA version: 6 -6,0: ind: -6,0 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: WwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAawAAAAAAawAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAYgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAWwAAAAAAYgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAbAAAAAAAWwAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAYgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAawAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAawAAAAAAawAAAAAAawAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAA version: 6 -6,1: ind: -6,1 - tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAA + tiles: WwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAewAAAAAA version: 6 -5,2: ind: -5,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAA version: 6 -4,2: ind: -4,2 - tiles: fAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAA + tiles: fAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAALwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAALQAAAAAALQAAAAAALQAAAAAAWwAAAAAALQAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAA version: 6 -4,3: ind: -4,3 - tiles: fAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -5,3: ind: -5,3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,0: ind: 3,0 - tiles: IwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAIwAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: IwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAKgAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAANgAAAAAAEQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAKgAAAAAANgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAIwAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAUAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAfAAAAAAAUAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,1: ind: 3,1 - tiles: fAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOAAAAAAAOAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAA + tiles: fAAAAAAAfAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAIgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAIQAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAANQAAAAAANQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,0: ind: 4,0 - tiles: fAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: LQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 4,-1: ind: 4,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAALQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 3,-1: ind: 3,-1 - tiles: YAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAATQAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAA + tiles: TgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAALQAAAAAALQAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAAEQAAAAAATQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAATQAAAAAATQAAAAAATQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAA version: 6 -6,-1: ind: -6,-1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGAAAAAAAGAAAAAAAGAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAagAAAAAAYgAAAAAAYgAAAAAAYgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAYgAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAYgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAYgAAAAAAWwAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAawAAAAAAawAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAA version: 6 -7,-1: ind: -7,-1 - tiles: fAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAbAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAA + tiles: FgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAARgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAYgAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAA version: 6 -7,0: ind: -7,0 - tiles: TwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAATwAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA + tiles: bAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAARgAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFQAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAFQAAAAAATwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAATwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAATwAAAAAAIgAAAAAATwAAAAAAFQAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAFQAAAAAAFQAAAAAAFQAAAAAAFQAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAA version: 6 -6,-2: ind: -6,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -7,-2: ind: -7,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -7,1: ind: -7,1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAEQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAEQAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAZgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAA version: 6 -8,0: ind: -8,0 - tiles: TQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAAIgAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: TQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAATQAAAAAATQAAAAAATQAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAANgAAAAAANgAAAAAANgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAAIgAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAIgAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATwAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA version: 6 -8,-1: ind: -8,-1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAegAAAAAAegAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAegAAAAAAegAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIgAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATwAAAAAATwAAAAAAbAAAAAAAbAAAAAAAbAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAbAAAAAAA version: 6 -8,1: ind: -8,1 - tiles: fAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAewAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAEQAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAZgAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAEQAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAZgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAAfAAAAAAAbAAAAAAAbAAAAAAAbAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAJgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAEQAAAAAAEQAAAAAAEQAAAAAAfAAAAAAAEQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAEQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,1: ind: -1,1 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAALQAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAA version: 6 0,1: ind: 0,1 - tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAfAAAAAAATAAAAAAATAAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAA + tiles: bgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAfAAAAAAALQAAAAAALQAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAALQAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAdwAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAOgAAAAAAOgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYQAAAAAAYQAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAA version: 6 1,1: ind: 1,1 - tiles: fAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAGgAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAEAAAAAAAEAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAcAAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAA + tiles: fAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAALQAAAAAALQAAAAAALQAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAcgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAALQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAbwAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAEAAAAAAAEAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAYAAAAAAAcgAAAAAAYAAAAAAAfAAAAAAAEAAAAAAAEAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAA version: 6 -5,-2: ind: -5,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAA version: 6 2,1: ind: 2,1 - tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAawAAAAAAIQAAAAAAIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAbQAAAAAAbQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbQAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAOAAAAAAAOAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAA + tiles: HQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAALAAAAAAALAAAAAAALAAAAAAAfAAAAAAAHAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAcgAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAawAAAAAAIQAAAAAAIQAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAbQAAAAAAbQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAbQAAAAAAagAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAANQAAAAAANQAAAAAANQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAagAAAAAAfAAAAAAAagAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAGgAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,2: ind: -1,2 @@ -300,19 +334,19 @@ entities: version: 6 0,2: ind: 0,2 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAYgAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYgAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAcAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA version: 6 -3,2: ind: -3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -2,2: ind: -2,2 - tiles: fAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAOAAAAAAAOAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAPgAAAAAAPgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAATwAAAAAAQAAAAAAAQAAAAAAATwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAQAAAAAAAQAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,-2: ind: 2,-2 - tiles: AAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANAAAAAAAMwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAARgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARgAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAARgAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAARwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAANAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAANAAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAANAAAAAAAMwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAARwAAAAAANQAAAAAARgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAANAAAAAAANAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAMwAAAAAARwAAAAAANAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA + tiles: AAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANAAAAAAAMwAAAAAARgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAARgAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAARgAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAARgAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAARwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAANAAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAANAAAAAAAMwAAAAAAeAAAAAAAeAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAMwAAAAAANAAAAAAANAAAAAAAMwAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAARwAAAAAAMwAAAAAARwAAAAAANAAAAAAANQAAAAAAMwAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAANAAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAANAAAAAAAMwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAARwAAAAAANQAAAAAARgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAOQAAAAAANAAAAAAANAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAALQAAAAAALQAAAAAALQAAAAAAMwAAAAAARwAAAAAANAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAHQAAAAAA version: 6 3,-2: ind: 3,-2 @@ -320,31 +354,31 @@ entities: version: 6 4,1: ind: 4,1 - tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -4,-2: ind: -4,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAATQAAAAAATQAAAAAATQAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAfAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAFwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAAFwAAAAAAFwAAAAAAFwAAAAAAfAAAAAAAFwAAAAAA version: 6 -9,-1: ind: -9,-1 - tiles: fAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAKgAAAAAAFgAAAAAAGwAAAAAAKgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABAAAAAAAGwAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAABAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAABAAAAAAABAAAAAAABAAAAAAABAAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAATwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAATwAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAATwAAAAAAfAAAAAAAfAAAAAAA version: 6 -9,0: ind: -9,0 - tiles: fAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAA version: 6 -9,1: ind: -9,1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAATwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -8,-2: ind: -8,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAfAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAANgAAAAAANgAAAAAANgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAA version: 6 -6,2: ind: -6,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAATAAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAA version: 6 -6,3: ind: -6,3 @@ -352,7 +386,7 @@ entities: version: 6 -3,3: ind: -3,3 - tiles: ewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: ewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -7,2: ind: -7,2 @@ -368,75 +402,47 @@ entities: version: 6 1,2: ind: 1,2 - tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAYAAAAAAAYAAAAAAAYAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAPQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAMgAAAAAAMgAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAcgAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAPQAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAeAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAACQAAAAAACQAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 2,2: ind: 2,2 - tiles: fAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: fAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -10,0: ind: -10,0 - tiles: ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-4: ind: 0,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-4: ind: -1,-4 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 -2,-3: ind: -2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 -10,-1: ind: -10,-1 - tiles: ewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -2,3: - ind: -2,3 - tiles: TgAAAAAATAAAAAAATAAAAAAATgAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATAAAAAAATAAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATgAAAAAATgAAAAAATgAAAAAATgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAKgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAABAAAAAAAIAAAAAAAIAAAAAAAIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAABAAAAAAABAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAFgAAAAAAFgAAAAAAFgAAAAAAKgAAAAAAFgAAAAAAFgAAAAAAFgAAAAAA version: 6 -9,-2: ind: -9,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -9,-3: - ind: -9,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - -8,-3: - ind: -8,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA - version: 6 - 3,2: - ind: 3,2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 -10,-2: ind: -10,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -11,-2: - ind: -11,-2 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -11,-1: - ind: -11,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAA - version: 6 - -11,0: - ind: -11,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAA version: 6 2,-3: ind: 2,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAARgAAAAAAMwAAAAAARwAAAAAANAAAAAAARgAAAAAAfAAAAAAAGgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAMwAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAMwAAAAAARgAAAAAAMwAAAAAARwAAAAAANAAAAAAARgAAAAAAfAAAAAAAGgAAAAAA version: 6 3,-3: ind: 3,-3 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAGgAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAA version: 6 4,-3: ind: 4,-3 @@ -469,280 +475,280 @@ entities: color: '#DE3A3A96' id: 1 decals: - 3477: 44.999012,-12.258719 - 3486: 44.983387,-16.75872 + 2457: 44.999012,-12.258719 + 2466: 44.983387,-16.75872 - node: color: '#DE3A3A96' id: 2 decals: - 3478: 45.967762,-12.243094 - 3487: 45.967762,-16.75872 + 2458: 45.967762,-12.243094 + 2467: 45.967762,-16.75872 - node: color: '#DE3A3A96' id: 3 decals: - 3479: 46.983387,-12.258719 - 3488: 46.983387,-16.75872 + 2459: 46.983387,-12.258719 + 2468: 46.983387,-16.75872 - node: color: '#DE3A3A96' id: 4 decals: - 3480: 47.952137,-12.227469 - 3489: 47.936512,-16.75872 + 2460: 47.952137,-12.227469 + 2469: 47.936512,-16.75872 - node: color: '#DE3A3A96' id: 5 decals: - 3481: 48.920887,-12.227469 - 3490: 48.967762,-16.743095 + 2461: 48.920887,-12.227469 + 2470: 48.967762,-16.743095 - node: color: '#DE3A3A96' id: 6 decals: - 3482: 49.952137,-12.243094 - 3491: 49.983387,-16.774345 + 2462: 49.952137,-12.243094 + 2471: 49.983387,-16.774345 - node: color: '#DE3A3A96' id: 7 decals: - 3483: 50.983387,-12.243094 - 3492: 50.999012,-16.774345 + 2463: 50.983387,-12.243094 + 2472: 50.999012,-16.774345 - node: color: '#DE3A3A96' id: 8 decals: - 3484: 51.983387,-12.258719 - 3485: 51.999012,-16.72747 + 2464: 51.983387,-12.258719 + 2465: 51.999012,-16.72747 - node: color: '#FFFFFFFF' id: Bot decals: 22: -23,-20 - 345: -60,-12 - 346: -60,-13 - 347: -60,-11 - 348: -61,-10 - 349: -61,-11 - 350: -61,-12 - 351: -61,-13 - 352: -61,-14 - 353: -62,-13 - 354: -62,-12 - 355: -62,-11 - 408: -67,-11 - 409: -66,-11 - 410: -66,-10 - 411: -65,-11 - 412: -65,-12 - 413: -66,-12 - 414: -67,-12 - 415: -67,-13 - 416: -66,-13 - 417: -66,-14 - 418: -65,-13 - 557: -21,6 - 558: -19,5 - 559: -17,6 - 583: -44,1 - 684: -89,14 - 685: -87,12 - 723: -59,8 - 724: -61,7 - 745: 7,-11 - 758: -62,22 - 759: -60,20 - 764: -12,-15 - 765: -11,-15 - 766: -10,-15 - 767: -9,-15 - 828: -85,15 - 1143: 13,-1 - 1144: 14,-1 - 1145: 10,-3 - 1146: 10,-2 - 1437: -92,-11 - 1438: -91,-11 - 1439: -91,-10 - 1440: -92,-10 - 1441: -92,-9 - 1442: -91,-9 - 1677: -65,36 - 1678: -65,35 - 1679: -65,34 - 1680: -65,33 - 1681: -65,32 - 1682: -63,33 - 1683: -63,34 - 1684: -63,35 - 1685: -61,28 - 1686: -60,28 - 1687: -59,28 - 1688: -58,28 - 1689: -68,41 - 1690: -68,42 - 1691: -68,43 - 1692: -68,44 - 1693: -63,45 - 1694: -62,45 - 1695: -61,45 - 1784: -87,35 - 1785: -87,34 - 1786: -87,33 - 1787: -87,32 - 2339: 14,-4 - 2340: 15,-4 + 373: -12,-15 + 374: -11,-15 + 375: -10,-15 + 376: -9,-15 + 430: -85,15 + 654: 13,-1 + 655: 14,-1 + 656: 10,-3 + 657: 10,-2 + 1048: -65,36 + 1049: -65,35 + 1050: -65,34 + 1051: -65,33 + 1052: -65,32 + 1053: -63,33 + 1054: -63,34 + 1055: -63,35 + 1056: -61,28 + 1057: -60,28 + 1058: -59,28 + 1059: -58,28 + 1060: -68,41 + 1061: -68,42 + 1062: -68,43 + 1063: -68,44 + 1064: -63,45 + 1065: -62,45 + 1066: -61,45 + 1084: -87,35 + 1085: -87,34 + 1086: -87,33 + 1087: -87,32 + 1400: 14,-4 + 1401: 15,-4 - node: cleanable: True color: '#FFFFFFFF' id: Bot decals: - 2613: 17,-3 - 2614: 18,-3 - 2615: 19,-3 + 1614: 17,-3 + 1615: 18,-3 + 1616: 19,-3 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Bot decals: - 1991: -64,43 - 1992: -63,43 - 1993: -62,43 + 1161: -64,43 + 1162: -63,43 + 1163: -62,43 - node: color: '#52B4E996' id: BotGreyscale decals: - 2728: 31,19 - 2729: 33,19 - 2730: 32,19 - 3057: 34,19 + 1727: 31,19 + 1728: 33,19 + 1729: 32,19 + 2044: 34,19 - node: color: '#52B4E99E' id: BotGreyscale decals: - 3009: 11,16 - 3010: 11,16 - 3011: 10,16 - 3012: 10,16 + 1996: 11,16 + 1997: 11,16 + 1998: 10,16 + 1999: 10,16 - node: - color: '#BD3CABFF' - id: BotGreyscale - decals: - 2575: -6,-33 - 2576: -7,-33 - 2577: -5,-33 - - node: - color: '#D381C996' - id: BotGreyscale - decals: - 2611: 1,-39 - 2612: 2,-39 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotLeft - decals: - 405: -67,-10 - 406: -65,-14 - - node: - color: '#FFFFFFFF' - id: BotLeft - decals: - 404: -65,-10 - 407: -67,-14 - 1434: -91,-8 - 1435: -92,-12 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: BotRight + color: '#500003FF' + id: Box decals: - 358: -62,-14 + 678: 8,8 - node: color: '#FFFFFFFF' - id: BotRight + id: Box decals: - 356: -62,-10 - 359: -60,-14 - 1433: -92,-8 - 1436: -91,-12 + 3724: 1,-39 + 3725: 2,-39 + 3726: 2,-40 + 3727: 1,-40 + 3728: 0,-40 + 3729: 0,-39 + 3730: -1,-39 + 3731: -8,-33 + 3732: -9,-33 + 3733: -10,-33 + 3734: -7,-33 + 3735: -6,-33 + 3736: -5,-33 + 3942: -148,-15 + 3943: -151,-12 + 3944: -151,-4 + 3945: -148,-1 + 3946: -140,-1 + 3947: -140,-15 + 3948: -137,-4 + 3949: -137,-12 + 4369: -96,-13 + 4370: -97,-13 + 4371: -103,-15 + 5117: 29,5 + 5118: 28,5 + 5119: 27,5 + 5120: 26,5 + 5121: 25,5 + 5122: 26,9 + 5123: 28,9 + 5124: 27,9 + 5125: 29,9 + 5126: 30,9 + 5141: -107,2 + 5142: -106,2 + 5143: -105,2 + 5144: -104,2 + 5145: -111,-3 + 5146: -111,1 + 5147: -111,6 + 5148: -102,9 + 5149: -106,-2 + 5150: -106,-1 + 5151: -104,0 + 5152: -103,0 + 5153: -102,0 + 5154: -101,0 + 5155: -99,-2 + 5156: -99,-3 + 5157: -99,-4 + 5176: -91,-7 + 5177: -91,-6 + 5178: -91,-5 + 5179: -91,-8 + 5180: -91,-9 + 5181: -91,-10 + 5182: -97,-10 + 5183: -97,-9 + 5184: -111,10 + 5185: -116,8 + 5186: -117,8 + 5187: -117,10 + 5188: -116,10 + 5189: -116,-1 + 5190: -117,-1 + 5191: -117,-3 + 5192: -116,-3 + 5193: -122,-4 + 5194: -123,-4 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: BotRight - decals: - 357: -60,-10 - - node: - color: '#500003FF' id: Box decals: - 1177: 8,8 + 348: -80,-15 + 349: -80,-17 + 350: -80,-19 - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: Box + color: '#334E6DFF' + id: BoxGreyscale decals: - 426: -80,-15 - 427: -80,-17 - 428: -80,-19 + 5127: 25,7 - node: color: '#52B4E996' id: BoxGreyscale decals: - 2786: 6,12 - 2787: 6,13 - 2788: 7,13 - 2789: 8,12 - 2790: 7,12 - 2791: 8,13 - 2792: 9,13 - 2793: 9,12 - 2794: 10,12 - 2795: 10,13 + 1785: 6,12 + 1786: 6,13 + 1787: 7,13 + 1788: 8,12 + 1789: 7,12 + 1790: 8,13 + 1791: 9,13 + 1792: 9,12 + 1793: 10,12 + 1794: 10,13 - node: color: '#52B4E99E' id: BoxGreyscale decals: - 2990: 9,18 - 2991: 10,18 - 2992: 11,18 + 1977: 9,18 + 1978: 10,18 + 1979: 11,18 - node: - color: '#BD3CABFF' + color: '#8C347FFF' id: BoxGreyscale decals: - 2572: -10,-33 - 2573: -9,-33 - 2574: -8,-33 + 5130: 28,7 - node: color: '#D381C996' id: BoxGreyscale decals: - 2609: 0,-45 - 2610: -6,-45 + 1612: 0,-45 + 1613: -6,-45 + - node: + color: '#DE3A3AFF' + id: BoxGreyscale + decals: + 5129: 27,7 + - node: + color: '#EFB341FF' + id: BoxGreyscale + decals: + 5128: 26,7 - node: color: '#FFFFFFFF' id: BoxGreyscale decals: - 1158: 5,8 - 1159: 5,7 - 1160: 5,6 - 1161: 6,5 - 1162: 7,5 - 1163: 8,5 - 1164: 9,5 - 1165: 10,9 + 659: 5,8 + 660: 5,7 + 661: 5,6 + 662: 6,5 + 663: 7,5 + 664: 8,5 + 665: 9,5 + 666: 10,9 - node: color: '#52B4E99E' id: BrickTileDarkCornerNe decals: - 2975: -11,14 - 2976: -11,14 - 2977: -11,14 + 1962: -11,14 + 1963: -11,14 + 1964: -11,14 - node: color: '#D381C9FF' id: BrickTileDarkCornerNe decals: - 2522: -8,-28 + 1560: -8,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNe @@ -751,22 +757,22 @@ entities: 155: 57,10 200: 52,-4 264: 38,16 - 3774: 61,11 - 3775: 58,12 - 3816: 53,-1 - 3835: 50,1 + 2752: 61,11 + 2753: 58,12 + 2794: 53,-1 + 2811: 50,1 - node: color: '#52B4E99E' id: BrickTileDarkCornerNw decals: - 2972: -12,14 - 2973: -12,14 - 2974: -12,14 + 1959: -12,14 + 1960: -12,14 + 1961: -12,14 - node: color: '#D381C9FF' id: BrickTileDarkCornerNw decals: - 2517: -10,-28 + 1555: -10,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerNw @@ -775,23 +781,23 @@ entities: 154: 54,10 197: 59,-4 263: 30,16 - 3762: 58,-1 - 3776: 53,12 - 3777: 50,11 - 3784: 47,8 - 3833: 47,1 + 2740: 58,-1 + 2754: 53,12 + 2755: 50,11 + 2762: 47,8 + 2809: 47,1 - node: color: '#52B4E99E' id: BrickTileDarkCornerSe decals: - 2981: -11,12 - 2982: -11,12 - 2983: -11,12 + 1968: -11,12 + 1969: -11,12 + 1970: -11,12 - node: color: '#D381C9FF' id: BrickTileDarkCornerSe decals: - 2518: -8,-30 + 1556: -8,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSe @@ -800,22 +806,22 @@ entities: 136: 60,0 158: 52,12 254: 38,11 - 3760: 58,-4 - 3761: 61,-3 - 3788: 50,7 - 3801: 53,9 + 2738: 58,-4 + 2739: 61,-3 + 2766: 50,7 + 2779: 53,9 - node: color: '#52B4E99E' id: BrickTileDarkCornerSw decals: - 2978: -12,12 - 2979: -12,12 - 2980: -12,12 + 1965: -12,12 + 1966: -12,12 + 1967: -12,12 - node: color: '#D381C9FF' id: BrickTileDarkCornerSw decals: - 2519: -10,-30 + 1557: -10,-30 - node: color: '#FFFFFFFF' id: BrickTileDarkCornerSw @@ -824,54 +830,53 @@ entities: 128: 54,-2 169: 59,12 262: 30,11 - 3785: 47,7 - 3802: 58,9 - 3823: 53,-4 - 3826: 50,-3 - 3834: 47,0 + 2763: 47,7 + 2780: 58,9 + 2801: 53,-4 + 2810: 47,0 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNe decals: - 3806: 58,11 - 3814: 53,-3 - 3837: 50,-1 + 2784: 58,11 + 2792: 53,-3 + 2813: 50,-1 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerNw decals: - 3780: 53,11 - 3781: 50,8 - 3807: 61,-1 - 3813: 58,-3 + 2758: 53,11 + 2759: 50,8 + 2785: 61,-1 + 2791: 58,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSe decals: 133: 57,0 - 3792: 50,9 - 3799: 53,11 - 3840: 58,-3 + 2770: 50,9 + 2777: 53,11 + 2816: 58,-3 - node: color: '#FFFFFFFF' id: BrickTileDarkInnerSw decals: - 3800: 58,11 - 3805: 61,9 - 3838: 50,0 - 3839: 53,-3 + 2778: 58,11 + 2783: 61,9 + 2814: 50,0 + 2815: 53,-3 - node: color: '#52B4E99E' id: BrickTileDarkLineE decals: - 2984: -11,13 - 2985: -11,13 - 2986: -11,13 + 1971: -11,13 + 1972: -11,13 + 1973: -11,13 - node: color: '#D381C9FF' id: BrickTileDarkLineE decals: - 2521: -8,-29 + 1559: -8,-29 - node: color: '#FFFFFFFF' id: BrickTileDarkLineE @@ -892,57 +897,45 @@ entities: 267: 38,13 268: 38,12 280: 36,10 - 316: 39,5 - 317: 39,6 - 318: 39,7 - 319: 39,7 - 320: 39,8 - 360: -63,-10 - 361: -63,-11 - 362: -63,-11 - 363: -63,-12 - 364: -63,-12 - 365: -63,-13 - 366: -63,-14 - 391: -68,-14 - 392: -68,-13 - 393: -68,-12 - 394: -68,-11 - 395: -68,-10 - 3747: 61,10 - 3748: 61,9 - 3749: 61,8 - 3750: 61,7 - 3751: 61,6 - 3752: 61,5 - 3753: 61,4 - 3754: 61,3 - 3755: 61,2 - 3756: 61,1 - 3757: 61,0 - 3758: 61,-1 - 3759: 61,-2 - 3789: 50,8 - 3793: 53,10 - 3815: 53,-2 - 3836: 50,0 + 312: 39,5 + 313: 39,6 + 314: 39,7 + 315: 39,7 + 316: 39,8 + 2725: 61,10 + 2726: 61,9 + 2727: 61,8 + 2728: 61,7 + 2729: 61,6 + 2730: 61,5 + 2731: 61,4 + 2732: 61,3 + 2733: 61,2 + 2734: 61,1 + 2735: 61,0 + 2736: 61,-1 + 2737: 61,-2 + 2767: 50,8 + 2771: 53,10 + 2793: 53,-2 + 2812: 50,0 - node: color: '#52B4E99E' id: BrickTileDarkLineN decals: - 3001: 11,17 - 3002: 11,17 - 3003: 10,17 - 3004: 10,17 - 3005: 9,17 - 3006: 9,17 - 3007: 8,17 - 3008: 8,17 + 1988: 11,17 + 1989: 11,17 + 1990: 10,17 + 1991: 10,17 + 1992: 9,17 + 1993: 9,17 + 1994: 8,17 + 1995: 8,17 - node: color: '#D381C9FF' id: BrickTileDarkLineN decals: - 2523: -9,-28 + 1561: -9,-28 - node: color: '#FFFFFFFF' id: BrickTileDarkLineN @@ -969,33 +962,27 @@ entities: 259: 33,16 260: 32,16 261: 31,16 - 334: 40,3 - 367: -62,-15 - 368: -61,-15 - 369: -60,-15 - 387: -65,-15 - 388: -66,-15 - 389: -67,-15 - 3741: 55,12 - 3742: 54,12 - 3743: 56,12 - 3744: 57,12 - 3745: 59,11 - 3746: 60,11 - 3763: 59,-1 - 3764: 60,-1 - 3778: 51,11 - 3779: 52,11 - 3782: 49,8 - 3783: 48,8 - 3809: 57,-3 - 3810: 56,-3 - 3811: 55,-3 - 3812: 54,-3 - 3817: 52,-1 - 3818: 51,-1 - 3831: 49,1 - 3832: 48,1 + 330: 40,3 + 2719: 55,12 + 2720: 54,12 + 2721: 56,12 + 2722: 57,12 + 2723: 59,11 + 2724: 60,11 + 2741: 59,-1 + 2742: 60,-1 + 2756: 51,11 + 2757: 52,11 + 2760: 49,8 + 2761: 48,8 + 2787: 57,-3 + 2788: 56,-3 + 2789: 55,-3 + 2790: 54,-3 + 2795: 52,-1 + 2796: 51,-1 + 2807: 49,1 + 2808: 48,1 - node: color: '#FFFFFFFF' id: BrickTileDarkLineS @@ -1019,52 +1006,46 @@ entities: 272: 33,11 273: 32,11 274: 31,11 - 374: -62,-9 - 375: -61,-9 - 376: -60,-9 - 396: -67,-9 - 397: -66,-9 - 398: -65,-9 - 3786: 48,7 - 3787: 49,7 - 3790: 51,9 - 3791: 52,9 - 3794: 54,11 - 3795: 55,11 - 3796: 56,11 - 3797: 57,11 - 3803: 59,9 - 3804: 60,9 - 3819: 54,-4 - 3820: 55,-4 - 3821: 56,-4 - 3822: 57,-4 - 3824: 52,-3 - 3825: 51,-3 - 3829: 49,0 - 3830: 48,0 - 3841: 59,-3 - 3842: 60,-3 + 2764: 48,7 + 2765: 49,7 + 2768: 51,9 + 2769: 52,9 + 2772: 54,11 + 2773: 55,11 + 2774: 56,11 + 2775: 57,11 + 2781: 59,9 + 2782: 60,9 + 2797: 54,-4 + 2798: 55,-4 + 2799: 56,-4 + 2800: 57,-4 + 2802: 52,-3 + 2803: 51,-3 + 2805: 49,0 + 2806: 48,0 + 2817: 59,-3 + 2818: 60,-3 - node: color: '#52B4E99E' id: BrickTileDarkLineW decals: - 2987: -12,13 - 2988: -12,13 - 2989: -12,13 - 2993: 7,16 - 2994: 7,16 - 2995: 7,17 - 2996: 7,17 - 2997: 7,18 - 2998: 7,18 - 2999: 8,18 - 3000: 8,18 + 1974: -12,13 + 1975: -12,13 + 1976: -12,13 + 1980: 7,16 + 1981: 7,16 + 1982: 7,17 + 1983: 7,17 + 1984: 7,18 + 1985: 7,18 + 1986: 8,18 + 1987: 8,18 - node: color: '#D381C9FF' id: BrickTileDarkLineW decals: - 2520: -10,-29 + 1558: -10,-29 - node: color: '#FFFFFFFF' id: BrickTileDarkLineW @@ -1098,1362 +1079,3263 @@ entities: 277: 30,13 278: 30,12 279: 34,10 - 377: -59,-10 - 378: -59,-11 - 379: -59,-12 - 380: -59,-13 - 381: -59,-14 - 382: -64,-10 - 383: -64,-11 - 384: -64,-12 - 385: -64,-13 - 386: -64,-14 - 3765: 61,0 - 3766: 61,1 - 3767: 61,2 - 3768: 61,3 - 3769: 61,4 - 3770: 61,5 - 3771: 61,6 - 3772: 61,7 - 3773: 61,8 - 3798: 58,10 - 3808: 58,-2 - 3827: 50,-2 - 3828: 50,-1 - 3843: 50,10 - 3844: 50,9 + 2743: 61,0 + 2744: 61,1 + 2745: 61,2 + 2746: 61,3 + 2747: 61,4 + 2748: 61,5 + 2749: 61,6 + 2750: 61,7 + 2751: 61,8 + 2776: 58,10 + 2786: 58,-2 + 2804: 50,-1 + 2819: 50,10 + 2820: 50,9 - node: color: '#52B4E996' id: BrickTileSteelCornerNe decals: - 2757: 28,20 + 1756: 28,20 - node: color: '#52B4E996' id: BrickTileSteelCornerNw decals: - 2758: 24,20 + 1757: 24,20 - node: color: '#52B4E996' id: BrickTileSteelCornerSw decals: - 2756: 24,11 + 1755: 24,11 - node: color: '#52B4E99E' id: BrickTileSteelInnerNe decals: - 2935: -14,6 + 1924: -14,6 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerNe + decals: + 3129: 15,-9 + 3178: 5,-5 + 3186: 8,-6 + 3192: 3,-11 + 3226: 11,-6 + 3228: 5,-12 + 3229: 9,-10 + 3248: 27,-9 + 3254: 36,-6 + 3278: 43,-6 + 3288: 41,-10 + 3361: 0,-11 + 3362: 0,-13 + 3392: 39,-23 + 3410: 40,-21 + 3411: 40,-19 + 3429: 40,-14 - node: color: '#52B4E99E' id: BrickTileSteelInnerNw decals: - 2936: -11,6 + 1925: -11,6 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerNw + decals: + 3179: 5,-5 + 3185: 8,-5 + 3193: 5,-11 + 3207: 2,-13 + 3212: 3,-11 + 3213: 11,-10 + 3225: 11,-6 + 3245: 7,-12 + 3247: 26,-9 + 3253: 36,-6 + 3260: 39,-6 + 3355: 38,-15 + 3391: 39,-23 + 3394: 34,-24 + 3395: 34,-26 + 3407: 38,-21 + 3426: 38,-17 + 4767: -15,10 + 4768: -15,7 - node: color: '#52B4E99E' id: BrickTileSteelInnerSe decals: - 2933: -14,9 + 1922: -14,9 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerSe + decals: + 3156: 5,-7 + 3177: 5,-3 + 3190: 3,-9 + 3220: 12,-11 + 3221: 16,-11 + 3222: 19,-11 + 3223: 22,-11 + 3224: 25,-11 + 3227: 5,-12 + 3230: 9,-10 + 3250: 27,-7 + 3258: 37,-7 + 3277: 43,-4 + 3281: 43,-6 + 3289: 41,-10 + 3342: 28,-11 + 3363: 0,-13 + 3364: 0,-11 + 3393: 36,-23 + 3408: 39,-21 + 3412: 40,-19 + 3428: 40,-14 + 3431: 41,-7 - node: color: '#52B4E99E' id: BrickTileSteelInnerSw decals: - 2934: -11,9 + 1923: -11,9 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelInnerSw + decals: + 3128: 11,-7 + 3176: 5,-3 + 3184: 8,-3 + 3191: 5,-9 + 3206: 2,-11 + 3214: 11,-10 + 3215: 19,-11 + 3216: 22,-11 + 3217: 25,-11 + 3218: 16,-11 + 3219: 12,-11 + 3246: 7,-12 + 3249: 26,-7 + 3259: 39,-7 + 3341: 28,-11 + 3356: 38,-15 + 3396: 34,-26 + 3397: 34,-24 + 3398: 38,-23 + 3409: 39,-21 + 3427: 38,-17 + 3430: 38,-13 + 3433: 40,-7 - node: color: '#52B4E996' id: BrickTileSteelLineE decals: - 2741: 28,12 - 2742: 28,13 - 2743: 28,14 - 2744: 28,15 - 2745: 28,16 - 2746: 28,17 - 2747: 28,18 - 2748: 28,19 + 1740: 28,12 + 1741: 28,13 + 1742: 28,14 + 1743: 28,15 + 1744: 28,16 + 1745: 28,17 + 1746: 28,18 + 1747: 28,19 - node: color: '#52B4E99E' id: BrickTileSteelLineE decals: - 2939: -11,7 - 2940: -11,8 + 1928: -11,7 + 1929: -11,8 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineE + decals: + 3130: 15,-8 + 3131: 15,-7 + 3132: 15,-6 + 3150: 8,-5 + 3154: 5,-8 + 3155: 5,-9 + 3161: 6,-3 + 3162: 6,-2 + 3163: 6,-1 + 3172: 8,-3 + 3173: 8,-2 + 3174: 8,-1 + 3180: 5,-4 + 3183: 8,-4 + 3194: 5,-10 + 3197: 3,-10 + 3198: 5,-11 + 3199: 5,-13 + 3200: 5,-14 + 3231: 9,-11 + 3232: 9,-12 + 3233: 9,-13 + 3234: 9,-9 + 3251: 27,-8 + 3272: 46,-3 + 3273: 46,-4 + 3279: 43,-5 + 3280: 43,-7 + 3284: 41,-8 + 3285: 41,-9 + 3311: 49,-9 + 3312: 49,-10 + 3358: 0,-14 + 3359: 0,-12 + 3360: 0,-10 + 3377: 40,-23 + 3378: 40,-24 + 3379: 40,-26 + 3380: 40,-25 + 3381: 40,-27 + 3382: 36,-28 + 3383: 37,-27 + 3384: 36,-27 + 3385: 36,-26 + 3386: 36,-25 + 3387: 36,-24 - node: color: '#52B4E996' id: BrickTileSteelLineN decals: - 2749: 25,20 - 2750: 26,20 - 2751: 27,20 - 2830: 0,12 - 2831: 1,12 - 2838: 2,12 - 2839: 3,12 - 2840: -1,12 - 2841: -2,12 + 1748: 25,20 + 1749: 26,20 + 1750: 27,20 + 1829: 0,12 + 1830: 1,12 + 1837: 2,12 + 1838: 3,12 + 1839: -1,12 + 1840: -2,12 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineN + decals: + 3109: 22,-9 + 3110: 21,-9 + 3111: 20,-9 + 3112: 18,-9 + 3113: 19,-9 + 3114: 17,-9 + 3115: 16,-9 + 3133: 15,-6 + 3134: 14,-6 + 3135: 13,-6 + 3136: 12,-6 + 3137: 10,-6 + 3138: 7,-5 + 3139: 6,-5 + 3140: 4,-5 + 3141: 3,-5 + 3142: 4,-11 + 3164: 2,-1 + 3165: 3,-1 + 3166: 5,-1 + 3167: 6,-1 + 3168: 4,-1 + 3175: 8,-1 + 3188: 9,-6 + 3205: 2,-11 + 3210: 1,-11 + 3211: 1,-13 + 3235: 9,-9 + 3236: 8,-9 + 3237: 7,-9 + 3255: 37,-6 + 3256: 38,-6 + 3264: 39,-3 + 3265: 40,-3 + 3266: 41,-3 + 3267: 42,-3 + 3268: 43,-3 + 3269: 44,-3 + 3270: 45,-3 + 3271: 46,-3 + 3293: 42,-10 + 3303: 43,-9 + 3304: 44,-9 + 3305: 45,-9 + 3306: 46,-9 + 3307: 47,-9 + 3308: 47,-9 + 3309: 48,-9 + 3310: 49,-9 + 3348: 23,-9 + 3349: 24,-9 + 3350: 25,-9 + 3351: 37,-15 + 3352: 36,-15 + 3365: 40,-23 + 3366: 36,-23 + 3367: 35,-23 + 3368: 34,-23 + 3389: 37,-23 + 3390: 38,-23 + 3414: 41,-21 + 3415: 42,-21 + 3416: 41,-19 + 3417: 43,-19 + 3422: 43,-19 + 3423: 43,-21 + 3424: 41,-21 + 3425: 41,-19 - node: color: '#52B4E996' id: BrickTileSteelLineS decals: - 2832: 0,12 - 2833: 1,12 - 2842: -2,12 - 2843: -1,12 - 2844: 2,12 - 2845: 3,12 + 1831: 0,12 + 1832: 1,12 + 1841: -2,12 + 1842: -1,12 + 1843: 2,12 + 1844: 3,12 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineS + decals: + 3116: 21,-11 + 3117: 20,-11 + 3118: 18,-11 + 3119: 17,-11 + 3120: 15,-11 + 3121: 14,-11 + 3122: 13,-11 + 3123: 11,-11 + 3127: 10,-7 + 3151: 8,-7 + 3152: 7,-7 + 3153: 6,-7 + 3157: 4,-3 + 3158: 3,-3 + 3159: 2,-3 + 3160: 6,-3 + 3187: 9,-7 + 3189: 4,-9 + 3201: 5,-14 + 3202: 4,-14 + 3203: 3,-14 + 3204: 2,-14 + 3208: 1,-13 + 3209: 1,-11 + 3238: 9,-13 + 3239: 8,-13 + 3240: 7,-13 + 3257: 38,-7 + 3274: 46,-4 + 3275: 45,-4 + 3276: 44,-4 + 3282: 43,-7 + 3283: 42,-7 + 3290: 41,-10 + 3291: 40,-10 + 3294: 42,-10 + 3295: 43,-10 + 3296: 44,-10 + 3297: 45,-10 + 3298: 46,-10 + 3299: 47,-10 + 3300: 48,-10 + 3301: 49,-10 + 3343: 29,-11 + 3344: 27,-11 + 3345: 26,-11 + 3346: 23,-11 + 3347: 24,-11 + 3353: 36,-15 + 3354: 37,-15 + 3388: 37,-23 + 3399: 38,-27 + 3400: 39,-27 + 3401: 40,-27 + 3402: 36,-28 + 3403: 35,-28 + 3404: 34,-28 + 3405: 40,-21 + 3406: 38,-21 + 3413: 41,-21 + 3418: 42,-21 + 3419: 42,-19 + 3420: 43,-19 + 3421: 43,-21 + 3432: 39,-7 - node: color: '#52B4E996' id: BrickTileSteelLineW decals: - 2733: 24,19 - 2734: 24,18 - 2735: 24,17 - 2736: 24,16 - 2737: 24,15 - 2738: 24,14 - 2739: 24,13 - 2740: 24,12 + 1732: 24,19 + 1733: 24,18 + 1734: 24,17 + 1735: 24,16 + 1736: 24,15 + 1737: 24,14 + 1738: 24,13 + 1739: 24,12 - node: color: '#52B4E99E' id: BrickTileSteelLineW decals: - 2937: -14,8 - 2938: -14,7 + 1926: -14,8 + 1927: -14,7 + - node: + color: '#DE3A3AFF' + id: BrickTileSteelLineW + decals: + 3124: 11,-11 + 3125: 11,-9 + 3126: 11,-8 + 3143: 2,-12 + 3144: 2,-14 + 3145: 3,-5 + 3146: 3,-6 + 3147: 3,-7 + 3148: 3,-8 + 3149: 3,-9 + 3169: 2,-1 + 3170: 2,-3 + 3171: 2,-2 + 3181: 5,-4 + 3182: 8,-4 + 3195: 5,-10 + 3196: 3,-10 + 3241: 7,-13 + 3242: 7,-11 + 3243: 7,-10 + 3244: 7,-9 + 3252: 26,-8 + 3261: 39,-5 + 3262: 39,-4 + 3263: 39,-3 + 3286: 40,-8 + 3287: 40,-9 + 3292: 40,-10 + 3302: 43,-9 + 3357: 36,-15 + 3369: 34,-23 + 3370: 34,-25 + 3371: 34,-27 + 3372: 34,-28 + 3373: 38,-27 + 3374: 38,-26 + 3375: 38,-25 + 3376: 38,-24 + - node: + color: '#52B4E9A5' + id: BrickTileWhiteBox + decals: + 5209: 11,12 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerNe decals: - 1997: -52,48 + 1167: -52,48 - node: color: '#52B4E996' id: BrickTileWhiteCornerNe decals: - 3183: 21,23 + 2164: 21,23 - node: color: '#52B4E9CC' id: BrickTileWhiteCornerNe decals: - 3424: -0.5136709,8.494518 - - node: - color: '#BD3CABFF' - id: BrickTileWhiteCornerNe - decals: - 2562: -5,-28 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNe - decals: - 638: -6,-16 - 710: -12,-22 - 843: 2,-39 + 2404: -0.5136709,8.494518 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteCornerNe decals: - 2443: -129,17 - 2446: -128,13 - 2516: -98,9 - 2524: -105,15 - 2543: -116,6 - 2544: -116,2 - 2547: -120,-1 + 1490: -129,17 + 1493: -128,13 + 1554: -98,9 + 1562: -105,15 + 1581: -116,6 + 1582: -116,2 + 1585: -120,-1 - node: color: '#EFB34196' id: BrickTileWhiteCornerNe decals: - 1264: -99,0 + 701: -99,0 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerNw decals: - 1994: -57,48 + 1164: -57,48 - node: color: '#52B4E996' id: BrickTileWhiteCornerNw decals: - 3182: 16,23 + 2163: 16,23 - node: color: '#52B4E9D8' id: BrickTileWhiteCornerNw decals: - 3205: -3.5071917,8.508477 - - node: - color: '#BD3CABFF' - id: BrickTileWhiteCornerNw - decals: - 2561: -7,-28 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerNw - decals: - 644: -17,-16 - 698: -23,-16 - 842: -8,-39 + 2186: -3.5071917,8.508477 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteCornerNw decals: - 2442: -133,17 - 2509: -113,0 - 2510: -114,5 - 2512: -113,10 - 2515: -100,9 - 2526: -110,15 - 2540: -119,4 - 2541: -117,6 + 1489: -133,17 + 1547: -113,0 + 1548: -114,5 + 1550: -113,10 + 1553: -100,9 + 1564: -110,15 + 1578: -119,4 + 1579: -117,6 - node: color: '#EFB34196' id: BrickTileWhiteCornerNw decals: - 1263: -106,0 + 700: -106,0 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerSe decals: - 1996: -52,47 + 1166: -52,47 - node: color: '#52B4E996' id: BrickTileWhiteCornerSe decals: - 2755: 28,11 - 3184: 21,21 + 1754: 28,11 + 2165: 21,21 - node: color: '#52B4E9CC' id: BrickTileWhiteCornerSe decals: - 3325: -0.51731133,5.4969463 - - node: - color: '#BD3CABFF' - id: BrickTileWhiteCornerSe - decals: - 2563: -5,-33 - - node: - color: '#D381C996' - id: BrickTileWhiteCornerSe - decals: - 628: -12,-20 - 635: -6,-19 - 711: -12,-24 + 2305: -0.51731133,5.4969463 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteCornerSe decals: - 2445: -128,11 - 2506: -108,-20 - 2514: -98,2 - 2525: -105,13 - 2545: -116,1 - 2546: -116,5 - 2548: -120,8 - 2554: -120,-4 + 1492: -128,11 + 1552: -98,2 + 1563: -105,13 + 1583: -116,1 + 1584: -116,5 + 1586: -120,8 + 1590: -120,-4 - node: color: '#EFB34196' id: BrickTileWhiteCornerSe decals: - 1262: -99,-6 + 699: -99,-6 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteCornerSw decals: - 1995: -57,47 + 1165: -57,47 - node: color: '#52B4E996' id: BrickTileWhiteCornerSw decals: - 3185: 16,21 + 2166: 16,21 - node: color: '#52B4E9CC' id: BrickTileWhiteCornerSw decals: - 3328: -3.5224001,5.4813213 + 2308: -3.5224001,5.4813213 - node: - color: '#BD3CABFF' + cleanable: True + color: '#EFB34195' id: BrickTileWhiteCornerSw decals: - 2564: -7,-33 + 1491: -133,11 + 1546: -113,-3 + 1549: -114,2 + 1551: -113,7 + 1577: -119,3 + 1580: -117,1 - node: - color: '#D381C996' + color: '#EFB34196' id: BrickTileWhiteCornerSw decals: - 693: -20,-24 + 698: -106,-6 - node: - cleanable: True - color: '#EFB34195' - id: BrickTileWhiteCornerSw + color: '#334E6DC8' + id: BrickTileWhiteInnerNe decals: - 2444: -133,11 - 2507: -110,-20 - 2508: -113,-3 - 2511: -114,2 - 2513: -113,7 - 2539: -119,3 - 2542: -117,1 + 3882: -59,45 - node: - color: '#EFB34196' - id: BrickTileWhiteCornerSw + color: '#3EB388FF' + id: BrickTileWhiteInnerNe decals: - 1261: -106,-6 + 4449: -93,-5 + 4450: -95,-5 + 4451: -93,-12 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerNe + decals: + 5061: 10,34 + 5062: 13,34 + 5063: 6,34 + 5072: 11,29 - node: color: '#52B4E996' id: BrickTileWhiteInnerNe decals: - 2725: 30,18 + 1724: 30,18 - node: - color: '#D381C996' + color: '#52B4E9FF' + id: BrickTileWhiteInnerNe + decals: + 4792: 24,3 + 4793: 31,3 + 4817: 41,1 + 5074: -12,4 + 5085: -10,3 + - node: + color: '#9FED58FF' + id: BrickTileWhiteInnerNe + decals: + 4963: -21,-11 + 4964: -23,-11 + 4978: -40,-5 + 4979: -40,-12 + 4980: -18,-12 + 4981: -7,-12 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNe + decals: + 3692: -2,-39 + - node: + color: '#DE3A3AFF' id: BrickTileWhiteInnerNe decals: - 703: -19,-22 + 3803: -56,45 + 3805: -55,44 + 3806: -55,40 + 3809: -56,35 + 3813: -60,33 + 3814: -60,35 + 3848: -63,18 + 3877: -60,21 + 3878: -60,30 + 4650: -60,10 + 4651: -63,8 + 4691: -85,16 + 4692: -85,13 + 4693: -86,10 + 4721: -44,-1 + 4725: -45,1 + 4745: -20,9 + 4746: -17,7 + 4769: -23,3 + 4781: 19,3 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerNe + decals: + 4832: -98,8 + 4838: -125,-6 + 4862: -132,-6 + 4867: -94,10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerNw + decals: + 3883: -57,45 + - node: + color: '#3EB388FF' + id: BrickTileWhiteInnerNw + decals: + 4447: -93,-5 + 4448: -96,-5 + 4452: -93,-12 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerNw + decals: + 5059: 8,30 + 5060: 9,34 + 5064: 6,34 + 5065: 13,34 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteInnerNw + decals: + 4789: 24,3 + 4790: 30,3 + 4791: 24,3 + 4818: 38,8 + 4819: 34,3 + 5073: -13,4 + - node: + color: '#9FED58FF' + id: BrickTileWhiteInnerNw + decals: + 4961: -28,-12 + 4962: -28,2 + 4965: -23,-11 + 4966: -21,-11 + 4982: -7,-12 + 4983: -2,-12 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerNw + decals: + 3691: -2,-39 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteInnerNw + decals: + 3810: -57,36 + 3811: -58,35 + 3812: -58,33 + 3832: -53,36 + 3846: -64,21 + 3847: -63,18 + 3872: -58,18 + 4648: -61,8 + 4649: -60,10 + 4686: -86,14 + 4687: -86,10 + 4688: -83,10 + 4689: -83,13 + 4690: -83,16 + 4694: -86,16 + 4719: -42,-1 + 4720: -45,1 + 4744: -20,9 + 4748: -18,9 + 4780: 19,3 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerNw + decals: + 4824: -96,0 + 4828: -96,8 + 4866: -94,10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSe + decals: + 3880: -59,44 + - node: + color: '#3EB388FF' + id: BrickTileWhiteInnerSe + decals: + 4440: -95,-10 + 4441: -93,-10 + 4442: -95,-3 + 4443: -93,-3 + 4446: -88,-2 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerSe + decals: + 5066: 8,32 + 5067: 10,41 - node: color: '#52B4E996' id: BrickTileWhiteInnerSe decals: - 2726: 30,20 + 1725: 30,20 - node: - color: '#D381C996' + color: '#9FED58FF' + id: BrickTileWhiteInnerSe + decals: + 4967: -20,1 + 4968: -18,1 + 4972: -30,3 + 4973: -40,3 + 4977: -40,-5 + - node: + color: '#D381C9FF' id: BrickTileWhiteInnerSe decals: - 629: -12,-19 + 3687: -2,-37 + 3723: 1,-42 + 3744: -1,-18 + 3745: -3,-18 + 3764: -19,-14 + 3765: -9,-14 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteInnerSe + decals: + 3804: -55,44 + 3807: -55,40 + 3808: -56,35 + 3815: -60,33 + 3816: -60,35 + 3871: -66,24 + 3873: -63,20 + 3876: -60,21 + 3879: -60,38 + 3891: -56,38 + 4646: -63,8 + 4647: -60,12 + 4685: -85,13 + 4716: -45,3 + 4717: -44,-1 + 4749: -17,7 + 4770: -17,10 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerSe + decals: + 4831: -98,7 + 4839: -125,-9 + 4865: -134,-12 + - node: + color: '#334E6DC8' + id: BrickTileWhiteInnerSw + decals: + 3894: -57,44 + - node: + color: '#3EB388FF' + id: BrickTileWhiteInnerSw + decals: + 4438: -93,-10 + 4439: -95,-11 + 4444: -93,-3 + 4445: -96,-3 + - node: + color: '#439909FF' + id: BrickTileWhiteInnerSw + decals: + 5068: 9,41 + 5069: 8,32 + 5070: 13,32 + 5071: 13,29 + - node: + color: '#52B4E9FF' + id: BrickTileWhiteInnerSw + decals: + 4814: 38,1 + - node: + color: '#9FED58FF' + id: BrickTileWhiteInnerSw + decals: + 4969: -20,1 + 4970: -18,1 + 4971: -28,3 + 4974: -38,3 + 4984: -2,1 + - node: + color: '#D381C9FF' + id: BrickTileWhiteInnerSw + decals: + 3688: -2,-37 + 3722: 1,-42 + 3746: -3,-18 + 3747: -1,-18 + 3763: -21,-14 + 3766: -12,-14 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteInnerSw + decals: + 3817: -58,33 + 3818: -58,35 + 3868: -58,24 + 3869: -63,20 + 3870: -64,21 + 4644: -61,8 + 4645: -60,12 + 4681: -86,12 + 4682: -83,13 + 4683: -83,16 + 4684: -86,16 + 4714: -45,3 + 4715: -44,-1 + 4718: -42,3 + 4722: -42,-1 + 4765: -15,7 + 4766: -15,10 + 4823: -83,19 + - node: + color: '#EFB341FF' + id: BrickTileWhiteInnerSw + decals: + 4830: -96,7 - node: cleanable: True color: '#00BEBE93' id: BrickTileWhiteLineE decals: - 2589: -108,-15 - 2590: -108,-13 - 2591: -108,-11 - 2592: -108,-9 - 2599: -108,-19 + 1606: -108,-9 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineE + decals: + 3313: 49,-6 + 3314: 49,-7 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineE + decals: + 4417: -88,-3 + 4418: -91,-5 + 4419: -91,-6 + 4420: -91,-7 + 4421: -91,-8 + 4422: -91,-9 + 4423: -91,-10 + 4424: -95,-11 + 4453: -93,-11 + 4456: -96,-4 + 4464: -108,-10 + 4465: -108,-11 + 4466: -108,-12 + 4467: -108,-13 + 4468: -108,-14 + 4475: -108,-9 + 4476: -108,-14 + 4478: -110,-14 + - node: + color: '#439909FF' + id: BrickTileWhiteLineE + decals: + 4987: 14,24 + 4988: 14,25 + 4989: 14,27 + 4992: 14,28 + 4993: 14,29 + 4994: 14,30 + 4997: 14,31 + 4998: 14,32 + 4999: 14,33 + 5000: 14,34 + 5032: 8,31 + 5033: 8,30 + 5034: 8,29 + 5035: 11,30 + 5036: 10,35 + 5037: 10,36 + 5038: 10,37 + 5039: 10,38 + 5040: 10,39 + 5041: 10,40 + 5050: 11,42 + 5051: 11,41 - node: color: '#52B4E996' id: BrickTileWhiteLineE decals: - 2727: 30,19 - 2806: 5,12 - 2807: 5,13 - 2917: -7,9 - 3194: 21,22 + 1726: 30,19 + 1805: 5,12 + 1806: 5,13 + 1906: -7,9 + 2175: 21,22 - node: color: '#52B4E9CC' id: BrickTileWhiteLineE decals: - 3418: -0.51358485,6.518468 - 3419: -0.51358485,7.502843 + 2398: -0.51358485,6.518468 + 2399: -0.51358485,7.502843 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' id: BrickTileWhiteLineE decals: - 2565: -5,-32 - 2566: -5,-30 - 2567: -5,-29 + 4815: 41,2 + 4816: 41,3 + 5076: -12,5 + 5086: -10,4 - node: - color: '#D381C996' + color: '#9FED58FF' + id: BrickTileWhiteLineE + decals: + 4945: -30,2 + 4946: -40,1 + 4947: -40,0 + 4948: -40,-1 + 4949: -40,-2 + 4950: -40,-2 + 4951: -40,-3 + 4952: -40,-4 + 4953: -40,-6 + 4954: -40,-7 + 4955: -40,-8 + 4956: -40,-9 + 4957: -40,-10 + 4958: -40,-11 + 4959: -18,-11 + 4976: -40,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineE + decals: + 3678: -1,-34 + 3679: -1,-35 + 3680: -1,-36 + 3681: -1,-37 + 3689: -2,-38 + 3718: 2,-42 + 3719: 2,-41 + 3720: 2,-40 + 3721: 2,-39 + 3737: 0,-17 + 3738: 0,-18 + - node: + color: '#DE3A3AFF' id: BrickTileWhiteLineE decals: - 636: -6,-18 - 637: -6,-17 - 700: -19,-19 - 701: -19,-20 - 702: -19,-21 - 838: 2,-40 - 839: 2,-41 + 3773: -60,31 + 3774: -60,32 + 3775: -60,34 + 3776: -60,36 + 3777: -60,37 + 3778: -56,36 + 3779: -56,34 + 3780: -56,33 + 3781: -56,32 + 3782: -52,34 + 3783: -52,35 + 3784: -52,37 + 3785: -52,36 + 3786: -55,39 + 3787: -55,41 + 3788: -55,42 + 3789: -55,43 + 3790: -55,45 + 3791: -59,38 + 3792: -58,39 + 3793: -59,40 + 3794: -59,41 + 3795: -59,42 + 3796: -59,43 + 3797: -59,39 + 3802: -56,46 + 3844: -60,20 + 3845: -60,22 + 3867: -66,23 + 3874: -63,19 + 3889: -55,38 + 3892: -56,37 + 4619: -59,10 + 4620: -59,9 + 4621: -60,11 + 4622: -59,8 + 4623: -59,7 + 4624: -63,11 + 4625: -63,10 + 4626: -63,9 + 4627: -63,7 + 4652: -85,12 + 4653: -85,14 + 4654: -85,15 + 4655: -85,17 + 4698: -44,1 + 4699: -44,0 + 4700: -44,-2 + 4736: -17,5 + 4737: -17,6 + 4738: -17,8 + 4739: -17,9 + 4762: -23,6 + 4763: -23,5 + 4764: -23,4 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineE decals: - 2415: -122,-6 - 2416: -122,-7 - 2417: -122,-8 - 2418: -122,-9 - 2419: -121,6 - 2420: -121,5 - 2421: -121,4 - 2422: -121,3 - 2423: -121,2 - 2424: -121,1 - 2439: -129,16 - 2440: -129,15 - 2441: -129,14 - 2463: -108,-16 - 2464: -108,-14 - 2465: -108,-12 - 2466: -108,-10 - 2467: -108,-6 - 2468: -108,-7 - 2469: -108,-8 - 2470: -108,-3 - 2471: -108,-2 - 2472: -108,-1 - 2473: -108,0 - 2474: -108,6 - 2475: -108,7 - 2476: -108,8 - 2477: -108,12 - 2478: -108,11 - 2479: -108,10 - 2480: -108,9 - 2487: -108,1 - 2501: -98,3 - 2502: -98,4 - 2503: -98,5 - 2504: -98,6 - 2549: -121,7 - 2550: -121,0 - 2551: -122,-5 - 2552: -122,-10 - 2555: -120,-3 - 2556: -120,10 - 2557: -120,11 + 1466: -121,6 + 1467: -121,5 + 1468: -121,4 + 1469: -121,3 + 1470: -121,2 + 1471: -121,1 + 1486: -129,16 + 1487: -129,15 + 1488: -129,14 + 1506: -108,-14 + 1507: -108,-6 + 1508: -108,-7 + 1509: -108,-8 + 1510: -108,-3 + 1511: -108,-2 + 1512: -108,-1 + 1513: -108,0 + 1514: -108,6 + 1515: -108,7 + 1516: -108,8 + 1517: -108,12 + 1518: -108,11 + 1519: -108,10 + 1520: -108,9 + 1527: -108,1 + 1541: -98,3 + 1542: -98,4 + 1543: -98,5 + 1544: -98,6 + 1587: -121,7 + 1588: -121,0 + 1591: -120,-3 + 1592: -120,10 + 1593: -120,11 - node: color: '#EFB34196' id: BrickTileWhiteLineE decals: - 1274: -99,-5 - 1275: -99,-4 - 1276: -99,-3 - 1277: -99,-2 - 1278: -99,-1 + 711: -99,-5 + 712: -99,-4 + 713: -99,-3 + 714: -99,-2 + 715: -99,-1 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineE + decals: + 4382: -92,10 + 4383: -92,9 + 4384: -92,8 + 4385: -92,7 + 4386: -92,7 + 4387: -92,6 + 4388: -92,5 + 4389: -92,4 + 4390: -92,3 + 4391: -92,2 + 4392: -92,1 + 4393: -92,0 + 4836: -125,-5 + 4837: -125,-10 + 4847: -129,-9 + 4848: -129,-10 + 4849: -129,-11 + 4850: -129,-12 + 4855: -133,-1 + 4856: -133,-2 + 4857: -132,-3 + 4858: -132,-4 + 4859: -132,-5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineN + decals: + 3896: -58,45 - node: cleanable: True color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 2578: -106,5 - 2579: -105,5 - 2580: -104,5 - 2581: -102,5 + 1597: -106,5 + 1598: -105,5 + 1599: -104,5 + 1600: -102,5 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteLineN decals: - 1998: -55,48 - 1999: -54,48 - 2000: -53,48 + 1168: -55,48 + 1169: -54,48 + 1170: -53,48 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineN + decals: + 3315: 49,-6 + 3316: 48,-6 + 3317: 47,-6 + 3318: 46,-6 + 3319: 45,-6 + 3320: 45,-6 + 3321: 44,-6 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineN + decals: + 4406: -91,-5 + 4407: -92,-5 + 4408: -94,-5 + 4432: -97,-5 + - node: + color: '#439909FF' + id: BrickTileWhiteLineN + decals: + 5001: 14,34 + 5002: 12,34 + 5003: 11,35 + 5004: 11,34 + 5005: 8,34 + 5006: 7,34 + 5007: 5,34 + 5046: 8,42 + 5047: 9,42 + 5048: 10,42 + 5049: 11,42 + 5056: 5,30 + 5057: 6,30 + 5058: 7,30 - node: color: '#52B4E996' id: BrickTileWhiteLineN decals: - 2722: 31,18 - 2723: 32,18 - 2724: 33,18 - 2810: 6,11 - 2811: 7,11 - 2812: 8,11 - 2813: 9,11 - 2814: 10,11 - 2826: -1,11 - 2827: 0,11 - 2828: 1,11 - 2829: 2,11 - 2846: -2,11 - 2847: 3,11 - 3186: 17,23 - 3187: 18,23 - 3188: 19,23 - 3189: 20,23 + 1721: 31,18 + 1722: 32,18 + 1723: 33,18 + 1809: 6,11 + 1810: 7,11 + 1811: 8,11 + 1812: 9,11 + 1813: 10,11 + 1825: -1,11 + 1826: 0,11 + 1827: 1,11 + 1828: 2,11 + 1845: -2,11 + 1846: 3,11 + 2167: 17,23 + 2168: 18,23 + 2169: 19,23 + 2170: 20,23 - node: color: '#52B4E9CC' id: BrickTileWhiteLineN decals: - 3425: -1.5030482,8.494518 - 3426: -2.5030482,8.494518 + 2405: -1.5030482,8.494518 + 2406: -2.5030482,8.494518 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' + id: BrickTileWhiteLineN + decals: + 4782: 23,3 + 4783: 25,3 + 4784: 27,3 + 4785: 28,3 + 4786: 26,3 + 4787: 29,3 + 4788: 32,3 + 4799: 34,8 + 4800: 36,8 + 4801: 37,8 + 4802: 38,9 + 4803: 39,9 + 5077: -15,4 + 5078: -14,4 + 5079: -11,4 + 5080: -10,4 + 5081: -9,3 + 5082: -8,3 + 5083: -7,3 + 5084: -6,3 + - node: + color: '#9FED58FF' id: BrickTileWhiteLineN decals: - 2568: -6,-28 + 4868: -18,-11 + 4869: -19,-11 + 4870: -20,-11 + 4871: -22,-11 + 4872: -24,-11 + 4873: -25,-11 + 4874: -26,-11 + 4875: -27,-11 + 4876: -28,-11 + 4877: -29,-12 + 4878: -30,-12 + 4879: -31,-12 + 4880: -32,-12 + 4881: -34,-12 + 4882: -33,-12 + 4883: -35,-12 + 4884: -36,-12 + 4885: -37,-12 + 4886: -38,-12 + 4887: -17,-12 + 4888: -16,-12 + 4889: -15,-12 + 4890: -14,-12 + 4891: -13,-12 + 4892: -12,-12 + 4893: -11,-12 + 4894: -10,-12 + 4895: -9,-12 + 4896: -8,-12 + 4897: -6,-12 + 4898: -4,-12 + 4899: -3,-12 - node: color: '#D381C996' id: BrickTileWhiteLineN decals: - 639: -7,-16 - 640: -13,-16 - 641: -14,-16 - 642: -15,-16 - 643: -16,-16 - 699: -22,-16 - 704: -18,-22 - 705: -17,-22 - 706: -16,-22 - 707: -15,-22 - 708: -14,-22 - 709: -13,-22 - 830: -7,-39 - 831: -6,-39 - 832: -5,-39 - 833: -4,-39 - 834: -3,-39 - 835: -1,-39 - 836: 0,-39 - 837: 1,-39 + 367: -13,-16 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineN + decals: + 3676: -1,-34 + 3677: -3,-34 + 3693: 0,-39 + 3694: -1,-39 + 3695: 0,-39 + 3696: 1,-39 + 3697: 2,-39 + 3698: -8,-39 + 3699: -7,-39 + 3700: -6,-39 + 3701: -5,-39 + 3702: -4,-39 + 3703: -3,-39 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineN + decals: + 3767: -55,45 + 3768: -58,36 + 3769: -56,30 + 3770: -57,30 + 3771: -58,30 + 3772: -59,30 + 3829: -53,37 + 3830: -52,37 + 3831: -54,36 + 3833: -60,22 + 3834: -61,22 + 3835: -62,22 + 3836: -63,22 + 3837: -64,22 + 3849: -62,18 + 3850: -61,18 + 3851: -59,18 + 3852: -60,18 + 3853: -64,18 + 3854: -65,18 + 4632: -62,5 + 4633: -61,5 + 4634: -60,5 + 4635: -59,5 + 4636: -58,5 + 4637: -61,10 + 4638: -59,10 + 4639: -62,8 + 4670: -85,17 + 4671: -86,17 + 4672: -87,14 + 4673: -88,14 + 4674: -89,14 + 4675: -89,10 + 4676: -88,10 + 4677: -87,10 + 4678: -85,10 + 4679: -84,10 + 4703: -46,1 + 4704: -44,1 + 4724: -43,-1 + 4740: -17,10 + 4741: -18,10 + 4742: -19,9 + 4743: -21,9 + 4751: -16,7 + 4756: -16,3 + 4757: -17,3 + 4758: -18,3 + 4759: -19,3 + 4760: -20,3 + 4761: -21,3 + 4771: -16,10 + 4773: 15,3 + 4774: 17,3 + 4775: 16,3 + 4776: 18,3 + 4777: 20,3 + 4778: 21,3 + 4779: 22,3 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineN decals: - 2432: -132,17 - 2433: -131,17 - 2434: -130,17 - 2481: -108,15 - 2482: -107,15 - 2483: -106,15 - 2496: -107,5 - 2497: -101,5 - 2505: -99,9 - 2528: -111,10 - 2529: -113,5 - 2530: -112,5 - 2533: -112,0 - 2538: -118,4 + 1479: -132,17 + 1480: -131,17 + 1481: -130,17 + 1521: -108,15 + 1522: -107,15 + 1523: -106,15 + 1536: -107,5 + 1537: -101,5 + 1545: -99,9 + 1566: -111,10 + 1567: -113,5 + 1568: -112,5 + 1571: -112,0 + 1576: -118,4 - node: color: '#EFB34196' id: BrickTileWhiteLineN decals: - 1279: -105,0 - 1280: -104,0 - 1281: -103,0 - 1282: -102,0 - 1283: -101,0 - 1284: -100,0 + 716: -105,0 + 717: -104,0 + 718: -103,0 + 719: -102,0 + 720: -101,0 + 721: -100,0 - node: - cleanable: True - color: '#EFB34196' + color: '#EFB341FF' id: BrickTileWhiteLineN decals: - 2582: -119,-12 - 2583: -118,-12 + 4378: -96,10 + 4379: -95,10 + 4380: -93,10 + 4381: -92,10 + 4825: -97,0 + 4826: -97,8 + 4840: -135,-1 + 4841: -134,-1 + 4842: -134,-1 + 4843: -133,-1 + 4844: -131,-6 + 4845: -130,-6 + 4846: -129,-6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 3881: -58,44 + 3895: -58,44 - node: cleanable: True zIndex: 431 color: '#334E6DC8' id: BrickTileWhiteLineS decals: - 2001: -55,47 - 2002: -56,47 - 2003: -54,47 - 2004: -53,47 + 1171: -55,47 + 1172: -56,47 + 1173: -54,47 + 1174: -53,47 + - node: + color: '#334E6DFF' + id: BrickTileWhiteLineS + decals: + 3322: 44,-7 + 3323: 45,-7 + 3324: 46,-7 + 3325: 47,-7 + 3326: 48,-7 + 3327: 49,-7 + - node: + color: '#3EB38896' + id: BrickTileWhiteLineS + decals: + 4405: -79,-10 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineS + decals: + 4409: -97,-3 + 4410: -94,-3 + 4411: -88,-3 + 4412: -89,-3 + 4413: -90,-3 + 4414: -91,-3 + 4415: -92,-3 + 4433: -97,-11 + 4434: -96,-11 + 4435: -94,-10 + 4436: -92,-10 + 4437: -91,-10 + - node: + color: '#439909FF' + id: BrickTileWhiteLineS + decals: + 5020: 5,29 + 5021: 6,29 + 5022: 7,29 + 5023: 8,29 + 5024: 9,32 + 5025: 10,32 + 5026: 11,32 + 5027: 12,32 + 5028: 7,32 + 5029: 6,32 + 5030: 5,32 + 5052: 8,41 + 5053: 11,41 + 5054: 11,29 + 5055: 10,29 - node: color: '#52B4E996' id: BrickTileWhiteLineS decals: - 2719: 31,20 - 2720: 32,20 - 2721: 33,20 - 2752: 25,11 - 2753: 26,11 - 2754: 27,11 - 2815: 6,14 - 2816: 7,14 - 2817: 8,14 - 2818: 9,14 - 2819: 10,14 - 2822: -1,13 - 2823: 0,13 - 2824: 1,13 - 2825: 2,13 - 2848: -2,13 - 2849: 3,13 - 3190: 17,21 - 3191: 18,21 - 3192: 19,21 - 3193: 20,21 + 1718: 31,20 + 1719: 32,20 + 1720: 33,20 + 1751: 25,11 + 1752: 26,11 + 1753: 27,11 + 1814: 6,14 + 1815: 7,14 + 1816: 8,14 + 1817: 9,14 + 1818: 10,14 + 1821: -1,13 + 1822: 0,13 + 1823: 1,13 + 1824: 2,13 + 1847: -2,13 + 1848: 3,13 + 2171: 17,21 + 2172: 18,21 + 2173: 19,21 + 2174: 20,21 - node: color: '#52B4E9CC' id: BrickTileWhiteLineS decals: - 3329: -1.5075154,5.4969463 + 2309: -1.5075154,5.4969463 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' id: BrickTileWhiteLineS decals: - 2571: -6,-33 + 4806: 34,1 + 4807: 35,1 + 4808: 36,1 + 4809: 37,1 + 4810: 38,0 + 4811: 39,0 + 4812: 40,0 + 4813: 41,0 - node: - color: '#D381C996' + color: '#9FED58FF' id: BrickTileWhiteLineS decals: - 630: -11,-19 - 631: -10,-19 - 632: -9,-19 - 633: -8,-19 - 634: -7,-19 - 647: -14,-20 - 648: -13,-20 - 686: -13,-24 - 687: -14,-24 - 688: -15,-24 - 689: -16,-24 - 690: -17,-24 - 691: -18,-24 - 692: -19,-24 + 4912: -3,1 + 4913: -4,1 + 4914: -6,1 + 4915: -7,1 + 4916: -9,1 + 4917: -8,1 + 4918: -10,1 + 4919: -11,1 + 4920: -13,1 + 4921: -12,1 + 4922: -14,1 + 4923: -15,1 + 4924: -16,1 + 4925: -17,1 + 4926: -19,1 + 4927: -21,1 + 4928: -23,1 + 4929: -24,1 + 4930: -25,1 + 4931: -26,1 + 4932: -27,1 + 4933: -28,1 + 4934: -30,2 + 4935: -31,2 + 4936: -32,2 + 4937: -33,2 + 4938: -34,2 + 4939: -35,2 + 4940: -36,2 + 4941: -37,2 + 4942: -38,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineS + decals: + 3685: -1,-37 + 3686: -3,-37 + 3708: -8,-42 + 3709: -6,-42 + 3710: -5,-42 + 3711: -4,-42 + 3712: -3,-42 + 3713: -2,-42 + 3714: -2,-42 + 3715: -1,-42 + 3716: 0,-42 + 3717: 2,-42 + 3741: -4,-18 + 3742: -2,-18 + 3743: 0,-18 + 3748: -8,-14 + 3749: -7,-14 + 3750: -6,-14 + 3753: -5,-14 + 3754: -18,-14 + 3755: -13,-14 + 3756: -14,-14 + 3757: -15,-14 + 3758: -16,-14 + 3759: -17,-14 + 3760: -22,-14 + 3761: -23,-14 + 3762: -24,-14 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineS + decals: + 3798: -59,38 + 3799: -59,33 + 3800: -59,35 + 3801: -55,35 + 3820: -58,32 + 3821: -57,32 + 3822: -56,32 + 3823: -54,34 + 3824: -52,34 + 3825: -53,34 + 3840: -64,20 + 3841: -62,20 + 3842: -61,20 + 3843: -60,20 + 3860: -59,24 + 3861: -60,24 + 3862: -61,24 + 3863: -62,24 + 3864: -64,24 + 3865: -65,24 + 3866: -63,24 + 3890: -55,38 + 4640: -62,8 + 4641: -61,12 + 4642: -59,12 + 4643: -58,12 + 4666: -85,12 + 4667: -87,12 + 4668: -88,12 + 4669: -89,12 + 4701: -44,-2 + 4705: -46,-1 + 4706: -45,-1 + 4707: -46,3 + 4708: -44,3 + 4723: -43,-1 + 4731: -21,5 + 4732: -20,5 + 4733: -19,5 + 4734: -18,5 + 4735: -17,5 + 4750: -16,7 + 4772: -16,10 + 4820: -84,19 + 4821: -85,19 + 4822: -86,19 + 5087: -61,7 + 5088: -60,7 + 5089: -59,7 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineS decals: - 2435: -132,11 - 2436: -131,11 - 2437: -130,11 - 2438: -129,11 - 2462: -109,-20 - 2484: -107,13 - 2485: -106,13 - 2486: -107,2 - 2488: -106,2 - 2489: -105,2 - 2490: -104,2 - 2491: -103,2 - 2492: -102,2 - 2493: -101,2 - 2494: -99,2 - 2495: -100,2 - 2527: -112,7 - 2531: -113,2 - 2532: -112,2 - 2534: -111,-3 - 2537: -118,3 - 2553: -121,-4 + 1482: -132,11 + 1483: -131,11 + 1484: -130,11 + 1485: -129,11 + 1524: -107,13 + 1525: -106,13 + 1526: -107,2 + 1528: -106,2 + 1529: -105,2 + 1530: -104,2 + 1531: -103,2 + 1532: -102,2 + 1533: -101,2 + 1534: -99,2 + 1535: -100,2 + 1565: -112,7 + 1569: -113,2 + 1570: -112,2 + 1572: -111,-3 + 1575: -118,3 + 1589: -121,-4 - node: color: '#EFB34196' id: BrickTileWhiteLineS decals: - 1268: -100,-6 - 1269: -101,-6 - 1270: -102,-6 - 1271: -103,-6 - 1272: -105,-6 - 1273: -104,-6 + 705: -100,-6 + 706: -101,-6 + 707: -102,-6 + 708: -103,-6 + 709: -105,-6 + 710: -104,-6 + - node: + color: '#EFB341FF' + id: BrickTileWhiteLineS + decals: + 4827: -97,7 + 4833: -122,-4 + 4834: -123,-4 + 4835: -124,-4 + 4851: -130,-12 + 4852: -131,-13 + 4853: -132,-13 + 4854: -133,-12 - node: cleanable: True color: '#00BEBE93' id: BrickTileWhiteLineW decals: - 2593: -110,-15 - 2594: -110,-13 - 2595: -110,-11 - 2596: -110,-9 - 2597: -110,-17 - 2598: -110,-19 + 1607: -110,-9 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 3884: -57,46 + 3897: -57,46 + - node: + color: '#3EB388FF' + id: BrickTileWhiteLineW + decals: + 4416: -97,-3 + 4425: -97,-11 + 4426: -97,-10 + 4427: -97,-9 + 4428: -97,-8 + 4429: -97,-7 + 4430: -97,-6 + 4431: -97,-5 + 4454: -93,-11 + 4455: -96,-4 + 4469: -110,-14 + 4470: -110,-13 + 4471: -110,-12 + 4472: -110,-11 + 4473: -110,-10 + 4474: -110,-9 + 4477: -108,-14 + - node: + color: '#439909FF' + id: BrickTileWhiteLineW + decals: + 4985: 13,27 + 4986: 13,25 + 4990: 13,24 + 4991: 13,28 + 4995: 13,30 + 4996: 13,31 + 5008: 9,38 + 5009: 9,37 + 5010: 9,36 + 5011: 9,35 + 5012: 5,34 + 5013: 5,33 + 5014: 5,33 + 5015: 5,32 + 5016: 5,30 + 5017: 5,29 + 5018: 10,29 + 5019: 10,30 + 5031: 8,31 + 5042: 9,39 + 5043: 9,40 + 5044: 8,41 + 5045: 8,42 - node: color: '#52B4E996' id: BrickTileWhiteLineW decals: - 2808: 11,12 - 2809: 11,13 - 2918: -7,9 - 2920: -8,11 - 3195: 16,22 + 1807: 11,12 + 1808: 11,13 + 1907: -7,9 + 1909: -8,11 + 2176: 16,22 - node: color: '#52B4E9D8' id: BrickTileWhiteLineW decals: - 3206: -3.5228167,7.508477 - 3207: -3.5228167,6.492852 + 2187: -3.5228167,7.508477 + 2188: -3.5228167,6.492852 - node: - color: '#BD3CABFF' + color: '#52B4E9FF' id: BrickTileWhiteLineW decals: - 2569: -10,-32 - 2570: -10,-31 + 4794: 34,4 + 4795: 34,6 + 4796: 34,5 + 4797: 34,7 + 4798: 34,8 + 4804: 38,9 + 4805: 38,0 + 5075: -13,5 - node: - color: '#D381C996' + color: '#9FED58FF' + id: BrickTileWhiteLineW + decals: + 4900: -2,-11 + 4901: -2,-10 + 4902: -2,-9 + 4903: -2,-8 + 4904: -2,-7 + 4905: -2,-6 + 4906: -2,-5 + 4907: -2,-4 + 4908: -2,-3 + 4909: -2,-2 + 4910: -2,-1 + 4911: -2,0 + 4943: -28,1 + 4944: -28,2 + 4960: -28,-11 + 4975: -38,2 + - node: + color: '#D381C9FF' + id: BrickTileWhiteLineW + decals: + 3682: -3,-37 + 3683: -3,-35 + 3684: -3,-34 + 3690: -2,-38 + 3704: -8,-39 + 3705: -8,-40 + 3706: -8,-41 + 3707: -8,-42 + 3739: -4,-17 + 3740: -4,-18 + 3751: -4,-16 + 3752: -4,-15 + - node: + color: '#DE3A3AFF' + id: BrickTileWhiteLineW + decals: + 3819: -58,32 + 3826: -54,34 + 3827: -54,36 + 3828: -53,37 + 3838: -64,22 + 3839: -64,20 + 3855: -58,20 + 3856: -58,19 + 3857: -58,21 + 3858: -58,22 + 3859: -58,23 + 3875: -63,19 + 3885: -57,43 + 3886: -57,42 + 3887: -57,39 + 3888: -57,38 + 3893: -57,37 + 4628: -61,10 + 4629: -60,11 + 4630: -61,9 + 4631: -61,7 + 4656: -86,17 + 4657: -86,15 + 4658: -89,14 + 4659: -89,13 + 4660: -89,12 + 4661: -83,12 + 4662: -83,14 + 4663: -83,15 + 4664: -83,17 + 4665: -83,18 + 4680: -83,11 + 4695: -46,1 + 4696: -46,0 + 4697: -46,-1 + 4702: -44,-2 + 4709: -42,2 + 4710: -42,1 + 4711: -42,0 + 4712: -42,-2 + 4713: -42,-3 + 4726: -21,9 + 4727: -21,8 + 4728: -21,7 + 4729: -21,6 + 4730: -21,5 + 4747: -18,10 + 4752: -15,6 + 4753: -15,8 + 4754: -15,9 + 4755: -15,11 + - node: + cleanable: True + color: '#DE3A3AFF' id: BrickTileWhiteLineW decals: - 645: -17,-17 - 646: -17,-18 - 694: -20,-22 - 695: -23,-19 - 696: -23,-18 - 697: -23,-17 - 840: -8,-40 - 841: -8,-41 + 3935: -57,40 + 3936: -57,41 - node: cleanable: True color: '#EFB34195' id: BrickTileWhiteLineW decals: - 2425: -122,4 - 2426: -122,3 - 2427: -133,12 - 2428: -133,13 - 2429: -133,15 - 2430: -133,16 - 2431: -133,14 - 2447: -110,11 - 2448: -110,12 - 2449: -110,13 - 2450: -110,14 - 2451: -111,6 - 2452: -113,-1 - 2453: -110,-4 - 2454: -110,-5 - 2455: -110,-6 - 2456: -110,-7 - 2457: -110,-8 - 2458: -110,-10 - 2459: -110,-12 - 2460: -110,-14 - 2461: -110,-16 - 2498: -100,8 - 2499: -100,7 - 2500: -100,6 - 2535: -117,5 - 2536: -117,2 + 1472: -122,4 + 1473: -122,3 + 1474: -133,12 + 1475: -133,13 + 1476: -133,15 + 1477: -133,16 + 1478: -133,14 + 1494: -110,11 + 1495: -110,12 + 1496: -110,13 + 1497: -110,14 + 1498: -111,6 + 1499: -113,-1 + 1500: -110,-4 + 1501: -110,-5 + 1502: -110,-6 + 1503: -110,-7 + 1504: -110,-8 + 1505: -110,-14 + 1538: -100,8 + 1539: -100,7 + 1540: -100,6 + 1573: -117,5 + 1574: -117,2 - node: color: '#EFB34196' id: BrickTileWhiteLineW decals: - 1265: -106,-1 - 1266: -106,-2 - 1267: -106,-3 + 702: -106,-1 + 703: -106,-2 + 704: -106,-3 - node: cleanable: True color: '#EFB34196' id: BrickTileWhiteLineW decals: - 2584: -114,-9 - 2585: -114,-8 - 2586: -114,-7 - 2587: -114,-6 - 2588: -114,-5 - 2600: -110,-18 - 2604: -113,8 + 1601: -114,-9 + 1602: -114,-8 + 1603: -114,-7 + 1604: -114,-6 + 1605: -114,-5 + 1608: -113,8 - node: - color: '#FFFFFFFF' - id: Bushd1 + color: '#EFB341FF' + id: BrickTileWhiteLineW decals: - 337: -6.026865,-9.094334 + 4394: -96,10 + 4395: -97,9 + 4396: -96,6 + 4397: -96,5 + 4398: -96,4 + 4399: -96,3 + 4400: -96,2 + 4401: -96,1 + 4402: -97,0 + 4403: -97,-1 + 4404: -97,-2 + 4829: -96,9 + 4860: -135,-1 + 4861: -135,-2 + 4863: -127,-6 + 4864: -127,-5 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' - id: Caution + id: BushCThree decals: - 1301: -127,20 + 4457: -93,-15 - node: - angle: -1.5707963267948966 rad - color: '#FF0000FF' - id: CautionGreyscale + color: '#FFFFFFFF' + id: Caution decals: - 2622: -79,-20 + 3075: 40,-5 - node: angle: 1.5707963267948966 rad - color: '#FF0000FF' - id: CautionGreyscale + color: '#FFFFFFFF' + id: Caution decals: - 2623: -83,-12 + 738: -127,20 - node: - angle: 3.141592653589793 rad + angle: -1.5707963267948966 rad color: '#FF0000FF' id: CautionGreyscale decals: - 585: -85,-20 + 1623: -79,-20 - node: color: '#EFB34196' id: CheckerNWSE decals: - 3412: 2,8 - 3413: 2,7 - 3414: 2,6 - 3415: 3,6 - 3416: 3,7 - 3417: 3,8 + 2392: 2,8 + 2393: 2,7 + 2394: 2,6 + 2395: 3,6 + 2396: 3,7 + 2397: 3,8 - node: color: '#9C2020FF' id: ConcreteTrimCornerNe decals: - 3909: 28,-1 - 3944: 34,-13 - 3962: 40,-12 - 3987: 38,-9 - 4162: 43,-3 - 4163: 45,-4 + 2871: 28,-1 + 2904: 34,-13 + 2913: 40,-12 + 2935: 38,-9 - node: color: '#9C2020FF' id: ConcreteTrimCornerNw decals: - 3883: 21,-2 - 3889: 17,-5 - 3908: 25,-1 - 3945: 30,-13 - 3979: 34,-6 - 4168: 39,-3 + 2845: 21,-2 + 2851: 17,-5 + 2870: 25,-1 + 2905: 30,-13 + 2927: 34,-6 - node: color: '#9C2020FF' id: ConcreteTrimCornerSe decals: - 3897: 23,-7 - 3911: 28,-7 - 3941: 34,-15 - 4164: 45,-5 - 4165: 44,-10 + 2859: 23,-7 + 2873: 28,-7 + 2901: 34,-15 - node: color: '#9C2020FF' id: ConcreteTrimCornerSw decals: - 3891: 17,-7 - 3910: 25,-7 - 3940: 30,-15 - 3961: 36,-13 - 4166: 40,-10 + 2853: 17,-7 + 2872: 25,-7 + 2900: 30,-15 + 2912: 36,-13 - node: color: '#9C2020FF' id: ConcreteTrimInnerNe decals: - 3991: 37,-9 - 3992: 37,-9 - 3993: 38,-12 - 4181: 43,-4 + 2939: 37,-9 + 2940: 37,-9 + 2941: 38,-12 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerNe + decals: + 4107: -71,-16 + 4108: -74,-16 + 4118: -71,-6 + 4119: -70,-7 + 4120: -63,-5 + 4121: -59,-7 + 4122: -56,-6 + 4123: -59,-9 + 4124: -55,-10 + 4125: -48,-13 + 4133: -55,-14 + 4134: -55,-17 + 4143: -70,-11 + 4232: -70,0 + 4233: -59,0 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerNe + decals: + 4258: -57,-13 + 4259: -56,-13 + 4260: -55,-13 + 4261: -52,-10 + 4262: -51,-10 + 4263: -50,-10 + 4264: -49,-10 + 4265: -48,-10 + 4266: -47,-10 + 4267: -53,-10 + 4268: -49,-16 + 4314: -48,-19 + 4315: -48,-17 + 4316: -48,-16 + 4317: -48,-14 + 4318: -48,-12 + 4319: -47,-11 + 4320: -55,-14 + 4321: -55,-15 + 4322: -55,-16 + 4323: -55,-17 + 4324: -55,-18 + 4332: -51,-18 + 4333: -51,-17 + 4334: -51,-16 + 4335: -51,-15 + 4336: -47,-18 + 4337: -48,-15 + 4343: -48,-19 + 4347: -47,-18 + 4348: -48,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNe decals: - 3588: 45,-30 + 2566: 45,-30 - node: color: '#9C2020FF' id: ConcreteTrimInnerNw decals: - 3922: 25,-2 - 3994: 34,-9 + 2884: 25,-2 + 2942: 34,-9 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerNw + decals: + 4106: -71,-16 + 4109: -74,-16 + 4110: -68,-7 + 4111: -57,-7 + 4112: -57,-9 + 4113: -53,-14 + 4114: -53,-17 + 4115: -48,-16 + 4116: -56,-6 + 4117: -64,-5 + 4142: -68,-11 + 4146: -72,-11 + 4230: -57,0 + 4231: -68,0 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerNw + decals: + 4236: -53,-10 + 4237: -52,-10 + 4238: -51,-10 + 4239: -50,-10 + 4240: -49,-10 + 4241: -48,-10 + 4242: -47,-10 + 4243: -49,-16 + 4244: -53,-12 + 4245: -53,-13 + 4246: -53,-14 + 4247: -48,-16 + 4248: -53,-15 + 4249: -53,-16 + 4250: -53,-17 + 4251: -53,-18 + 4252: -57,-18 + 4253: -57,-17 + 4254: -57,-16 + 4255: -57,-15 + 4256: -57,-14 + 4257: -57,-13 + 4311: -49,-18 + 4312: -49,-17 + 4313: -48,-19 + 4325: -56,-13 + 4326: -55,-13 + 4342: -48,-19 + 4349: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerNw decals: - 3587: 50,-30 + 2565: 50,-30 - node: color: '#9C2020FF' id: ConcreteTrimInnerSe decals: - 3925: 23,-3 - 4182: 44,-5 + 2887: 23,-3 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerSe + decals: + 4105: -71,-14 + 4126: -48,-13 + 4131: -55,-14 + 4132: -55,-17 + 4135: -59,-9 + 4138: -59,-7 + 4139: -70,-7 + 4144: -70,-11 + 4147: -63,-18 + 4149: -60,-18 + 4183: -56,-4 + 4186: -59,-2 + 4187: -60,-3 + 4190: -63,-3 + 4191: -67,-3 + 4194: -70,-2 + 4197: -70,-4 + 4198: -71,-4 + 4235: -70,3 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerSe + decals: + 4289: -55,-19 + 4290: -55,-18 + 4291: -55,-17 + 4292: -55,-16 + 4293: -55,-15 + 4294: -55,-14 + 4295: -55,-13 + 4296: -51,-14 + 4297: -50,-14 + 4298: -49,-14 + 4299: -48,-14 + 4300: -48,-16 + 4301: -48,-17 + 4302: -48,-13 + 4303: -48,-12 + 4304: -47,-11 + 4305: -47,-10 + 4306: -51,-15 + 4307: -51,-16 + 4308: -51,-17 + 4309: -51,-18 + 4310: -47,-18 + 4330: -52,-18 + 4331: -53,-18 + 4338: -48,-15 + 4341: -48,-19 + 4344: -48,-18 - node: color: '#9C2020FF' id: ConcreteTrimInnerSw decals: - 3924: 25,-3 - 3959: 30,-11 - 3995: 36,-12 - 4028: 38,-13 - 4183: 40,-7 + 2886: 25,-3 + 2910: 30,-11 + 2943: 36,-12 + - node: + color: '#A46106FF' + id: ConcreteTrimInnerSw + decals: + 4104: -71,-14 + 4127: -48,-14 + 4128: -48,-18 + 4129: -53,-17 + 4130: -53,-14 + 4136: -57,-9 + 4137: -57,-7 + 4140: -68,-7 + 4141: -68,-11 + 4145: -72,-11 + 4148: -61,-18 + 4150: -64,-18 + 4182: -56,-4 + 4184: -57,-2 + 4188: -60,-3 + 4189: -64,-3 + 4192: -67,-3 + 4193: -68,-2 + 4199: -71,-4 + 4234: -57,3 + - node: + color: '#D381C9FF' + id: ConcreteTrimInnerSw + decals: + 4269: -53,-12 + 4270: -53,-13 + 4271: -53,-14 + 4272: -53,-15 + 4273: -53,-16 + 4274: -53,-17 + 4275: -53,-18 + 4276: -52,-18 + 4277: -51,-18 + 4278: -49,-18 + 4279: -48,-18 + 4280: -49,-17 + 4281: -49,-16 + 4282: -57,-18 + 4283: -57,-17 + 4284: -57,-16 + 4285: -57,-15 + 4286: -57,-14 + 4287: -57,-13 + 4288: -57,-19 + 4327: -50,-14 + 4328: -49,-14 + 4329: -48,-14 + 4339: -48,-15 + 4340: -48,-19 + 4345: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimInnerSw decals: - 3586: 50,-24 + 2564: 50,-24 - node: color: '#9C2020FF' id: ConcreteTrimLineE decals: - 3898: 23,-6 - 3899: 23,-5 - 3900: 23,-4 - 3915: 28,-6 - 3916: 28,-5 - 3917: 28,-4 - 3918: 28,-3 - 3919: 28,-2 - 3943: 34,-14 - 3970: 40,-20 - 3971: 40,-18 - 3972: 40,-17 - 3973: 40,-16 - 3974: 40,-15 - 3975: 40,-13 - 3988: 38,-10 - 3989: 38,-11 - 3990: 37,-8 - 4170: 44,-6 - 4171: 44,-7 - 4172: 44,-8 - 4173: 44,-9 + 2860: 23,-6 + 2861: 23,-5 + 2862: 23,-4 + 2877: 28,-6 + 2878: 28,-5 + 2879: 28,-4 + 2880: 28,-3 + 2881: 28,-2 + 2903: 34,-14 + 2919: 40,-20 + 2920: 40,-18 + 2921: 40,-17 + 2922: 40,-16 + 2923: 40,-15 + 2924: 40,-13 + 2936: 38,-10 + 2937: 38,-11 + 2938: 37,-8 + - node: + color: '#A46106FF' + id: ConcreteTrimLineE + decals: + 3962: -59,-8 + 3963: -59,-18 + 3964: -59,-17 + 3965: -59,-15 + 3966: -59,-16 + 3967: -59,-14 + 3968: -59,-6 + 3969: -59,-5 + 3970: -70,-14 + 3971: -70,-13 + 3972: -70,-12 + 3973: -70,-10 + 3974: -55,-6 + 3975: -47,-10 + 3976: -47,-11 + 3977: -48,-12 + 3978: -48,-14 + 3979: -48,-16 + 3980: -48,-17 + 3981: -47,-18 + 3982: -48,-19 + 3983: -55,-18 + 3984: -55,-16 + 3985: -55,-15 + 3986: -55,-13 + 3987: -51,-18 + 3988: -51,-17 + 3989: -51,-16 + 3990: -51,-15 + 3998: -55,-19 + 4011: -56,-5 + 4014: -71,-5 + 4023: -59,-13 + 4024: -59,-12 + 4025: -59,-11 + 4026: -59,-10 + 4027: -70,-6 + 4028: -70,-8 + 4091: -55,-7 + 4092: -55,-8 + 4093: -55,-9 + 4102: -71,-15 + 4151: -63,-19 + 4152: -63,-20 + 4153: -63,-21 + 4154: -63,-22 + 4155: -60,-20 + 4156: -60,-21 + 4157: -60,-22 + 4158: -60,-19 + 4185: -59,-3 + 4195: -70,-3 + 4196: -70,-4 + 4212: -70,1 + 4213: -70,2 + 4229: -59,1 - node: color: '#FFFFFFFF' id: ConcreteTrimLineE decals: - 3581: 45,-29 - 3582: 45,-28 - 3583: 45,-27 - 3584: 45,-26 - 3585: 45,-25 + 2559: 45,-29 + 2560: 45,-28 + 2561: 45,-27 + 2562: 45,-26 + 2563: 45,-25 - node: color: '#9C2020FF' id: ConcreteTrimLineN decals: - 3886: 20,-5 - 3887: 19,-5 - 3888: 18,-5 - 3901: 22,-2 - 3902: 23,-2 - 3907: 24,-2 - 3920: 26,-1 - 3921: 27,-1 - 3946: 31,-13 - 3947: 33,-13 - 3948: 25,-9 - 3949: 24,-9 - 3950: 23,-9 - 3976: 39,-12 - 3977: 35,-6 - 3978: 37,-6 - 3980: 32,-9 - 3981: 31,-9 - 3982: 30,-9 - 3983: 29,-9 - 3984: 28,-9 - 4002: 33,-9 - 4100: 42,-19 - 4159: 40,-3 - 4160: 41,-3 - 4161: 42,-3 - 4169: 44,-4 + 2848: 20,-5 + 2849: 19,-5 + 2850: 18,-5 + 2863: 22,-2 + 2864: 23,-2 + 2869: 24,-2 + 2882: 26,-1 + 2883: 27,-1 + 2906: 31,-13 + 2907: 33,-13 + 2925: 39,-12 + 2926: 35,-6 + 2928: 32,-9 + 2929: 31,-9 + 2930: 30,-9 + 2931: 29,-9 + 2932: 28,-9 + 2950: 33,-9 + 2988: 42,-19 + - node: + color: '#A46106FF' + id: ConcreteTrimLineN + decals: + 4040: -70,-6 + 4041: -66,-5 + 4042: -68,-5 + 4043: -65,-5 + 4044: -62,-5 + 4045: -61,-5 + 4046: -59,-5 + 4047: -57,-6 + 4048: -55,-6 + 4049: -53,-10 + 4050: -51,-10 + 4051: -52,-10 + 4052: -50,-10 + 4053: -49,-10 + 4054: -48,-10 + 4055: -47,-10 + 4056: -49,-16 + 4057: -54,-17 + 4058: -54,-14 + 4059: -57,-13 + 4060: -56,-13 + 4061: -55,-13 + 4062: -70,-10 + 4063: -71,-10 + 4064: -72,-10 + 4065: -70,-16 + 4066: -72,-16 + 4067: -73,-16 + 4068: -75,-16 + 4070: -69,-7 + 4095: -54,-10 + 4096: -58,-7 + 4099: -58,-9 + 4100: -69,-11 + 4200: -59,1 + 4201: -60,1 + 4202: -61,1 + 4203: -62,1 + 4204: -63,1 + 4205: -64,1 + 4206: -65,1 + 4207: -66,1 + 4208: -67,1 + 4209: -68,1 + 4211: -69,0 + 4228: -58,0 + 4346: -47,-18 - node: color: '#FFFFFFFF' id: ConcreteTrimLineN decals: - 3569: 46,-30 - 3570: 47,-30 - 3571: 48,-30 - 3572: 49,-30 + 2547: 46,-30 + 2548: 47,-30 + 2549: 48,-30 + 2550: 49,-30 - node: color: '#9C2020FF' id: ConcreteTrimLineS decals: - 3892: 18,-7 - 3893: 19,-7 - 3894: 20,-7 - 3895: 21,-7 - 3896: 22,-7 - 3923: 24,-3 - 3937: 31,-15 - 3938: 33,-15 - 3939: 32,-15 - 3951: 23,-11 - 3952: 24,-11 - 3953: 26,-11 - 3954: 27,-11 - 3955: 28,-11 - 3956: 29,-11 - 3957: 35,-12 - 3963: 37,-13 - 3968: 38,-21 - 3969: 40,-21 - 4101: 42,-21 - 4167: 39,-7 - 4174: 43,-10 - 4175: 42,-10 - 4176: 41,-10 + 2854: 18,-7 + 2855: 19,-7 + 2856: 20,-7 + 2857: 21,-7 + 2858: 22,-7 + 2885: 24,-3 + 2897: 31,-15 + 2898: 33,-15 + 2899: 32,-15 + 2908: 35,-12 + 2914: 37,-13 + - node: + color: '#A46106FF' + id: ConcreteTrimLineS + decals: + 4069: -69,-7 + 4071: -70,-8 + 4072: -71,-8 + 4073: -70,-14 + 4074: -72,-14 + 4075: -68,-18 + 4076: -67,-18 + 4077: -66,-18 + 4078: -65,-18 + 4079: -62,-18 + 4080: -59,-18 + 4081: -53,-18 + 4082: -52,-18 + 4083: -51,-18 + 4084: -49,-18 + 4085: -47,-18 + 4086: -49,-14 + 4087: -50,-14 + 4088: -55,-11 + 4089: -56,-11 + 4090: -57,-11 + 4094: -54,-11 + 4097: -58,-7 + 4098: -58,-9 + 4101: -69,-11 + 4167: -72,-4 + 4168: -70,-4 + 4169: -69,-2 + 4170: -59,-3 + 4171: -61,-3 + 4172: -62,-3 + 4173: -65,-3 + 4174: -66,-3 + 4175: -68,-3 + 4179: -58,-2 + 4180: -55,-4 + 4181: -57,-4 + 4214: -69,3 + 4215: -68,3 + 4216: -67,3 + 4217: -66,3 + 4218: -65,3 + 4219: -64,3 + 4220: -63,3 + 4221: -62,3 + 4222: -60,3 + 4223: -61,3 + 4224: -59,3 + 4225: -58,3 - node: color: '#FFFFFFFF' id: ConcreteTrimLineS decals: - 3573: 46,-24 - 3574: 47,-24 - 3575: 48,-24 - 3576: 49,-24 + 2551: 46,-24 + 2552: 47,-24 + 2553: 48,-24 + 2554: 49,-24 - node: color: '#9C2020FF' id: ConcreteTrimLineW decals: - 3884: 21,-3 - 3885: 21,-4 - 3890: 17,-6 - 3912: 25,-6 - 3913: 25,-5 - 3914: 25,-4 - 3942: 30,-14 - 3958: 30,-12 - 3964: 38,-16 - 3965: 38,-18 - 3966: 38,-19 - 3967: 38,-20 - 3985: 34,-8 - 3986: 34,-7 - 4026: 38,-15 - 4027: 38,-14 - 4157: 39,-5 - 4158: 39,-4 - 4177: 40,-9 - 4178: 40,-8 - - node: - color: '#FFFFFFFF' + 2846: 21,-3 + 2847: 21,-4 + 2852: 17,-6 + 2874: 25,-6 + 2875: 25,-5 + 2876: 25,-4 + 2902: 30,-14 + 2909: 30,-12 + 2915: 38,-16 + 2916: 38,-18 + 2917: 38,-19 + 2918: 38,-20 + 2933: 34,-8 + 2934: 34,-7 + 2951: 38,-14 + - node: + color: '#A46106FF' id: ConcreteTrimLineW decals: - 3577: 50,-26 - 3578: 50,-25 - 3579: 50,-28 - 3580: 50,-29 + 3991: -57,-13 + 3992: -57,-14 + 3993: -57,-15 + 3994: -57,-16 + 3995: -57,-18 + 3996: -57,-17 + 3997: -57,-19 + 3999: -49,-18 + 4000: -49,-17 + 4001: -49,-16 + 4002: -53,-18 + 4003: -53,-16 + 4004: -53,-15 + 4005: -53,-12 + 4006: -53,-13 + 4007: -57,-11 + 4008: -57,-10 + 4009: -57,-8 + 4010: -57,-6 + 4012: -56,-5 + 4013: -71,-5 + 4015: -68,-18 + 4016: -68,-17 + 4017: -68,-16 + 4018: -68,-15 + 4019: -68,-14 + 4020: -68,-13 + 4021: -68,-12 + 4022: -68,-10 + 4029: -71,-6 + 4030: -71,-7 + 4031: -71,-8 + 4032: -68,-6 + 4033: -68,-5 + 4034: -68,-9 + 4035: -68,-8 + 4036: -72,-10 + 4037: -72,-12 + 4038: -72,-13 + 4039: -72,-14 + 4103: -71,-15 + 4159: -64,-19 + 4160: -64,-20 + 4161: -64,-21 + 4162: -64,-22 + 4163: -61,-19 + 4164: -61,-20 + 4165: -61,-21 + 4166: -61,-22 + 4176: -68,-3 + 4177: -57,-4 + 4178: -57,-3 + 4210: -68,1 + 4226: -57,2 + 4227: -57,1 - node: - color: '#FF0000FF' - id: Delivery + color: '#FFFFFFFF' + id: ConcreteTrimLineW decals: - 1184: -93,-10 + 2555: 50,-26 + 2556: 50,-25 + 2557: 50,-28 + 2558: 50,-29 - node: cleanable: True color: '#FFFFFFC0' id: Delivery decals: - 2558: -131,0 - 2559: -131,7 - 2560: -131,6 + 1594: -131,0 + 1595: -131,7 + 1596: -131,6 - node: color: '#FFFFFFFF' id: Delivery decals: - 390: 30,-2 - 560: -17,5 - 561: -17,9 - 562: -21,9 - 563: -21,8 - 580: -44,-2 - 581: -46,-1 - 582: -44,0 - 590: -92,-6 - 594: -91,-6 - 674: -89,12 - 675: -88,12 - 676: -85,12 - 725: -59,9 - 726: -59,10 - 727: -61,10 - 741: 9,-13 - 742: 9,-9 - 743: 8,-9 - 760: -63,22 - 761: -64,22 - 762: -64,20 - 829: -85,14 - 1147: 10,-4 - 1528: -94,12 - 1536: -93,17 - 1759: -55,39 - 1760: -53,37 - 1761: -52,37 - 1762: -52,36 - 1763: -52,35 - 1764: -52,34 + 339: 30,-2 + 658: 10,-4 + 916: -94,12 + 923: -93,17 + 1082: -52,35 + 3076: 43,-4 + 3077: 42,-4 + 3078: 42,-3 + 3079: 43,-3 + 3080: 44,-3 + 3081: 44,-4 + 3082: 45,-4 + 3083: 45,-3 + 3084: 46,-3 + 3085: 46,-4 + 3086: 40,-8 + 3087: 43,-9 + 3088: 44,-9 + 3898: -53,37 + 3899: -52,37 + 3900: -52,36 + 3901: -52,35 + 3902: -52,34 + 3903: -54,34 + 3904: -54,36 + 3937: -140,-12 + 3938: -148,-12 + 3939: -148,-4 + 3940: -140,-4 + 3941: -140,-12 + 3957: -145,-9 + 3958: -145,-7 + 3959: -143,-7 + 3960: -143,-9 + 4372: -105,-13 + 4373: -104,-13 + 4374: -103,-13 + 4375: -92,9 + 4376: -92,10 + 4377: -92,8 + 5131: 25,9 + 5132: 24,9 + 5133: 32,9 + 5134: 32,5 + 5135: 32,6 + 5136: 32,7 + 5137: 31,7 + 5138: 30,7 + 5139: -110,-1 + 5140: -110,0 + 5158: -99,-5 + 5159: -102,-11 + 5160: -101,-11 + 5161: -100,-11 + 5162: -94,-8 + 5163: -98,-13 + 5164: -85,-12 + 5165: -86,-12 + 5166: -89,-12 + 5167: -89,-11 + 5168: -89,-10 + 5169: -89,-9 + 5170: -86,-10 + 5171: -86,-9 + 5172: -85,-9 + 5173: -85,-10 + 5174: -85,-11 + 5175: -86,-11 + 5205: 31,9 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: Delivery decals: - 430: -99,-16 - 431: -98,-16 - 432: -97,-16 + 351: -99,-16 + 352: -98,-16 + 353: -97,-16 - node: color: '#52B4E99E' id: DeliveryGreyscale decals: - 2970: -13,15 - 2971: -12,15 - 3026: 22,34 - 3027: 22,37 - 3028: 23,43 - 3029: 25,29 - 3030: 25,30 - 3031: 23,30 - 3032: 23,29 + 1957: -13,15 + 1958: -12,15 + 2013: 22,34 + 2014: 22,37 + 2015: 23,43 + 2016: 25,29 + 2017: 25,30 + 2018: 23,30 + 2019: 23,29 - node: color: '#F9801DFF' id: DeliveryGreyscale decals: - 3298: 1,7 - 3299: 2,9 - 3300: 3,9 - 3301: 2,5 - 3302: 3,5 + 2278: 1,7 + 2279: 2,9 + 2280: 3,9 + 2281: 2,5 + 2282: 3,5 - node: color: '#FFFFFFFF' id: DeliveryGreyscale decals: - 1166: 8,8 - 1529: -96,14 - 1530: -96,15 - 1531: -91,14 - 1532: -96,12 + 667: 8,8 + 917: -96,14 + 918: -96,15 + 919: -91,14 + 920: -96,12 - node: color: '#2D72307C' id: DiagonalCheckerAOverlay decals: - 3122: 7,36 - 3123: 5,36 - 3124: 6,36 - 3125: 6,37 - 3126: 5,37 - 3127: 7,37 - 3128: 12,37 - 3129: 12,36 - 3130: 13,36 - 3131: 14,37 - 3132: 13,37 - 3133: 14,36 + 2109: 7,36 + 2110: 5,36 + 2111: 6,36 + 2112: 6,37 + 2113: 5,37 + 2114: 7,37 + 2115: 12,37 + 2116: 12,36 + 2117: 13,36 + 2118: 14,37 + 2119: 13,37 + 2120: 14,36 - node: color: '#2D72307C' id: DiagonalCheckerBOverlay decals: - 3070: 6,32 - 3071: 5,32 - 3072: 5,33 - 3073: 6,33 - 3074: 6,34 - 3075: 5,34 - 3076: 7,34 - 3077: 7,33 - 3078: 7,32 - 3079: 8,33 - 3080: 8,34 - 3081: 9,34 - 3082: 9,33 - 3083: 9,32 - 3084: 9,35 - 3085: 9,36 - 3086: 9,37 - 3087: 9,38 - 3088: 10,38 - 3089: 10,37 - 3090: 10,36 - 3091: 10,35 - 3092: 10,34 - 3093: 10,33 - 3094: 10,32 - 3095: 11,32 - 3096: 11,33 - 3097: 11,34 - 3098: 12,34 - 3099: 12,33 - 3100: 12,32 - 3101: 13,32 - 3102: 13,33 - 3103: 13,34 - 3104: 14,34 - 3105: 14,33 - 3106: 14,32 - 3107: 14,30 - 3108: 13,30 - 3109: 13,29 - 3110: 14,29 - 3111: 8,32 + 2057: 6,32 + 2058: 5,32 + 2059: 5,33 + 2060: 6,33 + 2061: 6,34 + 2062: 5,34 + 2063: 7,34 + 2064: 7,33 + 2065: 7,32 + 2066: 8,33 + 2067: 8,34 + 2068: 9,34 + 2069: 9,33 + 2070: 9,32 + 2071: 9,35 + 2072: 9,36 + 2073: 9,37 + 2074: 9,38 + 2075: 10,38 + 2076: 10,37 + 2077: 10,36 + 2078: 10,35 + 2079: 10,34 + 2080: 10,33 + 2081: 10,32 + 2082: 11,32 + 2083: 11,33 + 2084: 11,34 + 2085: 12,34 + 2086: 12,33 + 2087: 12,32 + 2088: 13,32 + 2089: 13,33 + 2090: 13,34 + 2091: 14,34 + 2092: 14,33 + 2093: 14,32 + 2094: 14,30 + 2095: 13,30 + 2096: 13,29 + 2097: 14,29 + 2098: 8,32 - node: color: '#822328FF' id: Dirt decals: - 1815: -80,0 - 1816: -80,1 - 1817: -79,1 - 1818: -79,0 - 1819: -78,1 - 1820: -78,0 - 1821: -78,0 - 1822: -78,1 - 1823: -79,1 - 1824: -79,0 - 1825: -80,0 - 1826: -80,1 - 1827: -80,0 - 1828: -80,1 - 1829: -79,1 - 1830: -79,0 - 1831: -78,0 - 1832: -78,1 - 1833: -76,1 - 1834: -76,0 - 1835: -75,1 - 1836: -75,0 - 1837: -74,0 - 1838: -74,1 - 1839: -74,1 - 1840: -74,0 - 1841: -75,0 - 1842: -75,1 - 1843: -76,1 - 1844: -76,0 - 1845: -76,0 - 1846: -76,1 - 1847: -75,1 - 1848: -75,0 - 1849: -74,0 - 1850: -74,1 + 1106: -80,0 + 1107: -80,1 + 1108: -79,1 + 1109: -79,0 + 1110: -78,1 + 1111: -78,0 + 1112: -78,0 + 1113: -78,1 + 1114: -79,1 + 1115: -79,0 + 1116: -80,0 + 1117: -80,1 + 1118: -80,0 + 1119: -80,1 + 1120: -79,1 + 1121: -79,0 + 1122: -78,0 + 1123: -78,1 + 1124: -76,1 + 1125: -76,0 + 1126: -75,1 + 1127: -75,0 + 1128: -74,0 + 1129: -74,1 + 1130: -74,1 + 1131: -74,0 + 1132: -75,0 + 1133: -75,1 + 1134: -76,1 + 1135: -76,0 + 1136: -76,0 + 1137: -76,1 + 1138: -75,1 + 1139: -75,0 + 1140: -74,0 + 1141: -74,1 - node: color: '#FF0000FF' id: Dirt decals: - 4210: -78,-1 - 4211: -78,-2 - 4212: -77,-2 - 4213: -77,-1 - 4214: -76,-1 - 4215: -76,-2 - 4216: -79,-3 - 4217: -80,-3 - 4218: -80,-2 - 4219: -79,-2 - 4220: -79,-1 - 4221: -80,-1 - 4222: -81,-3 - 4223: -81,-4 - 4224: -80,-4 - 4225: -79,-4 - 4226: -78,-4 - 4227: -78,-3 - 4228: -77,-3 - 4229: -77,-4 - 4230: -76,-4 - 4231: -76,-3 - 4232: -75,-3 - 4233: -75,-4 - 4234: -74,-4 - 4235: -74,-3 - 4236: -74,-2 - 4237: -74,-1 - 4238: -75,-1 - 4239: -75,-2 - 4255: -77,0 - 4256: -77,1 + 3028: -78,-1 + 3029: -78,-2 + 3030: -77,-2 + 3031: -77,-1 + 3032: -76,-1 + 3033: -76,-2 + 3034: -79,-3 + 3035: -80,-3 + 3036: -80,-2 + 3037: -79,-2 + 3038: -79,-1 + 3039: -80,-1 + 3040: -81,-3 + 3041: -81,-4 + 3042: -80,-4 + 3043: -79,-4 + 3044: -78,-4 + 3045: -78,-3 + 3046: -77,-3 + 3047: -77,-4 + 3048: -76,-4 + 3049: -76,-3 + 3050: -75,-3 + 3051: -75,-4 + 3052: -74,-4 + 3053: -74,-3 + 3054: -74,-2 + 3055: -74,-1 + 3056: -75,-1 + 3057: -75,-2 + 3073: -77,0 + 3074: -77,1 - node: cleanable: True color: '#FFFFFF6A' id: Dirt decals: - 3401: -6,42 - 3402: 1,41 - 3403: 3,44 - 3404: 2,40 + 2381: -6,42 + 2382: 1,41 + 2383: 3,44 + 2384: 2,40 - node: color: '#FFFFFF85' id: Dirt decals: - 3377: -30,32 + 2357: -30,32 - node: color: '#FFFFFFD3' id: Dirt decals: - 3386: -34,20 + 2366: -34,20 - node: cleanable: True color: '#FFFFFFD3' id: Dirt decals: - 3389: 1,35 - 3390: -1,37 - 3396: -2,26 - 3399: -5,43 - 3400: -3,39 + 2369: 1,35 + 2370: -1,37 + 2376: -2,26 + 2379: -5,43 + 2380: -3,39 - node: color: '#FFFFFFFF' id: Dirt decals: - 299: 48,4 + 296: 48,4 + 3905: -50,43 + 4488: -85,-19 + 4489: -87,-18 + 4490: -82,-17 + 4491: -81,-17 + 4492: -90,-20 + 4493: -94,-18 + 4494: -85,-13 + 4495: -89,-13 + 4496: -101,-14 + 4497: -101,-19 + 4498: -106,-17 + 4499: -108,-18 + 4500: -103,-19 + 4501: -95,-9 + 4502: -93,-9 + 4503: -92,-7 + 4504: -93,-9 + 4505: -94,-9 + 4506: -94,-9 + 4507: -94,-9 + 4508: -101,-10 + 4509: -103,-10 + 4510: -105,-10 + 4511: -102,-18 + 4512: -109,-17 + 4513: -113,-20 + 4514: -115,-18 + 4515: -115,-19 + 4516: -114,-19 + 4517: -115,-20 + 4518: -114,-20 + 4519: -115,-19 + 4520: -115,-19 + 4521: -115,-18 + 4522: -115,-18 + 4523: -116,-15 + 4524: -115,-15 + 4525: -114,-15 + 4526: -112,-15 + 4527: -113,-16 - node: cleanable: True color: '#FFFFFFFF' id: Dirt decals: - 2134: 30,2 - 2135: 28,1 - 2136: 36,1 - 2137: 34,5 - 2138: 40,2 - 2139: 41,0 - 2153: 16,3 - 2154: 9,3 - 2155: 10,1 - 2156: 3,2 - 2157: 2,1 - 2158: 21,2 - 2261: 0,-7 - 2262: 0,-5 - 2263: 1,-5 - 2264: 0,-10 - 2265: -4,-3 - 2266: 0,0 - 2292: -42,-6 - 2293: -37,-14 - 2294: -32,-12 - 2295: -25,-13 - 2296: -20,-11 - 2297: -16,-12 - 2298: -19,-14 - 2299: -10,-14 - 2300: -4,-9 - 2301: -3,-15 - 2302: -1,-15 - 2317: -22,3 - 2318: -21,2 - 2319: -6,3 - 3284: 23,25 - 3292: 7,36 - 3362: -7,23 - 3366: 11,26 - 3367: 19,25 - 3411: -7,41 - 3589: 45,-30 - 3590: 43,-28 - 3591: 43,-25 - 3592: 46,-23 - 3593: 48,-24 - 3594: 50,-24 - 3595: 45,-22 - 3596: 45,-21 - 3597: 49,-32 - 3598: 49,-33 - 3599: 44,-33 - 3600: 43,-33 - 3601: 42,-31 - 3602: 43,-28 - 3603: 49,-29 - 3604: 47,-27 - 3605: 51,-25 - 3606: 50,-24 - 3607: 54,-27 - 3608: 53,-26 - 3609: 53,-24 - 3610: 54,-24 - 3711: 35,-20 - 3712: 35,-20 - 3714: 36,-20 - 3715: 35,-20 - 3716: 35,-21 + 1251: 30,2 + 1252: 40,2 + 1261: 10,1 + 1262: 3,2 + 1263: 2,1 + 1264: 21,2 + 1351: 0,-7 + 1352: 0,-5 + 1353: 1,-5 + 1354: -4,-3 + 1355: 0,0 + 1374: -42,-6 + 1375: -37,-14 + 1376: -32,-12 + 1377: -25,-13 + 1378: -16,-12 + 1379: -3,-15 + 1387: -22,3 + 1388: -21,2 + 2265: 23,25 + 2273: 7,36 + 2342: -7,23 + 2346: 11,26 + 2347: 19,25 + 2391: -7,41 + 2567: 45,-30 + 2568: 43,-28 + 2569: 43,-25 + 2570: 46,-23 + 2571: 48,-24 + 2572: 50,-24 + 2573: 45,-22 + 2574: 45,-21 + 2575: 49,-32 + 2576: 49,-33 + 2577: 44,-33 + 2578: 43,-33 + 2579: 42,-31 + 2580: 43,-28 + 2581: 49,-29 + 2582: 47,-27 + 2583: 51,-25 + 2584: 50,-24 + 2585: 54,-27 + 2586: 53,-26 + 2587: 53,-24 + 2588: 54,-24 + 2689: 35,-20 + 2690: 35,-20 + 2692: 36,-20 + 2693: 35,-20 + 2694: 35,-21 + 3095: 46,-10 + 3096: 45,-10 + 3097: 44,-10 + 3098: 43,-10 + 3099: 45,-10 + 3100: 45,-10 + 3101: 48,-10 + 6524: -6,-40 + 6525: -7,-41 + 6526: 0,-41 + 6527: -4,-39 + 6528: -1,-41 + 6529: 0,-40 + 6530: -2,-35 + 6531: -2,-35 + 6840: 53,-3 + 6841: 53,-4 + 6842: 56,-5 + 6843: 62,-4 + 6844: 61,-2 + 6845: 59,-5 + 6846: 61,-1 + 6847: 61,2 + 6848: 61,4 + 6849: 61,7 + 6850: 60,9 + 6851: 58,9 + 6852: 63,11 + 6853: 61,13 + 6854: 57,13 + 6855: 55,14 + 6856: 53,10 + 6857: 52,9 + 6858: 51,9 + 6859: 56,12 + 6860: 60,11 + 6861: 50,7 + 6862: 51,8 + 6863: 44,8 + 6864: 44,9 + 6865: 43,7 + 6866: 45,7 + 6867: 45,8 + 6868: 42,9 + 6869: 45,6 + 6870: 45,4 + 6871: 43,4 + 6872: 48,13 + 6873: 47,14 + 6874: 46,13 + 6875: 47,12 + 6876: 48,11 + 6877: 49,11 + 6878: 46,14 + 6879: 46,14 + 6880: 46,14 + 6881: 46,14 + 6882: 46,14 + 6883: 46,14 + 6884: 42,12 + 6885: 43,13 + 6886: 43,14 + 6887: 44,12 + 6888: 41,17 + 6889: 42,16 + 6890: 41,16 + 6891: 37,12 + 6892: 34,11 + 6893: 33,13 + 6894: 35,15 + 6895: 37,14 + 6896: 33,16 + 6897: 30,15 + 6898: 32,13 + 6899: 32,12 + 6900: 31,13 + 6901: 33,10 + 6902: 36,12 + 6903: 36,15 + 6904: 38,15 + 6905: 35,6 + 6906: 35,4 + 6907: 36,1 + 6908: 39,1 + 6909: 39,2 + 6910: 38,7 + 6911: 38,7 + 6912: 38,3 + 6913: 40,2 + 6914: 43,1 + 6915: 43,2 + 6916: 44,0 + 6917: 29,1 + 6918: 28,2 + 6919: 24,2 + 6920: 24,1 + 6921: 28,1 + 6922: 25,3 + 6923: 24,3 + 6924: 23,1 + 6925: 20,1 + 6926: 13,-3 + 6927: 13,-2 + 6928: 11,-3 + 6929: 11,-4 + 6930: 13,-7 + 6931: 12,-7 + 6932: 14,-9 + 6933: 15,-10 + 6934: 15,-10 + 6935: 21,-10 + 6936: 21,-10 + 6937: 27,-10 + 6938: 27,-9 + 6939: 30,-11 + 6940: 33,-9 + 6941: 35,-10 + 6942: 37,-12 + 6943: 39,-13 + 6944: 40,-18 + 6945: 39,-18 + 6946: 39,-21 + 6947: 38,-21 + 6948: 44,-25 + 6949: 17,-10 + 6950: 14,-10 + 6951: 13,-7 + 6952: 12,-5 + 6953: 9,-6 + 6954: 6,-7 + 6955: 4,-5 + 6956: 4,-8 + 6957: 4,-12 + 6958: 3,-13 + 6959: 3,-12 + 6960: 4,-14 + 6961: 0,-16 + 6962: -1,-16 + 6963: -3,-15 + 6964: -3,-13 + 6965: -2,-11 + 6966: 0,-11 + 6967: 0,-9 + 6968: -1,-6 + 6969: 0,-1 + 6970: -1,2 + 6971: -3,3 + 6972: -8,2 + 6973: -10,3 + 6974: -11,1 + 6975: -12,3 + 6976: -14,3 + 6977: -15,1 + 6978: -15,2 + 6979: -17,1 + 6980: -21,3 + 6981: -20,1 + 6982: -24,2 + 6983: -26,3 + 6984: -28,4 + 6985: -29,1 + 6986: -33,3 + 6987: -37,2 + 6988: -37,4 + 6989: -34,4 + 6990: -33,2 + 6991: -33,10 + 6992: -31,10 + 6993: -31,13 + 6994: -33,15 + 6995: -31,16 + 6996: -33,18 + 6997: -30,21 + 6998: -31,23 + 6999: -31,27 + 7000: -31,29 + 7001: -30,28 + 7002: -30,33 + 7003: -30,31 + 7004: -31,31 + 7005: -30,25 + 7006: -30,24 + 7007: -31,23 + 7008: -37,17 + 7009: -40,17 + 7010: -41,19 + 7011: -44,16 + 7012: -44,16 + 7013: -44,17 + 7014: -49,17 + 7015: -48,14 + 7016: -50,13 + 7017: -51,12 + 7018: -52,14 + 7019: -51,14 + 7020: -55,13 + 7021: -56,17 + 7022: -59,17 + 7023: -64,16 + 7024: -67,17 + 7025: -67,12 + 7026: -68,12 + 7027: -67,9 + 7028: -65,8 + 7029: -69,7 + 7030: -75,9 + 7031: -73,13 + 7032: -74,16 + 7033: -60,9 + 7034: -61,8 + 7035: -60,8 + 7036: -60,11 + 7037: -59,10 + 7038: -74,9 + 7039: -77,8 + 7040: -80,8 + 7041: -81,9 + 7042: -83,6 + 7043: -82,8 + 7044: -85,8 + 7045: -87,7 + 7046: -89,9 + 7047: -88,8 + 7048: -89,5 + 7049: -87,5 + 7050: -87,6 + 7051: -88,4 + 7052: -88,1 + 7053: -91,-1 + 7054: -92,-1 + 7055: -93,-2 + 7056: -90,-3 + 7057: -93,-2 + 7058: -95,-2 + 7059: -95,1 + 7060: -94,3 + 7061: -95,5 + 7062: -95,8 + 7063: -94,10 + 7064: -93,9 + 7065: -93,7 - node: color: '#00AC887F' id: DirtHeavy decals: - 815: -41,31 - 816: -41,26 - 817: -37,28 - 818: -37,27 - 819: -37,28 + 424: -41,31 + 425: -41,26 + 426: -37,28 + 427: -37,27 + 428: -37,28 - node: cleanable: True color: '#FF0000FF' id: DirtHeavy decals: - 1864: -71.00598,-1.0109639 - 1865: -72,-2 - 1866: -70,-1 + 1155: -71.00598,-1.0109639 + 1156: -72,-2 - node: color: '#FFFFFF85' id: DirtHeavy decals: - 3378: -29,20 - 3382: -31,23 - 3383: -30,30 + 2358: -29,20 + 2362: -31,23 + 2363: -30,30 - node: cleanable: True color: '#FFFFFFD3' id: DirtHeavy decals: - 3391: 3,35 - 3392: -3,40 - 3397: -7,26 - 3398: 0,43 + 2371: 3,35 + 2372: -3,40 + 2377: -7,26 + 2378: 0,43 - node: color: '#FFFFFFFF' id: DirtHeavy @@ -2462,221 +4344,1105 @@ entities: 10: -35,-18 11: -32,-16 21: -44,-5 - 313: 35,13 - 1215: -97,-1 - 1216: -97,0 - 1222: -113,9 - 1223: -112,10 - 2881: -13,-5 + 309: 35,13 + 690: -113,9 + 691: -112,10 + 1870: -13,-5 + 4528: -112,-18 + 4529: -113,-18 + 4530: -107,-18 + 4531: -105,-18 + 4532: -105,-17 + 4533: -107,-17 + 4534: -106,-20 + 4535: -105,-20 + 4536: -108,-13 + 4537: -108,-12 + 4538: -110,-11 + 4539: -110,-12 + 4540: -108,-11 + 4541: -108,-10 + 4542: -98,-19 + 4543: -94,-20 + 4544: -92,-18 + 4545: -89,-17 + 4546: -86,-19 + 4547: -85,-18 + 4548: -82,-19 + 4549: -83,-15 + 4550: -84,-13 + 4551: -87,-13 + 4552: -89,-16 + 4553: -95,-16 + 4554: -97,-14 + 4555: -93,-13 + 4556: -89,-14 + 4557: -85,-18 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavy decals: - 567: -35,0 - 891: -33,17 - 892: -30,11 - 899: -28,6 - 919: -63,13 - 920: -64,14 - 921: -65,8 - 922: -65,10 - 923: -63,11 - 924: -63,9 - 925: -63,7 - 926: -67,7 - 927: -70,10 - 928: -69,12 - 929: -69,14 - 930: -67,14 - 931: -65,13 - 932: -61,14 - 933: -58,14 - 934: -59,12 - 935: -58,12 - 936: -60,12 - 937: -71,4 - 938: -77,3 - 939: -79,5 - 940: -65,-2 - 941: -62,0 - 942: -61,-2 - 943: -62,-3 - 944: -63,0 - 945: -65,1 - 946: -67,0 - 947: -67,-2 - 948: -70,-3 - 949: -71,-4 - 950: -70,-4 - 951: -71,2 - 952: -67,3 - 953: -68,4 - 954: -66,5 - 955: -63,4 - 956: -59,3 - 957: -60,4 - 958: -50,3 - 959: -52,4 - 960: -56,2 - 961: -57,0 - 962: -56,-2 - 963: -56,-4 - 964: -57,-4 - 965: -57,-2 - 966: -59,-2 - 967: -60,0 - 1285: -111,3 - 1312: -50,21 - 1313: -53,23 - 1314: -54,25 - 1315: -53,32 - 1331: -77,15 - 1346: -77,13 - 1351: -89,21 - 1364: -92,28 - 1388: -100,25 - 1389: -99,25 - 1393: -106,17 - 1398: -98,14 - 1415: -131,22 - 1416: -132,23 - 1417: -129,20 - 1418: -121,20 - 1419: -117,21 - 1420: -117,18 - 1421: -113,17 - 1422: -112,12 - 1453: -88,8 - 1454: -89,2 - 1455: -82,8 - 1456: -82,12 - 1457: -79,9 - 1458: -74,10 - 1459: -72,12 - 1460: -73,16 - 1461: -68,16 - 1462: -82,15 - 1494: -55,17 - 1495: -52,17 - 1502: -46,17 - 1503: -49,18 - 1523: -97,-4 - 1524: -92,-2 - 1525: -93,8 - 1526: -95,2 - 1527: -95,10 - 1549: -96,15 - 1550: -96,1 - 1552: -94,-4 - 1553: -88,-3 - 1554: -89,-1 - 1555: -100,2 - 1557: -105,2 - 1558: -111,5 - 1580: -106,8 - 1584: -103,11 - 1632: -125,-6 - 1633: -123,-7 - 1634: -120,-7 - 1635: -123,-10 - 1636: -121,-11 - 1637: -116,-14 - 1781: -53,40 - 1782: -54,35 - 1783: -58,33 - 2120: 34,4 - 2121: 31,3 - 2141: 7,2 - 2255: -3,-4 - 2256: 0,-2 - 2267: -4,-14 - 2268: -2,-16 - 2314: -13,4 - 2315: -17,2 - 2316: -10,1 - 2910: -18,-2 - 3285: 21,21 - 3359: 16,15 - 3361: -16,24 - 3368: 21,25 - 3408: -8,44 + 362: -35,0 + 478: -33,17 + 479: -30,11 + 486: -28,6 + 504: -63,13 + 505: -64,14 + 506: -65,8 + 507: -65,10 + 508: -63,11 + 509: -63,9 + 510: -63,7 + 511: -67,7 + 512: -70,10 + 513: -69,12 + 514: -69,14 + 515: -67,14 + 516: -65,13 + 517: -61,14 + 518: -58,14 + 519: -59,12 + 520: -58,12 + 521: -60,12 + 522: -71,4 + 523: -77,3 + 524: -79,5 + 525: -65,-2 + 526: -62,0 + 527: -61,-2 + 528: -63,0 + 529: -70,-3 + 530: -71,-4 + 531: -70,-4 + 532: -71,2 + 533: -67,3 + 534: -68,4 + 535: -66,5 + 536: -63,4 + 537: -59,3 + 538: -50,3 + 539: -52,4 + 540: -56,2 + 541: -57,0 + 542: -56,-2 + 543: -56,-4 + 544: -57,-4 + 545: -57,-2 + 546: -59,-2 + 547: -60,0 + 722: -111,3 + 749: -50,21 + 750: -53,23 + 751: -54,25 + 752: -53,32 + 768: -77,15 + 783: -77,13 + 788: -89,21 + 801: -92,28 + 825: -100,25 + 826: -99,25 + 830: -106,17 + 835: -98,14 + 852: -131,22 + 853: -132,23 + 854: -129,20 + 855: -121,20 + 856: -117,21 + 857: -117,18 + 858: -113,17 + 859: -112,12 + 860: -89,2 + 861: -82,12 + 862: -79,9 + 863: -74,10 + 864: -72,12 + 865: -73,16 + 866: -68,16 + 893: -55,17 + 894: -52,17 + 901: -46,17 + 902: -49,18 + 915: -95,2 + 935: -96,15 + 937: -89,-1 + 938: -100,2 + 939: -105,2 + 940: -111,5 + 961: -106,8 + 965: -103,11 + 1005: -125,-6 + 1006: -123,-7 + 1007: -120,-7 + 1008: -123,-10 + 1009: -121,-11 + 1253: 7,2 + 1345: -3,-4 + 1346: 0,-2 + 1356: -4,-14 + 1357: -2,-16 + 1386: -10,1 + 1899: -18,-2 + 2266: 21,21 + 2339: 16,15 + 2341: -16,24 + 2348: 21,25 + 2388: -8,44 + 3089: 40,-4 + 3090: 40,-3 + 3091: 40,-3 + 6017: -86,12 + 6018: -85,14 + 6019: -88,14 + 6020: -89,13 + 6021: -100,-5 + 6022: -100,-3 + 6023: -104,-2 + 6024: -105,-1 + 6025: -103,-1 + 6026: -100,-3 + 6027: -102,-4 + 6028: -103,-4 + 6029: -101,-10 + 6030: -105,-9 + 6031: -104,-9 + 6056: -103,10 + 6057: -105,10 + 6058: -105,11 + 6059: -104,11 + 6060: -102,8 + 6061: -96,4 + 6062: -96,4 + 6063: -96,0 + 6064: -81,14 + 6065: -81,16 + 6066: -83,18 + 6067: -83,14 + 6068: -83,13 + 6069: -81,14 + 6070: -81,18 + 6071: -81,20 + 6072: -83,20 + 6073: -84,20 + 6074: -81,21 + 6075: -81,16 + 6076: -87,24 + 6077: -86,25 + 6078: -86,22 + 6079: -84,27 + 6080: -84,29 + 6081: -86,30 + 6082: -86,27 + 6083: -86,33 + 6084: -86,35 + 6085: -86,32 + 6086: -86,31 + 6087: -87,33 + 6088: -87,34 + 6089: -84,35 + 6090: -84,32 + 6091: -88,38 + 6092: -88,42 + 6093: -88,41 + 6094: -89,44 + 6095: -88,44 + 6096: -89,39 + 6097: -88,39 + 6098: -89,35 + 6099: -89,32 + 6100: -89,34 + 6101: -89,33 + 6102: -84,44 + 6103: -84,43 + 6104: -84,41 + 6105: -84,40 + 6106: -86,42 + 6107: -86,44 + 6108: -86,41 + 6109: -86,39 + 6110: -86,41 + 6111: -86,43 + 6112: -74,16 + 6113: -74,14 + 6114: -74,13 + 6115: -74,12 + 6116: -73,11 + 6117: -73,10 + 6118: -72,8 + 6119: -74,9 + 6120: -74,9 + 6121: -74,12 + 6122: -73,14 + 6123: -73,12 + 6124: -68,10 + 6125: -69,13 + 6126: -64,11 + 6127: -63,9 + 6128: -64,9 + 6129: -66,10 + 6130: -68,17 + 6131: -64,17 + 6132: -61,17 + 6133: -58,17 + 6134: -56,17 + 6135: -61,19 + 6136: -62,18 + 6137: -60,18 + 6138: -61,18 + 6139: -64,18 + 6140: -64,21 + 6141: -63,21 + 6142: -61,21 + 6143: -60,21 + 6144: -63,20 + 6145: -63,21 + 6146: -61,21 + 6147: -62,13 + 6148: -62,13 + 6149: -62,13 + 6150: -52,13 + 6151: -50,13 + 6152: -53,14 + 6153: -52,13 + 6154: -51,13 + 6155: -55,13 + 6156: -50,14 + 6157: -49,14 + 6158: -48,16 + 6159: -49,17 + 6160: -52,17 + 6161: -54,16 + 6162: -51,18 + 6163: -50,18 + 6164: -49,17 + 6165: -49,16 + 6166: -46,17 + 6167: -44,17 + 6168: -42,15 + 6169: -39,17 + 6170: -39,17 + 6171: -38,16 + 6172: -37,18 + 6173: -39,18 + 6174: -37,17 + 6175: -39,18 + 6176: -36,18 + 6177: -33,19 + 6178: -32,17 + 6179: -33,16 + 6180: -32,15 + 6181: -31,16 + 6182: -30,16 + 6183: -30,14 + 6184: -30,13 + 6185: -32,14 + 6186: -31,11 + 6187: -31,11 + 6188: -30,8 + 6189: -31,7 + 6190: -32,8 + 6191: -33,8 + 6192: -32,11 + 6193: -32,13 + 6194: -30,11 + 6195: -33,4 + 6196: -35,4 + 6197: -37,4 + 6198: -37,2 + 6199: -35,2 + 6200: -32,2 + 6201: -35,2 + 6202: -42,1 + 6203: -42,1 + 6204: -40,1 + 6205: -40,-3 + 6206: -40,-5 + 6207: -40,-7 + 6208: -40,-4 + 6209: -40,-2 + 6210: -42,-1 + 6211: -42,-2 + 6212: -42,-4 + 6213: -42,-5 + 6214: -42,-8 + 6215: -42,-10 + 6216: -42,-10 + 6217: -42,-14 + 6218: -40,-14 + 6219: -40,-13 + 6220: -40,-11 + 6221: -40,-9 + 6222: -40,-7 + 6223: -40,-5 + 6224: -40,-2 + 6225: -40,0 + 6226: -42,3 + 6227: -45,3 + 6228: -47,3 + 6229: -49,3 + 6230: -51,3 + 6231: -53,3 + 6232: -53,3 + 6233: -54,3 + 6234: -55,0 + 6235: -55,-1 + 6236: -55,-3 + 6237: -56,-1 + 6238: -57,-1 + 6239: -57,-2 + 6240: -63,0 + 6241: -65,1 + 6242: -63,-3 + 6243: -65,-2 + 6244: -67,-2 + 6245: -66,0 + 6246: -67,-8 + 6247: -65,-8 + 6248: -62,-8 + 6249: -63,-8 + 6250: -63,-10 + 6251: -63,-11 + 6252: -64,-13 + 6253: -63,-13 + 6254: -63,-15 + 6255: -66,-16 + 6256: -62,-16 + 6257: -62,-16 + 6258: -66,-17 + 6259: -64,-15 + 6260: -61,-16 + 6261: -61,-18 + 6262: -65,-16 + 6263: -68,-15 + 6264: -68,-13 + 6265: -71,-11 + 6266: -71,-13 + 6267: -71,-13 + 6268: -70,-11 + 6269: -70,-13 + 6270: -71,-14 + 6271: -55,-17 + 6272: -53,-14 + 6273: -50,-14 + 6274: -49,-13 + 6275: -51,-13 + 6276: -52,-12 + 6277: -51,-14 + 6278: -49,-14 + 6279: -52,-15 + 6280: -52,-17 + 6281: -53,-16 + 6282: -52,-13 + 6283: -53,-11 + 6284: -49,-14 + 6285: -50,-11 + 6286: -50,-11 + 6287: -50,-11 + 6288: -48,-11 + 6289: -49,-10 + 6290: -49,-12 + 6291: -48,-12 + 6292: -48,-19 + 6293: -48,-17 + 6294: -49,-17 + 6295: -49,-16 + 6296: -48,-18 + 6297: -48,-18 + 6298: -52,-14 + 6299: -53,-13 + 6300: -56,-9 + 6301: -57,-8 + 6302: -56,-10 + 6303: -55,-11 + 6304: -55,-7 + 6305: -56,-7 + 6306: -56,-9 + 6307: -56,-10 + 6308: -61,-8 + 6309: -60,-8 + 6310: -59,-7 + 6311: -46,5 + 6312: -48,5 + 6313: -51,5 + 6314: -43,1 + 6315: -44,-1 + 6316: -46,0 + 6317: -46,0 + 6318: -45,-1 + 6319: -45,-1 + 6320: -45,1 + 6321: -44,0 + 6322: -44,-1 + 6323: -40,-2 + 6324: -41,-3 + 6325: -41,-5 + 6326: -42,-5 + 6327: -42,-4 + 6328: -40,-7 + 6329: -40,-9 + 6330: -41,-11 + 6331: -40,-13 + 6332: -40,-13 + 6333: -36,-13 + 6334: -35,-14 + 6335: -33,-14 + 6336: -30,-13 + 6337: -31,-12 + 6338: -28,-13 + 6339: -25,-12 + 6340: -26,-12 + 6341: -33,-12 + 6342: -37,-12 + 6343: -33,-12 + 6344: -33,-14 + 6345: -34,-14 + 6346: -30,-14 + 6347: -28,-14 + 6348: -36,-12 + 6349: -35,-12 + 6350: -25,-8 + 6351: -26,-7 + 6352: -27,-8 + 6353: -22,-8 + 6354: -21,-9 + 6355: -20,-8 + 6356: -22,-3 + 6357: -23,-5 + 6358: -21,-7 + 6359: -24,-6 + 6360: -23,-7 + 6361: -20,-9 + 6362: -18,-7 + 6363: -19,-4 + 6364: -20,-4 + 6365: -21,-5 + 6366: -19,-5 + 6367: -20,-2 + 6368: -21,-1 + 6369: -19,-1 + 6370: -19,-3 + 6371: -18,-5 + 6372: -15,-4 + 6373: -15,-4 + 6374: -16,-5 + 6375: -16,-3 + 6376: -14,-2 + 6377: -13,-4 + 6378: -14,-5 + 6379: -15,-6 + 6380: -12,-5 + 6381: -12,-2 + 6382: -12,-5 + 6383: -13,-9 + 6384: -14,-10 + 6385: -15,-9 + 6386: -13,-8 + 6387: -14,-9 + 6388: -15,-9 + 6389: -16,-8 + 6390: -16,-10 + 6391: -14,-10 + 6392: -14,-9 + 6393: -15,-8 + 6394: -15,-8 + 6395: -15,-8 + 6396: -16,-14 + 6397: -18,-14 + 6398: -20,-14 + 6399: -21,-14 + 6400: -12,-14 + 6401: -10,-15 + 6402: -10,-15 + 6403: -11,-15 + 6404: -10,-14 + 6405: -11,-12 + 6406: -13,-12 + 6407: -17,-12 + 6408: -21,-12 + 6409: -19,-11 + 6410: -20,-11 + 6411: -22,-11 + 6412: -24,-11 + 6413: -26,-12 + 6414: -27,-12 + 6415: -21,-20 + 6416: -21,-20 + 6417: -23,-17 + 6418: -22,-19 + 6419: -22,-20 + 6420: -20,-20 + 6421: -19,-23 + 6422: -17,-22 + 6423: -14,-23 + 6424: -12,-23 + 6425: -8,-24 + 6426: -9,-22 + 6427: -9,-22 + 6428: -9,-23 + 6429: -8,-24 + 6430: -5,-25 + 6431: -6,-23 + 6432: -7,-22 + 6433: -6,-25 + 6434: -4,-25 + 6435: -1,-25 + 6436: -2,-26 + 6437: -3,-26 + 6438: 2,-25 + 6439: 3,-25 + 6440: 2,-26 + 6441: 3,-19 + 6442: 1,-21 + 6443: -1,-21 + 6444: -2,-20 + 6445: -2,-21 + 6446: -2,-22 + 6447: -2,-23 + 6448: -1,-22 + 6449: -7,-18 + 6450: -9,-18 + 6451: -11,-18 + 6452: -11,-19 + 6453: -12,-19 + 6454: -15,-17 + 6455: -14,-18 + 6456: -13,-19 + 6457: -15,-18 + 6458: -16,-18 + 6459: -1,-16 + 6460: -3,-15 + 6461: -1,-15 + 6462: 0,-16 + 6463: -1,-17 + 6464: -3,-16 + 6465: -7,-13 + 6466: -8,-12 + 6467: -10,-12 + 6468: -4,-12 + 6469: -3,-12 + 6470: -3,-13 + 6471: -4,-16 + 6472: -15,-14 + 6473: -11,-14 + 6474: -11,-15 + 6475: -11,-15 + 6476: -9,-32 + 6477: -6,-30 + 6478: -7,-29 + 6479: -5,-32 + 6480: -9,-31 + 6481: -7,-32 + 6482: -2,-31 + 6483: -2,-28 + 6484: -3,-29 + 6485: -2,-31 + 6486: -1,-32 + 6487: -1,-29 + 6488: -2,-28 + 6489: -2,-30 + 6490: -1,-32 + 6491: -3,-32 + 6492: -2,-36 + 6493: -3,-36 + 6494: -2,-34 + 6495: -1,-35 + 6496: -2,-38 + 6497: -6,-36 + 6498: -6,-36 + 6499: -8,-36 + 6500: -8,-37 + 6501: -7,-37 + 6502: -6,-36 + 6503: -6,-36 + 6504: -6,-36 + 6505: -8,-41 + 6506: -8,-40 + 6507: -6,-41 + 6508: -6,-40 + 6509: -4,-40 + 6510: -4,-41 + 6511: -2,-40 + 6512: -2,-41 + 6513: 0,-40 + 6514: 0,-41 + 6515: 2,-41 + 6516: 1,-39 + 6532: 3,-29 + 6533: 2,-29 + 6534: 4,-29 + 6535: 4,-29 + 6536: 2,-28 + 6537: 1,-28 + 6538: 2,-29 + 6539: 2,-22 + 6540: 3,-20 + 6541: 2,-20 + 6542: 3,-22 + 6543: 3,-22 + 6544: 0,-7 + 6545: 0,-5 + 6546: 1,-8 + 6547: 1,-10 + 6548: 0,-13 + 6549: -1,-14 + 6550: -4,-14 + 6551: 3,-12 + 6552: 4,-14 + 6553: 2,-11 + 6554: 2,-13 + 6555: 3,-13 + 6556: 4,-11 + 6557: 5,-13 + 6558: 5,-13 + 6559: 8,-10 + 6560: 8,-11 + 6561: 9,-12 + 6562: 8,-12 + 6563: 7,-11 + 6564: 4,-8 + 6565: 3,-6 + 6566: 4,-5 + 6567: 7,-6 + 6568: 7,-6 + 6569: 5,-7 + 6570: 5,-8 + 6571: 8,-2 + 6572: 8,-1 + 6573: 8,-2 + 6574: 8,-3 + 6575: 3,-3 + 6576: 3,-3 + 6577: 4,-1 + 6578: 2,-1 + 6579: 5,-3 + 6580: 5,-3 + 6581: 6,-7 + 6582: 10,-7 + 6583: 12,-7 + 6584: 11,-6 + 6585: 13,-7 + 6586: 13,-9 + 6587: 12,-10 + 6588: 15,-10 + 6589: 16,-9 + 6590: 18,-10 + 6591: 18,-9 + 6592: 19,-11 + 6593: 22,-10 + 6594: 23,-9 + 6595: 23,-11 + 6596: 26,-10 + 6597: 26,-9 + 6598: 28,-10 + 6599: 29,-10 + 6600: 28,-9 + 6601: 30,-10 + 6602: 29,-9 + 6603: 25,-14 + 6604: 25,-12 + 6605: 24,-14 + 6606: 24,-14 + 6607: 21,-13 + 6608: 21,-15 + 6609: 22,-13 + 6610: 18,-14 + 6611: 18,-15 + 6612: 19,-15 + 6613: 19,-13 + 6614: 19,-13 + 6615: 28,-13 + 6616: 28,-13 + 6617: 28,-13 + 6618: 28,-15 + 6619: 28,-15 + 6620: 27,-14 + 6621: 33,-12 + 6622: 31,-11 + 6623: 32,-9 + 6624: 35,-10 + 6625: 35,-11 + 6626: 37,-12 + 6627: 37,-10 + 6628: 36,-9 + 6629: 36,-8 + 6630: 37,-7 + 6631: 36,-6 + 6632: 35,-7 + 6633: 36,-8 + 6634: 37,-10 + 6635: 41,-6 + 6636: 41,-6 + 6637: 39,-7 + 6638: 41,-7 + 6639: 40,-6 + 6640: 40,-8 + 6641: 41,-10 + 6642: 40,-3 + 6643: 42,-4 + 6644: 42,-6 + 6645: 39,-15 + 6646: 39,-14 + 6647: 39,-16 + 6648: 38,-17 + 6649: 40,-18 + 6650: 40,-18 + 6651: 39,-20 + 6652: 38,-19 + 6653: 37,-13 + 6654: 32,-15 + 6655: 29,-14 + 6656: 32,-14 + 6657: 34,-15 + 6658: 34,-13 + 6659: 31,-13 + 6660: 30,-14 + 6661: 30,-15 + 6662: 26,-6 + 6663: 27,-5 + 6664: 28,-2 + 6665: 25,-2 + 6666: 25,-3 + 6667: 27,-4 + 6668: 24,-3 + 6669: 23,-4 + 6670: 22,-6 + 6671: 22,-3 + 6672: 21,-5 + 6673: 23,-6 + 6674: 23,-7 + 6675: 19,-6 + 6676: 17,-6 + 6677: 17,-7 + 6678: 19,-7 + 6679: 19,-6 + 6680: 21,-5 + 6681: 20,-7 + 6682: 21,-7 + 6683: 24,-7 + 6684: 43,-15 + 6685: 43,-13 + 6686: 44,-15 + 6687: 43,-16 + 6688: 49,-15 + 6689: 48,-16 + 6690: 46,-16 + 6691: 47,-14 + 6692: 49,-14 + 6693: 51,-16 + 6694: 49,-17 + 6695: 51,-14 + 6696: 48,-12 + 6697: 45,-12 + 6698: 43,-12 + 6699: 42,-15 + 6700: 42,-16 + 6701: 43,-16 + 6702: 48,-16 + 6703: 51,-17 + 6704: 49,-15 + 6705: 47,-14 + 6706: 45,-20 + 6707: 45,-21 + 6708: 44,-25 + 6709: 42,-25 + 6710: 44,-28 + 6711: 46,-29 + 6712: 51,-26 + 6713: 49,-24 + 6714: 50,-31 + 6715: 46,-32 + 6716: 50,-32 + 6717: 50,-31 + 6718: 44,-30 + 6719: 42,-32 + 6720: 41,-30 + 6721: 40,-32 + 6722: 41,-32 + 6723: 44,-31 + 6724: 39,-22 + 6725: 38,-23 + 6726: 39,-26 + 6727: 40,-26 + 6728: 38,-27 + 6729: 39,-24 + 6730: 38,-27 + 6731: 35,-27 + 6732: 34,-24 + 6733: 34,-25 + 6734: 34,-26 + 6735: 35,-27 + 6736: 36,-26 + 6737: 35,-24 + 6738: 36,-24 + 6739: 36,-25 + 6740: 35,-26 + 6741: 35,-26 + 6742: 35,-25 + 6743: 35,2 + 6744: 34,4 + 6745: 34,5 + 6746: 34,6 + 6747: 34,7 + 6748: 36,7 + 6749: 37,8 + 6750: 34,8 + 6751: 34,8 + 6752: 39,6 + 6753: 35,10 + 6754: 35,11 + 6755: 32,12 + 6756: 31,11 + 6757: 35,11 + 6758: 37,12 + 6759: 37,15 + 6760: 36,16 + 6761: 32,15 + 6762: 31,15 + 6763: 31,13 + 6764: 32,13 + 6765: 38,2 + 6766: 37,1 + 6767: 40,0 + 6768: 41,0 + 6769: 41,1 + 6770: 39,3 + 6771: 38,5 + 6772: 38,7 + 6773: 44,1 + 6774: 43,0 + 6775: 43,0 + 6776: 43,2 + 6777: 45,1 + 6778: 48,1 + 6779: 49,1 + 6780: 51,0 + 6781: 52,1 + 6782: 51,3 + 6783: 52,5 + 6784: 52,5 + 6785: 52,7 + 6786: 49,8 + 6787: 48,8 + 6788: 51,8 + 6789: 52,10 + 6790: 44,8 + 6791: 43,9 + 6792: 43,7 + 6793: 45,7 + 6794: 51,7 + 6795: 48,7 + 6796: 49,7 + 6797: 51,11 + 6798: 53,12 + 6799: 55,12 + 6800: 57,11 + 6801: 59,11 + 6802: 57,12 + 6803: 55,13 + 6804: 54,14 + 6805: 59,14 + 6806: 58,13 + 6807: 58,12 + 6808: 60,12 + 6809: 63,12 + 6810: 64,13 + 6811: 64,12 + 6812: 62,11 + 6813: 60,10 + 6814: 60,10 + 6815: 62,8 + 6816: 62,9 + 6817: 59,9 + 6818: 59,7 + 6819: 60,7 + 6820: 61,6 + 6821: 60,3 + 6822: 58,3 + 6823: 62,4 + 6824: 62,2 + 6825: 61,0 + 6826: 60,-1 + 6827: 59,-1 + 6828: 62,-3 + 6829: 61,-3 + 6830: 58,-3 + 6831: 58,-2 + 6832: 63,-3 + 6833: 64,-4 + 6834: 58,-4 + 6835: 57,-5 + 6836: 55,-5 + 6837: 53,-4 + 6838: 55,-5 + 6839: 59,-5 - node: cleanable: True color: '#FFFFFFD3' id: DirtHeavyMonotile decals: - 3388: -2,29 + 2368: -2,29 + - node: + color: '#FFFFFFFF' + id: DirtHeavyMonotile + decals: + 3906: -53,40 + 3907: -53,39 + 3908: -52,39 + 3909: -52,41 + 3910: -57,44 + 3911: -56,45 + 3912: -56,43 + 3913: -59,45 + 3914: -59,42 + 3915: -62,41 + 3916: -62,36 + 4558: -89,-14 + 4559: -84,-15 + 4560: -84,-18 + 4561: -88,-19 + 4562: -82,-19 + 4563: -80,-19 + 4564: -83,-14 + 4565: -85,-12 + 4566: -83,-19 + 4567: -82,-20 + 4568: -86,-20 + 4569: -90,-20 + 4570: -92,-17 + 4571: -96,-19 + 4572: -98,-19 + 4573: -98,-15 + 4574: -97,-14 + 4575: -96,-15 + 4576: -97,-17 + 4577: -100,-19 + 4578: -101,-17 + 4579: -102,-15 + 4580: -106,-18 + 4581: -107,-20 + 4582: -111,-19 + 4583: -108,-17 + 4584: -104,-19 + 4585: -115,-20 + 4586: -116,-16 + 4587: -115,-16 + 4588: -113,-18 + 4589: -113,-20 + 4590: -113,-18 + 4591: -114,-16 + 4592: -118,-20 + 4593: -119,-18 + 4594: -120,-18 + 4595: -119,-20 + 4596: -118,-20 + 4597: -92,-8 + 4598: -92,-7 + 4599: -92,-9 + 4600: -95,-7 + 4601: -95,-7 - node: cleanable: True color: '#FFFFFFFF' id: DirtHeavyMonotile decals: - 2914: -18,-9 - 3296: -19,7 - 3297: -11,15 - 3357: 3,16 - 3358: 5,11 - 3364: 3,23 - 3409: -9,42 - 3410: -6,39 - 3625: 43,-24 - 3626: 43,-26 - 3627: 47,-24 - 3628: 51,-24 - 3629: 51,-21 - 3630: 53,-21 - 3631: 54,-20 - 3632: 53,-26 - 3634: 53,-27 - 3636: 54,-27 - 3638: 51,-26 - 3639: 44,-32 - 3640: 44,-33 - 3641: 44,-34 - 3642: 40,-33 - 3643: 40,-31 - 3644: 42,-30 - 3646: 44,-33 - 3648: 45,-33 - 3649: 48,-32 - 3650: 51,-32 - 3651: 51,-30 - 3652: 48,-30 - 3702: 36,-21 - 3703: 35,-21 - 3704: 36,-20 - 3705: 36,-21 - 3706: 36,-21 - 3707: 36,-20 - 3708: 35,-20 - 3709: 35,-21 - 3719: 35,-21 - 3720: 35,-20 - 3721: 36,-20 - 3722: 36,-21 - 3723: 35,-21 - 3724: 35,-20 - 3725: 36,-21 + 1903: -18,-9 + 2276: -19,7 + 2277: -11,15 + 2337: 3,16 + 2338: 5,11 + 2344: 3,23 + 2389: -9,42 + 2390: -6,39 + 2603: 43,-24 + 2604: 43,-26 + 2605: 47,-24 + 2606: 51,-24 + 2607: 51,-21 + 2608: 53,-21 + 2609: 54,-20 + 2610: 53,-26 + 2612: 53,-27 + 2614: 54,-27 + 2616: 51,-26 + 2617: 44,-32 + 2618: 44,-33 + 2619: 44,-34 + 2620: 40,-33 + 2621: 40,-31 + 2622: 42,-30 + 2624: 44,-33 + 2626: 45,-33 + 2627: 48,-32 + 2628: 51,-32 + 2629: 51,-30 + 2630: 48,-30 + 2680: 36,-21 + 2681: 35,-21 + 2682: 36,-20 + 2683: 36,-21 + 2684: 36,-21 + 2685: 36,-20 + 2686: 35,-20 + 2687: 35,-21 + 2697: 35,-21 + 2698: 35,-20 + 2699: 36,-20 + 2700: 36,-21 + 2701: 35,-21 + 2702: 35,-20 + 2703: 36,-21 + 3092: 43,-4 + 3093: 43,-6 + 3094: 44,-10 + 3917: -56,42 + 3918: -56,44 + 3919: -57,44 + 3920: -56,44 + 3921: -52,44 + 3922: -52,43 + 3923: -52,43 + 3924: -53,43 + 3925: -52,44 + 3926: -52,45 + 3927: -51,44 + 3928: -51,43 + 3929: -51,44 + 3930: -52,44 + 3931: -53,44 + 3932: -53,43 + 3933: -53,45 + 3934: -52,45 + 5921: -93,0 + 5944: -95,15 + 5945: -93,14 + 5946: -93,14 + 5947: -95,12 + 5948: -96,13 + 5949: -94,12 + 5950: -92,12 + 5951: -93,15 + 5952: -95,16 + 5953: -92,16 + 5954: -92,16 - node: cleanable: True color: '#FFFFFF6A' id: DirtLight decals: - 3406: -7,46 + 2386: -7,46 - node: color: '#FFFFFF85' id: DirtLight decals: - 3379: -32,20 + 2359: -32,20 - node: cleanable: True color: '#FFFFFFD3' id: DirtLight decals: - 3393: -8,32 - 3394: -2,29 - 3395: -3,25 + 2373: -8,32 + 2374: -2,29 + 2375: -3,25 - node: color: '#FFFFFFFF' id: DirtLight @@ -2695,549 +5461,567 @@ entities: 17: -25,-17 19: -44,-9 20: -45,-7 - 289: 38,7 - 290: 36,4 - 291: 37,2 - 292: 52,2 - 293: 60,-5 - 294: 64,-2 - 295: 57,5 - 300: 56,0 - 301: 58,2 - 303: 59.246502,10.244531 - 304: 60.746502,-1.7587038 - 308: 44,9 - 309: 45,7 - 310: 44,13 - 311: 31,12 - 1217: -105,-1 - 1218: -105,14 - 1224: -122,3 - 1225: -122,-8 - 1229: -1,23 - 1533: -67,38 - 1534: -61,35 - 1535: -66,29 - 1537: -61,30 - 1538: -66,26 - 1539: -62,25 - 1542: -65,34 - 1544: -60,40 - 1548: -61,44 - 1551: -57,34 - 1556: -52,39 - 1696: -85,43 - 1697: -87,35 - 1698: -85,32 - 1699: -84,24 - 1700: -84,21 - 1701: -86,20 - 1702: -86,38 - 1703: -89,39 - 2879: -15,-2 + 286: 38,7 + 287: 36,4 + 288: 37,2 + 289: 52,2 + 290: 60,-5 + 291: 64,-2 + 292: 57,5 + 297: 56,0 + 298: 58,2 + 300: 59.246502,10.244531 + 301: 60.746502,-1.7587038 + 304: 44,9 + 305: 45,7 + 306: 44,13 + 307: 31,12 + 685: -105,-1 + 686: -105,14 + 692: -122,3 + 696: -1,23 + 921: -67,38 + 922: -61,35 + 924: -61,30 + 925: -66,26 + 928: -65,34 + 930: -60,40 + 934: -61,44 + 936: -57,34 + 1067: -85,43 + 1068: -87,35 + 1069: -85,32 + 1070: -84,24 + 1071: -84,21 + 1072: -86,20 + 1073: -86,38 + 1074: -89,39 + 1868: -15,-2 - node: cleanable: True color: '#FFFFFFFF' id: DirtLight decals: - 564: -35,-2 - 565: -38,-1 - 568: -34,0 - 569: -34,0 - 844: -37,4 - 845: -35,2 - 846: -37,5 - 847: -34,4 - 848: -33,2 - 849: -31,5 - 863: -25,1 - 864: -26,3 - 865: -24,4 - 866: -24,6 - 867: -23,3 - 868: -23,2 - 869: -24,2 - 870: -26,6 - 871: -27,5 - 872: -31,4 - 873: -33,4 - 874: -33,3 - 875: -34,3 - 876: -36,4 - 877: -34,8 - 878: -34,7 - 879: -33,7 - 880: -32,6 - 881: -32,12 - 882: -32,10 - 883: -33,11 - 884: -31,11 - 885: -31,15 - 886: -32,15 - 887: -33,14 - 888: -33,16 - 889: -31,16 - 890: -31,18 - 894: -38,5 - 895: -24,8 - 896: -25,8 - 897: -28,6 - 898: -28,5 - 905: -69,13 - 906: -69,12 - 907: -70,8 - 908: -70,9 - 909: -66,8 - 910: -64,13 - 911: -60,13 - 912: -57,14 - 913: -55,13 - 914: -54,13 - 915: -53,14 - 916: -53,13 - 917: -60,13 - 918: -62,13 - 968: -56,-3 - 969: -55,-3 - 970: -55,-2 - 971: -55,-1 - 972: -56,0 - 973: -56,2 - 974: -56,3 - 975: -51,3 - 976: -53,4 - 977: -57,4 - 978: -64,3 - 979: -65,3 - 980: -69,4 - 981: -72,4 - 982: -77,3 - 983: -78,3 - 984: -76,4 - 985: -72,4 - 986: -70,1 - 987: -71,-3 - 988: -68,-1 - 989: -66,-2 - 990: -67,-1 - 991: -61,-1 - 992: -63,-2 - 993: -64,-3 - 994: -65,-3 - 995: -65,-1 - 996: -64,1 - 997: -65,0 - 998: -64,1 - 999: -61,0 - 1000: -61,-1 - 1001: -60,0 - 1002: -61,1 - 1003: -63,0 - 1004: -62,1 - 1005: -64,3 - 1006: -65,5 - 1007: -64,5 - 1008: -70,3 - 1009: -70,3 - 1010: -69,3 - 1011: -70,4 - 1012: -71,3 - 1013: -74,4 - 1014: -76,3 - 1015: -76,3 - 1016: -74,3 - 1017: -77,4 - 1018: -79,4 - 1019: -79,3 - 1020: -79,3 - 1021: -78,4 - 1022: -78,5 - 1023: -56,4 - 1024: -56,4 - 1025: -58,4 - 1026: -57,4 - 1027: -57,3 - 1028: -55,3 - 1029: -54,5 - 1030: -53,5 - 1031: -51,5 - 1032: -48,5 - 1033: -49,4 - 1034: -46,3 - 1035: -47,4 - 1036: -42,4 - 1037: -41,5 - 1038: -44,4 - 1039: -40,2 - 1040: -40,-3 - 1041: -68,10 - 1042: -69,10 - 1043: -68,9 - 1044: -67,8 - 1045: -68,8 - 1046: -67,9 - 1047: -66,11 - 1048: -68,13 - 1302: -37,22 - 1303: -39,21 - 1306: -40,21 - 1307: -38,25 - 1308: -37,24 - 1309: -43,21 - 1310: -42,20 - 1316: -54,30 - 1317: -54,28 - 1318: -54,21 - 1319: -51,20 - 1320: -50,20 - 1321: -46,21 - 1322: -46,20 - 1323: -36,21 - 1324: -67,20 - 1325: -67,21 - 1326: -68,21 - 1330: -78,21 - 1332: -78,15 - 1333: -79,17 - 1334: -78,17 - 1335: -76,20 - 1336: -76,19 - 1337: -77,19 - 1339: -69,20 - 1340: -68,21 - 1341: -77,13 - 1342: -78,13 - 1343: -78,12 - 1344: -79,12 - 1345: -78,15 - 1347: -90,18 - 1348: -90,16 - 1349: -89,16 - 1350: -89,17 - 1352: -90,23 - 1353: -88,23 - 1354: -89,28 - 1355: -89,27 - 1356: -90,26 - 1359: -93,26 - 1360: -94,24 - 1361: -94,23 - 1362: -94,27 - 1363: -94,28 - 1365: -92,26 - 1366: -89,18 - 1367: -90,16 - 1368: -99,21 - 1369: -100,21 - 1370: -97,19 - 1371: -99,19 - 1372: -100,19 - 1373: -100,20 - 1374: -97,21 - 1375: -101,22 - 1376: -101,24 - 1377: -99,25 - 1378: -101,27 - 1379: -101,27 - 1380: -101,26 - 1381: -99,27 - 1382: -97,29 - 1383: -96,26 - 1384: -97,26 - 1385: -97,24 - 1386: -98,24 - 1387: -99,24 - 1390: -101,18 - 1391: -102,18 - 1392: -104,18 - 1395: -103,14 - 1396: -103,13 - 1397: -101,12 - 1401: -100,12 - 1402: -98,12 - 1403: -112,13 - 1404: -113,14 - 1405: -113,16 - 1406: -114,18 - 1407: -115,18 - 1408: -118,20 - 1409: -118,21 - 1410: -127,21 - 1411: -124,20 - 1412: -123,20 - 1463: -83,16 - 1464: -81,12 - 1465: -82,9 - 1466: -80,8 - 1467: -87,9 - 1468: -85,9 - 1469: -87,3 - 1470: -86,2 - 1471: -89,4 - 1472: -88,6 - 1473: -89,9 - 1474: -85,7 - 1481: -66,17 - 1482: -62,17 - 1483: -58,16 - 1484: -56,16 - 1485: -58,17 - 1486: -60,18 - 1487: -73,14 - 1488: -73,11 - 1489: -82,10 - 1490: -64,17 - 1491: -60,16 - 1492: -55,17 - 1493: -52,16 - 1497: -50,14 - 1498: -47,13 - 1499: -49,16 - 1500: -49,17 - 1504: -43,18 - 1505: -43,16 - 1506: -45,16 - 1507: -37,17 - 1508: -40,18 - 1509: -39,16 - 1511: -41,17 - 1512: -92,-2 - 1513: -89,-3 - 1514: -95,-6 - 1515: -93,2 - 1516: -95,7 - 1517: -93,10 - 1518: -92,9 - 1543: -93,14 - 1545: -92,16 - 1546: -92,12 - 1547: -96,14 - 1563: -108,13 - 1564: -109,15 - 1565: -108,15 - 1566: -108,10 - 1567: -108,6 - 1568: -110,5 - 1569: -110,0 - 1570: -113,-2 - 1571: -108,-4 - 1572: -108,-14 - 1573: -110,-20 - 1574: -108,-3 - 1575: -108,2 - 1576: -107,3 - 1577: -105,3 - 1578: -104,7 - 1581: -102,9 - 1582: -102,10 - 1583: -103,11 - 1585: -105,-5 - 1586: -102,-5 - 1587: -100,-2 - 1588: -104,-2 - 1589: -99,-5 - 1590: -101,-9 - 1591: -104,-10 - 1592: -105,-9 - 1593: -102,-9 - 1594: -101,-10 - 1595: -106,-13 - 1596: -105,-15 - 1597: -105,-20 - 1598: -106,-19 - 1599: -105,-16 - 1600: -113,-5 - 1601: -113,-10 - 1602: -112,-12 - 1603: -116,-12 - 1604: -120,-12 - 1605: -121,-14 - 1606: -121,-15 - 1607: -119,-13 - 1608: -118,-15 - 1609: -115,-14 - 1610: -123,-9 - 1611: -125,-9 - 1612: -123,-4 - 1613: -124,-5 - 1614: -121,-3 - 1615: -120,-2 - 1616: -121,3 - 1617: -122,4 - 1769: -57,41 - 1770: -56,39 - 1771: -58,32 - 2122: 28,1 - 2123: 26,3 - 2124: 25,1 - 2125: 23,1 - 2126: 20,3 - 2127: 25,2 - 2128: 30,2 - 2129: 34,7 - 2130: 38,8 - 2131: 39,6 - 2132: 38,2 - 2133: 40,6 - 2142: 7,3 - 2143: 4,3 - 2144: 4,1 - 2145: 2,2 - 2146: 7,1 - 2147: 4,2 - 2148: 14,1 - 2149: 12,3 - 2150: 17,2 - 2216: -42,0 - 2217: -41,-3 - 2218: -41,-8 - 2219: -40,-12 - 2220: -41,-13 - 2221: -42,-12 - 2222: -42,-9 - 2223: -41,-7 - 2224: -37,-13 - 2225: -37,-14 - 2226: -33,-12 - 2227: -30,-14 - 2228: -35,-13 - 2229: -28,-12 - 2230: -28,-13 - 2231: -20,-13 - 2232: -23,-12 - 2233: -17,-13 - 2234: -17,-14 - 2235: -12,-13 - 2236: -11,-14 - 2237: -6,-14 - 2238: -7,-12 - 2239: -10,-12 - 2240: -13,-12 - 2241: -4,-16 - 2242: -2,-18 - 2243: 0,-16 - 2244: -1,-14 - 2245: -3,-8 - 2246: -1,-11 - 2247: 0,-5 - 2248: -4,-6 - 2249: -2,-3 - 2250: -3,2 - 2251: -4,3 - 2252: -1,3 - 2253: 0,1 - 2254: -4,1 - 2307: -19,2 - 2308: -20,1 - 2309: -14,3 - 2310: -11,2 - 2311: -9,1 - 2312: -7,1 - 2313: -9,3 - 2616: -8,5 - 2618: 6,13 - 2621: 16,11 - 2907: -26,-8 - 3286: 9,22 - 3287: 6,21 - 3288: -5,18 - 3289: 24,23 - 3290: 25,22 - 3291: 18,30 - 3293: 9,33 - 3294: 11,41 - 3295: 13,25 - 3352: -8,8 - 3356: -2,16 - 3360: 13,20 - 3363: -2,23 - 3371: -13,24 - 3373: -21,20 - 3374: -22,24 - 3407: -7,46 - 3671: 44,-24 - 3672: 45,-24 - 3673: 46,-23 - 3674: 47,-23 - 3684: 35,-21 - 3685: 35,-20 - 3686: 36,-20 - 3687: 36,-21 - 3688: 35,-20 - 3689: 35,-20 - 3726: 35,-20 - 3727: 35,-20 - 3728: 36,-20 - 3729: 35,-21 - 3730: 35,-21 + 359: -35,-2 + 360: -38,-1 + 363: -34,0 + 364: -34,0 + 431: -37,4 + 432: -35,2 + 433: -37,5 + 434: -34,4 + 435: -33,2 + 436: -31,5 + 450: -25,1 + 451: -26,3 + 452: -24,4 + 453: -24,6 + 454: -23,3 + 455: -23,2 + 456: -24,2 + 457: -26,6 + 458: -27,5 + 459: -31,4 + 460: -33,4 + 461: -33,3 + 462: -34,3 + 463: -36,4 + 464: -34,8 + 465: -34,7 + 466: -33,7 + 467: -32,6 + 468: -32,12 + 469: -32,10 + 470: -33,11 + 471: -31,11 + 472: -31,15 + 473: -32,15 + 474: -33,14 + 475: -33,16 + 476: -31,16 + 477: -31,18 + 481: -38,5 + 482: -24,8 + 483: -25,8 + 484: -28,6 + 485: -28,5 + 492: -69,13 + 493: -69,12 + 494: -70,8 + 495: -70,9 + 496: -66,8 + 497: -64,13 + 498: -60,13 + 499: -55,13 + 500: -53,14 + 501: -53,13 + 502: -60,13 + 503: -62,13 + 548: -56,-3 + 549: -55,-3 + 550: -55,-2 + 551: -56,0 + 552: -56,2 + 553: -51,3 + 554: -53,4 + 555: -57,4 + 556: -64,3 + 557: -65,3 + 558: -69,4 + 559: -72,4 + 560: -77,3 + 561: -78,3 + 562: -76,4 + 563: -72,4 + 564: -70,1 + 565: -71,-3 + 566: -68,-1 + 567: -66,-2 + 568: -67,-1 + 569: -61,-1 + 570: -63,-2 + 571: -65,-1 + 572: -65,0 + 573: -61,0 + 574: -61,-1 + 575: -60,0 + 576: -63,0 + 577: -64,3 + 578: -65,5 + 579: -64,5 + 580: -70,3 + 581: -70,3 + 582: -69,3 + 583: -70,4 + 584: -71,3 + 585: -74,4 + 586: -76,3 + 587: -76,3 + 588: -74,3 + 589: -77,4 + 590: -79,4 + 591: -79,3 + 592: -79,3 + 593: -78,4 + 594: -78,5 + 595: -56,4 + 596: -56,4 + 597: -58,4 + 598: -57,4 + 599: -57,3 + 600: -55,3 + 601: -54,5 + 602: -53,5 + 603: -51,5 + 604: -48,5 + 605: -49,4 + 606: -46,3 + 607: -47,4 + 608: -42,4 + 609: -41,5 + 610: -44,4 + 611: -40,2 + 612: -40,-3 + 613: -68,10 + 614: -69,10 + 615: -68,9 + 616: -67,8 + 617: -68,8 + 618: -67,9 + 619: -66,11 + 620: -68,13 + 739: -37,22 + 740: -39,21 + 743: -40,21 + 744: -38,25 + 745: -37,24 + 746: -43,21 + 747: -42,20 + 753: -54,30 + 754: -54,28 + 755: -54,21 + 756: -51,20 + 757: -50,20 + 758: -46,21 + 759: -46,20 + 760: -36,21 + 761: -67,20 + 762: -67,21 + 763: -68,21 + 767: -78,21 + 769: -78,15 + 770: -79,17 + 771: -78,17 + 772: -76,20 + 773: -76,19 + 774: -77,19 + 776: -69,20 + 777: -68,21 + 778: -77,13 + 779: -78,13 + 780: -78,12 + 781: -79,12 + 782: -78,15 + 784: -90,18 + 785: -90,16 + 786: -89,16 + 787: -89,17 + 789: -90,23 + 790: -88,23 + 791: -89,28 + 792: -89,27 + 793: -90,26 + 796: -93,26 + 797: -94,24 + 798: -94,23 + 799: -94,27 + 800: -94,28 + 802: -92,26 + 803: -89,18 + 804: -90,16 + 805: -99,21 + 806: -100,21 + 807: -97,19 + 808: -99,19 + 809: -100,19 + 810: -100,20 + 811: -97,21 + 812: -101,22 + 813: -101,24 + 814: -99,25 + 815: -101,27 + 816: -101,27 + 817: -101,26 + 818: -99,27 + 819: -97,29 + 820: -96,26 + 821: -97,26 + 822: -97,24 + 823: -98,24 + 824: -99,24 + 827: -101,18 + 828: -102,18 + 829: -104,18 + 832: -103,14 + 833: -103,13 + 834: -101,12 + 838: -100,12 + 839: -98,12 + 840: -112,13 + 841: -113,14 + 842: -113,16 + 843: -114,18 + 844: -115,18 + 845: -118,20 + 846: -118,21 + 847: -127,21 + 848: -124,20 + 849: -123,20 + 867: -83,16 + 868: -81,12 + 869: -80,8 + 870: -87,9 + 871: -87,3 + 872: -86,2 + 873: -89,4 + 874: -89,9 + 880: -66,17 + 881: -62,17 + 882: -58,16 + 883: -56,16 + 884: -58,17 + 885: -60,18 + 886: -73,14 + 887: -73,11 + 888: -82,10 + 889: -64,17 + 890: -60,16 + 891: -55,17 + 892: -52,16 + 896: -50,14 + 897: -47,13 + 898: -49,16 + 899: -49,17 + 903: -43,18 + 904: -43,16 + 905: -45,16 + 906: -37,17 + 907: -40,18 + 908: -39,16 + 910: -41,17 + 911: -93,2 + 912: -95,7 + 913: -93,10 + 929: -93,14 + 931: -92,16 + 932: -92,12 + 933: -96,14 + 945: -108,13 + 946: -109,15 + 947: -108,15 + 948: -108,10 + 949: -108,6 + 950: -110,5 + 951: -110,0 + 952: -113,-2 + 953: -108,-4 + 954: -108,-14 + 955: -108,-3 + 956: -108,2 + 957: -107,3 + 958: -105,3 + 959: -104,7 + 962: -102,9 + 963: -102,10 + 964: -103,11 + 966: -105,-5 + 967: -102,-5 + 968: -100,-2 + 969: -104,-2 + 970: -99,-5 + 971: -101,-9 + 972: -104,-10 + 973: -105,-9 + 974: -102,-9 + 975: -101,-10 + 976: -113,-5 + 977: -113,-10 + 978: -120,-12 + 979: -121,-14 + 980: -121,-15 + 981: -119,-13 + 982: -118,-15 + 983: -123,-9 + 984: -125,-9 + 985: -123,-4 + 986: -124,-5 + 987: -121,-3 + 988: -120,-2 + 989: -121,3 + 990: -122,4 + 1083: -56,39 + 1245: 23,1 + 1246: 25,2 + 1247: 30,2 + 1248: 39,6 + 1249: 38,2 + 1250: 40,6 + 1254: 4,1 + 1255: 2,2 + 1256: 7,1 + 1257: 4,2 + 1258: 14,1 + 1259: 17,2 + 1316: -41,-3 + 1317: -41,-8 + 1318: -40,-12 + 1319: -41,-13 + 1320: -42,-12 + 1321: -42,-9 + 1322: -41,-7 + 1323: -37,-13 + 1324: -37,-14 + 1325: -33,-12 + 1326: -30,-14 + 1327: -35,-13 + 1328: -28,-12 + 1329: -28,-13 + 1330: -20,-13 + 1331: -23,-12 + 1332: -17,-13 + 1333: -12,-13 + 1334: -6,-14 + 1335: -7,-12 + 1336: -13,-12 + 1337: -1,-14 + 1338: -1,-11 + 1339: 0,-5 + 1340: -4,-6 + 1341: -2,-3 + 1342: -3,2 + 1343: 0,1 + 1344: -4,1 + 1382: -14,3 + 1383: -11,2 + 1384: -9,1 + 1385: -7,1 + 1617: -8,5 + 1619: 6,13 + 1622: 16,11 + 1896: -26,-8 + 2267: 9,22 + 2268: 6,21 + 2269: -5,18 + 2270: 24,23 + 2271: 25,22 + 2272: 18,30 + 2274: 9,33 + 2275: 11,41 + 2332: -8,8 + 2336: -2,16 + 2340: 13,20 + 2343: -2,23 + 2351: -13,24 + 2353: -21,20 + 2354: -22,24 + 2387: -7,46 + 2649: 44,-24 + 2650: 45,-24 + 2651: 46,-23 + 2652: 47,-23 + 2662: 35,-21 + 2663: 35,-20 + 2664: 36,-20 + 2665: 36,-21 + 2666: 35,-20 + 2667: 35,-20 + 2704: 35,-20 + 2705: 35,-20 + 2706: 36,-20 + 2707: 35,-21 + 2708: 35,-21 + 5922: -95,-2 + 5923: -94,-2 + 5924: -91,-2 + 5925: -89,-2 + 5926: -90,-1 + 5927: -95,-1 + 5928: -96,-1 + 5929: -96,3 + 5930: -96,3 + 5931: -96,1 + 5932: -92,2 + 5933: -92,4 + 5934: -93,10 + 5935: -95,10 + 5936: -93,9 + 5937: -94,14 + 5938: -95,14 + 5939: -94,12 + 5940: -92,14 + 5941: -93,16 + 5942: -94,15 + 5943: -92,13 + 5955: -95,9 + 5956: -95,8 + 5957: -95,5 + 5958: -95,2 + 5959: -95,-1 + 5960: -95,0 + 5961: -93,1 + 5962: -93,3 + 5963: -93,6 + 5964: -93,7 + 5965: -90,2 + 5966: -90,3 + 5967: -90,7 + 5968: -90,9 + 5969: -88,9 + 5970: -84,9 + 5971: -84,9 + 5972: -86,10 + 5973: -88,10 + 5974: -86,9 + 5975: -85,9 + 5976: -86,5 + 5977: -86,3 + 5978: -85,3 + 5979: -86,4 + 5980: -86,2 + 5981: -87,2 + 5982: -89,2 + 5983: -90,3 + 5984: -89,5 + 5985: -87,7 + 5986: -85,7 + 5987: -83,8 + 5988: -80,8 + 5989: -78,8 + 5990: -79,9 + 5991: -79,4 + 5992: -76,4 + 5993: -73,3 + 5994: -75,3 + 5995: -75,3 + 5996: -76,5 + 5997: -77,5 + 5998: -89,10 + 5999: -87,10 + 6000: -83,10 + 6001: -87,14 + 6002: -88,13 + 6003: -86,12 + 6004: -85,14 + 6005: -85,15 + 6006: -86,14 + 6007: -86,12 + 6008: -86,14 + 6009: -85,16 + 6518: -6,-42 + 6519: -7,-42 + 6520: -7,-40 + 6521: -2,-40 + 6522: -2,-41 + 6523: -4,-40 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: DirtLight decals: - 2042: -67,40 - 2043: -66,39 - 2044: -62,39 - 2045: -62,37 - 2046: -63,39 - 2047: -62,38 - 2048: -62,39 - 2049: -63,38 - 2050: -60,43 - 2051: -60,41 - 2052: -65,44 - 2053: -65,44 - 2054: -65,43 - 2055: -66,44 - 2058: -61,38 - 2059: -61,33 - 2060: -65,30 - 2061: -67,31 - 2062: -66,30 - 2063: -67,28 - 2064: -67,27 - 2065: -63,25 - 2066: -62,25 - 2067: -66,26 - 2068: -67,26 - 2069: -67,28 - 2070: -65,28 - 2071: -65,28 - 2072: -67,30 - 2073: -66,33 - 2074: -67,34 - 2075: -66,36 - 2076: -63,39 - 2077: -65,41 - 2078: -62,43 - 2079: -64,39 - 2080: -63,41 + 1188: -67,40 + 1189: -62,39 + 1190: -62,37 + 1191: -63,39 + 1192: -62,38 + 1193: -62,39 + 1194: -63,38 + 1195: -65,44 + 1196: -65,44 + 1197: -65,43 + 1199: -65,30 + 1200: -67,31 + 1201: -66,30 + 1202: -67,28 + 1203: -67,27 + 1204: -63,25 + 1205: -66,26 + 1206: -67,26 + 1207: -67,28 + 1208: -65,28 + 1209: -65,28 + 1210: -67,30 + 1211: -67,34 + 1212: -63,39 + 1213: -65,41 + 1214: -62,43 + 1215: -64,39 + 1216: -63,41 - node: cleanable: True color: '#FFFFFF6A' id: DirtMedium decals: - 3405: -3,44 + 2385: -3,44 - node: color: '#FFFFFF85' id: DirtMedium decals: - 3376: -31,28 - 3380: -31,23 - 3381: -30,24 + 2356: -31,28 + 2360: -31,23 + 2361: -30,24 - node: color: '#FFFFFFD3' id: DirtMedium decals: - 3384: -30,33 - 3385: -27,20 + 2364: -30,33 + 2365: -27,20 - node: cleanable: True color: '#FFFFFFD3' id: DirtMedium decals: - 3387: -3,31 + 2367: -3,31 - node: color: '#FFFFFFFF' id: DirtMedium @@ -3246,311 +6030,324 @@ entities: 3: -41,-17 4: -43,-17 18: -44,-11 - 288: 35,6 - 296: 60,13 - 297: 64,10 - 298: 53,14 - 302: 51,5 - 305: 50.272198,-2.761428 - 306: 47.75412,7.2494392 - 307: 42,5 - 312: 36,15 - 314: 32,15 - 1219: -109,-6 - 1220: -110,9 - 1221: -109,15 - 1226: -116,13 - 1227: -117,15 - 1228: -117,-2 + 285: 35,6 + 293: 60,13 + 294: 64,10 + 295: 53,14 + 299: 51,5 + 302: 47.75412,7.2494392 + 303: 42,5 + 308: 36,15 + 310: 32,15 + 687: -109,-6 + 688: -110,9 + 689: -109,15 + 693: -116,13 + 694: -117,15 + 695: -117,-2 + 4602: -95,-8 + 4603: -97,-7 + 4604: -96,-10 + 4605: -91,-10 + 4606: -92,-9 + 4607: -92,-9 + 4608: -92,-7 + 4609: -95,-2 + 4610: -94,0 + 4611: -95,1 + 4612: -95,0 + 4613: -92,-1 + 4614: -92,1 + 4615: -93,3 + 4616: -93,4 + 4617: -93,5 + 4618: -93,8 - node: cleanable: True color: '#FFFFFFFF' id: DirtMedium decals: - 566: -38,0 - 850: -32,7 - 851: -27,8 - 852: -27,4 - 853: -24,2 - 854: -23,6 - 855: -33,9 - 856: -30,14 - 857: -32,17 - 858: -30,9 - 859: -34,17 - 860: -37,2 - 861: -38,4 - 862: -27,1 - 893: -33,15 - 900: -69,11 - 901: -69,8 - 902: -67,11 - 903: -65,8 - 904: -68,12 - 1286: -102,3 - 1304: -38,20 - 1305: -37,21 - 1311: -46,20 - 1327: -70,20 - 1328: -76,21 - 1329: -78,20 - 1338: -75,21 - 1357: -94,26 - 1358: -93,23 - 1394: -102,15 - 1399: -99,11 - 1400: -100,11 - 1413: -130,20 - 1414: -132,21 - 1475: -81,9 - 1476: -75,9 - 1477: -74,13 - 1478: -73,17 - 1479: -67,17 - 1480: -63,16 - 1496: -58,18 - 1501: -48,14 - 1510: -36,17 - 1519: -96,7 - 1520: -96,4 - 1521: -95,-2 - 1522: -94,-5 - 1540: -94,13 - 1541: -95,16 - 1559: -112,4 - 1560: -113,2 - 1561: -111,10 - 1562: -113,9 - 1579: -106,11 - 1618: -131,3 - 1619: -128,-2 - 1620: -124,10 - 1621: -121,11 - 1622: -121,17 - 1623: -126,17 - 1624: -125,15 - 1625: -130,15 - 1626: -132,13 - 1627: -125,14 - 1628: -127,15 - 1629: -122,16 - 1630: -123,10 - 1631: -121,-4 - 1638: -120,-14 - 1639: -112,-12 - 1640: -113,-6 - 1641: -111,-1 - 1642: -114,2 - 1643: -114,3 - 1644: -118,3 - 1645: -116,5 - 1646: -116,6 - 1647: -116,2 - 1648: -117,1 - 1649: -117,4 - 1650: -116,9 - 1651: -117,9 - 1652: -116,-2 - 1653: -115,9 - 1654: -112,12 - 1655: -110,14 - 1656: -110,12 - 1657: -110,17 - 1658: -108,18 - 1659: -109,21 - 1660: -112,20 - 1661: -107,20 - 1662: -108,21 - 1663: -104,20 - 1664: -105,13 - 1665: -105,15 - 1666: -104,-4 - 1667: -102,-5 - 1668: -106,-2 - 1669: -106,-3 - 1670: -106,-5 - 1671: -105,-6 - 1672: -106,-8 - 1673: -106,-10 - 1674: -102,-8 - 1675: -94,5 - 1676: -93,4 - 1772: -58,35 - 1773: -57,36 - 1774: -53,36 - 1775: -52,34 - 1776: -56,40 - 1777: -51,45 - 1778: -53,44 - 1779: -52,40 - 1780: -52,39 - 2118: 38,0 - 2119: 34,2 - 2140: 16,3 - 2151: 11,1 - 2152: 28,3 - 2257: -2,1 - 2258: -1,-9 - 2259: -4,-7 - 2260: -3,-11 - 2269: -3,-17 - 2270: 0,-17 - 2271: 0,-18 - 2272: -1,-13 - 2273: -8,-13 - 2274: -7,-14 - 2275: -12,-12 - 2276: -14,-14 - 2277: -18,-12 - 2278: -23,-13 - 2279: -26,-12 - 2280: -26,-14 - 2281: -31,-13 - 2282: -34,-14 - 2283: -37,-12 - 2284: -38,-12 - 2285: -40,-13 - 2286: -41,-11 - 2287: -40,-8 - 2288: -42,-5 - 2289: -41,-1 - 2290: -42,2 - 2291: -40,1 - 2303: -20,2 - 2304: -13,2 - 2305: -8,1 - 2306: -7,3 - 2617: 0,11 - 2619: 10,11 - 2620: 14,13 - 3355: 0,21 - 3365: 4,25 - 3369: 17,26 - 3370: 10,27 - 3372: -17,21 - 3375: -25,21 - 3611: 47,-27 - 3613: 49,-29 - 3614: 47,-32 - 3615: 43,-29 - 3616: 44,-25 - 3617: 44,-23 - 3619: 47,-23 - 3621: 50,-24 - 3622: 45,-20 - 3623: 46,-19 - 3655: 47,-28 - 3657: 47,-27 - 3659: 48,-26 - 3661: 49,-25 - 3662: 48,-26 - 3663: 46,-26 - 3664: 43,-29 - 3665: 43,-30 - 3666: 45,-31 - 3667: 43,-29 - 3668: 43,-28 - 3669: 44,-27 - 3670: 44,-25 - 3690: 35,-21 - 3691: 35,-20 - 3693: 36,-20 - 3694: 35,-21 - 3696: 35,-20 - 3697: 36,-20 - 3699: 36,-21 + 361: -38,0 + 437: -32,7 + 438: -27,8 + 439: -27,4 + 440: -24,2 + 441: -23,6 + 442: -33,9 + 443: -30,14 + 444: -32,17 + 445: -30,9 + 446: -34,17 + 447: -37,2 + 448: -38,4 + 449: -27,1 + 480: -33,15 + 487: -69,11 + 488: -69,8 + 489: -67,11 + 490: -65,8 + 491: -68,12 + 723: -102,3 + 741: -38,20 + 742: -37,21 + 748: -46,20 + 764: -70,20 + 765: -76,21 + 766: -78,20 + 775: -75,21 + 794: -94,26 + 795: -93,23 + 831: -102,15 + 836: -99,11 + 837: -100,11 + 850: -130,20 + 851: -132,21 + 875: -75,9 + 876: -74,13 + 877: -73,17 + 878: -67,17 + 879: -63,16 + 895: -58,18 + 900: -48,14 + 909: -36,17 + 914: -96,7 + 926: -94,13 + 927: -95,16 + 941: -112,4 + 942: -113,2 + 943: -111,10 + 944: -113,9 + 960: -106,11 + 991: -131,3 + 992: -128,-2 + 993: -124,10 + 994: -121,11 + 995: -121,17 + 996: -126,17 + 997: -125,15 + 998: -130,15 + 999: -132,13 + 1000: -125,14 + 1001: -127,15 + 1002: -122,16 + 1003: -123,10 + 1004: -121,-4 + 1010: -120,-14 + 1011: -113,-6 + 1012: -111,-1 + 1013: -114,2 + 1014: -114,3 + 1015: -118,3 + 1016: -116,5 + 1017: -116,6 + 1018: -116,2 + 1019: -117,1 + 1020: -117,4 + 1021: -116,9 + 1022: -117,9 + 1023: -116,-2 + 1024: -115,9 + 1025: -112,12 + 1026: -110,14 + 1027: -110,12 + 1028: -110,17 + 1029: -108,18 + 1030: -109,21 + 1031: -112,20 + 1032: -107,20 + 1033: -108,21 + 1034: -104,20 + 1035: -105,13 + 1036: -105,15 + 1037: -104,-4 + 1038: -102,-5 + 1039: -106,-2 + 1040: -106,-3 + 1041: -106,-5 + 1042: -105,-6 + 1043: -106,-8 + 1044: -106,-10 + 1045: -102,-8 + 1046: -94,5 + 1047: -93,4 + 1244: 34,2 + 1260: 11,1 + 1347: -2,1 + 1348: -1,-9 + 1349: -4,-7 + 1350: -3,-11 + 1358: -3,-17 + 1359: -8,-13 + 1360: -12,-12 + 1361: -18,-12 + 1362: -23,-13 + 1363: -26,-14 + 1364: -31,-13 + 1365: -34,-14 + 1366: -37,-12 + 1367: -38,-12 + 1368: -40,-13 + 1369: -41,-11 + 1370: -40,-8 + 1371: -42,-5 + 1372: -41,-1 + 1373: -40,1 + 1380: -13,2 + 1381: -8,1 + 1618: 0,11 + 1620: 10,11 + 1621: 14,13 + 2335: 0,21 + 2345: 4,25 + 2349: 17,26 + 2350: 10,27 + 2352: -17,21 + 2355: -25,21 + 2589: 47,-27 + 2591: 49,-29 + 2592: 47,-32 + 2593: 43,-29 + 2594: 44,-25 + 2595: 44,-23 + 2597: 47,-23 + 2599: 50,-24 + 2600: 45,-20 + 2601: 46,-19 + 2633: 47,-28 + 2635: 47,-27 + 2637: 48,-26 + 2639: 49,-25 + 2640: 48,-26 + 2641: 46,-26 + 2642: 43,-29 + 2643: 43,-30 + 2644: 45,-31 + 2645: 43,-29 + 2646: 43,-28 + 2647: 44,-27 + 2648: 44,-25 + 2668: 35,-21 + 2669: 35,-20 + 2671: 36,-20 + 2672: 35,-21 + 2674: 35,-20 + 2675: 36,-20 + 2677: 36,-21 + 3102: 47,-10 + 3103: 46,-10 + 3104: 44,-10 + 3105: 43,-10 + 3106: 47,-9 + 6010: -87,13 + 6011: -88,13 + 6012: -88,12 + 6013: -85,13 + 6014: -85,14 + 6015: -86,16 + 6016: -86,15 + 6032: -104,-3 + 6033: -106,-5 + 6034: -104,-3 + 6035: -103,-2 + 6036: -101,-3 + 6037: -101,-5 + 6038: -106,-4 + 6039: -108,-6 + 6040: -109,-5 + 6041: -108,-1 + 6042: -109,2 + 6043: -111,4 + 6044: -109,6 + 6045: -105,5 + 6046: -100,4 + 6047: -99,4 + 6048: -100,3 + 6049: -103,4 + 6050: -100,3 + 6051: -100,6 + 6052: -102,8 + 6053: -104,8 + 6054: -103,8 + 6055: -105,8 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: DirtMedium decals: - 2039: -65,39 - 2040: -65,38 - 2041: -65,39 - 2056: -66,43 - 2057: -65,43 - 2081: -65,29 - 2082: -66,30 - 2083: -66,28 - 2084: -68,29 - 2085: -67,31 - 2086: -67,33 - 2087: -67,37 - 2088: -64,38 - 2089: -62,38 - 2090: -68,39 - 2091: -67,39 - 2092: -67,42 - 2093: -66,44 - 2094: -64,44 - 2095: -61,43 - 2096: -61,39 - 2097: -67,29 - 2098: -62,30 - 2099: -63,30 - 2100: -63,31 - 2101: -64,31 - 2102: -64,30 - 2103: -64,30 - 2104: -63,30 - 2105: -64,29 - 2106: -61,31 - 2107: -60,32 - 2108: -84,26 - 2109: -85,29 - 2110: -86,31 - 2111: -84,38 - 2112: -85,39 - 2113: -85,44 - 2114: -84,35 - 2115: -84,32 - 2116: -84,26 - 2117: -85,22 + 1186: -65,39 + 1187: -65,39 + 1198: -65,43 + 1217: -65,29 + 1218: -66,30 + 1219: -68,29 + 1220: -67,31 + 1221: -67,33 + 1222: -67,37 + 1223: -64,38 + 1224: -62,38 + 1225: -68,39 + 1226: -67,39 + 1227: -67,42 + 1228: -61,43 + 1229: -67,29 + 1230: -62,30 + 1231: -63,31 + 1232: -64,31 + 1233: -64,29 + 1234: -84,26 + 1235: -85,29 + 1236: -86,31 + 1237: -84,38 + 1238: -85,39 + 1239: -85,44 + 1240: -84,35 + 1241: -84,32 + 1242: -84,26 + 1243: -85,22 - node: color: '#FFFFFFFF' id: Flowersbr1 decals: - 2352: 24,41 + 1413: 24,41 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Flowersbr2 decals: - 2029: -50.979973,47.905445 - 2030: -50.979973,46.967945 + 1184: -50.979973,47.905445 + 1185: -50.979973,46.967945 - node: color: '#FFFFFFFF' id: Flowersbr3 decals: - 2351: 25,41 + 1412: 25,41 - node: color: '#FFFFFFFF' id: Flowerspv1 decals: - 2353: 25,41 + 1414: 25,41 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Flowerspv1 decals: - 2025: -50.886223,48.124195 - 2026: -50.995598,47.749195 - 2027: -51.011223,47.32732 - 2028: -50.917473,46.76482 + 1180: -50.886223,48.124195 + 1181: -50.995598,47.749195 + 1182: -51.011223,47.32732 + 1183: -50.917473,46.76482 - node: color: '#FFFFFFFF' id: Flowerspv2 decals: - 2350: 24,41 + 1411: 24,41 - node: color: '#FFFFFFFF' id: Flowersy3 decals: - 336: -6.79249,-7.3287086 - 2354: 25,41 + 1415: 25,41 - node: color: '#334E6DC8' id: FullTileOverlayGreyscale @@ -3575,348 +6372,256 @@ entities: color: '#52B4E996' id: FullTileOverlayGreyscale decals: - 2341: 26,18 - 2342: 26,17 - 2343: 26,16 - 2344: 25,17 - 2345: 27,17 - 2820: 0,12 - 2821: 1,12 - 2834: -1,12 - 2835: -2,12 - 2836: 2,12 - 2837: 3,12 + 1402: 26,18 + 1403: 26,17 + 1404: 26,16 + 1405: 25,17 + 1406: 27,17 + 1819: 0,12 + 1820: 1,12 + 1833: -1,12 + 1834: -2,12 + 1835: 2,12 + 1836: 3,12 + - node: + color: '#52B4E9A5' + id: FullTileOverlayGreyscale + decals: + 5206: 12,11 + 5207: 12,12 + 5208: 12,13 - node: color: '#A4610696' id: FullTileOverlayGreyscale decals: - 488: -47,-10 - 489: -47,-11 - 516: -64,-4 - 517: -63,-4 - 518: -67,-4 - 521: -60,-4 + 355: -64,-4 + 356: -63,-4 + 357: -67,-4 + 358: -60,-4 - node: - color: '#DE3A3A96' + color: '#FFFFFFFF' id: FullTileOverlayGreyscale decals: - 574: -44,-2 - 665: -86,11 - 712: -62,8 + 331: -33,-9 - node: color: '#FFFFFFFF' - id: FullTileOverlayGreyscale + id: Grassc3 decals: - 335: -33,-9 + 4459: -91,-15 + - node: + color: '#FFFFFFFF' + id: Grassd1 + decals: + 4458: -92,-15 + - node: + color: '#FFFFFFFF' + id: Grassd3 + decals: + 4462: -80,-13 + - node: + color: '#FFFFFFFF' + id: Grasse1 + decals: + 4463: -80,-12 + - node: + color: '#FFFFFFFF' + id: Grasse2 + decals: + 4461: -79,-13 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: Grasse2 decals: - 2022: -50.964348,47.92107 - 2023: -50.933098,47.67107 - 2024: -51.026848,46.98357 + 1177: -50.964348,47.92107 + 1178: -50.933098,47.67107 + 1179: -51.026848,46.98357 + - node: + color: '#FFFFFFFF' + id: Grasse3 + decals: + 4460: -79,-12 - node: color: '#9FED5896' id: GrayConcreteTrimCornerNe decals: - 3710: 43,-29 + 2688: 43,-29 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNe decals: - 4030: 36,-7 - 4105: 27,-2 - 4124: 42,-5 + 2953: 36,-7 + 2990: 27,-2 - node: color: '#9FED5896' id: GrayConcreteTrimCornerNw decals: - 3713: 40,-29 + 2691: 40,-29 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerNw decals: - 4029: 35,-7 - 4033: 31,-10 - 4104: 26,-2 - 4125: 41,-5 + 2952: 35,-7 + 2956: 31,-10 + 2989: 26,-2 - node: color: '#9C2020FF' id: GrayConcreteTrimCornerSe decals: - 3870: 22,-6 - 4050: 35,-10 + 2973: 35,-10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSe decals: - 4031: 36,-11 - 4106: 27,-6 - 4126: 42,-8 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimCornerSw - decals: - 4081: 13,-10 + 2954: 36,-11 + 2991: 27,-6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimCornerSw decals: - 4032: 31,-11 - 4107: 26,-6 - 4127: 41,-8 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimEndE - decals: - 4066: 27,-10 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimEndN - decals: - 3869: 22,-3 - 4065: 13,-7 - - node: - color: '#9C2020FF' - id: GrayConcreteTrimEndW - decals: - 3882: 18,-6 + 2955: 31,-11 + 2992: 26,-6 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerNe decals: - 4061: 31,-11 - 4099: 13,-10 - 4122: 26,-6 - 4137: 41,-8 - 4153: 40,-9 + 2984: 31,-11 + 3007: 26,-6 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerNw decals: - 3878: 22,-6 - 4060: 36,-11 - 4123: 27,-6 - 4138: 42,-8 - 4154: 43,-9 + 2983: 36,-11 + 3008: 27,-6 - node: color: '#FFFFFFFF' id: GrayConcreteTrimInnerNw decals: - 4046: 35,-10 + 2969: 35,-10 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerSe decals: - 4063: 31,-10 - 4064: 35,-7 - 4121: 26,-2 - 4140: 41,-5 - 4156: 40,-4 + 2986: 31,-10 + 2987: 35,-7 + 3006: 26,-2 - node: color: '#9FED5896' id: GrayConcreteTrimInnerSe decals: - 3740: 41,-30 + 2718: 41,-30 - node: color: '#9C2020FF' id: GrayConcreteTrimInnerSw decals: - 4062: 36,-7 - 4120: 27,-2 - 4139: 42,-5 - 4155: 43,-4 + 2985: 36,-7 + 3005: 27,-2 - node: color: '#9FED5896' id: GrayConcreteTrimInnerSw decals: - 3739: 42,-30 + 2717: 42,-30 - node: color: '#9C2020FF' id: GrayConcreteTrimLineE decals: - 3874: 22,-5 - 3875: 22,-4 - 4014: 39,-19 - 4015: 39,-18 - 4016: 39,-17 - 4017: 39,-16 - 4018: 39,-15 - 4019: 39,-14 - 4051: 35,-9 - 4052: 35,-8 - 4082: 13,-9 - 4083: 13,-8 - 4117: 26,-5 - 4118: 26,-4 - 4119: 26,-3 - 4135: 41,-7 - 4136: 41,-6 - 4141: 40,-8 - 4142: 40,-7 - 4143: 40,-6 - 4144: 40,-5 + 2974: 35,-9 + 2975: 35,-8 + 3002: 26,-5 + 3003: 26,-4 + 3004: 26,-3 - node: color: '#9FED5896' id: GrayConcreteTrimLineE decals: - 3679: 43,-34 - 3680: 43,-33 - 3681: 43,-31 - 3682: 43,-32 - 3683: 43,-30 - 3731: 41,-31 - 3732: 41,-32 - 3733: 41,-33 - 3734: 41,-34 + 2657: 43,-34 + 2658: 43,-33 + 2659: 43,-31 + 2660: 43,-32 + 2661: 43,-30 + 2709: 41,-31 + 2710: 41,-32 + 2711: 41,-33 + 2712: 41,-34 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineE decals: - 4039: 36,-9 - 4040: 36,-8 - 4041: 36,-10 - 4108: 27,-5 - 4109: 27,-4 - 4110: 27,-3 - 4128: 42,-7 - 4129: 42,-6 + 2962: 36,-9 + 2963: 36,-8 + 2964: 36,-10 + 2993: 27,-5 + 2994: 27,-4 + 2995: 27,-3 - node: color: '#9C2020FF' id: GrayConcreteTrimLineN decals: - 3871: 19,-6 - 3872: 20,-6 - 3873: 21,-6 - 4056: 32,-11 - 4057: 33,-11 - 4058: 34,-11 - 4059: 35,-11 - 4086: 14,-10 - 4087: 15,-10 - 4088: 16,-10 - 4089: 17,-10 - 4090: 18,-10 - 4091: 19,-10 - 4092: 20,-10 - 4093: 21,-10 - 4094: 22,-10 - 4095: 23,-10 - 4096: 24,-10 - 4097: 25,-10 - 4098: 26,-10 - 4103: 42,-20 - 4151: 41,-9 - 4152: 42,-9 + 2979: 32,-11 + 2980: 33,-11 + 2981: 34,-11 + 2982: 35,-11 - node: color: '#9FED5896' id: GrayConcreteTrimLineN decals: - 3717: 41,-29 - 3718: 42,-29 + 2695: 41,-29 + 2696: 42,-29 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineN decals: - 4034: 32,-10 - 4035: 33,-10 - 4036: 34,-10 + 2957: 32,-10 + 2958: 33,-10 + 2959: 34,-10 - node: color: '#9C2020FF' id: GrayConcreteTrimLineS decals: - 3879: 21,-6 - 3880: 20,-6 - 3881: 19,-6 - 4047: 32,-10 - 4048: 33,-10 - 4049: 34,-10 - 4067: 26,-10 - 4068: 25,-10 - 4069: 24,-10 - 4070: 23,-10 - 4071: 22,-10 - 4072: 21,-10 - 4073: 20,-10 - 4074: 19,-10 - 4075: 18,-10 - 4076: 17,-10 - 4077: 16,-10 - 4078: 16,-10 - 4079: 15,-10 - 4080: 14,-10 - 4102: 42,-20 - 4145: 41,-4 - 4146: 42,-4 + 2970: 32,-10 + 2971: 33,-10 + 2972: 34,-10 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineS decals: - 4042: 35,-11 - 4043: 33,-11 - 4044: 32,-11 - 4045: 34,-11 + 2965: 35,-11 + 2966: 33,-11 + 2967: 32,-11 + 2968: 34,-11 - node: color: '#9C2020FF' id: GrayConcreteTrimLineW decals: - 3876: 22,-4 - 3877: 22,-5 - 4020: 39,-19 - 4021: 39,-18 - 4022: 39,-17 - 4023: 39,-16 - 4024: 39,-14 - 4025: 39,-15 - 4053: 36,-8 - 4054: 36,-9 - 4055: 36,-10 - 4084: 13,-8 - 4085: 13,-9 - 4114: 27,-5 - 4115: 27,-4 - 4116: 27,-3 - 4132: 42,-7 - 4133: 42,-7 - 4134: 42,-6 - 4147: 43,-5 - 4148: 43,-6 - 4149: 43,-7 - 4150: 43,-8 + 2976: 36,-8 + 2977: 36,-9 + 2978: 36,-10 + 2999: 27,-5 + 3000: 27,-4 + 3001: 27,-3 - node: color: '#9FED5896' id: GrayConcreteTrimLineW decals: - 3692: 40,-34 - 3695: 40,-33 - 3698: 40,-32 - 3700: 40,-31 - 3701: 40,-30 - 3735: 42,-34 - 3736: 42,-33 - 3737: 42,-32 - 3738: 42,-31 + 2670: 40,-34 + 2673: 40,-33 + 2676: 40,-32 + 2678: 40,-31 + 2679: 40,-30 + 2713: 42,-34 + 2714: 42,-33 + 2715: 42,-32 + 2716: 42,-31 - node: color: '#FFFFFFFF' id: GrayConcreteTrimLineW decals: - 4037: 35,-9 - 4038: 35,-8 - 4111: 26,-5 - 4112: 26,-4 - 4113: 26,-3 - 4130: 41,-7 - 4131: 41,-6 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale - decals: - 587: -95,-8 - 588: -94,-8 - 589: -93,-8 - 1429: -92,-8 + 2960: 35,-9 + 2961: 35,-8 + 2996: 26,-5 + 2997: 26,-4 + 2998: 26,-3 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale @@ -3942,169 +6647,70 @@ entities: 239: 36,16 240: 34,16 241: 32,16 - - node: - cleanable: True - color: '#334E6DC8' - id: HalfTileOverlayGreyscale - decals: - 1965: -56,45 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale decals: - 2649: -1,13 - 2650: 0,13 - 2651: 1,13 - 2652: 2,13 - 2662: 6,14 - 2663: 8,14 - 2664: 9,14 - 2665: 10,14 - 2666: 7,14 - 2676: 14,15 - 2677: 15,15 - 2703: 25,20 - 2704: 26,20 - 2705: 27,20 - 2706: 31,20 - 2707: 32,20 - 2708: 33,20 - 2850: -2,13 - 2851: 3,13 - 3047: 34,20 - 3162: 7,24 - 3163: 8,24 - 3164: 9,24 - 3165: 10,24 - 3220: -6,21 + 1648: -1,13 + 1649: 0,13 + 1650: 1,13 + 1651: 2,13 + 1661: 6,14 + 1662: 8,14 + 1663: 9,14 + 1664: 10,14 + 1665: 7,14 + 1675: 14,15 + 1676: 15,15 + 1702: 25,20 + 1703: 26,20 + 1704: 27,20 + 1705: 31,20 + 1706: 32,20 + 1707: 33,20 + 1849: -2,13 + 1850: 3,13 + 2034: 34,20 + 2143: 7,24 + 2144: 8,24 + 2145: 9,24 + 2146: 10,24 + 2201: -6,21 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale decals: - 2962: -11,15 - 3021: 24,32 + 1949: -11,15 + 2008: 24,32 - node: color: '#96DAFFFF' id: HalfTileOverlayGreyscale decals: - 3854: 19,15 - 3855: 20,15 - 3856: 21,15 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale - decals: - 433: -67,-5 - 434: -66,-5 - 435: -65,-5 - 436: -64,-5 - 437: -63,-5 - 438: -62,-5 - 439: -61,-5 - 440: -60,-5 - 481: -53,-10 - 482: -52,-10 - 483: -51,-10 - 484: -50,-10 - 485: -50,-10 - 486: -49,-10 - 487: -48,-10 - 502: -66,1 - 503: -64,1 - 504: -62,1 - 505: -60,1 - 506: -67,1 - 507: -65,1 - 508: -63,1 - 509: -61,1 - 533: -71,-10 - 534: -70,-16 - 535: -72,-16 - 536: -73,-16 - 537: -75,-16 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 612: -8,-21 - 613: -7,-21 - 614: -6,-21 - 618: -4,-25 - 619: -2,-25 - 620: 0,-25 - 621: 1,-25 - 622: 2,-25 - 623: 3,-25 - - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale - decals: - 2409: -2,-20 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale - decals: - 553: -20,9 - 554: -19,9 - 570: -45,1 - 670: -88,14 - 671: -87,14 - 720: -60,10 - 729: 8,-9 - 753: -63,22 - 754: -62,22 - 755: -61,22 - 1056: 3,-11 - 1057: 4,-11 - 1071: 4,-5 - 1072: 5,-5 - 1073: 6,-5 - 1074: 7,-5 - 1103: 11,-6 - 1104: 12,-6 - 1105: 13,-6 - 1106: 14,-6 - 1111: 16,-9 - 1112: 17,-9 - 1113: 14,-1 - 1114: 13,-1 - 1115: 12,-1 - 1116: 11,-1 - 1117: 11,-1 - 1118: 12,-1 - 1119: 13,-1 - 1120: 14,-1 - 1751: -57,36 - 1752: -52,41 - 1753: -52,45 - 3430: 44,-12 - 3431: 45,-12 - 3432: 46,-12 - 3433: 47,-12 - 3434: 48,-12 - 3435: 49,-12 - 3436: 50,-12 - 3437: 51,-12 - 3438: 52,-12 - 3868: 43,-12 + 2830: 19,15 + 2831: 20,15 + 2832: 21,15 - node: - cleanable: True color: '#DE3A3A96' id: HalfTileOverlayGreyscale decals: - 1960: -56,43 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale180 - decals: - 586: -92,-6 - 1200: -91,-3 - 1201: -90,-3 - 1202: -89,-3 - 1423: -94,-3 - 1424: -94,-6 - 1428: -92,-12 + 624: 14,-1 + 625: 13,-1 + 626: 12,-1 + 627: 11,-1 + 628: 11,-1 + 629: 12,-1 + 630: 13,-1 + 631: 14,-1 + 2410: 44,-12 + 2411: 45,-12 + 2412: 46,-12 + 2413: 47,-12 + 2414: 48,-12 + 2415: 49,-12 + 2416: 50,-12 + 2417: 51,-12 + 2418: 52,-12 + 2844: 43,-12 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale180 @@ -4127,155 +6733,71 @@ entities: 247: 32,11 248: 33,11 249: 37,11 - - node: - cleanable: True - color: '#3AB3DAFF' - id: HalfTileOverlayGreyscale180 - decals: - 2601: -113,-14 - 2602: -114,-14 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale180 decals: - 2640: -7,5 - 2645: -1,11 - 2646: 0,11 - 2647: 1,11 - 2648: 2,11 - 2657: 6,11 - 2658: 7,11 - 2659: 8,11 - 2660: 9,11 - 2661: 10,11 - 2678: 14,11 - 2679: 15,11 - 2684: 25,11 - 2685: 26,11 - 2686: 27,11 - 2710: 31,18 - 2711: 32,18 - 2712: 33,18 - 2852: -2,11 - 2853: 3,11 - 2905: -5,11 - 3048: 34,18 - 3166: 7,20 - 3167: 8,20 - 3168: 9,20 - 3169: 10,20 + 1639: -7,5 + 1644: -1,11 + 1645: 0,11 + 1646: 1,11 + 1647: 2,11 + 1656: 6,11 + 1657: 7,11 + 1658: 8,11 + 1659: 9,11 + 1660: 10,11 + 1677: 14,11 + 1678: 15,11 + 1683: 25,11 + 1684: 26,11 + 1685: 27,11 + 1709: 31,18 + 1710: 32,18 + 1711: 33,18 + 1851: -2,11 + 1852: 3,11 + 1894: -5,11 + 2035: 34,18 + 2147: 7,20 + 2148: 8,20 + 2149: 9,20 + 2150: 10,20 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale180 decals: - 2963: -12,11 - 2964: -11,11 + 1950: -12,11 + 1951: -11,11 - node: color: '#96DAFFFF' id: HalfTileOverlayGreyscale180 decals: - 3857: 19,14 - 3858: 20,14 - 3859: 21,14 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale180 - decals: - 465: -67,-18 - 466: -65,-18 - 467: -66,-18 - 468: -62,-18 - 471: -55,-11 - 472: -56,-11 - 497: -52,-18 - 510: -66,-3 - 511: -65,-3 - 512: -62,-3 - 513: -61,-3 - 514: -64,-3 - 515: -63,-3 - 519: -67,-3 - 520: -60,-3 - - node: - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 606: -4,-26 - 607: -5,-26 - 608: -6,-26 - 610: -9,-24 - 624: 3,-26 - 625: 2,-26 - 626: 1,-26 - 627: 0,-26 - 672: -7,-26 - - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale180 - decals: - 2410: -2,-23 + 2833: 19,14 + 2834: 20,14 + 2835: 21,14 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale180 decals: - 546: -20,5 - 547: -19,5 - 548: -18,5 - 573: -45,-1 - 667: -88,12 - 668: -87,12 - 669: -86,12 - 713: -60,7 - 737: 8,-13 - 746: -63,20 - 747: -62,20 - 748: -61,20 - 1062: 3,-14 - 1063: 4,-14 - 1064: 4,-9 - 1081: 7,-7 - 1082: 6,-7 - 1094: 16,-11 - 1095: 15,-11 - 1096: 13,-11 - 1097: 12,-11 - 1098: 14,-11 - 1131: 11,-4 - 1132: 12,-4 - 1133: 13,-4 - 1134: 14,-4 - 1135: 14,-4 - 1136: 13,-4 - 1137: 12,-4 - 1138: 11,-4 - 1754: -56,38 - 1755: -52,39 - 1756: -52,43 - 1757: -53,34 - 1758: -57,32 - 3439: 43,-17 - 3440: 44,-17 - 3441: 45,-17 - 3442: 46,-17 - 3443: 48,-17 - 3444: 47,-17 - 3445: 49,-17 - 3446: 50,-17 - 3447: 51,-17 - 3448: 52,-17 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale270 - decals: - 593: -97,-5 - 1205: -97,-4 - 1206: -97,-3 - 1207: -97,-2 - 1208: -97,-1 - 1209: -97,0 - 1234: -106,-19 - 1235: -106,-14 + 642: 11,-4 + 643: 12,-4 + 644: 13,-4 + 645: 14,-4 + 646: 14,-4 + 647: 13,-4 + 648: 12,-4 + 649: 11,-4 + 2419: 43,-17 + 2420: 44,-17 + 2421: 45,-17 + 2422: 46,-17 + 2423: 48,-17 + 2424: 47,-17 + 2425: 49,-17 + 2426: 50,-17 + 2427: 51,-17 + 2428: 52,-17 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale270 @@ -4309,184 +6831,90 @@ entities: 244: 30,13 245: 30,12 252: 34,10 - - node: - cleanable: True - color: '#334E6DC8' - id: HalfTileOverlayGreyscale270 - decals: - 1966: -57,44 - node: color: '#52B4E996' id: HalfTileOverlayGreyscale270 decals: - 2626: -8,6 - 2627: -8,7 - 2628: -8,8 - 2629: -8,9 - 2630: -8,10 - 2631: -8,12 - 2632: -8,13 - 2669: 5,12 - 2670: 5,13 - 2671: 13,13 - 2672: 13,14 - 2695: 24,12 - 2696: 24,13 - 2697: 24,14 - 2698: 24,15 - 2699: 24,16 - 2700: 24,17 - 2701: 24,18 - 2702: 24,19 - 2709: 30,19 - 2769: 14,13 - 2771: 13,12 - 2772: 15,13 - 2783: 14,13 - 2784: 15,13 - 2880: -8,14 - 2919: -8,11 - 3155: 13,23 - 3156: 13,22 - 3157: 13,21 - 3158: 13,20 - 3159: 13,19 - 3160: 13,18 - 3161: 13,17 - 3173: 6,23 - 3174: 6,22 - 3175: 6,21 - 3214: -7,16 - 3215: -7,17 - 3216: -7,18 - 3217: -7,19 - 3218: -7,20 + 1625: -8,6 + 1626: -8,7 + 1627: -8,8 + 1628: -8,9 + 1629: -8,10 + 1630: -8,12 + 1631: -8,13 + 1668: 5,12 + 1669: 5,13 + 1670: 13,13 + 1671: 13,14 + 1694: 24,12 + 1695: 24,13 + 1696: 24,14 + 1697: 24,15 + 1698: 24,16 + 1699: 24,17 + 1700: 24,18 + 1701: 24,19 + 1708: 30,19 + 1768: 14,13 + 1770: 13,12 + 1771: 15,13 + 1782: 14,13 + 1783: 15,13 + 1869: -8,14 + 1908: -8,11 + 2136: 13,23 + 2137: 13,22 + 2138: 13,21 + 2139: 13,20 + 2140: 13,19 + 2141: 13,18 + 2142: 13,17 + 2154: 6,23 + 2155: 6,22 + 2156: 6,21 + 2195: -7,16 + 2196: -7,17 + 2197: -7,18 + 2198: -7,19 + 2199: -7,20 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale270 decals: - 2956: -13,12 - 2957: -13,13 - 2958: -13,14 - 3013: 23,29 - 3014: 23,28 - 3015: 23,30 - 3016: 23,31 + 1943: -13,12 + 1944: -13,13 + 1945: -13,14 + 2000: 23,29 + 2001: 23,28 + 2002: 23,30 + 2003: 23,31 - node: color: '#A4610696' id: HalfTileOverlayGreyscale270 decals: - 455: -68,-6 - 456: -68,-8 - 457: -68,-9 - 458: -68,-10 - 459: -68,-12 - 460: -68,-13 - 461: -68,-14 - 462: -68,-15 - 463: -68,-16 - 464: -68,-17 - 474: -57,-10 - 475: -57,-9 - 476: -57,-8 - 491: -53,-12 - 492: -53,-13 - 493: -53,-15 - 494: -53,-16 - 530: -72,-11 - 531: -72,-12 - 532: -72,-13 - 4257: -71,-7 + 354: -53,-15 - node: color: '#D381C996' id: HalfTileOverlayGreyscale270 decals: - 597: -3,-27 - 598: -3,-28 - 599: -3,-29 - 600: -3,-30 - 609: -8,-25 - 611: -10,-22 - - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale270 - decals: - 2407: -3,-22 - 2408: -3,-21 + 365: -3,-27 - node: color: '#DE3A3A96' id: HalfTileOverlayGreyscale270 decals: - 543: -21,6 - 544: -21,7 - 545: -21,8 - 571: -46,0 - 673: -89,13 - 718: -61,8 - 719: -61,9 - 734: 7,-10 - 735: 7,-11 - 736: 7,-12 - 757: -64,21 - 825: -86,16 - 826: -86,15 - 1058: 2,-12 - 1059: 2,-13 - 1065: 3,-8 - 1066: 3,-7 - 1067: 3,-6 - 1079: 7,-2 - 1099: 11,-10 - 1100: 11,-9 - 1101: 11,-8 - 1139: 10,-3 - 1140: 10,-2 - 1141: 10,-2 - 1142: 10,-3 - 1741: -58,35 - 1742: -58,34 - 1743: -58,33 - 1744: -54,35 - 1745: -53,40 - 1746: -57,39 - 1747: -57,40 - 1748: -57,42 - 1749: -57,41 - 1750: -53,44 - 3449: 42,-16 - 3450: 42,-15 - 3451: 42,-14 - 3867: 42,-13 + 650: 10,-3 + 651: 10,-2 + 652: 10,-2 + 653: 10,-3 + 2429: 42,-16 + 2430: 42,-15 + 2431: 42,-14 + 2843: 42,-13 - node: color: '#EFB34196' id: HalfTileOverlayGreyscale270 decals: - 1254: -96,9 - 1255: -96,6 - 1256: -96,5 - 1257: -96,4 - 1258: -96,3 - 1259: -96,1 - 1260: -96,2 - - node: - color: '#00FFFF7F' - id: HalfTileOverlayGreyscale90 - decals: - 1197: -92,-4 - 1210: -94,-5 - 1211: -94,-4 - 1212: -95,-4 - 1236: -105,-19 - 1237: -105,-18 - 1238: -105,-17 - 1239: -105,-16 - 1240: -105,-14 - 1241: -105,-15 - 1425: -95,-5 - 1430: -91,-9 - 1431: -91,-10 - 1432: -91,-11 + 697: -96,6 - node: color: '#334E6DC8' id: HalfTileOverlayGreyscale90 @@ -4508,305 +6936,195 @@ entities: color: '#52B4E996' id: HalfTileOverlayGreyscale90 decals: - 2633: -4,13 - 2634: -4,12 - 2635: -6,10 - 2636: -6,9 - 2637: -6,8 - 2638: -6,7 - 2639: -6,6 - 2667: 11,12 - 2668: 11,13 - 2673: 16,12 - 2674: 16,13 - 2675: 16,14 - 2687: 28,12 - 2688: 28,13 - 2689: 28,14 - 2690: 28,15 - 2691: 28,16 - 2692: 28,17 - 2693: 28,18 - 2694: 28,19 - 2770: 15,13 - 2773: 14,13 - 2782: 15,13 - 2785: 14,13 - 3049: 35,19 - 3148: 14,17 - 3149: 14,18 - 3150: 14,19 - 3151: 14,20 - 3152: 14,21 - 3153: 14,23 - 3154: 14,22 - 3170: 11,21 - 3171: 11,22 - 3172: 11,23 - 3211: -5,17 - 3212: -5,19 - 3213: -5,20 - 3219: -5,18 - 3225: -5,16 + 1632: -4,13 + 1633: -4,12 + 1634: -6,10 + 1635: -6,9 + 1636: -6,8 + 1637: -6,7 + 1638: -6,6 + 1666: 11,12 + 1667: 11,13 + 1672: 16,12 + 1673: 16,13 + 1674: 16,14 + 1686: 28,12 + 1687: 28,13 + 1688: 28,14 + 1689: 28,15 + 1690: 28,16 + 1691: 28,17 + 1692: 28,18 + 1693: 28,19 + 1769: 15,13 + 1772: 14,13 + 1781: 15,13 + 1784: 14,13 + 2036: 35,19 + 2129: 14,17 + 2130: 14,18 + 2131: 14,19 + 2132: 14,20 + 2133: 14,21 + 2134: 14,23 + 2135: 14,22 + 2151: 11,21 + 2152: 11,22 + 2153: 11,23 + 2192: -5,17 + 2193: -5,19 + 2194: -5,20 + 2200: -5,18 + 2206: -5,16 - node: color: '#52B4E99E' id: HalfTileOverlayGreyscale90 decals: - 2959: -10,12 - 2960: -10,13 - 2961: -10,14 - 3017: 25,29 - 3018: 25,30 - 3019: 25,31 - 3020: 25,28 - - node: - color: '#A4610696' - id: HalfTileOverlayGreyscale90 - decals: - 444: -59,-17 - 445: -59,-16 - 446: -59,-14 - 447: -59,-15 - 448: -59,-12 - 449: -59,-13 - 450: -59,-11 - 451: -59,-10 - 452: -59,-9 - 453: -59,-8 - 454: -59,-6 - 477: -55,-7 - 478: -55,-8 - 479: -55,-9 - 528: -70,-12 - 529: -70,-13 + 1946: -10,12 + 1947: -10,13 + 1948: -10,14 + 2004: 25,29 + 2005: 25,30 + 2006: 25,31 + 2007: 25,28 - node: color: '#D381C996' id: HalfTileOverlayGreyscale90 decals: - 601: -1,-31 - 602: -1,-30 - 603: -1,-29 - 604: -1,-28 - 605: -1,-27 - 615: -5,-22 - 616: -5,-23 - 617: -5,-24 + 366: -1,-27 - node: - cleanable: True - color: '#D381C996' - id: HalfTileOverlayGreyscale90 - decals: - 2405: -1,-22 - 2406: -1,-21 - - node: - color: '#DE3A3A96' - id: HalfTileOverlayGreyscale90 - decals: - 549: -17,6 - 550: -17,7 - 551: -17,8 - 552: -17,9 - 572: -44,0 - 666: -85,13 - 714: -59,8 - 715: -59,9 - 738: 9,-12 - 739: 9,-11 - 740: 9,-10 - 756: -60,21 - 822: -85,16 - 823: -85,15 - 824: -85,14 - 1060: 5,-12 - 1061: 5,-13 - 1078: 8,-2 - 1080: 8,-6 - 1084: 5,-8 - 1093: 19,-14 - 1109: 15,-8 - 1110: 15,-7 - 1121: 15,-3 - 1122: 15,-2 - 1123: 15,-2 - 1124: 15,-3 - 1730: -52,36 - 1731: -52,35 - 1732: -56,35 - 1733: -56,34 - 1734: -56,33 - 1735: -55,39 - 1736: -55,40 - 1737: -55,41 - 1738: -55,42 - 1739: -51,44 - 1740: -51,40 - - node: - cleanable: True color: '#DE3A3A96' id: HalfTileOverlayGreyscale90 decals: - 1962: -55,44 - - node: - color: '#EFB34196' - id: HalfTileOverlayGreyscale90 - decals: - 1244: -92,0 - 1245: -92,1 - 1246: -92,2 - 1247: -92,3 - 1248: -92,4 - 1249: -92,5 - 1250: -92,6 - 1251: -92,9 - 1252: -92,7 - 1253: -92,8 + 429: -85,15 + 632: 15,-3 + 633: 15,-2 + 634: 15,-2 + 635: 15,-3 + 1081: -52,35 - node: angle: -3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: - 344: -64,-17 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 579: -44,-1 - 681: -85,13 - 744: 9,-10 - 1156: 8,-6 - 1157: 8,-7 + 338: -64,-17 - node: color: '#FFFFFFFF' id: LoadingArea decals: 213: -2,-37 - 343: -60,-17 - 728: -60,10 - 1148: 3,-11 - 1149: 5,-11 - 2605: -7,-42 - 2606: 1,-42 - - node: - angle: 1.5707963267948966 rad - color: '#FFFFFFFF' - id: LoadingArea - decals: - 1150: 2,-11 - 1151: 2,-13 - 1154: 10,-6 - 1155: 10,-7 - 1765: -58,33 - 1766: -58,35 + 337: -60,-17 + 1609: 1,-42 + 3953: -135,-12 + 3954: -134,-12 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: LoadingArea decals: 214: -2,-34 - 763: -63,20 - 1152: 3,-9 - 1153: 5,-9 + 5095: -89,45 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: LoadingArea decals: - 403: -52,-7 + 340: -52,-7 + 3955: -135,-14 + 3956: -135,-15 + 5090: -89,32 + 5091: -89,35 + 5092: -89,38 + 5093: -89,41 + 5094: -89,44 - node: color: '#52B4E996' id: MiniTileCheckerAOverlay decals: - 3845: 19,15 - 3846: 20,15 - 3847: 21,15 - 3848: 22,15 - 3849: 22,14 - 3850: 21,14 - 3851: 20,14 - 3852: 19,14 - 3853: 18,14 - 3863: 18,15 + 2821: 19,15 + 2822: 20,15 + 2823: 21,15 + 2824: 22,15 + 2825: 22,14 + 2826: 21,14 + 2827: 20,14 + 2828: 19,14 + 2829: 18,14 + 2839: 18,15 - node: color: '#52B4E996' id: MiniTileDarkCornerNe decals: - 1804: -10,9 - 2348: 25,16 + 1095: -10,9 + 1409: 25,16 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNe decals: 212: 48,11 - 3493: 52,-13 - 3518: 51,-14 - 4184: 14,-7 + 2473: 52,-13 + 2498: 51,-14 - node: color: '#52B4E996' id: MiniTileDarkCornerNw decals: - 2349: 27,16 + 1410: 27,16 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerNw decals: 209: 47,11 210: 47,11 - 3517: 45,-14 - 3865: 43,-13 - 4185: 12,-7 + 2497: 45,-14 + 2841: 43,-13 - node: color: '#52B4E996' id: MiniTileDarkCornerSe decals: - 1803: -10,6 - 1812: -14,6 - 2347: 25,18 + 1094: -10,6 + 1103: -14,6 + 1408: 25,18 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSe decals: 211: 48,10 - 3503: 52,-16 - 3519: 51,-15 + 2483: 52,-16 + 2499: 51,-15 - node: color: '#52B4E996' id: MiniTileDarkCornerSw decals: - 1792: -15,6 - 1811: -11,6 - 2346: 27,18 + 1092: -15,6 + 1102: -11,6 + 1407: 27,18 - node: color: '#FFFFFFFF' id: MiniTileDarkCornerSw decals: 208: 47,10 - 3502: 43,-16 - 3520: 45,-15 - 4186: 12,-10 + 2482: 43,-16 + 2500: 45,-15 - node: color: '#52B4E996' id: MiniTileDarkInnerNe decals: - 1802: -15,9 - 1809: -10,8 - 1814: -12,6 - 2877: -6,13 + 1100: -10,8 + 1105: -12,6 + 1866: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNe decals: 148: 57,8 199: 52,-5 - 315: 39,3 - 372: -63,-15 - 401: -68,-15 + 311: 39,3 - node: color: '#52B4E996' id: MiniTileDarkInnerNw decals: - 1813: -13,6 - 2878: -6,13 + 1104: -13,6 + 1867: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerNw @@ -4815,28 +7133,24 @@ entities: 193: 62,-4 198: 59,-5 283: 51,6 - 371: -59,-15 - 400: -64,-15 - node: color: '#52B4E996' id: MiniTileDarkInnerSe decals: - 1810: -10,7 - 2876: -6,13 + 1101: -10,7 + 1865: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSe decals: 161: 52,13 270: 36,11 - 373: -63,-9 - 402: -68,-9 - 3936: 32,-12 + 2896: 32,-12 - node: color: '#52B4E996' id: MiniTileDarkInnerSw decals: - 2875: -6,13 + 1864: -6,13 - node: color: '#FFFFFFFF' id: MiniTileDarkInnerSw @@ -4846,717 +7160,1645 @@ entities: 172: 62,12 269: 34,11 284: 51,2 - 370: -59,-9 - 399: -64,-9 - 3935: 32,-12 + 2895: 32,-12 - node: - color: '#52B4E996' + color: '#E6E6E6FF' id: MiniTileDarkLineE decals: - 1799: -15,12 - 1800: -15,11 - 1801: -15,10 + 5211: -83,20 + 5212: -83,19 + 5213: -83,18 + 5214: -83,17 + 5215: -83,16 + 5216: -83,15 + 5217: -83,14 + 5218: -83,13 + 5231: -89,8 + 5235: -89,6 + 5236: -89,5 + 5237: -89,4 + 5238: -89,3 + 5249: -74,12 + 5250: -74,13 + 5251: -74,14 + 5280: -60,17 + 5283: -65,17 + 5302: -41,17 + 5309: -33,14 + 5310: -33,15 + 5311: -33,16 + 5317: -33,8 + 5318: -33,9 + 5319: -33,10 + 5320: -33,11 + 5336: -33,4 + 5345: -27,2 + 5373: -16,2 + 5401: 9,2 + 5411: 27,2 + 5420: 22,2 + 5430: 17,2 + 5433: -2,1 + 5434: -2,0 + 5435: -2,-1 + 5436: -2,-2 + 5447: -2,-7 + 5448: -2,-6 + 5449: -2,-5 + 5450: -2,-4 + 5455: -2,-12 + 5456: -2,-11 + 5457: -2,-10 + 5458: -2,-9 + 5474: -11,-13 + 5484: -16,-13 + 5494: -21,-13 + 5500: -26,-13 + 5514: -31,-13 + 5527: -33,-13 + 5528: -42,-13 + 5529: -42,-12 + 5530: -42,-11 + 5531: -42,-10 + 5541: -42,-8 + 5542: -42,-7 + 5543: -42,-6 + 5544: -42,-5 + 5551: -42,-3 + 5552: -42,-2 + 5553: -42,-1 + 5554: -42,0 + 5558: -42,2 + 5567: -49,4 + 5577: -54,4 + 5586: -59,4 + 5597: -57,0 + 5598: -57,1 + 5599: -57,2 + 5600: -57,-3 + 5601: -57,-2 + 5612: -62,-1 + 5626: -72,-1 + 5631: -72,-3 + 5643: -64,4 + 5644: -69,4 + 5661: -74,4 + 5662: -79,4 + 5674: -72,1 + 5675: -72,2 + 5680: -69,11 + 5681: -69,10 + 5682: -69,10 + 5683: -69,9 + 5694: -67,9 + 5706: -57,13 + 5708: -61,13 + 5714: -96,-2 + 5723: -95,3 + 5724: -95,2 + 5725: -95,1 + 5726: -95,0 + 5734: -95,8 + 5735: -95,7 + 5736: -95,6 + 5737: -95,5 + 5742: -75,9 + 5743: -54,17 + 5746: -85,9 + 5759: -58,21 + 5760: -58,22 + 5761: -58,23 + 5762: -58,24 + 5773: -63,25 + 5774: -68,25 + 5791: -67,41 + 5792: -67,42 + 5793: -67,43 + 5794: -67,44 + 5795: -67,39 + 5796: -67,38 + 5797: -67,37 + 5798: -67,36 + 5812: -67,31 + 5813: -67,32 + 5814: -67,33 + 5815: -67,34 + 5820: -67,29 + 5821: -67,28 + 5822: -67,27 + 5829: -61,44 + 5830: -61,43 + 5831: -61,42 + 5832: -61,41 + 5839: -62,39 + 5840: -62,38 + 5841: -62,37 + 5842: -62,36 + 5849: -62,34 + 5850: -62,32 + 5851: -62,31 + 5858: -65,30 + 5859: -61,29 + 5873: -65,44 + 5877: -62,33 + 5878: -67,-1 + 5885: -70,17 + 5891: -50,17 + 5893: -46,17 + 5895: -34,17 + 5899: -38,3 + 5903: -42,3 + 5904: -42,4 + 5909: -38,-13 + 5912: 2,2 + 5913: -4,2 + 5917: -4,-13 + 5918: -28,3 + 5920: -21,2 - node: color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 3504: 52,-15 - 3505: 52,-14 - 3931: 32,-13 - 3932: 32,-14 - 4187: 14,-9 - 4188: 14,-8 - 4191: 2,-3 - 4192: 2,-2 - 4193: 2,-1 - 4201: 5,-3 - 4202: 5,-2 - 4203: 5,-1 - 4204: 4,-3 - 4205: 4,-2 - 4206: 4,-1 + 2484: 52,-15 + 2485: 52,-14 + 2891: 32,-13 + 2892: 32,-14 + 3009: 2,-3 + 3010: 2,-2 + 3011: 2,-1 + 3019: 5,-3 + 3020: 5,-2 + 3021: 5,-1 + 3022: 4,-3 + 3023: 4,-2 + 3024: 4,-1 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineE decals: - 2159: -86,34 - 2160: -86,33 - 2161: -86,32 - 2162: -86,31 - 2163: -86,29 - 2164: -86,28 - 2165: -86,27 - 2166: -86,26 - 2167: -86,24 - 2168: -86,23 - 2169: -86,22 - 2170: -86,21 - 2171: -86,36 - 2172: -86,37 - 2173: -86,38 - 2174: -86,38 - 2175: -86,39 - 2176: -86,41 - 2177: -86,42 - 2178: -86,43 - 2179: -86,44 + 1265: -86,34 + 1266: -86,33 + 1267: -86,32 + 1268: -86,31 + 1269: -86,29 + 1270: -86,28 + 1271: -86,27 + 1272: -86,26 + 1273: -86,24 + 1274: -86,23 + 1275: -86,22 + 1276: -86,21 + 1277: -86,36 + 1278: -86,37 + 1279: -86,38 + 1280: -86,38 + 1281: -86,39 + 1282: -86,41 + 1283: -86,42 + 1284: -86,43 + 1285: -86,44 - node: color: '#52B4E996' id: MiniTileDarkLineN decals: - 1805: -11,9 - 1806: -12,9 - 1807: -13,9 - 1808: -14,9 - 2855: 0,13 - 2856: 1,13 + 1096: -11,9 + 1097: -12,9 + 1098: -13,9 + 1099: -14,9 + 1854: 0,13 + 1855: 1,13 - node: color: '#52B4E99E' id: MiniTileDarkLineN decals: - 2968: -13,14 - 2969: -13,14 + 1955: -13,14 + 1956: -13,14 + - node: + color: '#E6E6E6FF' + id: MiniTileDarkLineN + decals: + 5228: -86,7 + 5229: -87,7 + 5230: -88,7 + 5243: -88,2 + 5252: -73,11 + 5253: -69,16 + 5254: -68,16 + 5255: -66,16 + 5256: -67,16 + 5257: -64,16 + 5258: -63,16 + 5259: -62,16 + 5260: -61,16 + 5261: -59,16 + 5262: -58,16 + 5263: -57,16 + 5264: -56,16 + 5265: -55,16 + 5266: -53,16 + 5279: -49,16 + 5284: -45,16 + 5285: -44,16 + 5286: -43,16 + 5287: -42,16 + 5288: -40,16 + 5289: -37,16 + 5290: -38,16 + 5291: -39,16 + 5308: -32,13 + 5312: -33,16 + 5328: -37,2 + 5329: -36,2 + 5330: -35,2 + 5331: -34,2 + 5332: -33,2 + 5333: -32,2 + 5334: -31,2 + 5341: -24,1 + 5342: -25,1 + 5343: -26,1 + 5346: -27,2 + 5347: -20,1 + 5348: -19,1 + 5349: -18,1 + 5350: -17,1 + 5356: -7,1 + 5357: -8,1 + 5358: -9,1 + 5359: -10,1 + 5364: -15,1 + 5365: -14,1 + 5366: -13,1 + 5367: -12,1 + 5377: -3,1 + 5378: -2,1 + 5379: 3,1 + 5380: 4,1 + 5381: 5,1 + 5382: 6,1 + 5387: 10,1 + 5388: 11,1 + 5389: 12,1 + 5390: 13,1 + 5391: 14,1 + 5392: 15,1 + 5393: 16,1 + 5403: 31,1 + 5404: 30,1 + 5405: 29,1 + 5406: 28,1 + 5416: 23,1 + 5417: 24,1 + 5418: 25,1 + 5419: 26,1 + 5426: 21,1 + 5427: 20,1 + 5428: 19,1 + 5429: 18,1 + 5440: -1,-3 + 5446: -1,-8 + 5462: -2,-14 + 5463: -3,-14 + 5464: -1,-14 + 5466: -7,-14 + 5467: -8,-14 + 5468: -9,-14 + 5469: -10,-14 + 5476: -12,-14 + 5477: -13,-14 + 5478: -14,-14 + 5479: -15,-14 + 5486: -17,-14 + 5487: -18,-14 + 5488: -19,-14 + 5489: -20,-14 + 5496: -22,-14 + 5497: -23,-14 + 5498: -24,-14 + 5499: -25,-14 + 5509: -27,-14 + 5510: -28,-14 + 5511: -29,-14 + 5512: -30,-14 + 5515: -37,-14 + 5516: -36,-14 + 5517: -35,-14 + 5518: -34,-14 + 5525: -32,-14 + 5535: -41,-14 + 5536: -41,-9 + 5546: -41,-4 + 5556: -41,1 + 5559: -45,3 + 5560: -46,3 + 5561: -47,3 + 5562: -48,3 + 5569: -50,3 + 5570: -51,3 + 5571: -52,3 + 5572: -53,3 + 5578: -55,3 + 5579: -57,3 + 5583: -56,3 + 5584: -58,3 + 5595: -56,-1 + 5602: -56,-4 + 5603: -58,-2 + 5604: -59,-2 + 5605: -60,-2 + 5606: -61,-2 + 5614: -63,-2 + 5615: -64,-2 + 5616: -65,-2 + 5623: -68,-2 + 5624: -69,-2 + 5625: -70,-2 + 5628: -71,-2 + 5630: -71,-4 + 5634: -60,3 + 5635: -61,3 + 5636: -62,3 + 5637: -63,3 + 5648: -68,3 + 5649: -67,3 + 5650: -65,3 + 5651: -66,3 + 5657: -70,3 + 5658: -71,3 + 5659: -72,3 + 5660: -73,3 + 5668: -78,3 + 5669: -76,3 + 5670: -77,3 + 5671: -75,3 + 5677: -71,0 + 5686: -68,8 + 5690: -66,8 + 5691: -65,8 + 5692: -64,8 + 5700: -60,12 + 5701: -59,12 + 5702: -58,12 + 5703: -56,12 + 5704: -55,12 + 5710: -92,-3 + 5711: -93,-3 + 5712: -94,-3 + 5713: -95,-3 + 5727: -94,-1 + 5729: -94,4 + 5741: -74,8 + 5747: -84,8 + 5748: -83,8 + 5749: -82,8 + 5750: -81,8 + 5751: -80,8 + 5765: -59,24 + 5766: -60,24 + 5767: -61,24 + 5768: -62,24 + 5769: -64,24 + 5770: -65,24 + 5771: -66,24 + 5772: -67,24 + 5790: -66,40 + 5804: -66,35 + 5811: -66,30 + 5823: -66,26 + 5833: -60,40 + 5843: -61,35 + 5852: -61,30 + 5853: -64,29 + 5854: -63,29 + 5865: -57,28 + 5866: -58,28 + 5867: -60,28 + 5868: -59,28 + 5869: -62,43 + 5870: -63,43 + 5871: -64,43 + 5879: -66,-2 + 5884: -82,12 + 5892: -57,20 + 5896: -32,7 - node: color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 3494: 51,-13 - 3495: 50,-13 - 3496: 49,-13 - 3497: 48,-13 - 3498: 47,-13 - 3499: 46,-13 - 3500: 45,-13 - 3501: 44,-13 - 3526: 46,-14 - 3527: 47,-14 - 3528: 48,-14 - 3529: 49,-14 - 3530: 50,-14 + 2474: 51,-13 + 2475: 50,-13 + 2476: 49,-13 + 2477: 48,-13 + 2478: 47,-13 + 2479: 46,-13 + 2480: 45,-13 + 2481: 44,-13 + 2506: 46,-14 + 2507: 47,-14 + 2508: 48,-14 + 2509: 49,-14 + 2510: 50,-14 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineN decals: - 2205: -85,40 - 2206: -85,35 - 2207: -85,30 - 2208: -85,25 - 2209: -85,20 + 1311: -85,40 + 1312: -85,35 + 1313: -85,30 + 1314: -85,25 + 1315: -85,20 - node: color: '#52B4E996' id: MiniTileDarkLineS decals: - 2854: 1,11 - 2857: -2,11 + 1853: 1,11 + 1856: -2,11 + - node: + color: '#E6E6E6FF' + id: MiniTileDarkLineS + decals: + 5227: -82,21 + 5232: -88,9 + 5233: -87,9 + 5234: -86,9 + 5244: -88,7 + 5245: -73,15 + 5267: -69,18 + 5268: -68,18 + 5269: -67,18 + 5270: -66,18 + 5271: -64,18 + 5272: -63,18 + 5273: -62,18 + 5274: -61,18 + 5275: -59,18 + 5276: -55,18 + 5277: -53,18 + 5278: -49,18 + 5292: -45,18 + 5293: -44,18 + 5294: -43,18 + 5295: -42,18 + 5296: -40,18 + 5297: -39,18 + 5298: -38,18 + 5299: -37,18 + 5300: -33,18 + 5301: -32,18 + 5321: -32,12 + 5322: -31,4 + 5323: -33,4 + 5324: -34,4 + 5325: -37,4 + 5326: -36,4 + 5327: -35,4 + 5337: -27,4 + 5338: -26,4 + 5339: -25,3 + 5340: -24,3 + 5351: -20,3 + 5352: -19,3 + 5353: -18,3 + 5354: -17,3 + 5360: -7,3 + 5361: -8,3 + 5362: -9,3 + 5363: -10,3 + 5368: -15,3 + 5369: -14,3 + 5370: -13,3 + 5371: -12,3 + 5374: -3,3 + 5375: -2,3 + 5376: -1,3 + 5383: 3,3 + 5384: 4,3 + 5385: 5,3 + 5386: 6,3 + 5394: 10,3 + 5395: 11,3 + 5396: 12,3 + 5397: 13,3 + 5398: 14,3 + 5399: 15,3 + 5400: 16,3 + 5407: 28,3 + 5408: 29,3 + 5409: 30,3 + 5410: 31,3 + 5412: 26,3 + 5413: 25,3 + 5414: 24,3 + 5415: 23,3 + 5422: 21,3 + 5423: 20,3 + 5424: 19,3 + 5425: 18,3 + 5441: -1,-3 + 5459: -1,-8 + 5460: -3,-12 + 5461: -2,-12 + 5470: -7,-12 + 5471: -8,-12 + 5472: -9,-12 + 5473: -10,-12 + 5480: -12,-12 + 5481: -13,-12 + 5482: -14,-12 + 5483: -15,-12 + 5490: -17,-12 + 5491: -18,-12 + 5492: -19,-12 + 5493: -20,-12 + 5501: -25,-12 + 5502: -24,-12 + 5503: -23,-12 + 5504: -22,-12 + 5505: -27,-12 + 5506: -28,-12 + 5507: -29,-12 + 5508: -30,-12 + 5519: -37,-12 + 5520: -36,-12 + 5521: -35,-12 + 5522: -34,-12 + 5524: -32,-12 + 5534: -41,-9 + 5545: -41,-4 + 5555: -41,1 + 5563: -45,5 + 5564: -46,5 + 5565: -47,5 + 5566: -48,5 + 5573: -50,5 + 5574: -51,5 + 5575: -52,5 + 5576: -53,5 + 5580: -55,5 + 5581: -56,5 + 5582: -57,5 + 5585: -58,5 + 5591: -56,3 + 5596: -56,-1 + 5607: -58,0 + 5608: -59,0 + 5609: -60,0 + 5610: -61,0 + 5617: -63,0 + 5618: -64,0 + 5619: -65,0 + 5620: -68,0 + 5621: -69,0 + 5622: -70,0 + 5627: -71,0 + 5632: -71,-2 + 5633: -71,5 + 5638: -60,5 + 5639: -61,5 + 5640: -62,5 + 5641: -63,5 + 5646: -68,5 + 5647: -65,5 + 5653: -70,5 + 5654: -71,5 + 5655: -72,5 + 5656: -73,5 + 5664: -78,5 + 5665: -77,5 + 5666: -75,5 + 5667: -76,5 + 5676: -71,3 + 5679: -68,12 + 5687: -66,10 + 5688: -65,10 + 5689: -64,10 + 5695: -60,14 + 5696: -59,14 + 5697: -58,14 + 5698: -55,14 + 5699: -56,14 + 5715: -95,-1 + 5716: -94,-1 + 5717: -93,-1 + 5718: -92,-1 + 5728: -94,4 + 5738: -94,9 + 5739: -74,10 + 5752: -80,10 + 5753: -84,10 + 5763: -57,25 + 5776: -67,26 + 5777: -66,26 + 5778: -65,26 + 5779: -64,26 + 5780: -61,26 + 5781: -61,26 + 5782: -60,26 + 5783: -59,26 + 5784: -62,26 + 5785: -66,45 + 5805: -66,40 + 5806: -66,35 + 5819: -66,30 + 5824: -60,45 + 5834: -61,40 + 5844: -61,35 + 5855: -63,31 + 5856: -64,31 + 5860: -60,30 + 5861: -59,30 + 5862: -58,30 + 5863: -57,30 + 5874: -63,45 + 5875: -62,45 + 5876: -64,45 + 5880: -66,0 + 5881: -81,10 + 5882: -82,10 + 5883: -83,10 + 5886: -58,18 + 5887: -57,18 + 5888: -56,18 + 5897: -32,5 + 5905: -41,5 - node: color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 3506: 44,-16 - 3507: 45,-16 - 3508: 46,-16 - 3509: 46,-16 - 3510: 47,-16 - 3511: 48,-16 - 3512: 49,-16 - 3513: 50,-16 - 3514: 51,-16 - 3521: 46,-15 - 3522: 47,-15 - 3523: 48,-15 - 3524: 49,-15 - 3525: 50,-15 - 3928: 34,-12 - 3929: 33,-12 - 3930: 31,-12 - 3960: 30,-12 + 2486: 44,-16 + 2487: 45,-16 + 2488: 46,-16 + 2489: 46,-16 + 2490: 47,-16 + 2491: 48,-16 + 2492: 49,-16 + 2493: 50,-16 + 2494: 51,-16 + 2501: 46,-15 + 2502: 47,-15 + 2503: 48,-15 + 2504: 49,-15 + 2505: 50,-15 + 2888: 34,-12 + 2889: 33,-12 + 2890: 31,-12 + 2911: 30,-12 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineS decals: - 2200: -85,25 - 2201: -85,30 - 2202: -85,35 - 2203: -85,40 - 2204: -85,45 + 1306: -85,25 + 1307: -85,30 + 1308: -85,35 + 1309: -85,40 + 1310: -85,45 - node: color: '#52B4E996' id: MiniTileDarkLineW decals: - 1793: -15,7 - 1794: -15,8 - 1795: -15,9 - 1796: -15,10 - 1797: -15,11 - 1798: -15,12 + 1093: -15,8 + - node: + color: '#E6E6E6FF' + id: MiniTileDarkLineW + decals: + 5219: -81,13 + 5220: -81,14 + 5221: -81,15 + 5222: -81,16 + 5223: -81,17 + 5224: -81,18 + 5225: -81,19 + 5226: -81,20 + 5239: -87,3 + 5240: -87,4 + 5241: -87,5 + 5242: -87,6 + 5246: -72,14 + 5247: -72,13 + 5248: -72,12 + 5281: -60,17 + 5282: -65,17 + 5303: -41,17 + 5304: -31,17 + 5305: -31,16 + 5306: -31,15 + 5307: -31,14 + 5313: -31,8 + 5314: -31,9 + 5315: -31,10 + 5316: -31,11 + 5335: -31,4 + 5344: -25,3 + 5355: -16,2 + 5372: -11,2 + 5402: 17,2 + 5421: 27,2 + 5431: 22,2 + 5432: 7,2 + 5437: 0,0 + 5438: 0,-1 + 5439: 0,-2 + 5442: 0,-4 + 5443: 0,-5 + 5444: 0,-6 + 5445: 0,-7 + 5451: 0,-9 + 5452: 0,-10 + 5453: 0,-11 + 5454: 0,-12 + 5465: 0,-13 + 5475: -11,-13 + 5485: -16,-13 + 5495: -21,-13 + 5513: -26,-13 + 5523: -33,-13 + 5526: -31,-13 + 5532: -40,-11 + 5533: -40,-10 + 5537: -40,-8 + 5538: -40,-7 + 5539: -40,-6 + 5540: -40,-5 + 5547: -40,-3 + 5548: -40,-2 + 5549: -40,-1 + 5550: -40,0 + 5557: -40,2 + 5568: -49,4 + 5587: -54,4 + 5588: -55,2 + 5589: -55,1 + 5590: -55,0 + 5592: -55,-3 + 5593: -55,-3 + 5594: -55,-2 + 5611: -57,-1 + 5613: -62,-1 + 5629: -70,-3 + 5642: -59,4 + 5645: -64,4 + 5652: -69,4 + 5663: -74,4 + 5672: -70,2 + 5673: -70,1 + 5678: -67,11 + 5684: -67,10 + 5685: -67,9 + 5693: -63,9 + 5705: -54,13 + 5707: -57,13 + 5709: -91,-2 + 5719: -93,0 + 5720: -93,1 + 5721: -93,2 + 5722: -93,3 + 5730: -93,5 + 5731: -93,6 + 5732: -93,7 + 5733: -93,8 + 5740: -73,9 + 5744: -54,17 + 5745: -79,9 + 5754: -85,8 + 5755: -56,24 + 5756: -56,23 + 5757: -56,22 + 5758: -56,21 + 5764: -58,25 + 5775: -63,25 + 5786: -65,44 + 5787: -65,43 + 5788: -65,42 + 5789: -65,41 + 5799: -65,39 + 5800: -65,38 + 5801: -65,37 + 5802: -65,37 + 5803: -65,36 + 5807: -65,34 + 5808: -65,33 + 5809: -65,32 + 5810: -65,31 + 5816: -65,29 + 5817: -65,28 + 5818: -65,27 + 5825: -59,44 + 5826: -59,43 + 5827: -59,42 + 5828: -59,41 + 5835: -60,39 + 5836: -60,38 + 5837: -60,37 + 5838: -60,36 + 5845: -60,34 + 5846: -60,33 + 5847: -60,32 + 5848: -60,31 + 5857: -62,30 + 5864: -56,29 + 5872: -61,44 + 5889: -52,17 + 5890: -48,17 + 5894: -36,17 + 5898: -30,3 + 5900: -40,3 + 5901: -40,4 + 5902: -44,4 + 5906: -6,-13 + 5907: -40,-13 + 5908: -40,-12 + 5910: -67,-1 + 5911: 32,2 + 5914: 0,2 + 5915: 0,1 + 5916: -6,2 + 5919: -23,2 - node: color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 3515: 43,-15 - 3516: 43,-14 - 3933: 32,-13 - 3934: 32,-14 - 4189: 12,-9 - 4190: 12,-8 - 4194: 3,-3 - 4195: 3,-3 - 4196: 3,-2 - 4197: 3,-1 - 4198: 6,-3 - 4199: 6,-2 - 4200: 6,-1 - 4207: 4,-3 - 4208: 4,-2 - 4209: 4,-1 + 2495: 43,-15 + 2496: 43,-14 + 2893: 32,-13 + 2894: 32,-14 + 3012: 3,-3 + 3013: 3,-3 + 3014: 3,-2 + 3015: 3,-1 + 3016: 6,-3 + 3017: 6,-2 + 3018: 6,-1 + 3025: 4,-3 + 3026: 4,-2 + 3027: 4,-1 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileDarkLineW decals: - 2180: -84,44 - 2181: -84,43 - 2182: -84,42 - 2183: -84,41 - 2184: -84,39 - 2185: -84,38 - 2186: -84,37 - 2187: -84,36 - 2188: -84,34 - 2189: -84,33 - 2190: -84,32 - 2191: -84,31 - 2192: -84,29 - 2193: -84,28 - 2194: -84,27 - 2195: -84,26 - 2196: -84,24 - 2197: -84,23 - 2198: -84,22 - 2199: -84,21 + 1286: -84,44 + 1287: -84,43 + 1288: -84,42 + 1289: -84,41 + 1290: -84,39 + 1291: -84,38 + 1292: -84,37 + 1293: -84,36 + 1294: -84,34 + 1295: -84,33 + 1296: -84,32 + 1297: -84,31 + 1298: -84,29 + 1299: -84,28 + 1300: -84,27 + 1301: -84,26 + 1302: -84,24 + 1303: -84,23 + 1304: -84,22 + 1305: -84,21 - node: color: '#2D72307C' id: MiniTileDiagonalCheckerAOverlay decals: - 3112: 9,40 - 3113: 10,40 - 3114: 10,41 - 3115: 9,41 - 3116: 8,41 - 3117: 8,42 - 3118: 9,42 - 3119: 10,42 - 3120: 11,42 - 3121: 11,41 + 2099: 9,40 + 2100: 10,40 + 2101: 10,41 + 2102: 9,41 + 2103: 8,41 + 2104: 8,42 + 2105: 9,42 + 2106: 10,42 + 2107: 11,42 + 2108: 11,41 - node: color: '#2D723063' id: MiniTileDiagonalOverlay decals: - 3134: 6,30 - 3135: 6,29 - 3136: 5,30 - 3137: 5,29 - 3138: 7,30 - 3139: 7,29 - 3140: 8,30 - 3141: 8,29 + 2121: 6,30 + 2122: 6,29 + 2123: 5,30 + 2124: 5,29 + 2125: 7,30 + 2126: 7,29 + 2127: 8,30 + 2128: 8,29 + - node: + color: '#D381C996' + id: MiniTileInnerOverlayNE + decals: + 3469: -5,-25 + 3470: -1,-25 + 3471: 2,-25 + 3472: -3,-25 + 3498: 2,-19 + 3521: -3,-20 + 3571: -19,-22 + 3578: -12,-23 + 3579: -9,-21 + 3625: -14,-17 + 3654: -5,-31 + - node: + color: '#D381C996' + id: MiniTileInnerOverlayNW + decals: + 3473: -10,-23 + 3474: -3,-25 + 3475: -1,-25 + 3476: 2,-25 + 3522: -1,-20 + 3561: -20,-23 + 3569: -23,-17 + 3580: -9,-21 + 3623: -17,-17 + 3624: -7,-17 + 3651: -3,-31 + - node: + color: '#D381C996' + id: MiniTileInnerOverlaySE + decals: + 3479: -2,-26 + 3480: 2,-26 + 3500: 2,-23 + 3514: -3,-23 + 3567: -22,-23 + 3577: -12,-23 + 3619: -9,-19 + 3620: -12,-19 + 3653: -5,-31 + 3675: -2,-32 + - node: + color: '#D381C996' + id: MiniTileInnerOverlaySW + decals: + 3477: -2,-26 + 3478: 2,-26 + 3499: 2,-23 + 3513: -1,-23 + 3560: -20,-23 + 3568: -23,-17 + 3570: -20,-21 + 3585: -10,-23 + 3586: -8,-24 + 3587: -9,-19 + 3622: -17,-17 + 3652: -3,-31 + 3674: -2,-32 + - node: + color: '#D381C996' + id: MiniTileLineOverlayE + decals: + 3439: 4,-26 + 3465: -5,-21 + 3466: -5,-22 + 3467: -5,-23 + 3468: -5,-24 + 3491: 4,-19 + 3492: 4,-20 + 3493: 4,-21 + 3494: 4,-22 + 3495: 4,-23 + 3501: -1,-23 + 3502: -1,-22 + 3503: -1,-24 + 3504: -1,-21 + 3505: -1,-20 + 3506: -1,-19 + 3507: -3,-19 + 3508: -3,-24 + 3566: -22,-24 + 3572: -19,-21 + 3573: -19,-20 + 3574: -19,-19 + 3575: -12,-22 + 3576: -12,-24 + 3581: -9,-20 + 3588: -9,-20 + 3589: -6,-19 + 3590: -6,-18 + 3591: -6,-17 + 3592: -6,-16 + 3593: -14,-16 + 3621: -12,-20 + 3645: -5,-30 + 3646: -5,-29 + 3647: -5,-28 + 3648: -5,-32 + 3649: -5,-33 + 3662: -1,-28 + 3663: -1,-29 + 3664: -1,-30 + 3665: -1,-31 + 3666: -1,-32 + 3670: -2,-27 + 3672: -2,-33 + - node: + color: '#D381C996' + id: MiniTileLineOverlayN + decals: + 3434: -2,-25 + 3435: 0,-25 + 3436: 1,-25 + 3437: 3,-25 + 3438: 4,-25 + 3459: -10,-21 + 3460: -8,-21 + 3461: -6,-21 + 3462: -7,-21 + 3463: -5,-21 + 3464: -4,-25 + 3488: 1,-20 + 3489: 3,-19 + 3490: 4,-19 + 3520: -2,-20 + 3523: -12,-22 + 3524: -13,-22 + 3525: -14,-22 + 3526: -15,-22 + 3527: -16,-22 + 3528: -17,-22 + 3529: -18,-22 + 3530: -23,-16 + 3531: -22,-16 + 3532: -23,-16 + 3562: -23,-23 + 3563: -22,-23 + 3564: -21,-23 + 3583: -11,-23 + 3594: -13,-17 + 3595: -11,-17 + 3596: -12,-17 + 3597: -9,-17 + 3598: -10,-17 + 3599: -8,-17 + 3600: -17,-16 + 3601: -16,-16 + 3602: -15,-16 + 3603: -14,-16 + 3626: -7,-16 + 3627: -6,-16 + 3632: -10,-31 + 3641: -4,-31 + 3642: -5,-28 + 3643: -6,-28 + 3644: -7,-28 + 3656: -4,-31 + 3660: -3,-28 + 3661: -1,-28 + - node: + color: '#D381C996' + id: MiniTileLineOverlayS + decals: + 3440: 4,-26 + 3441: 3,-26 + 3442: 1,-26 + 3443: 0,-26 + 3444: -1,-26 + 3445: -3,-26 + 3446: -4,-26 + 3447: -5,-26 + 3448: -6,-26 + 3449: -8,-26 + 3450: -7,-26 + 3451: -9,-24 + 3452: -10,-24 + 3482: 1,-23 + 3483: 3,-23 + 3496: 4,-23 + 3515: -2,-23 + 3542: -22,-24 + 3543: -23,-24 + 3544: -20,-24 + 3545: -18,-24 + 3546: -19,-24 + 3547: -18,-24 + 3548: -17,-24 + 3549: -17,-24 + 3550: -15,-24 + 3551: -15,-24 + 3552: -14,-24 + 3553: -13,-24 + 3554: -13,-24 + 3555: -12,-24 + 3556: -16,-24 + 3557: -21,-21 + 3558: -22,-21 + 3559: -23,-21 + 3565: -21,-23 + 3584: -11,-23 + 3608: -17,-20 + 3609: -16,-20 + 3610: -15,-20 + 3611: -14,-20 + 3612: -12,-20 + 3613: -13,-20 + 3614: -11,-19 + 3615: -10,-19 + 3616: -8,-19 + 3617: -7,-19 + 3618: -6,-19 + 3635: -10,-32 + 3636: -9,-32 + 3637: -7,-33 + 3638: -6,-33 + 3639: -5,-33 + 3640: -4,-31 + 3655: -4,-31 + 3667: -1,-32 + 3668: -3,-32 + - node: + color: '#D381C996' + id: MiniTileLineOverlayW + decals: + 3453: -8,-25 + 3454: -8,-26 + 3455: -11,-24 + 3456: -10,-24 + 3457: -10,-22 + 3458: -10,-21 + 3481: -16,-21 + 3484: 1,-23 + 3485: 1,-22 + 3486: 1,-21 + 3487: 1,-20 + 3497: 2,-19 + 3509: -3,-24 + 3510: -1,-24 + 3511: -3,-19 + 3512: -1,-19 + 3516: -3,-23 + 3517: -3,-22 + 3518: -3,-21 + 3519: -3,-20 + 3533: -23,-16 + 3534: -23,-18 + 3535: -23,-19 + 3536: -23,-20 + 3537: -23,-21 + 3538: -20,-22 + 3539: -23,-23 + 3540: -23,-24 + 3541: -20,-24 + 3582: -9,-20 + 3604: -17,-16 + 3605: -17,-18 + 3606: -17,-19 + 3607: -17,-20 + 3628: -7,-16 + 3629: -7,-28 + 3630: -7,-29 + 3631: -7,-30 + 3633: -10,-31 + 3634: -10,-32 + 3650: -7,-33 + 3657: -3,-30 + 3658: -3,-29 + 3659: -3,-28 + 3669: -3,-32 + 3671: -2,-27 + 3673: -2,-33 - node: color: '#52B4E996' id: MiniTileOverlay decals: - 2874: -6,13 + 1863: -6,13 - node: color: '#52B4E99E' id: MiniTileOverlay decals: - 2944: -13,11 - 2945: -13,12 - 2946: -13,14 - 2947: -13,13 - 2948: -11,15 - 2949: -10,15 - 2950: -10,14 - 2951: -10,13 - 2952: -10,12 - 2953: -10,11 - 2954: -11,11 - 2955: -12,11 + 1931: -13,11 + 1932: -13,12 + 1933: -13,14 + 1934: -13,13 + 1935: -11,15 + 1936: -10,15 + 1937: -10,14 + 1938: -10,13 + 1939: -10,12 + 1940: -10,11 + 1941: -11,11 + 1942: -12,11 - node: color: '#52B4E99E' id: MiniTileSteelLineE decals: - 2930: -4,12 + 1919: -4,12 - node: color: '#52B4E99E' id: MiniTileSteelLineS decals: - 2929: -4,11 + 1918: -4,11 - node: color: '#52B4E99E' id: MiniTileSteelLineW decals: - 2931: -8,7 - 2932: -8,8 + 1920: -8,7 + 1921: -8,8 - node: color: '#52B4E996' id: MiniTileWhiteCornerNe decals: - 2762: 15,14 - 2889: -5,14 - 3235: -5,21 - 3274: 11,24 + 1761: 15,14 + 1878: -5,14 + 2216: -5,21 + 2255: 11,24 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerNe decals: - 3304: 3,21 - 3309: 3,17 + 2284: 3,21 + 2289: 3,17 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerNe decals: - 1288: -103,11 - 1289: -102,10 + 725: -103,11 + 726: -102,10 - node: color: '#FFA500FF' id: MiniTileWhiteCornerNe decals: - 3209: 0,9 + 2190: 0,9 - node: color: '#52B4E996' id: MiniTileWhiteCornerNw decals: - 2761: 14,14 - 2888: -7,14 - 3224: -8,15 - 3234: -7,21 - 3275: 6,24 + 1760: 14,14 + 1877: -7,14 + 2205: -8,15 + 2215: -7,21 + 2256: 6,24 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerNw decals: - 3310: -3,21 + 2290: -3,21 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerNw decals: - 1287: -106,11 + 724: -106,11 - node: color: '#FFA500FF' id: MiniTileWhiteCornerNw decals: - 3196: -4,9 + 2177: -4,9 - node: color: '#52B4E996' id: MiniTileWhiteCornerSe decals: - 2760: 15,12 - 2890: -5,12 - 2912: -6,5 - 2915: -4,11 - 3273: 11,20 + 1759: 15,12 + 1879: -5,12 + 1901: -6,5 + 1904: -4,11 + 2254: 11,20 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerSe decals: - 3307: 3,19 - 3311: 3,15 + 2287: 3,19 + 2291: 3,15 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerSe decals: - 1291: -102,7 + 728: -102,7 - node: color: '#FFA500FF' id: MiniTileWhiteCornerSe decals: - 3198: 0,5 + 2179: 0,5 - node: color: '#52B4E996' id: MiniTileWhiteCornerSw decals: - 2759: 14,12 - 2891: -7,12 - 2913: -8,5 - 3272: 6,20 + 1758: 14,12 + 1880: -7,12 + 1902: -8,5 + 2253: 6,20 - node: color: '#52B4E9CC' id: MiniTileWhiteCornerSw decals: - 3308: -3,15 + 2288: -3,15 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteCornerSw decals: - 1290: -106,7 + 727: -106,7 - node: color: '#FFA500FF' id: MiniTileWhiteCornerSw decals: - 3197: -4,5 + 2178: -4,5 - node: color: '#52B4E996' id: MiniTileWhiteEndN decals: - 3242: -7,10 - 3245: -6,20 + 2223: -7,10 + 2226: -6,20 - node: color: '#52B4E996' id: MiniTileWhiteEndS decals: - 3243: -7,6 - 3244: -6,16 + 2224: -7,6 + 2225: -6,16 - node: color: '#52B4E996' id: MiniTileWhiteInnerNe decals: - 3228: -5,15 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteInnerNe - decals: - 2323: -3,-8 + 2209: -5,15 - node: color: '#52B4E996' id: MiniTileWhiteInnerNw decals: - 3055: 35,18 - 3227: -7,15 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteInnerNw - decals: - 2324: -1,-8 + 2042: 35,18 + 2208: -7,15 - node: color: '#52B4E996' id: MiniTileWhiteInnerSe decals: - 2916: -6,11 + 1905: -6,11 - node: color: '#FFFFFFFF' id: MiniTileWhiteInnerSe decals: - 2330: -3,-4 + 1392: -3,-4 - node: color: '#52B4E996' id: MiniTileWhiteInnerSw decals: - 3054: 35,20 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteInnerSw - decals: - 2329: -1,-4 + 2041: 35,20 - node: color: '#52B4E996' id: MiniTileWhiteLineE decals: - 2763: 15,13 - 2861: -7,13 - 2887: -5,13 - 2900: -6,6 - 2901: -6,7 - 2902: -6,8 - 2903: -6,9 - 2904: -6,10 - 2908: -4,12 - 2909: -4,13 - 2923: -7,8 - 2924: -7,7 - 3237: -5,20 - 3238: -5,19 - 3239: -5,18 - 3240: -5,17 - 3241: -5,16 - 3249: -6,19 - 3250: -6,18 - 3251: -6,17 - 3252: 14,17 - 3253: 14,18 - 3254: 14,19 - 3255: 14,20 - 3256: 14,21 - 3257: 14,22 - 3258: 14,23 - 3269: 11,21 - 3270: 11,22 - 3271: 11,23 + 1762: 15,13 + 1860: -7,13 + 1876: -5,13 + 1889: -6,6 + 1890: -6,7 + 1891: -6,8 + 1892: -6,9 + 1893: -6,10 + 1897: -4,12 + 1898: -4,13 + 1912: -7,8 + 1913: -7,7 + 2218: -5,20 + 2219: -5,19 + 2220: -5,18 + 2221: -5,17 + 2222: -5,16 + 2230: -6,19 + 2231: -6,18 + 2232: -6,17 + 2233: 14,17 + 2234: 14,18 + 2235: 14,19 + 2236: 14,20 + 2237: 14,21 + 2238: 14,22 + 2239: 14,23 + 2250: 11,21 + 2251: 11,22 + 2252: 11,23 - node: color: '#52B4E9CC' id: MiniTileWhiteLineE decals: - 3305: 3,20 - 3306: 3,16 + 2285: 3,20 + 2286: 3,16 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineE decals: - 1299: -102,8 - 1300: -102,9 + 736: -102,8 + 737: -102,9 - node: color: '#FFA500FF' id: MiniTileWhiteLineE decals: - 3199: 0,6 - 3200: 0,7 - 3208: 0,8 + 2180: 0,6 + 2181: 0,7 + 2189: 0,8 - node: color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 2325: -3,-6 - 2326: -3,-5 + 1390: -3,-6 + 1391: -3,-5 - node: cleanable: True zIndex: 431 color: '#FFFFFFFF' id: MiniTileWhiteLineE decals: - 2320: -3,-7 + 1389: -3,-7 - node: color: '#52B4E996' id: MiniTileWhiteLineN decals: - 2860: -6,14 - 2862: -6,12 - 3052: 34,18 - 3236: -6,21 - 3280: 7,24 - 3281: 8,24 - 3282: 9,24 - 3283: 10,24 + 1859: -6,14 + 1861: -6,12 + 2039: 34,18 + 2217: -6,21 + 2261: 7,24 + 2262: 8,24 + 2263: 9,24 + 2264: 10,24 - node: color: '#52B4E9CC' id: MiniTileWhiteLineN decals: - 3322: -2,21 - 3323: -1,21 - 3324: 0,21 - 3326: 1,21 - 3327: 2,21 + 2302: -2,21 + 2303: -1,21 + 2304: 0,21 + 2306: 1,21 + 2307: 2,21 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineN decals: - 1297: -105,11 - 1298: -104,11 + 734: -105,11 + 735: -104,11 - node: color: '#FFA500FF' id: MiniTileWhiteLineN decals: - 3420: 3,8 - 3421: 2,8 - 3427: -3,9 - 3428: -2,9 - 3429: -1,9 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteLineN - decals: - 2321: -2,-8 + 2400: 3,8 + 2401: 2,8 + 2407: -3,9 + 2408: -2,9 + 2409: -1,9 - node: color: '#52B4E996' id: MiniTileWhiteLineS decals: - 2858: -6,12 - 2863: -6,14 - 2906: -5,11 - 2911: -7,5 - 3053: 34,20 - 3276: 7,20 - 3277: 8,20 - 3278: 9,20 - 3279: 10,20 + 1857: -6,12 + 1862: -6,14 + 1895: -5,11 + 1900: -7,5 + 2040: 34,20 + 2257: 7,20 + 2258: 8,20 + 2259: 9,20 + 2260: 10,20 - node: color: '#52B4E9CC' id: MiniTileWhiteLineS decals: - 3312: 2,15 - 3313: 1,15 - 3314: 0,15 - 3315: -1,15 - 3316: -2,15 + 2292: 2,15 + 2293: 1,15 + 2294: 0,15 + 2295: -1,15 + 2296: -2,15 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineS decals: - 1292: -104,7 - 1293: -105,7 + 729: -104,7 + 730: -105,7 - node: color: '#FFA500FF' id: MiniTileWhiteLineS decals: - 3201: -3,5 - 3330: -2,5 - 3331: -1,5 - 3422: 2,6 - 3423: 3,6 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineS - decals: - 2331: -2,-4 + 2182: -3,5 + 2310: -2,5 + 2311: -1,5 + 2402: 2,6 + 2403: 3,6 - node: color: '#52B4E996' id: MiniTileWhiteLineW decals: - 2764: 14,13 - 2859: -7,13 - 2884: -5,13 - 2892: -8,13 - 2893: -8,14 - 2894: -8,12 - 2895: -8,10 - 2896: -8,9 - 2897: -8,8 - 2898: -8,7 - 2899: -8,6 - 2921: -7,8 - 2922: -7,7 - 3056: 35,19 - 3229: -7,16 - 3230: -7,17 - 3231: -7,18 - 3232: -7,19 - 3233: -7,20 - 3246: -6,19 - 3247: -6,18 - 3248: -6,17 - 3259: 13,23 - 3260: 13,22 - 3261: 13,21 - 3262: 13,19 - 3263: 13,20 - 3264: 13,18 - 3265: 13,17 - 3266: 6,21 - 3267: 6,22 - 3268: 6,23 + 1763: 14,13 + 1858: -7,13 + 1873: -5,13 + 1881: -8,13 + 1882: -8,14 + 1883: -8,12 + 1884: -8,10 + 1885: -8,9 + 1886: -8,8 + 1887: -8,7 + 1888: -8,6 + 1910: -7,8 + 1911: -7,7 + 2043: 35,19 + 2210: -7,16 + 2211: -7,17 + 2212: -7,18 + 2213: -7,19 + 2214: -7,20 + 2227: -6,19 + 2228: -6,18 + 2229: -6,17 + 2240: 13,23 + 2241: 13,22 + 2242: 13,21 + 2243: 13,19 + 2244: 13,20 + 2245: 13,18 + 2246: 13,17 + 2247: 6,21 + 2248: 6,22 + 2249: 6,23 - node: color: '#52B4E99E' id: MiniTileWhiteLineW decals: - 3024: 23,35 - 3025: 23,36 + 2011: 23,35 + 2012: 23,36 - node: color: '#52B4E9CC' id: MiniTileWhiteLineW decals: - 3317: -3,16 - 3318: -3,17 - 3319: -3,18 - 3320: -3,19 - 3321: -3,20 + 2297: -3,16 + 2298: -3,17 + 2299: -3,18 + 2300: -3,19 + 2301: -3,20 - node: cleanable: True color: '#EFB34196' id: MiniTileWhiteLineW decals: - 1294: -106,8 - 1295: -106,9 - 1296: -106,10 + 731: -106,8 + 732: -106,9 + 733: -106,10 - node: color: '#FFA500FF' id: MiniTileWhiteLineW decals: - 3202: -4,6 - 3203: -4,7 - 3204: -4,8 - - node: - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 2327: -1,-6 - 2328: -1,-5 - - node: - cleanable: True - zIndex: 431 - color: '#FFFFFFFF' - id: MiniTileWhiteLineW - decals: - 2322: -1,-7 - - node: - color: '#9C2020FF' - id: OldConcreteTrimEndN - decals: - 4011: 39,-13 - - node: - color: '#9C2020FF' - id: OldConcreteTrimEndS - decals: - 4012: 39,-20 + 2183: -4,6 + 2184: -4,7 + 2185: -4,8 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerNe decals: - 3551: 45,-15 - 3552: 45,-15 + 2531: 45,-15 + 2532: 45,-15 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerNw decals: - 3553: 51,-15 - 3554: 51,-15 + 2533: 51,-15 + 2534: 51,-15 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerSe decals: - 3557: 45,-14 - 3558: 45,-14 + 2537: 45,-14 + 2538: 45,-14 - node: color: '#DE3A3A96' id: OldConcreteTrimInnerSw decals: - 3555: 51,-14 - 3556: 51,-14 + 2535: 51,-14 + 2536: 51,-14 - node: color: '#DE3A3A96' id: OldConcreteTrimLineN decals: - 3531: 46,-15 - 3532: 47,-15 - 3533: 46,-15 - 3534: 47,-15 - 3535: 48,-15 - 3536: 48,-15 - 3537: 49,-15 - 3538: 49,-15 - 3539: 50,-15 - 3540: 50,-15 + 2511: 46,-15 + 2512: 47,-15 + 2513: 46,-15 + 2514: 47,-15 + 2515: 48,-15 + 2516: 48,-15 + 2517: 49,-15 + 2518: 49,-15 + 2519: 50,-15 + 2520: 50,-15 - node: color: '#DE3A3A96' id: OldConcreteTrimLineS decals: - 3541: 46,-14 - 3542: 46,-14 - 3543: 47,-14 - 3544: 47,-14 - 3545: 48,-14 - 3546: 48,-14 - 3547: 49,-14 - 3548: 49,-14 - 3549: 50,-14 - 3550: 50,-14 + 2521: 46,-14 + 2522: 46,-14 + 2523: 47,-14 + 2524: 47,-14 + 2525: 48,-14 + 2526: 48,-14 + 2527: 49,-14 + 2528: 49,-14 + 2529: 50,-14 + 2530: 50,-14 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale @@ -5565,115 +8807,42 @@ entities: 108: 62,-4 111: 59,-5 282: 51,6 - 2005: 34,4 - 2007: 34,5 - 2008: 34,6 - 2009: 34,7 - 2010: 34,8 - 2011: 35,8 - 2012: 36,8 - 2013: 37,8 - 2014: 38,8 - 2015: 38,9 - 2016: 39,9 - 2038: 38,0 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale decals: - 2765: 14,14 - 2775: 15,12 - 2780: 15,12 - 2885: -7,14 - 3210: -7,15 - - node: - cleanable: True - color: '#52B4E996' - id: QuarterTileOverlayGreyscale - decals: - 1896: -14,4 - 1897: -13,4 - 1898: -12,4 - 1899: -11,4 - 1900: -10,4 - 1901: -15,4 - 1902: -9,3 - 1903: -8,3 - 1904: -7,3 - 1905: -6,3 - - node: - cleanable: True - color: '#9FED5896' - id: QuarterTileOverlayGreyscale - decals: - 1913: -28,-11 - 1914: -27,-11 - 1915: -26,-11 - 1916: -25,-11 - 1917: -24,-11 - 1918: -23,-11 - 1919: -22,-11 - 1920: -21,-11 - 1921: -20,-11 - 1922: -19,-11 - 1923: -18,-11 - 1924: -11,-12 - 1925: -10,-12 - 1926: -9,-12 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale - decals: - 2413: -3,-23 + 1764: 14,14 + 1774: 15,12 + 1779: 15,12 + 1874: -7,14 + 2191: -7,15 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale decals: - 792: -36,6 - 793: -37,6 - 794: -38,6 - 795: -38,7 - 796: -37,7 - 797: -36,7 - 798: -36,8 - 799: -37,8 - 800: -37,9 - 801: -36,9 - 802: -38,9 - 803: -39,9 - 804: -40,9 - 805: -38,8 - 806: -39,8 - 807: -39,7 - 808: -40,7 - 809: -40,8 - 810: -41,8 - 811: -41,7 - 812: -41,6 - 813: -42,7 - 814: -42,8 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 555: -18,9 - 827: -86,14 - 1729: -53,36 - - node: - cleanable: True - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale - decals: - 1987: -59,30 - 1988: -58,30 - 1989: -57,30 - 1990: -56,30 - - node: - color: '#00FFFF7F' - id: QuarterTileOverlayGreyscale180 - decals: - 1199: -92,-3 + 401: -36,6 + 402: -37,6 + 403: -38,6 + 404: -38,7 + 405: -37,7 + 406: -36,7 + 407: -36,8 + 408: -37,8 + 409: -37,9 + 410: -36,9 + 411: -38,9 + 412: -39,9 + 413: -40,9 + 414: -38,8 + 415: -39,8 + 416: -39,7 + 417: -40,7 + 418: -40,8 + 419: -41,8 + 420: -41,7 + 421: -41,6 + 422: -42,7 + 423: -42,8 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale180 @@ -5681,134 +8850,43 @@ entities: 62: 57,0 160: 52,13 253: 36,11 - 1943: 32,1 - 1944: 31,1 - 1945: 30,1 - 1946: 29,1 - 1947: 28,1 - 1948: 27,1 - 1949: 26,1 - 1950: 25,1 - 1951: 24,1 - 2017: 33,1 - 2018: 34,1 - 2019: 35,1 - 2020: 36,1 - 2021: 37,1 - 2031: 41,3 - 2032: 41,2 - 2033: 41,1 - 2034: 41,0 - 2035: 40,0 - 2036: 39,0 - 2037: 38,0 - - node: - cleanable: True - color: '#334E6DC8' - id: QuarterTileOverlayGreyscale180 - decals: - 1972: -59,45 - 1973: -59,44 + 1176: 33,1 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale180 decals: - 2644: -6,11 - 2766: 15,12 - 2776: 14,14 - 2779: 14,14 - 2882: -5,12 - - node: - cleanable: True - color: '#9FED5896' - id: QuarterTileOverlayGreyscale180 - decals: - 1906: -21,1 - 1907: -20,1 - 1908: -19,1 - 1909: -18,1 - 1910: -17,1 - 1911: -16,1 - 1912: -15,1 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 683: -1,-26 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale180 - decals: - 1894: 0,-17 - 1895: 0,-16 - 2411: -1,-20 + 1643: -6,11 + 1765: 15,12 + 1775: 14,14 + 1778: 14,14 + 1871: -5,12 - node: color: '#D4D4D496' id: QuarterTileOverlayGreyscale180 decals: - 769: -36,7 - 770: -37,8 - 771: -37,7 - 772: -36,8 - 773: -36,9 - 774: -37,9 - 775: -38,9 - 776: -38,8 - 777: -38,7 - 778: -39,7 - 779: -39,8 - 780: -39,9 - 781: -40,9 - 782: -40,8 - 783: -40,7 - 784: -41,7 - 785: -41,8 - 786: -42,8 - 787: -42,7 - 788: -41,6 - 789: -38,6 - 790: -37,6 - 791: -36,6 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 1083: 5,-7 - 1185: 0,-15 - 1186: 0,-14 - 1187: 0,-12 - 1188: 0,-10 - 1189: 0,-9 - 1190: 1,-9 - 1191: 1,-8 - 1192: 1,-7 - 1193: 1,-6 - 1194: 0,-13 - 1195: 0,-11 - - node: - cleanable: True - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale180 - decals: - 1974: -59,43 - 1975: -59,42 - 1976: -59,41 - 1977: -59,40 - 1978: -59,39 - 1979: -59,38 - 1980: -60,37 - 1981: -60,36 - 1982: -60,35 - 1983: -60,34 - 1984: -60,33 - 1985: -60,32 - 1986: -60,31 - - node: - color: '#00FFFF7F' - id: QuarterTileOverlayGreyscale270 - decals: - 1213: -94,-4 + 378: -36,7 + 379: -37,8 + 380: -37,7 + 381: -36,8 + 382: -36,9 + 383: -37,9 + 384: -38,9 + 385: -38,8 + 386: -38,7 + 387: -39,7 + 388: -39,8 + 389: -39,9 + 390: -40,9 + 391: -40,8 + 392: -40,7 + 393: -41,7 + 394: -41,8 + 395: -42,8 + 396: -42,7 + 397: -41,6 + 398: -38,6 + 399: -37,6 + 400: -36,6 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale270 @@ -5822,237 +8900,130 @@ entities: color: '#52B4E996' id: QuarterTileOverlayGreyscale270 decals: - 2768: 14,12 - 2777: 15,14 - 2778: 15,14 - 2883: -7,12 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale270 - decals: - 490: -53,-11 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 663: -8,-24 - 664: -8,-24 - 682: -3,-26 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale270 - decals: - 1869: -23,-14 - 1870: -22,-14 - 1871: -21,-14 - 1872: -20,-14 - 1873: -19,-14 - 1874: -18,-14 - 1875: -17,-14 - 1876: -16,-14 - 1877: -15,-14 - 1878: -14,-14 - 1879: -13,-14 - 1880: -12,-14 - 1881: -11,-14 - 1882: -10,-14 - 1883: -9,-14 - 1884: -8,-14 - 1885: -7,-14 - 1886: -4,-15 - 1887: -4,-16 - 1888: -4,-17 - 1889: -4,-18 - 1890: -3,-18 - 1891: -2,-18 - 1892: -1,-18 - 1893: 0,-18 - 2412: -3,-20 - - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale270 - decals: - 1102: 11,-7 - 2210: -42,1 - 2211: -42,0 - 2212: -42,-1 - 2213: -42,-2 - 2214: -42,-3 - 2215: -42,2 - - node: - color: '#00FFFF7F' - id: QuarterTileOverlayGreyscale90 - decals: - 1198: -92,-5 - 1214: -97,0 + 1767: 14,12 + 1776: 15,14 + 1777: 15,14 + 1872: -7,12 - node: color: '#334E6DC8' id: QuarterTileOverlayGreyscale90 decals: 121: 52,-5 147: 57,8 - 1933: 23,3 - 1934: 24,3 - 1935: 25,3 - 1936: 26,3 - 1937: 27,3 - 1938: 28,3 - 1939: 29,3 - 1940: 30,3 - 1941: 31,3 - 1942: 32,3 - 2006: 33,3 + 1175: 33,3 - node: color: '#52B4E996' id: QuarterTileOverlayGreyscale90 decals: - 1927: -16,3 - 1928: -17,3 - 1929: -18,3 - 1930: -19,3 - 1931: -20,3 - 1932: -21,3 - 2767: 15,14 - 2774: 14,12 - 2781: 14,12 - 2886: -5,14 - 3226: -5,15 - - node: - color: '#A4610696' - id: QuarterTileOverlayGreyscale90 - decals: - 480: -55,-10 - - node: - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 658: -5,-25 - - node: - cleanable: True - color: '#D381C996' - id: QuarterTileOverlayGreyscale90 - decals: - 2414: -1,-23 + 1766: 15,14 + 1773: 14,12 + 1780: 14,12 + 1875: -5,14 + 2207: -5,15 - node: - color: '#DE3A3A96' - id: QuarterTileOverlayGreyscale90 + color: '#41000096' + id: Rust decals: - 1108: 15,-9 - 1952: 15,3 - 1953: 16,3 - 1954: 17,3 - 1955: 18,3 - 1956: 19,3 - 1957: 20,3 - 1958: 21,3 - 1959: 22,3 + 1416: 23,39 + 1417: 23,40 + 1418: 24,40 + 1419: 24,39 + 1420: 25,39 + 1421: 25,40 + 1422: 24,38 + 1423: 24,38 + 1424: 24,39 + 1425: 23,39 + 1426: 23,40 + 1427: 24,40 + 1428: 25,40 + 1429: 25,39 + 1430: 24,38 + 1431: 24,39 + 1432: 23,39 + 1433: 23,40 + 1434: 24,40 + 1435: 25,40 + 1436: 25,39 + 1437: 23,41 + 1438: 23,41 + 1439: 23,41 + 1440: 23,42 + 1441: 23,42 + 1442: 23,42 + 1443: 23,43 + 1444: 24,43 + 1445: 24,42 + 1446: 25,42 + 1447: 25,43 + 1448: 23,43 + 1449: 24,43 + 1450: 24,42 + 1451: 25,42 + 1452: 25,43 + 1453: 23,43 + 1454: 24,43 + 1455: 24,42 + 1456: 25,42 + 1457: 25,43 - node: - color: '#41000096' + color: '#FFFFFFFF' id: Rust decals: - 2355: 23,39 - 2356: 23,40 - 2357: 24,40 - 2358: 24,39 - 2359: 25,39 - 2360: 25,40 - 2361: 24,38 - 2362: 24,38 - 2363: 24,39 - 2364: 23,39 - 2365: 23,40 - 2366: 24,40 - 2367: 25,40 - 2368: 25,39 - 2369: 24,38 - 2370: 24,39 - 2371: 23,39 - 2372: 23,40 - 2373: 24,40 - 2374: 25,40 - 2375: 25,39 - 2376: 23,41 - 2377: 23,41 - 2378: 23,41 - 2379: 23,42 - 2380: 23,42 - 2381: 23,42 - 2382: 23,43 - 2383: 24,43 - 2384: 24,42 - 2385: 25,42 - 2386: 25,43 - 2387: 23,43 - 2388: 24,43 - 2389: 24,42 - 2390: 25,42 - 2391: 25,43 - 2392: 23,43 - 2393: 24,43 - 2394: 24,42 - 2395: 25,42 - 2396: 25,43 + 4483: -103,-9 + 4484: -81,-13 + 4485: -81,-12 + 4486: -81,-13 + 4487: -81,-12 - node: color: '#FFFFFFFF' id: SpaceStationSign1 decals: - 2332: 10,2 + 1393: 10,2 - node: color: '#FFFFFFFF' id: SpaceStationSign2 decals: - 2333: 11,2 + 1394: 11,2 - node: color: '#FFFFFFFF' id: SpaceStationSign3 decals: - 2334: 12,2 + 1395: 12,2 - node: color: '#FFFFFFFF' id: SpaceStationSign4 decals: - 2335: 13,2 + 1396: 13,2 - node: color: '#FFFFFFFF' id: SpaceStationSign5 decals: - 2336: 14,2 + 1397: 14,2 - node: color: '#FFFFFFFF' id: SpaceStationSign6 decals: - 2337: 15,2 + 1398: 15,2 - node: color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 2338: 16,2 + 1399: 16,2 - node: cleanable: True color: '#FFFFFFFF' id: SpaceStationSign7 decals: - 1867: 50,6 - 1868: 49,-7 - - node: - angle: -1.5707963267948966 rad - color: '#FFFFFFFF' - id: StandClear - decals: - 556: -17,10 + 1157: 50,6 - node: color: '#FFFFFFFF' id: StandClear decals: - 342: -62,-16 - 1767: -57,36 - 1768: -56,36 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1230: -106,-13 + 336: -62,-16 + 3950: -135,-9 + 3951: -135,-8 + 3952: -135,-7 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale @@ -6061,92 +9032,35 @@ entities: 69: 54,9 196: 59,-4 229: 30,16 - - node: - cleanable: True - color: '#334E6DC8' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1967: -57,45 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale decals: - 1790: -12,7 - 2656: 5,14 - 2683: 13,15 - 2713: 30,20 - 2716: 24,20 - 3179: 6,24 - 3221: -7,21 - 3223: -8,15 + 1090: -12,7 + 1655: 5,14 + 1682: 13,15 + 1712: 30,20 + 1715: 24,20 + 2160: 6,24 + 2202: -7,21 + 2204: -8,15 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale decals: - 3022: 23,32 + 2009: 23,32 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale decals: - 3864: 18,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale - decals: - 429: -68,-5 - 469: -57,-6 - 498: -68,1 - 527: -72,-10 - 4258: -71,-6 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale - decals: - 656: -10,-21 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale - decals: - 540: -21,9 - 541: -18,10 - 578: -46,1 - 659: -89,14 - 721: -61,10 - 730: 7,-9 - 751: -64,22 - 820: -86,17 - 1049: 2,-11 - 1050: 3,-5 - 1051: 10,-6 - 1077: 7,-1 - 1127: 10,-1 - 1128: 10,-1 - 1714: -53,45 - 1715: -53,41 - 1716: -58,36 - 1717: -53,37 - 1718: -54,36 - 3568: 41,-19 - 3866: 42,-12 + 2840: 18,15 - node: - cleanable: True color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale decals: - 1961: -57,43 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale - decals: - 1242: -96,10 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 591: -91,-6 - 1203: -88,-3 - 1232: -105,-20 - 1427: -91,-12 + 638: 10,-1 + 639: 10,-1 + 2842: 42,-12 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale180 @@ -6159,68 +9073,31 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale180 decals: - 1789: -13,8 - 2642: -6,5 - 2643: -4,11 - 2655: 11,11 - 2680: 16,11 - 2717: 28,11 - 3050: 35,18 - 3176: 11,20 + 1089: -13,8 + 1641: -6,5 + 1642: -4,11 + 1654: 11,11 + 1679: 16,11 + 1716: 28,11 + 2037: 35,18 + 2157: 11,20 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale180 decals: - 2967: -10,11 + 1954: -10,11 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale180 decals: - 3860: 22,14 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 442: -59,-18 - 496: -51,-18 - 499: -59,-3 - 522: -70,-8 - 524: -70,-14 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale180 - decals: - 678: -1,-32 - 680: 4,-26 + 2836: 22,14 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale180 decals: - 542: -17,5 - 577: -44,-1 - 662: -85,12 - 717: -59,7 - 731: 9,-13 - 750: -60,20 - 1053: 5,-14 - 1054: 5,-9 - 1069: 8,-7 - 1076: 8,-3 - 1089: 22,-15 - 1090: 19,-15 - 1091: 15,-4 - 1092: 15,-4 - 1719: -55,38 - 1720: -51,39 - 1721: -51,43 - 1722: -52,34 - 1723: -56,32 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 592: -97,-6 - 1233: -106,-20 + 621: 19,-15 + 622: 15,-4 + 623: 15,-4 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale270 @@ -6229,84 +9106,34 @@ entities: 36: 54,-1 84: 59,12 230: 30,11 - - node: - cleanable: True - color: '#3AB3DAFF' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 2603: -115,-14 - node: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale270 decals: - 1788: -12,8 - 2641: -8,5 - 2654: 5,11 - 2681: 13,11 - 2714: 30,18 - 2718: 24,11 - 3177: 6,20 + 1088: -12,8 + 1640: -8,5 + 1653: 5,11 + 1680: 13,11 + 1713: 30,18 + 1717: 24,11 + 2158: 6,20 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale270 decals: - 2965: -13,11 + 1952: -13,11 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale270 decals: - 3862: 18,14 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 443: -68,-18 - 473: -57,-11 - 495: -53,-18 - 500: -68,-3 - 525: -72,-14 - 4259: -71,-8 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale270 - decals: - 655: -10,-24 - 661: -8,-26 - 677: -3,-32 + 2838: 18,14 - node: color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale270 decals: - 539: -21,5 - 576: -46,-1 - 660: -89,12 - 716: -61,7 - 732: 7,-13 - 749: -64,20 - 1052: 2,-14 - 1068: 3,-9 - 1075: 7,-3 - 1085: 10,-7 - 1086: 11,-11 - 1087: 18,-15 - 1088: 21,-15 - 1125: 10,-4 - 1126: 10,-4 - 1724: -57,38 - 1725: -53,43 - 1726: -53,39 - 1727: -54,34 - 1728: -58,32 - 3452: 42,-17 - 3567: 41,-21 - - node: - color: '#00FFFF7F' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1196: -91,-5 - 1204: -88,-1 - 1231: -105,-13 - 1426: -91,-8 + 636: 10,-4 + 637: 10,-4 + 2432: 42,-17 - node: color: '#334E6DC8' id: ThreeQuarterTileOverlayGreyscale90 @@ -6319,2926 +9146,2792 @@ entities: color: '#52B4E996' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1791: -13,7 - 2653: 11,14 - 2682: 16,15 - 2715: 28,20 - 3051: 35,20 - 3178: 11,24 - 3222: -5,21 + 1091: -13,7 + 1652: 11,14 + 1681: 16,15 + 1714: 28,20 + 2038: 35,20 + 2159: 11,24 + 2203: -5,21 - node: color: '#52B4E99E' id: ThreeQuarterTileOverlayGreyscale90 decals: - 2966: -10,15 - 3023: 25,32 + 1953: -10,15 + 2010: 25,32 - node: color: '#96DAFFFF' id: ThreeQuarterTileOverlayGreyscale90 decals: - 3861: 22,15 - - node: - color: '#A4610696' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 441: -59,-5 - 470: -55,-6 - 501: -59,1 - 523: -70,-6 - 526: -70,-10 - - node: - color: '#D381C996' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 657: -5,-21 - 679: 4,-25 - - node: - color: '#DE3A3A96' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 538: -17,10 - 575: -44,1 - 722: -59,10 - 733: 9,-9 - 752: -60,22 - 821: -85,17 - 1055: 5,-11 - 1070: 8,-5 - 1107: 15,-6 - 1129: 15,-1 - 1130: 15,-1 - 1710: -56,36 - 1711: -52,37 - 1712: -51,41 - 1713: -51,45 + 2837: 22,15 - node: - cleanable: True color: '#DE3A3A96' id: ThreeQuarterTileOverlayGreyscale90 decals: - 1963: -55,43 - 1964: -55,45 - - node: - color: '#EFB34196' - id: ThreeQuarterTileOverlayGreyscale90 - decals: - 1243: -92,10 + 640: 15,-1 + 641: 15,-1 - node: - color: '#FFFFFFFF' - id: WarnBox + color: '#F9801DFF' + id: WarnBoxGreyscale decals: - 595: -92,-6 - 596: -91,-6 + 2283: -2,7 - node: - color: '#F9801DFF' + color: '#FF5C5CFF' id: WarnBoxGreyscale decals: - 3303: -2,7 + 3961: -144,-8 - node: color: '#FFFFFFFF' id: WarnBoxGreyscale decals: - 1169: 11,9 - 1170: 5,9 - 1171: 5,5 + 670: 11,9 + 671: 5,9 + 672: 5,5 - node: color: '#FFFFFFFF' id: WarnCornerGreyscaleNE decals: - 1174: 9,9 + 675: 9,9 - node: color: '#FFFFFFFF' id: WarnCornerNE decals: - 341: -15,-9 - 649: -15,-19 - 2865: -29,50 - - node: - color: '#FFFFFFFF' - id: WarnCornerNW - decals: - 2866: -32,50 - - node: - color: '#FFFFFFFF' - id: WarnCornerSE - decals: - 2867: -29,47 - - node: - color: '#FFFFFFFF' - id: WarnCornerSW - decals: - 2864: -32,47 + 335: -15,-9 + 368: -15,-19 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleE decals: - 1167: 11,5 + 668: 11,5 - node: color: '#334E6DC8' id: WarnEndGreyscaleN decals: - 327: 40,10 + 323: 40,10 - node: color: '#334E6DC8' id: WarnEndGreyscaleS decals: - 328: 40,4 + 324: 40,4 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleS decals: - 1173: 9,8 + 674: 9,8 - node: color: '#FFFFFFFF' id: WarnEndGreyscaleW decals: - 1168: 10,5 - 1172: 7,9 + 669: 10,5 + 673: 7,9 - node: angle: 4.71238898038469 rad color: '#FFFFFFFF' id: WarnEndW decals: - 338: -16,-6 + 332: -16,-6 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 5195: -128,-1 + 5196: -127,-1 + 5197: -126,-1 + 5198: -128,8 + 5199: -127,8 + 5200: -126,8 + 5201: 45,1 + 5202: 45,0 + 5203: 47,8 + 5204: 47,7 + - node: + cleanable: True + color: '#3C44AAFF' + id: WarnFullGreyscale + decals: + 3108: 43,-6 - node: color: '#52B4E996' id: WarnFullGreyscale decals: - 3180: 5,21 - 3181: 5,20 + 2161: 5,21 + 2162: 5,20 - node: - color: '#FFFFFF34' + cleanable: True + color: '#B02E26FF' id: WarnFullGreyscale decals: - 1443: -92,-12 - 1444: -91,-12 - 1445: -91,-11 - 1446: -92,-11 - 1447: -92,-10 - 1448: -91,-10 - 1449: -91,-9 - 1450: -92,-9 - 1451: -92,-8 - 1452: -91,-8 + 3107: 41,-10 - node: color: '#FFFFFFFF' id: WarnLineE decals: - 652: -15,-20 - 2868: -29,48 - 2869: -29,49 - 3145: 14,27 - 3146: 14,26 - 3147: 14,25 + 370: -15,-20 + 5106: -89,33 + 5107: -89,34 + 5108: -89,36 + 5109: -88,40 + 5110: -88,41 + 5111: -88,42 + 5112: -88,43 + 5113: -88,45 + 5114: -88,44 - node: color: '#334E6DC8' id: WarnLineGreyscaleE decals: - 321: 40,9 - 322: 40,8 - 323: 40,8 - 324: 40,7 - 325: 40,6 - 326: 40,5 + 317: 40,9 + 318: 40,8 + 319: 40,8 + 320: 40,7 + 321: 40,6 + 322: 40,5 - node: color: '#9C2020FF' id: WarnLineGreyscaleE decals: - 3903: 23,-3 - 3904: 23,-2 - 4003: 37,-7 - 4004: 37,-6 - 4006: 40,-14 - 4007: 40,-21 - 4008: 40,-19 + 2865: 23,-3 + 2866: 23,-2 - node: color: '#DE3A3A96' id: WarnLineGreyscaleE decals: - 3453: 45,-12 - 3454: 45,-13 - 3455: 46,-12 - 3456: 47,-12 - 3457: 47,-13 - 3458: 48,-12 - 3459: 49,-12 - 3460: 49,-13 - 3461: 50,-12 - 3462: 51,-12 - 3463: 51,-13 - 3464: 52,-12 - 3465: 51,-17 - 3466: 51,-16 - 3467: 52,-17 - 3468: 50,-17 - 3469: 49,-17 - 3470: 49,-16 - 3471: 48,-17 - 3472: 47,-17 - 3473: 47,-16 - 3474: 46,-17 - 3475: 45,-17 - 3476: 45,-16 - 3559: 45,-13 - 3560: 47,-13 - 3561: 49,-13 - 3562: 51,-13 - 3563: 51,-16 - 3564: 49,-16 - 3565: 47,-16 - 3566: 45,-16 + 2433: 45,-12 + 2434: 45,-13 + 2435: 46,-12 + 2436: 47,-12 + 2437: 47,-13 + 2438: 48,-12 + 2439: 49,-12 + 2440: 49,-13 + 2441: 50,-12 + 2442: 51,-12 + 2443: 51,-13 + 2444: 52,-12 + 2445: 51,-17 + 2446: 51,-16 + 2447: 52,-17 + 2448: 50,-17 + 2449: 49,-17 + 2450: 49,-16 + 2451: 48,-17 + 2452: 47,-17 + 2453: 47,-16 + 2454: 46,-17 + 2455: 45,-17 + 2456: 45,-16 + 2539: 45,-13 + 2540: 47,-13 + 2541: 49,-13 + 2542: 51,-13 + 2543: 51,-16 + 2544: 49,-16 + 2545: 47,-16 + 2546: 45,-16 - node: color: '#FF0000FF' id: WarnLineGreyscaleE decals: - 2625: -79,-20 - - node: - color: '#9C2020FF' - id: WarnLineGreyscaleN - decals: - 4005: 36,-6 + 1624: -79,-20 - node: - angle: 3.141592653589793 rad - color: '#FF0000FF' + color: '#791500FF' id: WarnLineGreyscaleN decals: - 584: -85,-20 + 3334: 43,-10 + 3335: 44,-10 + 3336: 45,-10 + 3337: 46,-10 + 3338: 47,-10 + 3339: 48,-10 + 3340: 49,-10 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleN decals: - 1176: 8,9 + 677: 8,9 - node: - color: '#9C2020FF' + color: '#334E6DFF' id: WarnLineGreyscaleS decals: - 3926: 26,-7 - 3927: 27,-7 - 4010: 39,-21 + 3328: 44,-6 + 3329: 45,-6 + 3330: 46,-6 + 3331: 47,-6 + 3332: 48,-6 + 3333: 49,-6 - node: color: '#DE3A3A96' id: WarnLineGreyscaleS decals: - 3675: 49,-21 - 3676: 49,-20 - 3677: 48,-20 - 3678: 49,-19 + 2653: 49,-21 + 2654: 49,-20 + 2655: 48,-20 + 2656: 49,-19 - node: color: '#FFFFFFFF' id: WarnLineGreyscaleS decals: - 1175: 8,9 + 676: 8,9 - node: color: '#334E6DC8' id: WarnLineGreyscaleW decals: - 329: 40,5 - 330: 40,6 - 331: 40,7 - 332: 40,8 - 333: 40,9 + 325: 40,5 + 326: 40,6 + 327: 40,7 + 328: 40,8 + 329: 40,9 - node: color: '#9C2020FF' id: WarnLineGreyscaleW decals: - 3905: 24,-3 - 3906: 24,-2 - 4009: 38,-21 - 4013: 38,-17 - 4179: 39,-7 - 4180: 39,-6 + 2867: 24,-3 + 2868: 24,-2 - node: - color: '#FF0000FF' - id: WarnLineGreyscaleW + color: '#FFFFFFFF' + id: WarnLineN decals: - 2624: -83,-12 + 5115: -88,37 + 5116: -89,32 - node: angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineN decals: - 339: -15,-10 + 333: -15,-10 - node: angle: 3.141592653589793 rad color: '#FFFFFFFF' id: WarnLineN decals: - 340: -16,-9 + 334: -16,-9 - node: cleanable: True angle: -1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineS decals: - 1968: -67,45 - 1969: -66,45 - 1970: -65,45 - 1971: -59,45 - - node: - color: '#FFFFFFFF' - id: WarnLineS - decals: - 768: -3,-36 - 1704: -86,37 - 1705: -86,38 - 1706: -86,39 - 2870: -32,48 - 2871: -32,49 - 3142: 13,27 - 3143: 13,26 - 3144: 13,25 + 1158: -67,45 + 1159: -66,45 + 1160: -65,45 - node: - angle: 1.5707963267948966 rad color: '#FFFFFFFF' id: WarnLineS decals: - 285: -95,-14 - 286: -94,-14 - 287: -93,-14 + 377: -3,-36 + 1075: -86,37 + 1076: -86,38 + 1077: -86,39 + 5096: -89,36 + 5097: -89,37 + 5098: -89,39 + 5099: -89,40 + 5100: -89,42 + 5101: -89,43 + 5102: -89,45 + 5103: -89,34 + 5104: -89,33 - node: color: '#FFFFFFFF' id: WarnLineW decals: - 650: -16,-19 - 651: -17,-19 - 653: -20,-19 - 654: -20,-28 - 1707: -86,45 - 1708: -85,45 - 1709: -84,45 - 2607: -7,-43 - 2608: 1,-43 - 2872: -31,50 - 2873: -30,50 + 369: -16,-19 + 371: -20,-19 + 372: -20,-28 + 1078: -86,45 + 1079: -85,45 + 1080: -84,45 + 1610: -7,-43 + 1611: 1,-43 + 5105: -88,45 - node: color: '#410000C4' id: WoodTrimThinCornerNe decals: - 2397: 25,40 + 1458: 25,40 - node: color: '#4143509B' id: WoodTrimThinCornerNe decals: - 1851: -78,1 - 1852: -74,1 + 1142: -78,1 + 1143: -74,1 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNe decals: 221: 45,6 - 3033: 43,14 - 3038: 48,15 - 3612: 49,-25 + 2020: 43,14 + 2025: 48,15 + 2590: 49,-25 - node: color: '#4143509B' id: WoodTrimThinCornerNw decals: - 1855: -80,1 - 1856: -76,1 + 1146: -80,1 + 1147: -76,1 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerNw decals: 218: 43,6 - 3039: 46,15 - 3624: 46,-25 + 2026: 46,15 + 2602: 46,-25 - node: color: '#410000C4' id: WoodTrimThinCornerSe decals: - 2398: 25,39 + 1459: 25,39 - node: color: '#4143509B' id: WoodTrimThinCornerSe decals: - 1853: -74,0 - 1854: -78,0 + 1144: -74,0 + 1145: -78,0 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSe decals: 215: 43,12 217: 45,4 - 3045: 48,12 - 3618: 49,-29 - 3999: 33,-8 + 2032: 48,12 + 2596: 49,-29 + 2947: 33,-8 - node: color: '#410000C4' id: WoodTrimThinCornerSw decals: - 2399: 23,39 + 1460: 23,39 - node: color: '#4143509B' id: WoodTrimThinCornerSw decals: - 1857: -80,0 - 1858: -76,0 + 1148: -80,0 + 1149: -76,0 - node: color: '#FFFFFFFF' id: WoodTrimThinCornerSw decals: 219: 43,4 - 3044: 46,12 - 3620: 46,-29 + 2031: 46,12 + 2598: 46,-29 - node: color: '#410000C4' id: WoodTrimThinInnerNe decals: - 2402: 23,40 + 1463: 23,40 - node: color: '#410000C4' id: WoodTrimThinInnerSe decals: - 2404: 24,39 + 1465: 24,39 - node: color: '#410000C4' id: WoodTrimThinInnerSw decals: - 2403: 24,39 + 1464: 24,39 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinInnerSw + decals: + 4482: -121,-14 - node: color: '#FF0000FF' id: WoodTrimThinLineE decals: - 4240: -76,-1 - 4241: -76,-2 - 4248: -79,-4 - 4249: -79,-3 + 3058: -76,-1 + 3059: -76,-2 + 3066: -79,-4 + 3067: -79,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineE decals: 45: 48,13 220: 45,5 - 3034: 43,13 - 3040: 48,14 - 3633: 49,-26 - 3635: 49,-27 - 3637: 49,-28 - 4000: 33,-7 - 4001: 33,-6 + 2021: 43,13 + 2027: 48,14 + 2611: 49,-26 + 2613: 49,-27 + 2615: 49,-28 + 2948: 33,-7 + 2949: 33,-6 + 4364: -118,-16 + 4365: -118,-15 + 4366: -118,-14 + 4367: -118,-13 - node: color: '#410000C4' id: WoodTrimThinLineN decals: - 2400: 24,40 + 1461: 24,40 - node: color: '#4143509B' id: WoodTrimThinLineN decals: - 1859: -79,1 - 1860: -75,1 + 1150: -79,1 + 1151: -75,1 - node: color: '#FF0000FF' id: WoodTrimThinLineN decals: - 4242: -75,-3 - 4243: -74,-3 - 4244: -80,-3 - 4245: -79,-3 + 3060: -75,-3 + 3061: -74,-3 + 3062: -80,-3 + 3063: -79,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineN decals: 222: 44,6 - 419: -75,-17 - 420: -74,-17 - 421: -74,-17 - 422: -73,-17 - 423: -72,-17 - 424: -71,-17 - 425: -70,-17 - 3035: 40,14 - 3036: 41,14 - 3037: 42,14 - 3041: 47,15 - 3645: 48,-25 - 3647: 47,-25 + 341: -75,-17 + 342: -74,-17 + 343: -74,-17 + 344: -73,-17 + 345: -72,-17 + 346: -71,-17 + 347: -70,-17 + 2022: 40,14 + 2023: 41,14 + 2024: 42,14 + 2028: 47,15 + 2623: 48,-25 + 2625: 47,-25 + 4350: -119,-13 + 4351: -118,-13 + 4352: -120,-13 + 4353: -121,-13 + 4354: -122,-13 + 4355: -123,-13 + 4356: -124,-13 - node: color: '#4143509B' id: WoodTrimThinLineS decals: - 1861: -79,0 - 1862: -75,0 + 1152: -79,0 + 1153: -75,0 - node: color: '#FF0000FF' id: WoodTrimThinLineS decals: - 4250: -78,-2 - 4251: -77,-2 - 4252: -76,-2 + 3068: -78,-2 + 3069: -77,-2 + 3070: -76,-2 - node: color: '#FFFFFFFF' id: WoodTrimThinLineS decals: 216: 42,12 224: 44,4 - 3046: 47,12 - 3653: 47,-29 - 3654: 48,-29 - 3996: 30,-8 - 3997: 31,-8 - 3998: 32,-8 + 2033: 47,12 + 2631: 47,-29 + 2632: 48,-29 + 2944: 30,-8 + 2945: 31,-8 + 2946: 32,-8 + 4360: -121,-16 + 4361: -120,-16 + 4362: -119,-16 + 4363: -118,-16 + 4479: -122,-14 + 4480: -123,-14 + 4481: -124,-14 - node: color: '#410000C4' id: WoodTrimThinLineW decals: - 2401: 23,40 + 1462: 23,40 - node: color: '#FF0000FF' id: WoodTrimThinLineW decals: - 4246: -78,-2 - 4247: -78,-1 - 4253: -75,-4 - 4254: -75,-3 + 3064: -78,-2 + 3065: -78,-1 + 3071: -75,-4 + 3072: -75,-3 - node: color: '#FFFFFFFF' id: WoodTrimThinLineW decals: 44: 46,13 223: 43,5 - 3042: 46,14 - 3043: 46,13 - 3656: 46,-28 - 3658: 46,-27 - 3660: 46,-26 - - node: - color: '#52B4E99E' - id: corgi - decals: - 2941: -15,11 - 2942: -15,11 + 2029: 46,14 + 2030: 46,13 + 2634: 46,-28 + 2636: 46,-27 + 2638: 46,-26 + 4357: -124,-13 + 4358: -124,-14 + 4359: -121,-16 + 4368: -121,-15 - node: cleanable: True color: '#D5188DFF' id: cyka decals: - 3069: 31.01219,28.700993 + 2056: 31.01219,28.700993 - node: color: '#52B4E996' id: dwarf decals: - 2731: 32,19 - 2801: 6,12 - 2802: 7,13 - 2803: 8,12 - 2804: 9,13 - 2805: 10,12 + 1730: 32,19 + 1800: 6,12 + 1801: 7,13 + 1802: 8,12 + 1803: 9,13 + 1804: 10,12 - node: color: '#52B4E99E' id: dwarf decals: - 2732: 32,19 + 1731: 32,19 + - node: + cleanable: True + color: '#FFFFFFFF' + id: dwarf + decals: + 6517: -8,-39 - node: color: '#52B4E99E' id: face decals: - 2943: -15,6 + 1930: -15,6 - node: cleanable: True color: '#951710FF' id: fireaxe decals: - 3068: 29.871565,30.075993 + 2055: 29.871565,30.075993 - node: cleanable: True color: '#FF00007F' id: i decals: - 3332: 12.651019,36.660164 - 3333: 12.807269,36.628914 - 3334: 12.979144,36.660164 - 3335: 13.104144,36.660164 - 3337: 12.338519,35.73829 - 3338: 12.479144,35.73829 - 3339: 12.635394,35.73829 - 3340: 12.229144,35.76954 - 3353: 11.622622,36.410164 - 3354: 11.700747,36.410164 + 2312: 12.651019,36.660164 + 2313: 12.807269,36.628914 + 2314: 12.979144,36.660164 + 2315: 13.104144,36.660164 + 2317: 12.338519,35.73829 + 2318: 12.479144,35.73829 + 2319: 12.635394,35.73829 + 2320: 12.229144,35.76954 + 2333: 11.622622,36.410164 + 2334: 11.700747,36.410164 - node: cleanable: True angle: 0.3490658503988659 rad color: '#FF00007F' id: i decals: - 3342: 13.776019,35.86329 - 3343: 13.885394,35.89454 - 3344: 13.682269,35.847664 - 3345: 14.010394,35.910164 + 2322: 13.776019,35.86329 + 2323: 13.885394,35.89454 + 2324: 13.682269,35.847664 + 2325: 14.010394,35.910164 - node: cleanable: True angle: 1.5707963267948966 rad color: '#FF00007F' id: i decals: - 3336: 12.916644,36.597664 - 3341: 12.432269,35.660164 + 2316: 12.916644,36.597664 + 2321: 12.432269,35.660164 - node: cleanable: True angle: 1.7453292519943295 rad color: '#FF00007F' id: i decals: - 3347: 13.322894,37.253914 - 3348: 13.322894,37.128914 - 3349: 13.307269,37.003914 - 3350: 13.338519,36.910164 + 2327: 13.322894,37.253914 + 2328: 13.322894,37.128914 + 2329: 13.307269,37.003914 + 2330: 13.338519,36.910164 - node: cleanable: True angle: 1.9198621771937625 rad color: '#FF00007F' id: i decals: - 3346: 13.885394,35.847664 + 2326: 13.885394,35.847664 - node: cleanable: True angle: 3.3161255787892263 rad color: '#FF00007F' id: i decals: - 3351: 13.354144,37.128914 + 2331: 13.354144,37.128914 - node: color: '#52B4E996' id: med decals: - 2796: 7,12 - 2797: 6,13 - 2798: 8,13 - 2799: 9,12 - 2800: 10,13 - 2925: -7,8 - 2926: -7,8 - 2927: -7,8 + 1795: 7,12 + 1796: 6,13 + 1797: 8,13 + 1798: 9,12 + 1799: 10,13 + 1914: -7,8 + 1915: -7,8 + 1916: -7,8 - node: color: '#52B4E99E' id: med decals: - 2928: -7,8 + 1917: -7,8 - node: cleanable: True color: '#1861D5FF' id: revolution decals: - 3067: 29.965315,29.888493 + 2054: 29.965315,29.888493 - node: cleanable: True color: '#951710FF' id: skull decals: - 3066: 29.23094,30.263493 + 2053: 29.23094,30.263493 + - node: + color: '#DE3A3AFF' + id: smallbrush + decals: + 5210: 11,12 - node: cleanable: True color: '#500003BD' id: splatter decals: - 1178: 7.7312813,7.7481747 - 1179: 7.1773834,8.133408 - 1180: 8.405594,7.6277905 - 1181: 10.067291,8.590872 - 1182: 6.96064,5.460855 - 1183: 5.4193535,7.8926373 + 679: 7.7312813,7.7481747 + 680: 7.1773834,8.133408 + 681: 8.405594,7.6277905 + 682: 10.067291,8.590872 + 683: 6.96064,5.460855 + 684: 5.4193535,7.8926373 - node: cleanable: True color: '#9517109B' id: splatter decals: - 3058: 17.5018,29.685368 - 3059: 18.90805,28.544743 - 3060: 16.8143,31.529118 - 3061: 16.642426,31.466618 - 3062: 17.986176,31.029118 - 3063: 17.611176,29.372868 - 3064: 16.6268,31.279118 - 3065: 16.59555,30.950993 + 2045: 17.5018,29.685368 + 2046: 18.90805,28.544743 + 2047: 16.8143,31.529118 + 2048: 16.642426,31.466618 + 2049: 17.986176,31.029118 + 2050: 17.611176,29.372868 + 2051: 16.6268,31.279118 + 2052: 16.59555,30.950993 - node: cleanable: True color: '#FF0000FF' id: splatter decals: - 1863: -70.95911,-0.042213917 + 1154: -70.95911,-0.042213917 - type: GridAtmosphere version: 2 data: tiles: - -1,-1: - 0: 65535 - -1,0: - 0: 65535 -4,-4: + 0: 65287 + -4,-5: 0: 65535 + -5,-4: + 0: 65291 -4,-3: - 0: 255 + 0: 15 1: 65280 + -5,-3: + 0: 28799 -4,-2: 1: 15 - 0: 65520 + 0: 65344 + -5,-2: + 0: 65407 -4,-1: 0: 65535 + -5,-1: + 0: 32767 -3,-4: - 0: 65535 + 0: 65528 -3,-3: - 0: 65535 + 0: 65039 -3,-2: - 0: 65535 + 0: 56782 -3,-1: - 0: 65535 + 0: 57343 + -3,-5: + 0: 65529 -2,-4: - 0: 65535 + 0: 65286 -2,-3: - 0: 65535 + 0: 65327 -2,-2: 0: 65535 -2,-1: 0: 65535 + -2,-5: + 0: 30576 -1,-4: 0: 65535 -1,-3: - 0: 65535 + 0: 56783 -1,-2: - 0: 65535 + 0: 56797 + -1,-1: + 0: 56797 + -1,-5: + 0: 65454 + -1,0: + 0: 65532 + 0,-4: + 0: 64799 + 0,-3: + 0: 47613 + 0,-2: + 0: 48059 + 0,-1: + 0: 56785 -4,0: - 0: 65535 + 0: 65520 + -5,0: + 0: 65525 -4,1: - 0: 65535 + 0: 65166 + -5,1: + 0: 65520 + -4,2: + 0: 41966 + -5,2: + 0: 7679 + -4,3: + 0: 48042 + -5,3: + 0: 36863 + -4,4: + 0: 48051 -3,0: - 0: 65535 + 0: 65520 -3,1: - 0: 65535 + 0: 63255 + -3,2: + 0: 29567 + -3,3: + 0: 63487 -2,0: - 0: 65535 + 0: 65520 -2,1: + 0: 63344 + -2,2: + 0: 63359 + -2,3: 0: 65535 + -2,4: + 0: 61422 -1,1: - 0: 65535 + 0: 65520 + -1,2: + 0: 54527 + -1,3: + 0: 57567 + -1,4: + 0: 61422 0,0: - 0: 65535 + 0: 65521 0,1: - 0: 65535 + 0: 64976 + 0,2: + 0: 61917 + 0,3: + 0: 53503 + 0,4: + 0: 53727 1,0: - 0: 65535 + 0: 65520 + 1,2: + 0: 62702 + 1,3: + 0: 36606 + 1,-1: + 0: 65522 1,1: - 0: 65535 + 0: 61152 + 1,4: + 0: 3822 2,0: - 0: 65535 + 0: 65520 2,1: - 0: 65535 + 0: 65520 + 2,2: + 0: 61695 + 2,3: + 0: 12287 + 2,-1: + 0: 56797 + 2,4: + 0: 4095 3,0: - 0: 65535 + 0: 65520 3,1: + 0: 63072 + 3,2: + 0: 61542 + 3,3: + 0: 61183 + 3,-1: 0: 65535 - 0,-4: - 0: 65535 - 0,-3: - 0: 65535 - 0,-2: - 0: 65535 - 0,-1: - 0: 65535 + 3,4: + 0: 26214 + 4,0: + 0: 65524 + 4,1: + 0: 65528 + 4,2: + 0: 56335 + 4,3: + 0: 65309 + 0,-5: + 0: 54734 1,-4: - 0: 65535 + 0: 45967 1,-3: - 0: 65535 + 0: 47807 1,-2: - 0: 65535 - 1,-1: - 0: 65535 + 0: 65523 + 1,-5: + 0: 64733 2,-4: - 0: 65535 + 0: 47167 2,-3: - 0: 65535 + 0: 49075 2,-2: - 0: 65535 - 2,-1: - 0: 65535 + 0: 40952 + 2,-5: + 0: 28924 3,-4: - 0: 65535 + 0: 48015 3,-3: - 0: 65535 + 0: 65521 3,-2: - 0: 65535 - 3,-1: - 0: 65535 - 4,0: - 0: 65535 - 4,1: - 0: 65535 + 0: 4095 + 3,-5: + 0: 53503 + 4,-4: + 0: 56768 + 4,-3: + 0: 65529 + 4,-1: + 0: 61152 + 4,4: + 0: 65524 5,0: - 0: 65535 + 0: 65534 5,1: - 0: 65535 + 0: 30576 + 5,2: + 0: 29287 + 5,3: + 0: 65287 6,0: - 0: 65535 + 0: 65520 6,1: + 0: 65521 + 6,2: + 0: 61695 + 6,3: 0: 65535 - 7,0: + 6,4: 0: 65535 + 6,-1: + 0: 61438 + 7,0: + 0: 65520 7,1: - 0: 65535 + 0: 57336 7,2: - 0: 65535 - 4,-4: - 0: 65535 - 4,-3: + 0: 53503 + 7,3: + 0: 56797 + 7,-1: + 0: 40413 + 7,4: + 0: 64797 + 8,0: + 0: 65520 + 8,1: + 0: 56796 + 8,2: + 0: 64669 + 8,3: 0: 65535 4,-2: - 0: 65535 - 4,-1: - 0: 65535 - 5,-4: - 0: 65535 + 0: 61152 + 4,-5: + 0: 57904 + 2: 140 5,-3: - 0: 65535 + 0: 65524 5,-2: - 0: 65535 + 0: 65520 + 5,-5: + 0: 62976 + 2: 147 + 5,-4: + 0: 26208 5,-1: - 0: 65535 + 0: 3822 6,-4: - 0: 65535 + 0: 48048 6,-3: - 0: 65535 + 0: 65522 + 6,-5: + 0: 61440 + 2: 49 6,-2: - 0: 65535 - 6,-1: - 0: 65535 + 0: 61164 7,-4: - 0: 65535 + 0: 56784 7,-3: - 0: 65535 + 0: 65533 7,-2: + 0: 8188 + 7,-5: + 0: 61440 + 8,-4: + 0: 30576 + 8,-3: 0: 65535 - 7,-1: - 0: 65535 - 8,0: - 0: 65535 - 8,1: - 0: 65535 - 8,2: + 8,-2: + 0: 4093 + 8,-1: 0: 65535 + 8,4: + 0: 65295 9,0: - 0: 65535 + 0: 65532 9,1: 0: 65535 9,2: - 0: 65535 + 0: 29135 + 9,3: + 0: 30583 + 9,-1: + 0: 5051 + 9,4: + 0: 61959 10,0: - 0: 65535 + 0: 15359 10,1: - 0: 65535 + 0: 56793 10,2: - 0: 65535 + 0: 36349 + 10,3: + 0: 20479 + 10,4: + 0: 29815 11,0: - 0: 65535 - 8,-4: - 0: 65535 - 8,-3: - 0: 65535 - 8,-2: - 0: 65535 - 8,-1: - 0: 65535 + 0: 33279 + 11,1: + 0: 62395 + 11,2: + 0: 51519 + 11,3: + 0: 52701 + 12,0: + 0: 47359 + 12,1: + 0: 63679 + 12,2: + 0: 64975 + 12,3: + 0: 5489 + 11,4: + 0: 64728 + 8,-5: + 0: 63496 + 2: 34 9,-4: - 0: 65535 + 0: 64764 9,-3: - 0: 65535 + 0: 30591 9,-2: - 0: 65535 - 9,-1: - 0: 65535 + 0: 39859 + 9,-5: + 0: 64973 10,-4: - 0: 65535 + 0: 57309 10,-3: - 0: 65535 + 0: 47885 10,-2: - 0: 65535 + 0: 65523 10,-1: - 0: 65535 + 0: 255 + 10,-5: + 0: 53745 11,-4: 0: 65535 11,-3: - 0: 65535 + 0: 65295 11,-2: - 0: 65535 + 0: 4080 11,-1: + 0: 119 + 11,-5: + 0: 61559 + 12,-4: 0: 65535 + 12,-3: + 0: 13071 + 12,-2: + 0: 816 + 12,-1: + 0: 1911 0,-8: - 0: 65535 + 0: 61166 + -1,-8: + 0: 61182 0,-7: - 0: 65535 + 0: 65358 + -1,-7: + 0: 65358 + -1,-6: + 0: 61162 0,-6: - 0: 65535 - 0,-5: - 0: 65535 + 0: 61156 1,-8: - 0: 65339 + 0: 61713 + 2: 8 1,-7: - 0: 65535 + 0: 64961 1,-6: - 0: 65535 - 1,-5: - 0: 65535 - 2,-7: - 0: 40857 + 0: 56796 + 1,-9: + 2: 61439 + 2,-8: + 2: 59807 2,-6: - 0: 64443 - 2,-5: - 0: 65535 - 3,-5: - 0: 65471 - 2: 64 + 0: 4368 + 2: 19592 + 2,-9: + 2: 7936 + 2,-7: + 2: 44680 + 3,-8: + 2: 12834 + 3,-9: + 2: 8960 + 3,-7: + 2: 8930 + 3,-6: + 2: 546 + 4,-7: + 2: 8752 0,-12: - 0: 65528 + 0: 30464 + 2: 136 + -1,-12: + 0: 35328 + 2: 8 0,-11: - 0: 65535 + 0: 30551 + -1,-11: + 0: 65288 0,-10: - 0: 40959 + 0: 119 + 2: 43008 + -1,-10: + 0: 58623 0,-9: - 0: 65535 - 1,-9: - 0: 65535 + 2: 3822 + -1,-9: + 0: 20207 + 0,-13: + 2: 64240 + 1,-12: + 2: 43770 + 1,-11: + 2: 43770 + 1,-10: + 2: 43770 + 1,-13: + 2: 47344 -4,-8: - 0: 65021 + 2: 817 + 0: 34952 + -4,-9: + 2: 4401 + 0: 34952 + -5,-8: + 2: 755 -4,-7: - 0: 65535 + 0: 2879 + -5,-7: + 0: 4095 -4,-6: - 0: 65535 - -4,-5: - 0: 65535 + 0: 4095 + -5,-6: + 0: 16383 + -5,-5: + 0: 64307 -3,-8: - 0: 65535 + 0: 56797 -3,-7: - 0: 65535 + 0: 1821 -3,-6: - 0: 65535 - -3,-5: - 0: 65535 + 0: 52733 + -3,-9: + 0: 53623 -2,-8: 0: 65535 -2,-7: - 0: 65535 + 0: 65295 -2,-6: 0: 65535 - -2,-5: - 0: 65535 - -1,-8: - 0: 65535 - -1,-7: - 0: 65535 - -1,-6: - 0: 65535 - -1,-5: - 0: 65535 + -2,-9: + 0: 61440 + 1: 255 + -8,-8: + 2: 30719 + -8,-9: + 2: 61440 + -8,-7: + 2: 30591 + -8,-6: + 2: 62847 + -9,-6: + 2: 62960 -8,-5: - 0: 65525 + 2: 13 + 0: 65280 + -9,-5: + 0: 65280 + 2: 1 + -8,-4: + 0: 65295 -7,-8: - 0: 61937 + 2: 4607 + -7,-5: + 0: 65518 + -7,-9: + 2: 61440 -7,-7: - 0: 65535 + 0: 61070 -7,-6: - 0: 65535 - -7,-5: - 0: 65535 + 0: 61166 + -7,-4: + 0: 65295 -6,-8: - 0: 61937 + 2: 511 -6,-7: - 0: 65535 - -6,-6: - 0: 65535 + 0: 3979 -6,-5: - 0: 65535 - -5,-8: - 0: 62194 - -5,-7: - 0: 65535 - -5,-6: - 0: 65535 - -5,-5: - 0: 65535 - -8,-4: - 0: 65535 + 0: 65262 + -6,-9: + 2: 61440 + -6,-6: + 0: 57574 + -6,-4: + 0: 65326 + -5,-9: + 2: 64716 + -9,-4: + 0: 65392 -8,-3: - 0: 65535 + 0: 63247 + -9,-3: + 0: 63247 -8,-2: 0: 65535 + -9,-2: + 0: 63351 -8,-1: - 0: 65535 - -7,-4: - 0: 65535 + 0: 65488 + -8,0: + 0: 63239 + -9,-1: + 0: 63239 -7,-3: - 0: 65535 + 0: 61695 -7,-2: 0: 65535 -7,-1: - 0: 65535 - -6,-4: - 0: 65535 + 0: 61422 -6,-3: - 0: 65535 + 0: 64255 -6,-2: 0: 65535 -6,-1: 0: 65535 - -5,-4: - 0: 65535 - -5,-3: - 0: 65535 - -5,-2: - 0: 65535 - -5,-1: - 0: 65535 - 4,-5: - 0: 63993 - 3: 1542 - -4,-9: - 0: 56829 - -3,-9: - 0: 65535 + 4,-6: + 2: 57902 + 5,-6: + 2: 61713 + 6,-6: + 2: 4096 + -4,-11: + 2: 32648 + -5,-11: + 2: 52224 + -4,-10: + 2: 5983 + 0: 32768 + -5,-10: + 2: 52428 + -4,-12: + 2: 34952 + -4,-13: + 2: 34944 -3,-12: - 0: 43770 + 2: 9210 -3,-11: - 0: 43951 + 2: 13095 -3,-10: - 0: 65455 + 2: 103 + 0: 28672 + -3,-13: + 2: 65008 -2,-12: - 0: 65524 + 0: 65280 + 2: 4 -2,-11: - 0: 65535 + 0: 65375 -2,-10: - 0: 4095 + 0: 255 1: 61440 - -2,-9: - 1: 255 - 0: 65280 - -1,-12: - 0: 65528 - -1,-11: - 0: 65535 - -1,-10: - 0: 65535 - -1,-9: - 0: 65535 + -2,-13: + 2: 65008 + -1,-13: + 2: 64240 -12,-4: - 0: 65535 + 0: 64989 + -12,-5: + 0: 39696 + 2: 15 + -13,-4: + 0: 65339 -12,-3: - 0: 65535 - -12,-1: - 0: 65535 + 0: 35769 + -13,-3: + 0: 4095 -12,-2: + 0: 20979 + -13,-2: + 0: 61883 + -12,-1: + 0: 53589 + -13,-1: 0: 65535 + -12,0: + 0: 63709 -11,-4: - 0: 65535 + 0: 56607 -11,-3: - 0: 65535 + 0: 56797 -11,-2: - 0: 65535 + 0: 64989 -11,-1: - 0: 65535 + 0: 64973 + -11,-5: + 0: 65280 + 2: 7 + -11,0: + 0: 64733 -10,-4: - 0: 65535 + 0: 65287 -10,-3: - 0: 65535 + 0: 21791 -10,-2: - 0: 65535 + 0: 62805 -10,-1: - 0: 65535 - -9,-4: - 0: 65535 - -9,-3: - 0: 65535 - -9,-2: - 0: 65535 - -9,-1: - 0: 65535 - -12,-5: - 0: 65535 - -11,-5: - 0: 65527 + 0: 56661 -10,-5: - 0: 65521 - -9,-5: - 0: 65521 - -8,0: - 0: 65535 + 0: 65280 + 2: 1 + -10,0: + 0: 64797 + -9,0: + 0: 65287 + -12,-6: + 2: 65520 + -13,-6: + 2: 65408 + -13,-5: + 2: 15 + 0: 47872 + -11,-6: + 2: 63472 + -10,-6: + 2: 62960 -8,1: - 0: 65535 + 0: 29567 + -9,1: + 0: 55551 -8,2: - 0: 65535 + 0: 30583 + -9,2: + 0: 56541 -8,3: - 0: 65535 + 0: 30711 + -9,3: + 0: 52700 + -8,4: + 0: 26495 -7,0: - 0: 65535 + 0: 65520 -7,1: - 0: 65535 + 0: 62207 -7,2: - 0: 65535 + 0: 20735 + -7,3: + 0: 4085 + -7,4: + 0: 4095 -6,0: - 0: 65535 + 0: 65520 -6,1: - 0: 65535 + 0: 47283 -6,2: - 0: 65535 - -5,0: - 0: 65535 - -5,1: - 0: 65535 - -12,0: - 0: 65535 + 0: 20667 + -6,3: + 0: 2037 + -6,4: + 0: 3003 + -5,4: + 0: 35839 + -13,0: + 0: 63231 -12,1: - 0: 65535 + 0: 61695 + -13,1: + 0: 62975 -12,2: 0: 65535 - -12,3: - 0: 65535 - -11,0: + -13,2: 0: 65535 + -12,3: + 0: 7088 + -13,3: + 0: 53232 + -12,4: + 0: 4095 -11,1: - 0: 65535 + 0: 55551 -11,2: - 0: 65535 + 0: 62493 -11,3: - 0: 65535 - -10,0: - 0: 65535 + 0: 4080 + -11,4: + 0: 4095 -10,1: - 0: 65535 + 0: 61663 -10,2: - 0: 65535 + 0: 62719 -10,3: - 0: 65535 - -9,0: - 0: 65535 - -9,1: - 0: 65535 - -9,2: - 0: 65535 - -9,3: - 0: 65535 + 0: 36340 + -10,4: + 0: 4095 + -9,4: + 0: 4095 -16,0: - 0: 65535 + 0: 61695 + -16,-1: + 0: 65523 + -17,0: + 0: 61695 -16,1: - 0: 65535 + 0: 45311 + -17,1: + 0: 63231 -16,2: + 0: 15295 + -17,2: 0: 65535 -16,3: - 0: 65535 + 0: 4088 + -17,3: + 0: 4083 + -16,4: + 0: 12287 -15,0: - 0: 65535 + 0: 63679 -15,1: - 0: 65535 + 0: 45311 -15,2: - 0: 65535 + 0: 7099 -15,3: - 0: 65535 + 0: 4095 + -15,-1: + 0: 65464 + -15,4: + 0: 53247 -14,0: - 0: 65535 + 0: 62395 -14,1: - 0: 65535 + 0: 53503 -14,2: - 0: 65535 + 0: 4061 -14,3: + 0: 4087 + -14,-1: + 0: 48059 + -14,4: + 0: 8191 + -13,4: + 0: 36863 + -16,-4: 0: 65535 - -13,0: - 0: 65535 - -13,1: + -16,-5: + 0: 65451 + -17,-4: 0: 65535 - -13,2: + -16,-3: 0: 65535 - -13,3: + -17,-3: 0: 65535 - -15,-1: + -16,-2: 0: 65535 - -14,-1: + -17,-2: 0: 65535 + -17,-1: + 0: 65520 + -15,-4: + 0: 48059 + -15,-3: + 0: 64435 + -15,-2: + 0: 15355 + -15,-5: + 0: 47873 + 2: 12 + -14,-4: + 0: 48059 + -14,-3: + 0: 16376 + -14,-2: + 0: 37819 + -14,-5: + 0: 47872 + 2: 15 -20,0: + 0: 59647 + -20,-1: 0: 65535 -20,1: - 0: 65535 + 0: 28911 + -21,0: + 0: 58982 + -21,1: + 0: 61678 -20,2: - 0: 65535 + 0: 10239 + -21,2: + 0: 61439 + -20,3: + 0: 58606 + -21,3: + 0: 61182 + -20,4: + 0: 35567 -19,0: - 0: 65535 + 0: 61559 -19,1: - 0: 65535 + 0: 61695 -19,2: - 0: 65535 + 0: 53247 -19,3: - 0: 65535 + 0: 56541 + -19,-1: + 0: 30583 + -19,4: + 0: 7391 -18,0: - 0: 65535 + 0: 63359 -18,1: - 0: 65535 + 0: 53503 -18,2: - 0: 65535 + 0: 57341 -18,3: - 0: 65535 - -17,0: - 0: 65535 - -17,1: - 0: 65535 - -17,2: - 0: 65535 - -17,3: - 0: 65535 - -19,-1: - 0: 65535 + 0: 7645 -18,-1: + 0: 65399 + -18,4: + 0: 4095 + -17,4: + 0: 4095 + -20,-4: + 0: 13107 + 2: 34952 + -20,-5: + 0: 13247 + 2: 34816 + -21,-4: 0: 65535 - -8,4: - 0: 65535 + -20,-3: + 0: 65315 + 2: 8 + -21,-3: + 0: 43535 + -20,-2: + 0: 11187 + -21,-2: + 0: 12010 + -21,-1: + 0: 29626 + -19,-4: + 2: 4352 + 0: 17486 + -19,-3: + 2: 1 + 0: 30656 + -19,-2: + 0: 12282 + -19,-5: + 0: 60928 + 2: 10 + -18,-4: + 0: 30503 + -18,-3: + 0: 2039 + -18,-5: + 0: 30464 + 2: 8 + -18,-2: + 0: 9958 + -17,-5: + 0: 65280 + 2: 4 -8,5: - 0: 65535 + 0: 30463 + -9,5: + 0: 57567 + -8,6: + 0: 30438 + -9,6: + 0: 57582 + -8,7: + 0: 63206 + -9,7: + 0: 57582 + -8,8: + 0: 63078 -7,5: + 0: 28863 + -7,6: + 0: 28791 + -7,7: + 0: 28791 + -7,8: + 0: 119 + 2: 57344 + -6,5: 0: 65535 - -12,4: - 0: 65535 + -6,6: + 0: 63551 + -6,7: + 0: 63743 + -6,8: + 0: 59 + -5,5: + 0: 56831 + -5,6: + 0: 4365 + 2: 52224 + -5,7: + 0: 4369 + 2: 34952 + -5,8: + 0: 1 + 2: 63976 + -4,5: + 0: 63419 + -4,6: + 0: 15 + 2: 3840 + -4,7: + 2: 8944 -12,5: - 0: 65535 - -11,4: - 0: 65535 + 0: 57599 + -13,5: + 0: 255 + 2: 40960 + -12,6: + 0: 238 + 2: 256 + -13,6: + 2: 51854 + -12,7: + 2: 61440 + -13,7: + 2: 35976 + 0: 4369 -11,5: - 0: 65535 - -10,4: - 0: 65535 + 0: 43775 + -11,6: + 0: 34875 + 2: 12288 + -11,7: + 2: 4371 + 0: 34952 + -11,8: + 2: 10003 + 0: 136 -10,5: - 0: 65535 - -9,4: - 0: 65535 - -9,5: - 0: 65535 - -16,4: - 0: 65535 + 0: 61183 + -10,6: + 0: 62414 + -10,7: + 0: 53759 + -10,8: + 0: 221 + 2: 4096 + -9,8: + 0: 238 + 2: 20480 -16,5: - 0: 65535 + 0: 4095 + -17,5: + 0: 28919 -16,6: + 0: 4095 + -17,6: 0: 65535 -16,7: + 0: 65534 + -17,7: 0: 65535 - -15,4: - 0: 65535 + -16,8: + 0: 61166 -15,5: - 0: 65535 + 0: 52733 -15,6: - 0: 65535 + 0: 4095 -15,7: - 0: 65535 - -14,4: - 0: 65535 + 0: 8191 + -15,8: + 0: 65021 -14,5: - 0: 65535 + 0: 56797 -14,6: - 0: 65535 + 0: 19965 -14,7: - 0: 65535 - -13,4: - 0: 65535 - -13,5: - 0: 8191 - -13,6: - 0: 63903 - -13,7: - 0: 49083 - -20,4: - 0: 65535 + 0: 50517 + -14,8: + 0: 64917 + -13,8: + 0: 4353 + 2: 35016 + -21,4: + 0: 65263 -20,5: - 0: 4095 - -20,6: - 0: 65484 - -20,7: - 0: 65535 - -19,4: - 0: 65535 + 0: 238 + -21,5: + 0: 4607 + 2: 16384 -19,5: - 0: 4095 - -19,6: - 0: 65399 - -19,7: - 0: 65535 - -18,4: - 0: 65535 + 0: 255 -18,5: - 0: 36863 - -18,6: - 0: 39304 + 0: 255 + 2: 16384 -18,7: + 2: 8224 + 0: 3584 + -17,8: 0: 65535 - -17,4: - 0: 65535 - -17,5: - 0: 65535 - -17,6: - 0: 65535 - -17,7: - 0: 65535 - -21,1: - 0: 65535 - -21,2: - 0: 65535 - -21,4: - 0: 65535 - -21,5: - 0: 16383 - -20,8: - 0: 65535 - -20,9: - 0: 65535 - -20,10: + -24,0: 0: 65535 - -20,11: - 0: 3327 - -19,8: + -24,-1: + 0: 65523 + -25,0: + 0: 30475 + -24,1: 0: 65535 - -19,9: + -25,1: + 0: 63479 + -24,2: + 0: 20479 + -25,2: + 0: 28799 + -24,3: 0: 65535 - -19,10: + -24,4: + 0: 57599 + -23,0: + 0: 56797 + -23,1: + 0: 56733 + -23,2: + 0: 3549 + -23,3: + 0: 7099 + -23,-1: + 0: 65520 + -23,4: + 0: 36559 + -22,0: + 0: 65520 + -22,1: + 0: 65407 + -22,2: + 0: 20479 + -22,3: + 0: 53247 + -22,-1: + 0: 57296 + -22,4: + 0: 53727 + -25,4: + 0: 63072 + -24,5: + 0: 61262 + -25,5: + 0: 8191 + -24,6: + 0: 55772 + -25,6: 0: 65535 - -19,11: - 0: 2047 - -18,8: - 0: 39327 + -24,7: + 0: 221 + -25,7: + 0: 224 + 2: 8192 + -23,5: + 0: 57230 + -23,6: + 0: 52241 + -23,7: + 0: 2269 + -23,8: + 0: 51340 + -22,5: + 0: 57309 + -22,6: + 0: 56780 + -22,7: + 0: 52701 + -22,8: + 0: 61166 + -21,6: + 0: 4369 + -21,7: + 0: 7953 + 2: 32896 + -21,8: + 0: 4369 -18,9: - 0: 65535 - -18,10: - 0: 39327 - -18,11: - 0: 2201 - -17,8: - 0: 65535 + 2: 514 + 0: 224 -17,9: 0: 65535 -17,10: 0: 65535 -17,11: - 0: 65535 - -16,8: - 0: 65535 + 0: 43775 + -18,11: + 2: 2048 + -17,12: + 0: 170 + 2: 16 -16,9: - 0: 65535 + 0: 65534 -16,10: - 0: 65535 + 0: 63726 -16,11: - 0: 24575 - -15,8: - 0: 65535 + 0: 255 + 2: 16384 + -16,12: + 2: 244 -15,9: - 0: 65535 + 0: 48029 -15,10: - 0: 65535 + 0: 48059 -15,11: - 0: 65535 - -14,8: - 0: 65535 + 0: 60159 + -15,12: + 0: 174 + 2: 16 -14,9: - 0: 65535 + 0: 62365 -14,10: - 0: 65535 + 0: 62463 -14,11: - 0: 65535 - -13,8: - 0: 48123 + 0: 61951 + -14,12: + 0: 15 -13,9: - 0: 63295 + 0: 12305 + 2: 33804 -13,10: - 0: 30583 + 0: 12339 -13,11: - 0: 30583 - -16,12: - 0: 245 - -15,12: - 0: 255 - -14,12: - 0: 255 - -17,12: - 0: 255 - -4,2: - 0: 65535 - -4,3: - 0: 65535 - -3,2: - 0: 65535 - -3,3: - 0: 65535 - -2,2: - 0: 65535 - -2,3: - 0: 65535 - -1,2: - 0: 65535 - -1,3: - 0: 65535 - 0,2: - 0: 65535 - 0,3: - 0: 65535 - 1,2: - 0: 65535 - 1,3: - 0: 65535 - 2,2: - 0: 65407 - 4: 128 - 2,3: - 0: 65535 - 3,2: - 0: 65535 - 3,3: - 0: 65535 - 4,2: - 0: 65535 - 4,3: - 0: 65535 - 5,2: - 0: 65535 - 5,3: - 0: 65535 - 6,2: - 0: 65535 - 6,3: - 0: 65535 - 7,3: - 0: 65535 - 8,3: - 0: 65535 - 9,3: - 0: 65535 - 10,3: - 0: 65535 - 11,1: - 0: 65535 - 11,2: - 0: 65503 - 5: 32 - 11,3: - 0: 65279 - 6: 256 - -12,-6: - 0: 65520 - -11,-6: - 0: 63472 - -7,3: - 0: 65535 - -6,3: - 0: 65535 - -5,2: - 0: 65535 - -5,3: - 0: 65535 - -16,-4: - 0: 65535 - -16,-3: - 0: 65535 - -16,-2: - 0: 65535 - -16,-1: - 0: 65535 - -15,-4: - 0: 65535 - -15,-3: - 0: 65535 - -15,-2: - 0: 65535 - -14,-4: - 0: 65535 - -14,-3: - 0: 65535 - -14,-2: - 0: 65535 - -13,-4: - 0: 65535 - -13,-3: - 0: 65535 - -13,-2: - 0: 65535 - -13,-1: - 0: 65535 - -20,3: - 0: 65535 - -20,-4: - 0: 65535 - -20,-3: - 0: 65535 - -20,-2: - 0: 65535 - -20,-1: - 0: 65535 - -19,-4: - 0: 65535 - -19,-3: - 0: 65535 - -19,-2: - 0: 65535 - -18,-4: - 0: 65535 - -18,-3: - 0: 65535 - -18,-2: - 0: 65535 - -17,-4: - 0: 65535 - -17,-3: - 0: 65535 - -17,-2: - 0: 65535 - -17,-1: - 0: 65535 - -7,4: - 0: 65535 - -7,6: - 0: 65535 - -7,7: - 0: 65535 - -6,4: - 0: 65535 - -6,5: - 0: 65535 - -6,6: - 0: 65535 - -6,7: - 0: 65535 - -5,4: - 0: 65535 - -5,5: - 0: 65535 - -5,6: - 0: 65535 - -5,7: - 0: 65535 - -11,6: - 0: 57343 - -11,7: - 0: 65535 - -10,6: - 0: 65535 - -10,7: - 0: 65535 - -9,6: - 0: 65535 - -9,7: - 0: 65535 - -24,0: - 0: 65535 - -24,1: - 0: 65535 - -24,2: - 0: 65535 - -24,3: - 0: 65535 - -23,0: - 0: 65535 - -23,1: - 0: 65535 - -23,2: - 0: 65535 - -23,3: - 0: 65535 - -22,0: - 0: 65535 - -22,1: - 0: 65535 - -22,2: - 0: 65535 - -22,3: - 0: 65535 - -21,0: - 0: 65535 - -21,3: - 0: 65535 - -24,4: - 0: 65535 - -24,5: - 0: 65535 - -24,6: - 0: 65535 - -24,7: - 0: 4095 - -23,4: - 0: 65535 - -23,5: - 0: 65535 - -23,6: - 0: 65535 - -23,7: - 0: 53247 - -22,4: - 0: 65535 - -22,5: - 0: 65535 - -22,6: - 0: 65535 - -22,7: - 0: 65535 - 12,0: - 0: 65535 - 12,1: - 0: 65535 - 12,2: - 0: 65535 - 12,3: - 0: 65535 - 13,0: - 0: 65535 - 13,1: - 0: 65535 - 13,2: + 0: 12339 + -13,12: + 0: 3 + 2: 192 + -12,9: + 2: 22001 + -12,12: + 2: 245 + 13,0: + 0: 4415 + 1: 52224 + 13,1: + 0: 12561 + 1: 3276 + 13,2: 0: 65535 13,3: 0: 65535 - 14,0: - 0: 65535 - 14,1: + 12,4: + 2: 8 + 0: 4368 + 13,-1: 0: 65535 + 14,0: + 0: 61007 14,2: 0: 65535 14,3: 0: 65535 + 14,-1: + 0: 65535 + 14,1: + 0: 20206 15,0: 0: 65535 15,1: - 0: 65535 + 0: 65527 15,2: - 0: 65535 + 0: 65407 15,3: - 0: 8191 - 12,4: - 0: 49083 - 12,5: - 0: 13119 - 13,4: - 0: 3855 - 13,5: - 0: 15 - 14,4: - 0: 3855 - 14,5: - 0: 15 + 0: 255 + 15,-1: + 0: 32767 15,4: - 0: 5983 - 15,5: - 0: 4383 - 16,0: - 0: 21973 - 16,1: - 0: 54615 + 2: 1103 16,2: - 0: 30709 + 0: 13056 + 2: 196 16,3: - 0: 20343 + 0: 51 + 2: 19456 + 12,5: + 0: 13059 + 11,5: + 0: 61005 + 12,6: + 2: 12530 + 11,6: + 2: 62194 + 13,6: + 2: 240 + 14,6: + 2: 48 + 16,4: + 2: 1375 + 16,1: + 2: 50246 + 16,0: + 2: 17604 + 16,-1: + 2: 51336 + 0: 819 17,0: - 0: 22357 + 2: 22357 17,1: - 0: 22359 + 2: 22359 17,2: - 0: 21877 + 2: 21877 17,3: - 0: 22357 + 2: 22357 + 17,-1: + 2: 30037 + 17,4: + 2: 273 + 16,-4: + 2: 7 + 15,-4: + 2: 4383 16,-3: - 0: 20241 + 2: 20241 + 15,-3: + 2: 22303 16,-2: - 0: 65359 - 16,-1: - 0: 65535 + 2: 35919 + 0: 12288 + 15,-2: + 2: 15 + 0: 61440 + 16,-5: + 2: 17487 17,-2: - 0: 22353 - 17,-1: - 0: 30037 - 12,-4: - 0: 65535 - 12,-3: - 0: 49151 - 12,-2: - 0: 65535 - 12,-1: - 0: 65535 + 2: 22353 + 12,-5: + 0: 61695 + 13,-4: + 0: 4369 + 2: 52428 13,-3: - 0: 4095 + 0: 1 + 2: 16300 13,-2: - 0: 65535 - 13,-1: - 0: 65535 + 0: 65520 + 13,-5: + 0: 4102 + 2: 52224 + 14,-4: + 2: 6015 14,-3: - 0: 3855 + 2: 7951 14,-2: + 0: 65520 + 14,-5: + 0: 4643 + 2: 34952 + 15,-5: + 2: 39421 + -24,-4: 0: 65535 - 14,-1: - 0: 65535 - 15,-3: - 0: 22303 - 15,-2: - 0: 65311 - 15,-1: + -24,-5: 0: 65535 - -24,-4: + -25,-4: 0: 65535 -24,-3: - 0: 65535 + 0: 65466 + -25,-3: + 0: 48048 -24,-2: 0: 65535 - -24,-1: - 0: 65535 + -25,-2: + 0: 48027 + -25,-1: + 0: 48051 -23,-4: 0: 65535 -23,-3: - 0: 65535 + 0: 48015 -23,-2: - 0: 30719 - 3: 34816 - -23,-1: + 0: 48059 + -23,-5: 0: 65535 -22,-4: 0: 65535 -22,-3: 0: 65535 -22,-2: - 0: 61183 - 3: 4352 - -22,-1: - 0: 65535 - -21,-4: - 0: 65535 - -21,-3: 0: 65535 - -21,-2: + -22,-5: 0: 65535 - -21,-1: + -21,-5: 0: 65535 + -28,-4: + 0: 50685 + -28,-5: + 0: 56797 + -29,-4: + 0: 32767 -28,-3: - 0: 65535 + 0: 24029 + -29,-3: + 0: 55537 -28,-2: - 0: 65535 + 0: 56797 + -29,-2: + 0: 52701 -28,-1: - 0: 65535 - -28,-4: - 0: 65535 + 0: 65533 + -29,-1: + 0: 40848 + -28,0: + 0: 65519 -27,-4: - 0: 65535 + 0: 56831 -27,-3: - 0: 65535 + 0: 56785 -27,-2: - 0: 65535 + 0: 64797 -27,-1: + 0: 56799 + -27,-5: 0: 65535 + -27,0: + 0: 65309 -26,-4: 0: 65535 -26,-3: - 0: 65407 - 7: 128 + 0: 65520 -26,-2: - 0: 65535 + 0: 65295 -26,-1: 0: 65535 - -25,-4: - 0: 65535 - -25,-3: - 0: 65535 - -25,-2: - 0: 65535 - -25,-1: + -26,-5: 0: 65535 - -28,0: + -26,0: + 0: 65295 + -25,-5: 0: 65535 + -29,0: + 0: 64792 -28,1: - 0: 65535 + 0: 65279 + -29,1: + 0: 33247 -28,2: - 0: 65535 + 0: 57343 + -29,2: + 0: 2553 -28,3: - 0: 65535 - -27,0: - 0: 65535 + 0: 56797 + -29,3: + 0: 56796 + -28,4: + 0: 3577 -27,1: - 0: 65535 + 0: 53759 -27,2: - 0: 65535 + 0: 56797 -27,3: - 0: 65535 - -26,0: - 0: 65535 + 0: 65521 -26,1: - 0: 65535 + 0: 29439 -26,2: - 0: 65535 + 0: 14199 -26,3: - 0: 65535 - -25,0: - 0: 65535 - -25,1: - 0: 65535 - -25,2: - 0: 65535 + 0: 61416 -25,3: - 0: 65535 + 0: 30583 + -26,4: + 0: 36856 -24,-8: - 0: 64000 + 2: 64000 -24,-7: - 0: 22015 + 2: 15 3: 8704 - 8: 34816 + 4: 34816 + -25,-8: + 2: 64000 + -25,-7: + 2: 15 + 3: 34816 + 6: 8704 -24,-6: - 0: 65525 3: 2 - 8: 8 - -24,-5: - 0: 65535 + 2: 3840 + 4: 8 + -25,-6: + 3: 8 + 2: 3840 + 6: 2 -23,-8: - 0: 64000 + 2: 64000 -23,-7: - 0: 22015 + 2: 15 3: 43520 -23,-6: - 0: 65525 + 2: 3840 3: 10 - -23,-5: - 0: 65535 -22,-8: - 0: 64000 + 2: 64000 -22,-7: - 0: 56831 + 2: 34959 3: 8704 -22,-6: - 0: 65533 + 2: 3976 3: 2 - -22,-5: - 0: 65535 -21,-8: - 0: 64000 + 2: 64000 -21,-7: - 0: 13311 - 3: 52224 + 2: 4383 + 0: 52224 -21,-6: - 0: 65523 - 3: 12 - -21,-5: - 0: 65535 + 2: 3857 + 0: 12 + -20,-8: + 2: 64000 + -20,-7: + 2: 52431 + 0: 4352 + -20,-6: + 0: 1 + 2: 36812 + -28,-7: + 2: 62720 -28,-6: - 0: 65331 - -28,-5: - 0: 65535 - -27,-6: - 0: 65504 - -27,-5: + 2: 29 + 0: 56514 + -29,-6: + 2: 95 + 0: 61440 + -29,-5: 0: 65535 -27,-7: - 0: 2056 - -26,-8: - 0: 64000 + 2: 6408 + -27,-6: + 0: 1 + 2: 3298 -26,-7: - 0: 30719 - 9: 34816 + 2: 13087 + 5: 34816 -26,-6: - 0: 65527 - 9: 8 - -26,-5: - 0: 65535 - -25,-8: - 0: 64000 - -25,-7: - 0: 22015 - 10: 8704 - 3: 34816 - -25,-6: - 0: 65525 - 10: 2 - 3: 8 - -25,-5: - 0: 65535 - -28,4: - 0: 65535 + 2: 3875 + 5: 8 + -26,-8: + 2: 64000 + -29,4: + 0: 4092 -28,5: - 0: 65535 + 0: 255 + 1: 61440 + -29,5: + 0: 170 + 1: 45056 -28,6: - 0: 65535 + 1: 65535 + -29,6: + 1: 35003 + 2: 12288 -28,7: - 0: 4095 + 2: 4080 + -29,7: + 2: 4087 -27,4: - 0: 65535 + 0: 3568 -27,5: - 0: 65535 + 0: 255 + 1: 61440 -27,6: - 0: 65535 + 1: 65535 -27,7: - 0: 36863 - -26,4: - 0: 65535 + 2: 36848 -26,5: - 0: 65535 + 0: 2235 + 1: 12288 -26,6: - 0: 65535 + 1: 13107 + 0: 34952 -26,7: - 0: 12287 - -25,4: - 0: 65535 - -25,5: - 0: 65535 - -25,6: + 2: 10016 + 0: 128 + -27,8: + 2: 8 + -26,8: + 2: 15 + -25,8: + 2: 3 + -32,0: + 0: 63351 + -32,-1: + 0: 32767 + -32,1: + 0: 30591 + -32,2: + 0: 64759 + -33,2: + 0: 61670 + -32,3: + 0: 60669 + -33,3: 0: 65535 - -25,7: - 0: 12287 - -30,0: + -32,4: + 0: 3822 + -31,0: + 0: 64975 + -31,1: + 0: 64735 + -31,2: 0: 65535 - -30,1: + -31,3: + 0: 32767 + -31,-1: 0: 65535 + -31,4: + 0: 1911 -30,2: - 0: 65535 + 0: 6649 -30,3: - 0: 65535 - -29,0: - 0: 65535 - -29,1: - 0: 65535 - -29,2: - 0: 65535 - -29,3: - 0: 65535 + 0: 64977 -30,-1: - 0: 65535 - -30,-2: - 0: 65535 - -29,-2: - 0: 65535 - -29,-1: - 0: 65535 - -29,-3: - 0: 65535 + 0: 40849 + -30,0: + 0: 61152 + -30,1: + 0: 3822 -30,4: + 0: 52465 + -32,-4: + 2: 26367 + -33,-4: + 2: 63 + 0: 47232 + -33,-3: 0: 65535 - -29,4: - 0: 65535 - -29,5: - 0: 65535 - -29,6: - 0: 65535 - -29,7: - 0: 3311 - -4,4: - 0: 65535 - -4,5: - 0: 65535 - -4,6: + -32,-3: + 0: 61152 + -32,-2: + 0: 61183 + -33,-2: + 0: 8055 + -33,-1: + 0: 27869 + -31,-4: + 2: 3 + 0: 65416 + -31,-3: + 0: 57584 + -31,-2: + 0: 3822 + -31,-5: + 2: 17479 + -30,-4: + 0: 30583 + -30,-3: + 0: 61686 + -30,-2: 0: 4095 - -4,7: - 0: 13296 + -33,4: + 0: 255 + -32,5: + 0: 239 + 2: 4096 + -33,5: + 0: 30719 + -32,6: + 2: 35630 + -33,6: + 2: 24392 + -32,7: + 2: 15 + -33,7: + 2: 15 + -31,5: + 0: 255 + 2: 20480 + -31,6: + 2: 36703 + -30,5: + 0: 255 + 2: 4096 + 1: 49152 + -30,6: + 2: 62209 + 1: 204 + -31,7: + 2: 8 + -30,7: + 2: 13 + -4,8: + 2: 8946 -3,4: - 0: 65535 + 0: 65520 -3,5: - 0: 65535 + 0: 61695 -3,6: - 0: 57343 + 0: 2179 + 2: 13056 -3,7: - 0: 57309 - -2,4: - 0: 65535 + 2: 4881 + 0: 3080 + -3,8: + 2: 4401 + 0: 32904 -2,5: - 0: 65535 + 0: 62702 -2,6: - 0: 65535 + 0: 28528 -2,7: - 0: 65535 - -1,4: - 0: 65535 + 0: 12256 + -2,8: + 0: 29047 -1,5: - 0: 65535 + 0: 61678 -1,6: - 0: 65535 + 0: 32631 -1,7: - 0: 65535 - 0,4: - 0: 65535 + 0: 65527 + -1,8: + 0: 64311 0,5: - 0: 65535 + 0: 61663 0,6: - 0: 65535 + 0: 14192 0,7: - 0: 65535 - 1,4: - 0: 65535 + 0: 2872 + 0,8: + 0: 65295 1,5: - 0: 65535 + 0: 56558 1,6: - 0: 65535 + 0: 61213 1,7: - 0: 65535 - 2,4: - 0: 65535 + 0: 3808 + 1,8: + 0: 20206 2,5: 0: 65535 - 3,4: - 0: 65535 + 2,6: + 0: 65295 + 2,7: + 0: 7632 + 2,8: + 0: 28671 3,5: - 0: 65535 + 0: 28518 3,6: - 0: 65535 - 4,4: - 0: 65535 + 0: 28518 + 3,7: + 0: 26230 + 3,8: + 0: 10103 4,5: - 0: 65535 + 0: 65520 4,6: - 0: 65535 + 0: 40944 + 4,7: + 0: 61152 5,4: - 0: 65535 + 0: 30576 5,5: - 0: 65535 + 0: 47920 5,6: - 0: 65535 - 6,4: - 0: 65535 + 0: 33784 + 5,7: + 0: 43944 6,5: - 0: 65535 + 0: 48927 6,6: - 0: 65535 - 7,4: - 0: 65535 + 0: 14835 + 6,7: + 0: 48051 + 5,8: + 0: 52232 + 2: 4352 + 6,8: + 0: 30483 7,5: - 0: 65535 + 0: 36621 7,6: - 0: 65535 - -20,-8: - 0: 64000 - -20,-7: - 0: 61183 - 3: 4352 - -20,-6: - 3: 1 - 0: 65534 - -20,-5: - 0: 65535 + 0: 1919 + 7,7: + 0: 61408 + 8,5: + 0: 61199 + 8,6: + 0: 52693 -19,-8: - 0: 4096 + 2: 4096 -19,-7: - 0: 4883 + 2: 4883 -19,-6: - 0: 40723 - -19,-5: - 0: 65529 + 2: 36627 -18,-6: - 0: 36608 - -18,-5: - 0: 65528 + 2: 44800 -17,-6: - 0: 36608 - 3: 16384 - -17,-5: - 0: 65532 - 8,4: - 0: 65535 - 8,5: - 0: 65535 - 8,6: - 0: 65535 - 9,4: - 0: 65535 - 10,4: - 0: 65535 - 11,4: - 0: 65535 - 11,5: - 0: 65535 - -4,8: - 0: 8947 - -3,8: - 0: 56829 + 2: 28416 + -16,-6: + 0: 47616 + 8,7: + 0: 32 + 2: 35968 + 9,5: + 0: 15266 + 9,6: + 0: 8016 + 2: 32768 + 9,7: + 2: 12546 + 8,8: + 2: 64172 + 9,8: + 2: 12290 + 10,5: + 0: 817 + 10,6: + 2: 64504 + 10,7: + 2: 561 + -4,9: + 2: 19570 + -5,9: + 2: 3971 + -4,10: + 2: 17476 + -4,11: + 2: 17476 + -4,12: + 2: 12 -3,9: - 0: 57309 + 2: 4881 + 0: 32904 -3,10: - 0: 56797 + 2: 4369 + 0: 2184 -3,11: - 0: 57309 - -2,8: - 0: 65535 + 2: 21265 + 0: 2184 + -3,12: + 2: 61937 -2,9: - 0: 65535 + 0: 61567 -2,10: 0: 65535 -2,11: - 0: 65535 - -1,8: - 0: 65535 + 0: 4095 + -2,12: + 2: 61689 -1,9: - 0: 65535 + 0: 61883 -1,10: 0: 65535 -1,11: - 0: 65535 - 0,8: - 0: 65535 + 0: 4095 + -1,12: + 2: 62452 0,9: - 0: 65535 + 0: 61695 0,10: - 0: 65535 + 0: 8191 0,11: - 0: 65535 - 1,8: - 0: 65535 + 0: 3003 + 0,12: + 2: 61681 + 1,11: + 2: 62692 1,9: - 0: 65535 + 0: 238 + 2: 8192 1,10: - 0: 57311 - 1,11: - 0: 62965 - -11,8: - 0: 11263 - -10,8: - 0: 8191 - -9,8: - 0: 57343 - -7,8: - 0: 49151 - -6,8: - 0: 4095 - -5,8: - 0: 61439 - 3: 4096 - 9,-5: - 0: 65535 - 10,-5: - 0: 65535 - 11,-5: - 0: 65535 - 12,-5: + 2: 50766 + 1,12: + 2: 61685 + 2,10: + 0: 4086 + 2,11: + 2: 61937 + 2,9: + 0: 26214 + 2,12: + 2: 4369 + 3,9: + 0: 119 + 2: 18432 + 3,10: + 2: 56911 + 3,11: + 2: 32253 + 4,8: + 0: 256 + 2: 65024 + 4,9: + 2: 39321 + 4,10: + 2: 32543 + 4,11: + 2: 245 + -12,10: + 2: 30037 + -12,11: + 2: 21845 + -11,9: + 2: 3646 + -10,9: + 2: 3871 + -9,9: + 2: 36695 + -8,9: + 0: 63231 + -8,10: + 2: 105 + 0: 1542 + -7,9: + 2: 6030 + -6,9: + 2: 3855 + 8,-8: + 2: 9284 + 8,-7: + 0: 52940 + 8,-6: + 0: 32974 + 2: 8192 + 8,-9: + 2: 17486 + 9,-7: + 0: 56785 + 9,-6: + 0: 63741 + 9,-8: + 2: 26215 + 9,-9: + 2: 21983 + 10,-8: 0: 65535 - 16,4: - 0: 8015 - 16,5: - 0: 1 - 17,4: - 0: 1 - -16,-6: + 10,-7: + 0: 56796 + 10,-6: + 0: 61661 + 10,-9: 0: 65280 - -16,-5: - 0: 65535 - -15,-6: - 0: 13056 - -15,-5: + 2: 15 + 11,-8: 0: 65535 - -14,-5: + 11,-7: + 0: 65519 + 11,-6: + 0: 30719 + 11,-9: + 0: 47872 + 2: 15 + 12,-8: 0: 65535 + 12,-7: + 0: 65343 + 12,-6: + 0: 64511 + 12,-9: + 0: 43520 + 2: 15 + 13,-8: + 0: 48123 + 13,-7: + 0: 1888 + 13,-6: + 0: 28790 + 13,-9: + 0: 43520 + 2: 15 + 14,-8: + 0: 30583 + 14,-7: + 0: 14199 + 2: 32768 + 14,-6: + 0: 13106 + 2: 34952 + 14,-9: + 0: 30464 + 2: 139 + 15,-8: + 2: 64852 + 15,-7: + 2: 39321 + 15,-6: + 2: 22009 + 15,-9: + 2: 29767 + 16,-8: + 2: 44885 + -15,-6: + 0: 4096 + 2: 512 -14,-6: - 0: 49152 - -13,-6: - 0: 65408 - -13,-5: - 0: 65535 - 2,-8: - 0: 63903 - -8,6: - 0: 65535 - -8,7: - 0: 65535 - -32,0: - 0: 65535 - -32,1: - 0: 65535 - -32,2: - 0: 65535 - -32,3: - 0: 65535 - -31,0: - 0: 65535 - -31,1: - 0: 65535 - -31,2: - 0: 65535 - -31,3: - 0: 65535 - -32,-3: - 0: 65535 - -32,-2: - 0: 65535 - -32,-1: - 0: 65535 - -31,-3: - 0: 65535 - -31,-2: + 2: 49152 + -36,-4: + 0: 65520 + -36,-5: + 2: 61440 + -37,-4: + 0: 65520 + -36,-3: 0: 65535 - -31,-1: + -37,-3: 0: 65535 - -30,-3: + -36,-2: 0: 65535 - -32,4: + -37,-2: 0: 65535 - -31,4: + -36,-1: 0: 65535 - -8,8: + -37,-1: 0: 65535 + -35,-4: + 0: 65520 -35,-3: - 0: 56799 + 0: 65535 -35,-2: - 0: 56799 + 0: 65535 -35,-1: - 0: 48127 - -34,-3: 0: 65535 + -35,-5: + 2: 61440 + -34,-4: + 0: 26480 + -34,-3: + 0: 61439 -34,-2: - 0: 65535 + 0: 65518 -34,-1: - 0: 65535 - -33,-3: - 0: 65535 - -33,-2: - 0: 65535 - -33,-1: - 0: 65535 - -33,-4: - 0: 65535 + 0: 61183 + -34,-5: + 2: 61440 + -33,-5: + 2: 61440 + -33,0: + 0: 26214 + -36,0: + 2: 240 + -37,0: + 2: 240 -35,0: - 0: 65417 - -35,1: - 0: 35071 + 2: 240 -35,2: - 0: 60971 + 2: 60960 + -35,3: + 2: 43690 + -35,4: + 2: 43694 -34,0: - 0: 65518 - -34,1: - 0: 61183 + 2: 36080 -34,2: - 0: 65519 - 3: 16 + 2: 4408 + 0: 32768 -34,3: - 0: 65535 - -33,0: - 0: 65535 - -33,1: - 0: 65535 - -33,2: - 0: 65535 - -33,3: - 0: 65535 + 2: 4369 + 0: 34952 -34,4: - 0: 65535 - -33,4: - 0: 65535 - -32,-4: - 0: 65535 - -31,-4: - 0: 65535 - -30,-4: - 0: 65535 - -29,-4: - 0: 65535 - -32,5: - 0: 4095 - -31,5: - 0: 24575 - -30,5: - 0: 12287 - -33,5: - 0: 65535 - -31,-5: - 0: 50039 + 2: 4369 + 0: 136 + -34,1: + 2: 34952 + -33,1: + 0: 26214 + -35,5: + 2: 25262 + -35,6: + 2: 17476 + -35,7: + 2: 12 + -34,5: + 2: 4882 + 0: 34952 + -34,7: + 2: 15 + -34,6: + 2: 3925 + -31,-6: + 2: 53188 + -30,-6: + 2: 3967 -30,-5: - 0: 65278 - -29,-5: - 0: 65535 - -29,-6: - 0: 65535 - -21,6: - 0: 13107 - -21,7: - 0: 65535 - 9,5: - 0: 65535 + 0: 1911 + -30,-7: + 2: 16384 + -29,-7: + 2: 20480 -23,9: - 0: 52428 + 0: 35976 -23,10: - 0: 12 - -22,8: - 0: 65535 + 0: 35016 + -23,11: + 0: 2188 + 2: 1024 -22,9: - 0: 65535 + 0: 65532 -22,10: - 0: 61167 + 0: 56797 -22,11: - 0: 61166 - -21,8: - 0: 13119 + 0: 51421 + -22,12: + 2: 2 + 0: 8 -21,9: - 0: 65535 + 0: 4593 + 2: 2056 -21,10: - 0: 13119 + 0: 4369 -21,11: - 0: 13107 - -22,12: - 0: 14 + 0: 4113 -21,12: - 0: 3 - -4,-10: - 0: 57183 - 2,6: - 0: 65535 - 2,7: - 0: 65535 - 3,7: - 0: 65535 - 4,7: - 0: 65535 - 5,7: - 0: 65535 - 6,7: - 0: 65535 - 7,7: - 0: 65535 - 8,7: - 0: 49151 - 2,8: - 0: 65535 - 2,9: - 0: 65535 - 3,8: - 0: 65535 - 3,9: - 0: 24575 - -34,5: - 0: 57308 - -34,6: - 0: 3933 - -33,6: - 0: 24399 - -30,-6: - 0: 65278 - 9,6: - 0: 65535 - 9,7: - 0: 16199 - 5,-5: - 0: 62451 - 3: 3072 - 6,-5: - 0: 62195 - 3: 3328 - 7,-5: - 0: 62451 - 3: 3072 - 13,-4: - 0: 65535 - 8,-5: - 0: 64254 - 3: 1280 - 8,-6: - 0: 65262 - 9,-6: - 0: 65535 - 10,-6: - 0: 65535 - 11,-6: - 0: 65535 - 12,-6: - 0: 65535 - 13,-6: - 0: 65535 - 13,-5: - 0: 65535 - 3,-8: - 0: 12834 - 3,-6: - 0: 61986 - 3,-7: - 0: 8930 - 1,-12: - 0: 43770 - 1,-11: - 0: 43770 - 1,-10: - 0: 43770 - 2,-9: - 0: 7936 - 3,-9: - 0: 8960 - -8,-8: - 0: 21969 - -8,-7: - 0: 21855 - -8,-6: - 0: 62847 - 4,-6: - 0: 61998 - 5,-6: - 0: 61713 - 6,-6: - 0: 61440 - 7,-6: - 0: 61440 - -4,-11: - 0: 20360 - -4,-12: - 0: 34952 - -10,-6: - 0: 61936 - -9,-6: - 0: 61936 - -12,6: - 0: 4095 - -12,7: - 0: 61440 - -13,12: - 0: 247 - -32,6: - 0: 35630 - -32,7: - 0: 15 - -31,6: - 0: 3935 - -30,6: - 0: 1839 - 10,5: - 0: 65535 - 10,6: - 0: 65535 - 10,7: - 0: 51061 - -4,9: - 0: 19570 - -4,10: - 0: 17476 - -4,11: - 0: 17476 - 2,10: - 0: 65535 - 2,11: - 0: 61937 - 3,10: - 0: 57183 - -12,9: - 0: 22001 - -12,10: - 0: 30037 - -12,11: - 0: 21845 - -11,9: - 0: 3646 - -10,9: - 0: 3871 - -9,9: - 0: 40927 - -8,9: - 0: 65535 - -7,9: - 0: 40863 - -6,9: - 0: 3855 - -5,9: - 0: 3971 - 8,-7: - 0: 61183 - 9,-7: - 0: 65535 - 10,-7: - 0: 65535 - 11,-7: - 0: 65535 - 12,-7: - 0: 65535 - 13,-7: - 0: 65535 - -36,-1: - 0: 37151 - -34,-4: - 0: 65423 - -36,0: - 0: 65423 - -36,1: - 0: 35071 - -36,2: - 0: 8 - -35,3: - 0: 43690 - -35,4: - 0: 43694 - -35,5: - 0: 25262 - -35,6: - 0: 17476 - -35,7: - 0: 12 - -34,7: - 0: 15 - -33,7: - 0: 15 - -12,12: - 0: 245 - -27,8: - 0: 8 - -26,8: - 0: 15 - -25,8: - 0: 3 - -4,12: - 0: 12 - -3,12: - 0: 61937 - -2,12: - 0: 61689 - -1,12: - 0: 62452 - 0,12: - 0: 61681 - 1,12: - 0: 61685 - 2,12: - 0: 4369 - 4,8: - 0: 64511 - 4,9: - 0: 39321 - 4,10: - 0: 32543 - 5,8: - 0: 65535 - 6,8: - 0: 65535 - 7,8: - 0: 61951 - 8,8: - 0: 64191 - -37,0: - 0: 34959 - -37,1: - 0: 762 - 0,-13: - 0: 63728 - 1,-13: - 0: 47344 - -4,-13: - 0: 34944 - -3,-13: - 0: 59632 - -2,-13: - 0: 62704 - -1,-13: - 0: 63728 - -8,-9: - 0: 61440 - -7,-9: - 0: 61440 - -6,-9: - 0: 61440 - -5,-9: - 0: 62660 - -5,-11: - 0: 19456 - -5,-10: - 0: 19524 - -28,-7: - 0: 4096 - -30,-7: - 0: 16401 - -29,-7: - 0: 20480 - -36,-4: - 0: 4383 - -36,-3: - 0: 4383 - -36,-2: - 0: 4383 - -35,-4: - 0: 39327 - -39,0: - 0: 17487 - -38,0: - 0: 15 - -39,-4: - 0: 4383 - -39,-3: - 0: 4383 - -39,-2: - 0: 4383 - -39,-1: - 0: 4383 - -38,-4: - 0: 4383 - -38,-3: - 0: 4383 - -38,-2: - 0: 4383 - -38,-1: - 0: 4383 - -37,-4: - 0: 4383 - -37,-3: - 0: 4383 - -37,-2: - 0: 4383 - -37,-1: - 0: 4383 + 2: 2 5,9: - 0: 52991 + 2: 529 + 0: 32972 5,10: - 0: 64991 + 2: 12563 + 0: 34952 5,11: - 0: 61951 + 2: 61943 6,9: - 0: 32767 + 0: 12663 + 2: 2048 6,10: - 0: 63359 + 0: 13059 + 2: 32776 6,11: - 0: 61695 + 2: 61692 + 7,8: + 2: 62208 7,9: - 0: 60979 + 2: 60979 7,10: - 0: 8095 + 2: 8095 7,11: - 0: 4369 + 2: 4369 8,9: - 0: 13102 + 2: 13102 8,10: - 0: 3875 - -9,10: - 0: 61713 - -9,11: - 0: 39185 - -8,10: - 0: 63087 - -8,11: - 0: 65526 - -7,10: - 0: 63624 - -7,11: - 0: 39304 - -9,12: - 0: 39327 - -9,13: - 0: 1529 - -8,12: - 0: 65535 - -8,13: - 0: 1535 - -7,12: - 0: 39327 - -7,13: - 0: 2553 - 12,6: - 0: 65522 - 12,7: - 0: 65520 - 13,6: - 0: 32624 - 13,7: - 0: 65527 - 14,7: - 0: 65520 - 15,6: - 0: 25393 - 15,7: - 0: 55124 - 11,6: - 0: 65522 - 11,7: - 0: 57297 - -32,-8: - 0: 65520 - -32,-7: - 0: 65297 - -32,-6: - 0: 61727 - -32,-5: - 0: 511 - -31,-8: - 0: 65534 - -31,-7: - 0: 65518 - -31,-6: - 0: 29679 - -30,-8: - 0: 4369 - -10,13: - 0: 128 - 10,8: - 0: 45000 - 10,9: - 0: 16315 - 11,8: - 0: 61408 - 11,9: - 0: 57296 - 11,10: - 0: 497 - -40,0: - 0: 257 - -40,1: - 0: 2810 - -39,1: - 0: 2814 - -38,1: - 0: 2810 - -40,-4: - 0: 61697 - -40,-3: - 0: 257 - -40,-2: - 0: 497 - -40,-1: - 0: 257 - -6,13: - 0: 16 - -36,-6: - 0: 61952 - -36,-5: - 0: 2 - -35,-7: - 0: 56830 - -35,-6: - 0: 31645 - -35,-5: - 0: 2245 - -35,-8: + 2: 803 + -39,0: + 2: 136 + -39,-1: + 2: 34952 + -38,0: + 2: 241 + -38,-1: 0: 61166 - -34,-8: - 0: 65520 - -34,-7: - 0: 65296 - -34,-6: - 0: 63263 - -34,-5: - 0: 6143 - -33,-8: - 0: 65528 - -33,-7: - 0: 65484 - -33,-6: - 0: 64719 - -33,-5: - 0: 36095 - -35,-9: - 0: 57344 - -34,-9: - 0: 15872 - -33,-9: - 0: 4032 - -32,-9: - 0: 3952 - -31,-9: - 0: 50944 - -30,-9: - 0: 4096 - 12,8: - 0: 65520 - 12,9: - 0: 65520 - 12,10: - 0: 35056 - 12,11: - 0: 136 - 13,8: - 0: 65527 - 13,9: - 0: 65527 - 13,10: - 0: 64247 - 13,11: - 0: 250 - 14,8: - 0: 65520 - 14,9: - 0: 65520 - 14,10: - 0: 240 - 15,8: - 0: 49080 - 15,9: - 0: 22488 - 15,10: - 0: 116 - -40,-6: - 0: 64000 - -40,-5: - 0: 266 - -39,-6: - 0: 64000 + -39,-4: + 2: 34952 -39,-5: - 0: 17486 - -38,-6: - 0: 64000 + 2: 32768 + -38,-4: + 2: 1 + 0: 61152 + -39,-3: + 2: 34952 + -39,-2: + 2: 34952 -38,-5: - 0: 10 - -37,-6: - 0: 62464 + 2: 61440 + -38,-3: + 0: 61166 + -38,-2: + 0: 61166 -37,-5: - 0: 39325 - -41,-5: - 0: 35976 - -41,-6: - 0: 32768 - -41,-4: - 0: 35980 - -41,-3: - 0: 35980 - -41,-2: - 0: 35980 - -41,-1: - 0: 35980 - -41,0: - 0: 35980 - -41,1: - 0: 136 - 9,8: - 0: 31814 - 4,-7: - 0: 8752 - -23,8: - 0: 140 - 14,6: - 0: 3840 - 9,9: - 0: 65535 - 9,10: - 0: 3871 - 10,10: - 0: 3875 - 9,-8: - 0: 65263 - 10,-8: - 0: 65535 - 11,-8: - 0: 65535 - 12,-8: - 0: 65535 - 3,11: - 0: 32253 - 4,11: - 0: 245 - 16,-4: - 0: 7 - 14,-4: - 0: 6015 - 15,-4: - 0: 4383 - 8,-8: - 0: 62805 - 13,-8: - 0: 65535 - 14,-8: - 0: 65535 - 14,-7: - 0: 65535 - 14,-6: - 0: 65535 - 14,-5: - 0: 65535 - 15,-8: - 0: 64852 - 15,-7: - 0: 39321 - 15,-6: - 0: 22009 - 15,-5: - 0: 39421 - 8,-10: - 0: 49066 - 8,-9: - 0: 22367 + 2: 61440 8,-11: - 0: 11776 + 2: 11776 + 8,-10: + 2: 44714 9,-11: - 0: 20224 + 2: 20224 9,-10: - 0: 52431 - 9,-9: - 0: 56799 + 2: 52431 10,-11: - 0: 3840 + 2: 3840 10,-10: - 0: 65535 - 10,-9: - 0: 65535 + 2: 65535 11,-11: - 0: 3840 + 2: 3840 11,-10: - 0: 65535 - 11,-9: - 0: 65535 + 2: 65535 12,-11: - 0: 12032 + 2: 12032 12,-10: - 0: 65535 - 12,-9: - 0: 65535 + 2: 65535 13,-11: - 0: 3840 + 2: 3840 13,-10: - 0: 65471 - 13,-9: - 0: 65535 + 2: 65471 14,-11: - 0: 20224 + 2: 20224 14,-10: - 0: 64255 - 14,-9: - 0: 65467 + 2: 64255 15,-11: - 0: 20224 + 2: 20224 15,-10: - 0: 18375 - 15,-9: - 0: 29767 + 2: 18375 16,-11: - 0: 8960 + 2: 8960 16,-10: - 0: 21874 + 2: 21874 16,-9: - 0: 21845 - 16,-8: - 0: 44885 - 16,-5: - 0: 17487 + 2: 21845 16,-7: - 0: 43690 + 2: 43690 16,-6: - 0: 43690 + 2: 43690 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9271,22 +11964,7 @@ entities: - 0 - 0 - volume: 2500 - temperature: 293.15 - moles: - - 21.813705 - - 82.06108 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.15 + immutable: True moles: - 0 - 0 @@ -9303,9 +11981,6 @@ entities: - volume: 2500 temperature: 293.15 moles: - - 22.929216 - - 86.25753 - - 0 - 0 - 0 - 0 @@ -9315,48 +11990,6 @@ entities: - 0 - 0 - 0 - - volume: 2500 - temperature: 293.15 - moles: - - 23.160324 - - 87.12693 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14996 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - volume: 2500 - temperature: 293.14975 - moles: - - 20.078888 - - 75.53487 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - 0 - 0 - 0 @@ -9412,59 +12045,45 @@ entities: - type: Joint joints: docking314611: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314611 localAnchorB: 7,-6.5 localAnchorA: 33,-25.5 - damping: 816.89667 - stiffness: 7332.4478 + damping: 816.68207 + stiffness: 7330.5215 docking314616: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314616 localAnchorB: 7,-4.5 localAnchorA: 33,-23.5 - damping: 816.89667 - stiffness: 7332.4478 + damping: 816.68207 + stiffness: 7330.5215 docking111798: !type:WeldJoint - bodyB: 21627 - bodyA: 89 + bodyB: 24340 + bodyA: 2 id: docking111798 localAnchorB: 0.49999997,-7 localAnchorA: 50,20.5 referenceAngle: -1.5707964 - damping: 346.33075 - stiffness: 3108.6577 + damping: 371.6559 + stiffness: 3335.9758 - type: NavMap - type: BecomesStation id: Ishimura - - uid: 6561 - components: - - type: MetaData - - type: Transform - - type: Map - - type: PhysicsMap - - type: Broadphase - - type: OccluderTree - - type: LoadedMap - - type: GridTree - - type: MovedGrids - - type: BecomesStation - id: Ishimura - - type: NavMap - - uid: 18153 + - uid: 23711 components: - type: MetaData name: UFS "Сторож" - type: Transform pos: 25.757847,-18.911654 - parent: 6561 + parent: 1 - type: MapGrid chunks: 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAVAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAVAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAAgAAAAAAAgAAAAAAVgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAgAAAAAAAgAAAAAAKgAAAAAAVgAAAAAAVgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAKgAAAAAAUgAAAAAAUgAAAAAAUgAAAAAAKgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAKgAAAAAAKgAAAAAAKgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 - type: Broadphase - type: Physics @@ -9561,6 +12180,13 @@ entities: 61: 5,-12 62: 5,-12 63: 5,-12 + 67: 2,-9 + 68: 1,-9 + 69: 1,-7 + 70: 1,-6 + 71: 2,-9 + 72: 3,-12 + 73: 2,-12 - node: cleanable: True color: '#FFFFFFFF' @@ -9676,46 +12302,463 @@ entities: - type: Joint joints: docking314611: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314611 localAnchorB: 7,-6.5 localAnchorA: 33,-25.5 - damping: 816.89667 - stiffness: 7332.4478 + damping: 816.92523 + stiffness: 7332.7046 docking314616: !type:WeldJoint - bodyB: 18153 - bodyA: 89 + bodyB: 23711 + bodyA: 2 id: docking314616 localAnchorB: 7,-4.5 localAnchorA: 33,-23.5 - damping: 816.89667 - stiffness: 7332.4478 - - uid: 21627 + damping: 816.92523 + stiffness: 7332.7046 + - uid: 23919 + components: + - type: MetaData + name: NT-ERT-M0 + - type: Transform + rot: 6.283185307179586 rad + pos: 3664.129,60.05559 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAbgAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAWwAAAAAAWwAAAAAAWwAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAALQAAAAAALQAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAbgAAAAAAfAAAAAAAfAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAfAAAAAAAWwAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAWwAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAWwAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineE + decals: + 11: 4,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineN + decals: + 10: 5,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineS + decals: + 12: 5,-4 + - node: + color: '#FFFFFFFF' + id: BrickTileSteelLineW + decals: + 13: 6,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteBox + decals: + 18: 5,-5 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNe + decals: + 2: 6,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerNw + decals: + 1: 4,-4 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSe + decals: + 0: 6,-6 + - node: + color: '#52B4E996' + id: BrickTileWhiteCornerSw + decals: + 3: 4,-6 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerNe + decals: + 87: 2,-8 + 88: 6,-9 + 90: 2,-2 + 92: 6,4 + - node: + color: '#CC8000FF' + id: BrickTileWhiteInnerNe + decals: + 101: 2,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerNw + decals: + 89: 2,-9 + 91: 3,4 + 95: 2,1 + - node: + color: '#CC8000FF' + id: BrickTileWhiteInnerNw + decals: + 115: 4,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerSe + decals: + 85: 2,3 + 86: 2,-2 + - node: + color: '#CC8000FF' + id: BrickTileWhiteInnerSe + decals: + 100: 2,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteInnerSw + decals: + 94: 2,3 + 98: 2,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineE + decals: + 29: 7,3 + 30: 7,4 + 31: 6,5 + 32: 5,6 + 47: 2,2 + 48: 2,1 + 58: 2,-3 + 59: 2,-4 + 60: 2,-6 + 61: 2,-7 + 62: 6,-2 + 63: 6,-8 + 64: 7,-9 + 65: 7,-10 + 83: 6,-2 + 84: 2,-1 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineE + decals: + 6: 6,-5 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineE + decals: + 112: 7,1 + 113: 7,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineN + decals: + 22: 5,6 + 23: 4,6 + 24: 3,6 + 25: 6,5 + 26: 2,4 + 27: 1,4 + 28: 7,4 + 73: 3,-8 + 74: 4,-8 + 75: 5,-8 + 76: 6,-8 + 77: 7,-9 + 78: 1,-9 + 79: 3,-2 + 80: 5,-2 + 81: 6,-2 + 82: 4,-2 + 96: 1,1 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineN + decals: + 4: 5,-4 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineN + decals: + 107: 3,0 + 108: 4,1 + 109: 5,1 + 110: 6,1 + 111: 7,1 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineS + decals: + 49: 3,3 + 50: 4,3 + 51: 5,3 + 52: 7,3 + 53: 6,3 + 54: 6,-2 + 55: 4,-2 + 56: 3,-2 + 57: 5,-2 + 68: 1,-10 + 69: 2,-10 + 70: 7,-10 + 71: 6,-10 + 72: 4,-10 + 93: 1,3 + 97: 1,0 + - node: + color: '#52B4E996' + id: BrickTileWhiteLineS + decals: + 5: 5,-6 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineS + decals: + 102: 3,0 + 103: 4,0 + 104: 5,0 + 105: 6,0 + 106: 7,0 + - node: + color: '#3D8C40FF' + id: BrickTileWhiteLineW + decals: + 33: 3,6 + 34: 3,5 + 35: 1,4 + 36: 1,3 + 37: 2,-8 + 38: 2,-7 + 39: 2,-6 + 40: 2,-4 + 41: 2,-3 + 42: 2,-2 + 43: 2,-1 + 44: 1,0 + 45: 1,1 + 46: 2,2 + 66: 1,-9 + 67: 1,-10 + 99: 2,-5 + - node: + color: '#CC8000FF' + id: BrickTileWhiteLineW + decals: + 114: 4,1 + - node: + angle: -1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 119: 2,-5 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Caution + decals: + 118: 2,3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Caution + decals: + 116: 3,-10 + 117: 5,-10 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 21: 6,1 + - node: + color: '#0E7F1BB2' + id: FullTileOverlayGreyscale + decals: + 20: 2,-7 + - node: + color: '#52B4E996' + id: FullTileOverlayGreyscale + decals: + 19: 3,-5 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNe + decals: + 15: 4,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerNw + decals: + 14: 6,-6 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSe + decals: + 16: 4,-4 + - node: + color: '#FFFFFFFF' + id: MiniTileSteelInnerSw + decals: + 17: 6,-4 + - node: + color: '#FFFFFFFF' + id: WarnBox + decals: + 8: 3,-12 + 9: 5,-12 + - node: + color: '#52B4E996' + id: WarnLineGreyscaleW + decals: + 7: 4,-5 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,-1: + 0: 23620 + 1: 16 + 0,0: + 0: 58478 + 0,1: + 0: 18590 + 1,0: + 0: 61695 + 1,1: + 0: 19327 + 2,1: + 0: 16 + 2,-1: + 0: 4096 + 1: 16 + 0,-3: + 1: 3 + 0: 61064 + 0,-2: + 0: 50253 + 1: 256 + 0,-4: + 0: 49152 + 1,-3: + 0: 65315 + 1: 8 + 1,-2: + 0: 30471 + 1,-1: + 0: 1799 + 1,-4: + 0: 24576 + 2,-3: + 1: 257 + 2,-2: + 0: 1 + 1: 256 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - volume: 2500 + immutable: True + moles: + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#02BD58FF' + flags: Hide + - type: NavMap + - type: Joint + joints: + docking206958: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206958 + localAnchorB: 1.5,1 + localAnchorA: 5.5,-13 + referenceAngle: -6.2831855 + damping: 1129.212 + stiffness: 10135.784 + docking206957: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206957 + localAnchorB: -0.49999997,1 + localAnchorA: 3.5,-13 + referenceAngle: -6.2831855 + damping: 1129.212 + stiffness: 10135.784 + - uid: 24340 components: - type: MetaData name: NT-Frog99SPC - type: Transform rot: -1.5707963267948966 rad pos: 57.242065,20.952974 - parent: 6561 + parent: 1 - type: MapGrid chunks: 0,0: ind: 0,0 - tiles: TAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: HQAAAAAAHQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 0,-1: ind: 0,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAOQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAbgAAAAAATAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAbgAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAbgAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAbgAAAAAAHQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,0: ind: -1,0 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA version: 6 -1,-1: ind: -1,-1 - tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAOQAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATAAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAbgAAAAAA + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAAbgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAHQAAAAAA version: 6 - type: Broadphase - type: Physics @@ -9788,17 +12831,17 @@ entities: data: tiles: 0,0: - 0: 7 + 0: 37 0,-1: - 0: 30583 + 0: 29493 -1,0: - 0: 12 - -1,-1: - 0: 52428 + 0: 132 0,-2: - 0: 30576 + 0: 21872 -1,-2: - 0: 52416 + 0: 17600 + -1,-1: + 0: 51332 uniqueMixes: - volume: 2500 temperature: 293.15 @@ -9821,21 +12864,21 @@ entities: - type: Joint joints: docking111798: !type:WeldJoint - bodyB: 21627 - bodyA: 89 + bodyB: 24340 + bodyA: 2 id: docking111798 localAnchorB: 0.49999997,-7 localAnchorA: 50,20.5 referenceAngle: -1.5707964 - damping: 346.33075 - stiffness: 3108.6577 - - uid: 22565 + damping: 346.33588 + stiffness: 3108.7039 + - uid: 24450 components: - type: MetaData - name: Каторга "завод имени генерала Сухарика" + name: Каторга "Завод имени генерала Сухарика" - type: Transform pos: 442.5,110.40625 - parent: 6561 + parent: 1 - type: MapGrid chunks: 0,0: @@ -10969,7 +14012,8 @@ entities: -8,-3: 0: 34816 -7,-3: - 0: 65534 + 0: 64510 + 2: 1024 -7,-2: 0: 65535 -7,-1: @@ -10978,7 +14022,7 @@ entities: 0: 61166 -6,-4: 0: 32767 - 2: 32768 + 3: 32768 -6,-3: 0: 65535 -6,-2: @@ -10987,10 +14031,10 @@ entities: 0: 65535 -5,-4: 0: 61439 - 2: 4096 + 3: 4096 -5,-3: 0: 65519 - 3: 16 + 4: 16 -5,-2: 0: 65535 -5,-1: @@ -11116,6 +14160,21 @@ entities: - 0 - 0 - 0 + - volume: 2500 + temperature: 293.14975 + moles: + - 20.078888 + - 75.53487 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 - volume: 2500 temperature: 293.15 moles: @@ -11149,152334 +14208,167152 @@ entities: chunkSize: 4 - type: GasTileOverlay - type: RadiationGridResistance + - uid: 27260 + components: + - type: MetaData + name: Охранный пост ОБР + - type: Transform + pos: 3668.11,45.87804 + parent: 1 + - type: MapGrid + chunks: + 0,0: + ind: 0,0 + tiles: fAAAAAAAVwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,0: + ind: -1,0 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAVwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-1: + ind: -1,-1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAbwAAAAAAbwAAAAAAbwAAAAAAbgAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAbgAAAAAAbgAAAAAAbgAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAAQAAAAAAfAAAAAAAHQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAeAAAAAAAeAAAAAAAeAAAAAAAAQAAAAAAHQAAAAAAIwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAQAAAAAAAQAAAAAAAQAAAAAAfAAAAAAAHQAAAAAAHQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAcwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAAfAAAAAAAGgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAATQAAAAAATQAAAAAAGgAAAAAA + version: 6 + 0,-1: + ind: 0,-1 + tiles: ewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAAgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAagAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAIgAAAAAAAgAAAAAAAgAAAAAAAgAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIgAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAIgAAAAAAIgAAAAAAIgAAAAAAfAAAAAAAfAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIwAAAAAAIwAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHQAAAAAAHQAAAAAAHQAAAAAAfAAAAAAAHQAAAAAAAgAAAAAAHQAAAAAAfAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAcwAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAGgAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAGgAAAAAAfAAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAcwAAAAAAGgAAAAAATQAAAAAATQAAAAAAfAAAAAAAfAAAAAAAfAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,1: + ind: 0,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAATQAAAAAALQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,1: + ind: -1,1 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAALQAAAAAATQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAfAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + 0,-2: + ind: 0,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + -1,-2: + ind: -1,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAAAAAAAAAewAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: + - node: + color: '#FFFFFFFF' + id: Arrows + decals: + 93: -5,-1 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 95: -5,-2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Arrows + decals: + 94: -5,-3 + - node: + color: '#FFFFFFFF' + id: Bot + decals: + 26: 5,-14 + 127: -5,-1 + 128: -5,-3 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Box + decals: + 99: 0,-12 + - node: + color: '#334E6DC8' + id: BoxGreyscale + decals: + 70: 0,-9 + - node: + color: '#52B4E996' + id: BoxGreyscale + decals: + 32: 3,-12 + - node: + color: '#DE3A3A96' + id: BoxGreyscale + decals: + 29: 4,-9 + 30: 5,-9 + 31: 6,-9 + - node: + color: '#EFB34196' + id: BoxGreyscale + decals: + 33: 3,-13 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNe + decals: + 60: 1,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerNw + decals: + 59: -1,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSe + decals: + 58: 1,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkCornerSw + decals: + 63: -1,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndE + decals: + 66: 1,-7 + 67: 1,-6 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkEndW + decals: + 64: -1,-6 + 65: -1,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineN + decals: + 61: 0,-6 + 68: 0,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileDarkLineS + decals: + 62: 0,-7 + 69: 0,-6 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNe + decals: + 77: 2,-5 + - node: + color: '#334E6DC8' + id: BrickTileWhiteCornerNw + decals: + 76: -2,-5 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndE + decals: + 110: -4,-13 + 111: -4,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndN + decals: + 12: -1,-1 + 13: 1,-1 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndS + decals: + 6: -1,-3 + 7: 1,-3 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteEndW + decals: + 108: -6,-10 + 109: -6,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineE + decals: + 78: 2,-7 + 79: 2,-8 + 80: 2,-9 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineE + decals: + 8: 1,-2 + 9: -1,-2 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineN + decals: + 112: -5,-10 + 113: -5,-13 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineS + decals: + 81: 2,-10 + 82: 1,-10 + 83: -1,-10 + 84: -2,-10 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineS + decals: + 114: -5,-13 + 115: -5,-10 + - node: + color: '#334E6DC8' + id: BrickTileWhiteLineW + decals: + 85: -2,-9 + 86: -2,-8 + 87: -2,-7 + - node: + color: '#FFFFFFFF' + id: BrickTileWhiteLineW + decals: + 10: -1,-2 + 11: 1,-2 + - node: + color: '#FFFFFFFF' + id: Caution + decals: + 74: -1,-5 + 75: 1,-5 + - node: + color: '#FFFFFFFF' + id: Delivery + decals: + 18: -3,-3 + 19: -3,-1 + 20: 3,-1 + 21: 3,-3 + 22: -1,-4 + 23: 1,-4 + 24: 6,-12 + 25: 5,-12 + 27: 4,-14 + 28: 6,-14 + 34: 3,-10 + 126: 2,-9 + - node: + angle: 1.5707963267948966 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 96: 5,-2 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: Delivery + decals: + 100: 0,-13 + 101: 0,-5 + - node: + color: '#52B4E996' + id: DeliveryGreyscale + decals: + 123: 4,-7 + - node: + color: '#DE3A3A96' + id: DeliveryGreyscale + decals: + 120: 6,-5 + 121: 6,-6 + 122: 6,-7 + - node: + color: '#EFB34196' + id: DeliveryGreyscale + decals: + 124: 4,-5 + - node: + color: '#FFFFFFFF' + id: DeliveryGreyscale + decals: + 125: 2,-9 + - node: + angle: 3.141592653589793 rad + color: '#52B4E996' + id: DiagonalCheckerBOverlay + decals: + 102: -6,-10 + 103: -4,-10 + 104: -5,-10 + 105: -4,-13 + 106: -5,-13 + 107: -6,-13 + - node: + angle: 3.141592653589793 rad + color: '#FFFFFFFF' + id: LoadingArea + decals: + 97: 1,-3 + 98: -1,-3 + - node: + color: '#DE3A3A96' + id: MiniTileCheckerAOverlay + decals: + 116: 5,-5 + 117: 5,-6 + 118: 5,-7 + - node: + color: '#334E6DC8' + id: OffsetCheckerBOverlay + decals: + 52: -1,-7 + 53: 0,-7 + 54: 1,-7 + 55: 1,-6 + 56: 0,-6 + 57: -1,-6 + - node: + color: '#DE3A3A96' + id: WarnCornerGreyscaleSW + decals: + 42: 4,-13 + - node: + color: '#DE3A3A96' + id: WarnCornerSmallGreyscaleNE + decals: + 44: 4,-13 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleE + decals: + 37: 6,-10 + 45: 6,-13 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleN + decals: + 43: 4,-12 + - node: + color: '#DE3A3A96' + id: WarnEndGreyscaleW + decals: + 36: 4,-10 + - node: + color: '#FFFFFFFF' + id: WarnFull + decals: + 14: -2,-3 + 15: -2,-1 + 16: 2,-1 + 17: 2,-3 + - node: + color: '#FFFFFFFF' + id: WarnLineE + decals: + 0: 0,-3 + 1: 0,-2 + 2: 0,-1 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleE + decals: + 89: 2,-10 + 92: 2,-6 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleN + decals: + 38: 5,-13 + 39: 5,-10 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleS + decals: + 88: 0,-10 + - node: + color: '#DE3A3A96' + id: WarnLineGreyscaleS + decals: + 40: 5,-10 + 41: 5,-13 + - node: + color: '#334E6DC8' + id: WarnLineGreyscaleW + decals: + 90: -2,-10 + 91: -2,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineN + decals: + 35: 4,-11 + - node: + color: '#FFFFFFFF' + id: WarnLineS + decals: + 3: 0,-3 + 4: 0,-2 + 5: 0,-1 + 119: 4,-6 + - node: + color: '#FFFFFFFF' + id: WarnLineW + decals: + 51: 4,-11 + 71: -1,-5 + 72: 0,-5 + 73: 1,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinCornerNw + decals: + 47: -4,-7 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndE + decals: + 49: -4,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinEndW + decals: + 50: -6,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineN + decals: + 48: -5,-5 + - node: + color: '#FFFFFFFF' + id: WoodTrimThinLineS + decals: + 46: -5,-5 + - type: GridAtmosphere + version: 2 + data: + tiles: + 0,0: + 0: 15 + -1,0: + 0: 15 + -1,-1: + 0: 65535 + 0,-1: + 0: 65535 + 1,0: + 0: 50287 + 1,1: + 0: 50244 + 1,2: + 0: 19524 + 1,3: + 0: 52428 + 2,0: + 0: 4369 + 2,1: + 0: 12849 + 2,2: + 0: 4402 + 2,3: + 0: 1 + -3,1: + 0: 34944 + -3,2: + 0: 136 + -2,0: + 0: 30175 + -2,1: + 0: 29781 + -2,2: + 0: 22356 + -2,3: + 0: 26215 + -2,-4: + 0: 65535 + -2,-3: + 0: 65535 + -2,-2: + 0: 65535 + -2,-1: + 0: 65535 + -1,-4: + 0: 65535 + -1,-3: + 0: 65535 + -1,-2: + 0: 65535 + 0,-4: + 0: 65535 + 0,-3: + 0: 65535 + 0,-2: + 0: 65535 + 1,-4: + 0: 65535 + 1,-3: + 0: 65535 + 1,-2: + 0: 65535 + 1,-1: + 0: 65535 + 2,-4: + 0: 4369 + 2,-3: + 0: 4369 + 2,-2: + 0: 4369 + 2,-1: + 0: 4369 + 1,4: + 0: 12 + -2,4: + 0: 6 + 0,-5: + 0: 35840 + 1,-5: + 0: 36608 + 2,-5: + 0: 256 + -2,-5: + 0: 12032 + -1,-5: + 0: 9984 + uniqueMixes: + - volume: 2500 + temperature: 293.15 + moles: + - 21.824879 + - 82.10312 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + chunkSize: 4 + - type: GasTileOverlay + - type: RadiationGridResistance + - type: IFF + color: '#02BD58FF' + flags: Hide + - type: NavMap + - type: Joint + joints: + docking206958: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206958 + localAnchorB: 1.5,1 + localAnchorA: 5.5,-13 + referenceAngle: -6.2831855 + damping: 1050.9031 + stiffness: 9432.886 + docking206957: !type:WeldJoint + bodyB: 27260 + bodyA: 23919 + id: docking206957 + localAnchorB: -0.49999997,1 + localAnchorA: 3.5,-13 + referenceAngle: -6.2831855 + damping: 1050.9031 + stiffness: 9432.886 + - uid: 28148 + components: + - type: MetaData + name: grid + - type: Transform + parent: 1 + - type: MapGrid + chunks: + -8,-2: + ind: -8,-2 + tiles: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAewAAAAAAewAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA + version: 6 + - type: Broadphase + - type: Physics + bodyStatus: InAir + angularDamping: 0.05 + linearDamping: 0.05 + fixedRotation: False + bodyType: Dynamic + - type: Fixtures + fixtures: {} + - type: OccluderTree + - type: SpreaderGrid + - type: Shuttle + - type: GridPathfinding + - type: Gravity + gravityShakeSound: !type:SoundPathSpecifier + path: /Audio/Effects/alert.ogg + - type: DecalGrid + chunkCollection: + version: 2 + nodes: [] + - type: GridAtmosphere + version: 2 + data: + chunkSize: 4 + - type: GasTileOverlay + - type: NavMap - proto: AcousticGuitarInstrument entities: - - uid: 18226 + - uid: 3 components: - type: Transform - pos: -117.48711,-17.501778 - parent: 89 - - uid: 19586 + pos: -26.480038,-25.339327 + parent: 2 + - uid: 4 components: - type: Transform - pos: -26.480038,-25.339327 - parent: 89 + pos: -109.63829,-23.975744 + parent: 2 - proto: ActionToggleMagboots entities: - - uid: 21553 + - uid: 6 components: - type: Transform - parent: 17969 + parent: 5 - type: InstantAction - container: 17969 + container: 5 - proto: AirAlarm entities: - - uid: 256 + - uid: 7 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,-26.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4717 - - 20150 - - 4718 - - 20164 - - 20165 - - 20169 - - 20168 - - 20170 - - 20167 - - 20166 - - 20171 - - 20172 - - 4819 - - 4812 - - 4702 - - 4698 - - 4471 - - 4383 - - type: AtmosDevice - joinedGrid: 89 - - uid: 258 + - 14398 + - 555 + - 14561 + - 11190 + - 11191 + - 11195 + - 11194 + - 11196 + - 11193 + - 11192 + - 11197 + - 11198 + - 14567 + - 14403 + - 14397 + - 14560 + - 14392 + - 14554 + - uid: 8 components: - type: Transform rot: -1.5707963267948966 rad pos: 5.5,-31.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20153 - - 4541 - - 4537 - - 20169 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1189 + - 558 + - 14556 + - 14393 + - 11195 + - uid: 9 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-42.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20147 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1281 + - 552 + - uid: 10 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-30.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20165 - - 4730 - - 4733 - - 20156 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1656 + - 11191 + - 14562 + - 14399 + - 560 + - uid: 11 components: - type: Transform rot: 3.141592653589793 rad pos: -3.5,-42.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20146 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1916 + - 551 + - uid: 12 components: - type: Transform rot: 1.5707963267948966 rad pos: -17.5,-17.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 20171 - - 20174 - - 4813 - - 20151 - - 4815 - - 20175 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2009 + - 11197 + - 11200 + - 14404 + - 556 + - 14565 + - 11201 + - uid: 13 components: - type: Transform pos: -101.5,-11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 2013 - - 2004 - - 2005 - - 2007 - - 1966 - - 1940 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2625 + - 11228 + - 14678 + - 11061 + - 11226 + - 14520 + - 14521 + - 14677 + - 14519 + - 14525 + - 11230 + - 11229 + - 11231 + - 494 + - uid: 14 components: - type: Transform rot: 3.141592653589793 rad pos: -82.5,-20.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 2140 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2774 + - 495 + - uid: 15 components: - type: Transform rot: -1.5707963267948966 rad pos: 39.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2911 + parent: 2 + - uid: 16 components: - type: Transform rot: 1.5707963267948966 rad pos: -97.5,-9.5 - parent: 89 - - type: DeviceList - devices: - - 2912 - - 2932 - - 2907 - - 2007 - - 53 - - 3020 - - 2933 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3086 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-13.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 2004 - - 2005 - - 2003 - - 2002 - - 3085 - - 1363 - - 3081 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3123 + - 14364 + - uid: 17 components: - type: Transform rot: 3.141592653589793 rad pos: -104.5,-11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3099 - - 3097 - - 3024 - - 3027 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3413 + - 11003 + - 497 + - 14531 + - 14367 + - uid: 18 components: - type: Transform pos: 37.5,9.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9435 - - 9436 - - 9437 - - 9590 - - 9589 - - 9587 - - 9588 - - 9585 - - 9591 - - 4159 - - 4162 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3681 + - 11004 + - 11005 + - 11006 + - 11042 + - 11041 + - 11049 + - 11050 + - 523 + - 11043 + - 14386 + - 14549 + - uid: 19 components: - type: Transform rot: 1.5707963267948966 rad pos: -20.5,-21.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9573 - - 9575 - - 9576 - - 9577 - - 20174 - - 20172 - - 4811 - - 4816 - - 20152 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5431 + - 11116 + - 11118 + - 11119 + - 11120 + - 11200 + - 11198 + - 14402 + - 14566 + - 557 + - uid: 20 components: - type: Transform pos: 0.5,-37.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4760 - - 20148 - - 4762 - - 20161 - - 20162 - - 20163 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6699 + - 14564 + - 553 + - 14401 + - 11187 + - 11188 + - 11189 + - uid: 21 components: - type: Transform rot: 3.141592653589793 rad pos: -67.5,-3.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 6624 - - 6614 - - 6615 - - 6616 - - 6617 - - 6618 - - 6619 - - 6620 - - 6613 - - 6612 - - 6611 - - 4986 - - 4985 - - 4983 - - 4982 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6702 + - 498 + - 11072 + - 11073 + - 11074 + - 11075 + - 14570 + - 14569 + - 14408 + - 14407 + - uid: 22 components: - type: Transform pos: -51.5,-8.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 6701 - - 6724 - - 4242 - - 4243 - - 16298 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6748 + - 499 + - 11047 + - 14550 + - 14389 + - 11053 + - 11046 + - uid: 23 components: - type: Transform pos: -54.5,-4.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4999 - - 4939 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6749 + - 14571 + - 14406 + - uid: 24 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,-7.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4598 - - 4590 - - 4599 - - 4591 - - 6750 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6752 + - 14394 + - 14557 + - 14395 + - 14558 + - 500 + - uid: 25 components: - type: Transform pos: -71.5,-14.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5072 - - 5069 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6753 + - 14410 + - 14572 + - uid: 26 components: - type: Transform rot: 1.5707963267948966 rad pos: -72.5,-13.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5071 - - 5070 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6786 + - 14409 + - 14573 + - uid: 27 components: - type: Transform pos: -47.5,2.5 - parent: 89 - - type: DeviceList - devices: - - 6772 - - 6771 - - 6769 - - 6789 - - 6788 - - 6787 - - 5725 - - 5437 - - 5728 - - 5729 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-3.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3294 - - 3301 - - 1596 - - 3272 - - 7395 - - 7393 - - 7392 - - 7391 - - 2933 - - 2932 - - 2912 - - 7388 - - 7389 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7400 + - 501 + - 11077 + - 11076 + - 11048 + - 14590 + - 14424 + - 14591 + - 14428 + - uid: 28 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,16.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5796 - - 5795 - - 7459 - - 7393 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7402 + - 14433 + - 14596 + - 505 + - 11082 + - uid: 29 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-1.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 7412 - - 7411 - - 7410 - - 3099 - - 3062 - - 2974 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7428 + - 503 + - 11084 + - 11083 + - 11003 + - 14532 + - 14366 + - uid: 30 components: - type: Transform pos: -97.5,10.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 7391 - - 7392 - - 7430 - - 7411 - - 7410 - - 2003 - - 2002 - - 3384 - - 3386 - - 3622 - - 3615 - - 3535 - - 3539 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7634 - components: - - type: Transform - pos: -86.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7699 + - 11080 + - 11081 + - 504 + - 11084 + - 11083 + - 14535 + - 14370 + - 14376 + - 14539 + - 14537 + - 14372 + - uid: 31 components: - type: Transform rot: 1.5707963267948966 rad pos: -101.5,27.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3619 - - 7668 - - 15656 - - 114 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8914 + - 14373 + - 14614 + - 533 + - 11063 + - 14673 + - uid: 32 components: - type: Transform pos: -122.5,1.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 8877 - - 8878 - - 8879 - - 8876 - - 8875 - - 8874 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9216 + - 11065 + - 14516 + - 14675 + - 11087 + - 11086 + - 11126 + - 11064 + - 11085 + - 11124 + - 11088 + - 542 + - 541 + - 14622 + - 14363 + - uid: 33 components: - type: Transform pos: 24.5,-7.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5389 - - 5394 - - 5355 - - 5356 - - 5279 - - 5328 - - 5337 - - 5329 - - 5338 - - 5330 - - 5341 - - 5331 - - 5339 - - 5354 - - 5348 - - 5336 - - 5326 - - 5156 - - 5399 - - 5401 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9322 + - 14586 + - 14422 + - 14584 + - 14420 + - 14414 + - 14578 + - 14415 + - 14579 + - 14416 + - 14580 + - 14418 + - 14581 + - 14417 + - 14583 + - 14419 + - 14582 + - 14577 + - 14412 + - 14423 + - 14587 + - uid: 34 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-13.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5154 - - 5152 - - 9452 - - 9453 - - 9584 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9324 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9428 + - 14576 + - 14411 + - 11018 + - 11019 + - 522 + - uid: 35 components: - type: Transform rot: 1.5707963267948966 rad pos: 50.5,3.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4278 - - 4105 - - 4273 - - 4219 - - 14088 - - 14090 - - 14089 - - 14091 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9429 + - 14552 + - 14385 + - 14551 + - 14388 + - 14471 + - 14636 + - 14472 + - 14533 + - uid: 36 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 5501 - - 5502 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9442 + - 14588 + - 14425 + - uid: 37 components: - type: Transform pos: 23.5,4.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9437 - - 9436 - - 9435 - - 9443 - - 9434 - - 9433 - - 9438 - - 9440 - - 9439 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9455 + - 11006 + - 11005 + - 11004 + - 506 + - 14458 + - 14625 + - 11007 + - 11009 + - 11008 + - uid: 38 components: - type: Transform pos: -0.5,4.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9444 - - 9445 - - 9446 - - 9439 - - 9440 - - 9438 - - 9456 - - 9447 - - 9448 - - 9449 - - 9450 - - 9451 - - 9452 - - 9453 - - 4354 - - 4039 - - 4441 - - 4442 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9464 + - 11010 + - 11011 + - 11012 + - 11008 + - 11009 + - 11007 + - 507 + - 11013 + - 11014 + - 11015 + - 11016 + - 11017 + - 11018 + - 11019 + - 14384 + - 14391 + - 14555 + - uid: 39 components: - type: Transform pos: -14.5,5.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9457 - - 9458 - - 9459 - - 9460 - - 9461 - - 9462 - - 9446 - - 9445 - - 9444 - - 6869 - - 6870 - - 9465 - - 9466 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9471 + - 508 + - 11020 + - 11021 + - 11022 + - 11023 + - 11024 + - 11012 + - 11011 + - 11010 + - 14612 + - 14450 + - 11025 + - 11026 + - uid: 40 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,0.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9468 - - 9467 - - 9460 - - 9459 - - 9458 - - 9469 - - 6208 - - 6209 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9482 + - 11028 + - 11027 + - 11022 + - 11021 + - 11020 + - 509 + - 14436 + - 14599 + - uid: 41 components: - type: Transform rot: 3.141592653589793 rad pos: -33.5,1.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9468 - - 9467 - - 9477 - - 9476 - - 9475 - - 9474 - - 9473 - - 9472 - - 3775 - - 3783 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9492 + - 11028 + - 11027 + - 11033 + - 11032 + - 11031 + - 11030 + - 11029 + - 510 + - 14542 + - 14378 + - uid: 42 components: - type: Transform pos: -41.5,6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9473 - - 9474 - - 9486 - - 9489 - - 9488 - - 9487 - - 9485 - - 9484 - - 9483 - - 9490 - - 5688 - - 6851 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9501 + - 11029 + - 11030 + - 11037 + - 11040 + - 11039 + - 11038 + - 11036 + - 11035 + - 11034 + - 511 + - 14427 + - 14609 + - uid: 43 components: - type: Transform pos: -56.5,6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9487 - - 9488 - - 9489 - - 9502 - - 9498 - - 6616 - - 6615 - - 6614 - - 9496 - - 9419 - - 6611 - - 6612 - - 6613 - - 9499 - - 6802 - - 6799 - - 6863 - - 6862 - - 6824 - - 6803 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9529 + - 11038 + - 11039 + - 11040 + - 512 + - 11091 + - 11090 + - 11089 + - 11092 + - 14445 + - 14607 + - 14611 + - 14449 + - 14446 + - uid: 44 components: - type: Transform pos: -32.5,19.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9477 - - 9476 - - 9475 - - 9523 - - 9521 - - 9524 - - 9525 - - 9526 - - 6206 - - 6204 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9541 + - 11033 + - 11032 + - 11031 + - 11093 + - 518 + - 11094 + - 11095 + - 11096 + - 14597 + - 14434 + - uid: 45 components: - type: Transform pos: -46.5,15.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9531 - - 9532 - - 9533 - - 9536 - - 9535 - - 9534 - - 9520 - - 6568 - - 6567 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9542 + - 11097 + - 11098 + - 11099 + - 11102 + - 11101 + - 11100 + - 517 + - 14441 + - 14604 + - uid: 46 components: - type: Transform pos: -58.5,15.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9547 - - 9546 - - 9516 - - 9544 - - 9545 - - 6603 - - 6602 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9557 + - 515 + - 11103 + - 11104 + - 14442 + - 14605 + - uid: 47 components: - type: Transform pos: -60.5,19.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9534 - - 9535 - - 9536 - - 9549 - - 9550 - - 9552 - - 9517 - - 9554 - - 9555 - - 9556 - - 5569 - - 5535 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9558 + - 11100 + - 11101 + - 11102 + - 11105 + - 11106 + - 11107 + - 516 + - 11108 + - 11109 + - 11110 + - 14589 + - 14426 + - uid: 48 components: - type: Transform pos: -74.5,11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9562 - - 9563 - - 9560 - - 9561 - - 9515 - - 9554 - - 9555 - - 9556 - - 6610 - - 6609 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9565 + - 11113 + - 11114 + - 11111 + - 11112 + - 514 + - 11108 + - 11109 + - 11110 + - 14443 + - 14606 + - uid: 49 components: - type: Transform pos: -68.5,15.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9496 - - 9419 - - 9560 - - 9561 - - 9544 - - 9545 - - 9514 - - 5737 - - 5736 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9567 + - 11090 + - 11089 + - 11111 + - 11112 + - 11103 + - 11104 + - 513 + - 14592 + - 14429 + - uid: 50 components: - type: Transform pos: -88.5,11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 7389 - - 7388 - - 9562 - - 9563 - - 9569 - - 6798 - - 5118 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9570 + - 11079 + - 11078 + - 11113 + - 11114 + - 520 + - 14444 + - 14574 + - uid: 51 components: - type: Transform rot: -1.5707963267948966 rad pos: -118.5,-2.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9011 - - 9010 - - 8972 - - 8973 - - 8580 - - 117 - - 8579 - - 115 - - 12128 - - 20107 - - 20103 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9582 + - 14622 + - 11088 + - 11065 + - 11087 + - 11064 + - 11126 + - 542 + - 541 + - uid: 52 components: - type: Transform pos: -23.5,-9.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9485 - - 9484 - - 9483 - - 9573 - - 9575 - - 9576 - - 9577 - - 9449 - - 9448 - - 9447 - - 9571 - - 9579 - - 9574 - - 9572 - - 9581 - - 6856 - - 6857 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9593 + - 11036 + - 11035 + - 11034 + - 11116 + - 11118 + - 11119 + - 11120 + - 11015 + - 11014 + - 11013 + - 521 + - 11117 + - 11115 + - 14448 + - 14610 + - uid: 53 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-6.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 3938 - - 3944 - - 3936 - - 3937 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9594 + - 14544 + - 14381 + - 14543 + - 14379 + - uid: 54 components: - type: Transform pos: -21.5,0.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9572 - - 9574 - - 9466 - - 9465 - - 9595 - - 4007 - - 4008 - - 3987 - - 3988 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9953 + - 11115 + - 11117 + - 11026 + - 11025 + - 524 + - 14547 + - 14383 + - 14382 + - 14546 + - uid: 55 components: - type: Transform pos: -63.5,40.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9831 - - 9948 - - 9949 - - 9822 - - 6551 - - 6558 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9955 + - 14626 + - 14462 + - 14629 + - 14459 + - 14603 + - 14439 + - uid: 56 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,40.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9924 - - 9923 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9958 + - 14460 + - 14628 + - uid: 57 components: - type: Transform rot: 1.5707963267948966 rad pos: -58.5,36.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9930 - - 9922 - - type: AtmosDevice - joinedGrid: 89 - - uid: 10173 + - 14461 + - 14627 + - uid: 58 components: - type: Transform rot: 1.5707963267948966 rad pos: -31.5,22.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 10118 - - 10129 - - 10174 - - 10176 - - 10175 - - type: AtmosDevice - joinedGrid: 89 - - uid: 12215 + - 14630 + - 14463 + - 526 + - 11122 + - 11121 + - uid: 59 components: - type: Transform rot: -1.5707963267948966 rad pos: 29.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 12217 + parent: 2 + - uid: 60 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,14.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 12831 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14271 + - 14470 + - uid: 61 components: - type: Transform rot: 1.5707963267948966 rad pos: -15.5,11.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 14284 - - 14285 - - 12847 - - 12851 - - 12850 - - 9462 - - 9461 - - 4377 - - 4375 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14323 + - 11129 + - 11130 + - 529 + - 11128 + - 11127 + - 11024 + - 11023 + - 14390 + - 14553 + - uid: 62 components: - type: Transform pos: -12.5,16.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 6369 - - 6370 - - 20121 - - 20130 - - 20131 - - 20132 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14332 + - 14601 + - 14438 + - 546 + - 11179 + - 11180 + - 11181 + - uid: 63 components: - type: Transform pos: 13.5,10.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 9371 - - 9375 - - 9379 - - 9370 - - 12811 - - 12812 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14367 + - 14624 + - 14456 + - 14457 + - 14623 + - 14469 + - 14635 + - uid: 64 components: - type: Transform rot: 1.5707963267948966 rad pos: 23.5,16.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 16534 - - 14931 - - 20135 - - 20138 - - 20137 - - 20136 - - 20134 - - 20140 - - 20139 - - 2006 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14371 + - 14647 + - 14473 + - 547 + - 11185 + - 11184 + - 11183 + - 11182 + - 549 + - 548 + - 14365 + - uid: 65 components: - type: Transform pos: 35.5,17.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 4161 - - 4160 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15174 + - 14548 + - 14387 + - uid: 66 components: - type: Transform rot: -1.5707963267948966 rad pos: 26.5,31.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 10817 - - 15009 - - 12615 - - 11064 - - 10668 - - 20129 - - 14330 - - 12741 - - 12607 - - 15431 - - 14970 - - 15195 - - 14984 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15178 + - 527 + - 14638 + - 14466 + - 11125 + - 11123 + - 11178 + - 11131 + - 14633 + - 14465 + - 532 + - 14637 + - 531 + - 14474 + - uid: 67 components: - type: Transform rot: 3.141592653589793 rad pos: 30.5,17.5 - parent: 89 + parent: 2 - type: DeviceList devices: - - 15182 - - 15186 - - 15198 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15356 + - 14476 + - 14639 + - 14640 + - uid: 68 + components: + - type: Transform + pos: 26.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 544 + - 550 + - 535 + - 14492 + - 14651 + - 14491 + - 14652 + - 11178 + - 11186 + - uid: 69 + components: + - type: Transform + pos: 7.5,31.5 + parent: 2 + - type: DeviceList + devices: + - 14481 + - 14643 + - 14646 + - 14477 + - 14480 + - 14642 + - 11163 + - 11164 + - 11166 + - 11165 + - 14479 + - 14641 + - 539 + - 540 + - uid: 70 + components: + - type: Transform + pos: 8.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11177 + - 11176 + - 14467 + - 14631 + - 14632 + - 14464 + - 528 + - uid: 71 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -31.5,34.5 + parent: 2 + - type: DeviceList + devices: + - 11055 + - 11054 + - 536 + - 14657 + - 14659 + - 14502 + - 14656 + - 14499 + - 14658 + - 14501 + - 14661 + - 14503 + - 14504 + - 14660 + - 14498 + - 14655 + - uid: 72 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 14616 + - 14483 + - 538 + - 11124 + - 11085 + - uid: 73 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11170 + - 11169 + - 14482 + - 14485 + - 14490 + - 537 + - 11167 + - 11168 + - uid: 74 + components: + - type: Transform + pos: -2.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 11066 + - 14495 + - 14653 + - 543 + - 11171 + - 11172 + - uid: 75 + components: + - type: Transform + pos: 5.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 14624 + - 14456 + - 530 + - 11070 + - 11071 + - uid: 76 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,-34.5 + parent: 2 + - type: DeviceList + devices: + - 11199 + - 11187 + - 11190 + - 14563 + - 14400 + - 554 + - uid: 77 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-20.5 + parent: 2 + - type: DeviceList + devices: + - 559 + - 14559 + - 14396 + - 11194 + - 11202 + - uid: 78 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 14496 + - 14654 + - 14497 + - 562 + - 14494 + - 14493 + - 534 + - uid: 79 + components: + - type: Transform + pos: 45.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 564 + - 14663 + - 14507 + - 14506 + - 14662 + - 14664 + - 563 + - 14505 + - uid: 80 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - type: DeviceList + devices: + - 14509 + - 14510 + - 566 + - 565 + - 11219 + - uid: 81 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-7.5 + parent: 2 + - uid: 82 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - type: DeviceList + devices: + - 11056 + - 11057 + - 11224 + - 11223 + - 11222 + - 11221 + - 14672 + - 14515 + - 14671 + - uid: 83 + components: + - type: Transform + pos: -36.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 569 + - 568 + - 567 + - 11046 + - 11002 + - 11044 + - 11045 + - uid: 84 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,-17.5 + parent: 2 + - type: DeviceList + devices: + - 570 + - 11202 + - 11001 + - 11196 + - 571 + - 572 + - 11220 + - uid: 85 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,-15.5 + parent: 2 + - uid: 86 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -110.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 14518 + - 14676 + - 11231 + - 11234 + - 11232 + - 11233 + - 573 + - uid: 87 + components: + - type: Transform + pos: -128.5,-4.5 + parent: 2 + - uid: 88 + components: + - type: Transform + pos: -41.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 11060 + - 574 + - 576 + - 575 + - 11236 + - 11235 + - 11162 + - uid: 89 + components: + - type: Transform + pos: -27.5,30.5 + parent: 2 + - type: DeviceList + devices: + - 14502 + - 14659 + - 11241 + - uid: 90 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 14500 + - 14657 + - 11240 + - uid: 91 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 14504 + - 14660 + - 11242 + - uid: 92 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,24.5 + parent: 2 + - type: DeviceList + devices: + - 14503 + - 14661 + - 11237 + - uid: 93 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,32.5 + parent: 2 + - type: DeviceList + devices: + - 14656 + - 14499 + - 11239 + - uid: 94 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 + - type: DeviceList + devices: + - 14501 + - 14658 + - 11238 + - uid: 23712 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-12.5 + parent: 23711 + - type: DeviceList + devices: + - 23821 + - 23822 + - 23721 + - 23720 + - 23722 + - 23823 + - uid: 23920 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 23919 + - type: DeviceList + devices: + - 24157 + - 23934 + - 24153 + - 24110 + - 24108 + - 24109 + - uid: 23921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 23919 + - type: DeviceList + devices: + - 24111 + - 24152 + - 24156 + - uid: 23922 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 23919 + - type: DeviceList + devices: + - 24159 + - 24155 + - 24113 + - 24110 + - 24153 + - 24157 + - 24108 + - 24109 + - uid: 23923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,2.5 + parent: 23919 + - type: DeviceList + devices: + - 24154 + - 24158 + - 24112 + - uid: 24341 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,-5.5 + parent: 24340 + - type: DeviceList + devices: + - 24402 + - 24344 + - 24403 + - 24394 + - 24395 + - 24393 + - 24396 + - uid: 24451 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 24450 + - type: DeviceList + devices: + - 26286 + - 26314 + - 24516 + - 26287 + - 26311 + - 26312 + - 26288 + - 26289 + - 26313 + - 25915 + - uid: 24452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 24450 + - type: DeviceList + devices: + - 26269 + - 24519 + - 26305 + - 25892 + - 25901 + - 25903 + - 25902 + - uid: 24453 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -18.5,-25.5 + parent: 24450 + - type: DeviceList + devices: + - 25917 + - 25918 + - 24524 + - 25920 + - 25919 + - 25922 + - 25921 + - 26293 + - 26284 + - 26292 + - 26278 + - uid: 24454 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 24450 + - type: DeviceList + devices: + - 25915 + - 25914 + - 25913 + - 25912 + - 25911 + - 25897 + - 25898 + - 25896 + - 25895 + - 24521 + - 26285 + - 26307 + - 26310 + - 26271 + - uid: 24455 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -32.5,7.5 + parent: 24450 + - type: DeviceList + devices: + - 26296 + - 24518 + - 26275 + - 26267 + - 26298 + - 26297 + - 26273 + - 26274 + - 26299 + - uid: 24456 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -24.5,14.5 + parent: 24450 + - type: DeviceList + devices: + - 26304 + - 26281 + - 24525 + - 26282 + - 26303 + - uid: 24457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -15.5,4.5 + parent: 24450 + - type: DeviceList + devices: + - 25893 + - 25894 + - 26279 + - 24517 + - 26300 + - 25900 + - 25899 + - 25910 + - 25909 + - 25908 + - 25907 + - 25906 + - 26283 + - 26302 + - uid: 24458 + components: + - type: Transform + pos: -11.5,0.5 + parent: 24450 + - type: DeviceList + devices: + - 26295 + - 24520 + - 26276 + - 25904 + - 25905 + - uid: 24459 + components: + - type: Transform + pos: -9.5,-20.5 + parent: 24450 + - type: DeviceList + devices: + - 26270 + - 26292 + - 24523 + - 26284 + - 26293 + - 25919 + - 25920 + - 25921 + - 25922 + - 25918 + - 25917 + - 26277 + - 25916 + - 24524 + - uid: 24460 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,14.5 + parent: 24450 + - type: DeviceList + devices: + - 26308 + - 26290 + - 24522 + - 26291 + - 26309 + - 25914 + - 25913 + - 25912 + - 25911 + - uid: 27261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 27260 + - type: DeviceList + devices: + - 27687 + - 27692 + - 27686 + - uid: 27262 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 27260 + - type: DeviceList + devices: + - 27684 + - 27691 + - uid: 27263 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 27260 + - type: DeviceList + devices: + - 27685 + - 27690 + - uid: 27264 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 27260 + - type: DeviceList + devices: + - 27682 + - 27688 + - uid: 27265 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 27260 + - type: DeviceList + devices: + - 27689 + - 27683 +- proto: AirAlarmElectronics + entities: + - uid: 95 + components: + - type: Transform + pos: -98.70526,-9.816481 + parent: 2 + - uid: 96 + components: + - type: Transform + pos: -98.36151,-9.957106 + parent: 2 + - uid: 97 + components: + - type: Transform + pos: -93.236145,-5.5265894 + parent: 2 + - uid: 98 + components: + - type: Transform + pos: -93.22052,-5.1047144 + parent: 2 +- proto: AirCanister + entities: + - uid: 99 + components: + - type: Transform + pos: -93.5,28.5 + parent: 2 + - uid: 100 + components: + - type: Transform + pos: 1.5,29.5 + parent: 2 + - uid: 101 + components: + - type: Transform + pos: -94.5,19.5 + parent: 2 + - uid: 102 + components: + - type: Transform + pos: -26.5,-27.5 + parent: 2 + - uid: 103 + components: + - type: Transform + pos: -111.5,18.5 + parent: 2 + - uid: 104 + components: + - type: Transform + pos: 2.5,26.5 + parent: 2 + - uid: 105 + components: + - type: Transform + pos: 5.5,20.5 + parent: 2 + - uid: 106 + components: + - type: Transform + pos: 15.5,-19.5 + parent: 2 + - uid: 107 + components: + - type: Transform + pos: -86.5,-6.5 + parent: 2 + - uid: 108 + components: + - type: Transform + pos: -86.5,-5.5 + parent: 2 + - uid: 23713 + components: + - type: Transform + pos: 2.5,-11.5 + parent: 23711 + - uid: 23924 + components: + - type: Transform + pos: 5.5,1.5 + parent: 23919 + - uid: 27266 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 27260 +- proto: Airlock + entities: + - uid: 109 + components: + - type: Transform + pos: -28.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18447 + - uid: 110 + components: + - type: Transform + pos: -31.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18446 + - uid: 111 + components: + - type: Transform + pos: -31.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18445 + - uid: 112 + components: + - type: Transform + pos: -28.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18444 + - uid: 113 + components: + - type: Transform + pos: -31.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18442 + - uid: 114 + components: + - type: Transform + pos: -76.5,2.5 + parent: 2 + - uid: 115 + components: + - type: Transform + pos: -21.5,12.5 + parent: 2 + - uid: 116 + components: + - type: Transform + pos: -27.5,12.5 + parent: 2 + - uid: 117 + components: + - type: Transform + pos: -25.5,12.5 + parent: 2 + - uid: 118 + components: + - type: Transform + pos: -23.5,12.5 + parent: 2 + - uid: 119 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -26.5,6.5 + parent: 2 + - uid: 120 + components: + - type: Transform + pos: 32.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18434 + - uid: 121 + components: + - type: Transform + pos: 30.5,25.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18435 + - uid: 122 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,-32.5 + parent: 2 + - uid: 123 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-32.5 + parent: 2 + - uid: 124 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,23.5 + parent: 2 + - uid: 125 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-32.5 + parent: 2 + - uid: 126 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-32.5 + parent: 2 + - uid: 24461 + components: + - type: Transform + pos: -13.5,-20.5 + parent: 24450 + - uid: 24462 + components: + - type: Transform + pos: -34.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26717 + - uid: 24463 + components: + - type: Transform + pos: 10.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26732 + - uid: 24464 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 24450 + - uid: 24465 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 24450 + - uid: 24466 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 24450 + - uid: 24467 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,5.5 + parent: 24450 + - uid: 24468 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,9.5 + parent: 24450 + - uid: 24469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -32.5,11.5 + parent: 24450 +- proto: AirlockArmoryGlassLocked + entities: + - uid: 127 + components: + - type: Transform + pos: 10.5,-9.5 + parent: 2 +- proto: AirlockAssembly + entities: + - uid: 24470 + components: + - type: Transform + pos: 0.5,11.5 + parent: 24450 +- proto: AirlockAssemblyMaintenance + entities: + - uid: 128 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 +- proto: AirlockAtmospherics + entities: + - uid: 24471 + components: + - type: Transform + pos: -12.5,-12.5 + parent: 24450 +- proto: AirlockAtmosphericsGlassLocked + entities: + - uid: 129 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-10.5 + parent: 2 + - uid: 130 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,-11.5 + parent: 2 + - uid: 131 + components: + - type: Transform + pos: -107.5,-8.5 + parent: 2 + - uid: 132 + components: + - type: Transform + pos: -109.5,-8.5 + parent: 2 + - uid: 133 + components: + - type: Transform + pos: -107.5,-13.5 + parent: 2 + - uid: 134 + components: + - type: Transform + pos: -109.5,-13.5 + parent: 2 + - uid: 135 + components: + - type: Transform + pos: -110.5,-14.5 + parent: 2 + - uid: 24472 + components: + - type: Transform + pos: -16.5,-12.5 + parent: 24450 +- proto: AirlockAtmosphericsLocked + entities: + - uid: 136 + components: + - type: Transform + pos: -0.5,26.5 + parent: 2 + - uid: 137 + components: + - type: Transform + pos: -93.5,21.5 + parent: 2 + - uid: 138 + components: + - type: Transform + pos: -24.5,-26.5 + parent: 2 + - uid: 139 + components: + - type: Transform + pos: -95.5,-3.5 + parent: 2 +- proto: AirlockBarLocked + entities: + - uid: 140 + components: + - type: Transform + pos: -27.5,-1.5 + parent: 2 +- proto: AirlockBrigGlassLocked + entities: + - uid: 141 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 142 + components: + - type: Transform + pos: 41.5,-20.5 + parent: 2 + - uid: 143 + components: + - type: Transform + pos: 41.5,-18.5 + parent: 2 + - uid: 144 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 + - uid: 145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 43.5,-20.5 + parent: 2 + - uid: 146 + components: + - type: Transform + pos: 41.5,-13.5 + parent: 2 + - uid: 147 + components: + - type: Transform + pos: 37.5,-20.5 + parent: 2 + - uid: 148 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 +- proto: AirlockBrigLocked + entities: + - uid: 149 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 2 + - uid: 150 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 2 + - uid: 151 + components: + - type: Transform + pos: 8.5,-3.5 + parent: 2 + - uid: 152 + components: + - type: Transform + pos: -58.5,33.5 + parent: 2 + - uid: 153 + components: + - type: Transform + pos: -58.5,35.5 + parent: 2 + - uid: 154 + components: + - type: Transform + pos: -56.5,37.5 + parent: 2 + - uid: 155 + components: + - type: Transform + pos: -55.5,37.5 + parent: 2 +- proto: AirlockCaptainLocked + entities: + - uid: 156 + components: + - type: Transform + pos: 49.5,11.5 + parent: 2 + - uid: 157 + components: + - type: Transform + pos: 47.5,16.5 + parent: 2 +- proto: AirlockCargoLocked + entities: + - uid: 158 + components: + - type: Transform + pos: -70.5,-4.5 + parent: 2 + - uid: 159 + components: + - type: Transform + pos: -68.5,-6.5 + parent: 2 + - uid: 160 + components: + - type: Transform + pos: -55.5,-4.5 + parent: 2 + - uid: 161 + components: + - type: Transform + pos: -57.5,-6.5 + parent: 2 + - uid: 162 + components: + - type: Transform + pos: -68.5,-10.5 + parent: 2 +- proto: AirlockCentralCommandGlassLocked + entities: + - uid: 23925 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.5,2.5 + parent: 23919 + - uid: 23926 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 23919 +- proto: AirlockCentralCommandLocked + entities: + - uid: 27267 + components: + - type: Transform + pos: -2.5,-5.5 + parent: 27260 +- proto: AirlockChapelLocked + entities: + - uid: 163 + components: + - type: Transform + pos: -47.5,-5.5 + parent: 2 + - uid: 164 + components: + - type: Transform + pos: -51.5,-5.5 + parent: 2 +- proto: AirlockChemistryLocked + entities: + - uid: 165 + components: + - type: Transform + pos: 0.5,10.5 + parent: 2 +- proto: AirlockChiefEngineerLocked + entities: + - uid: 166 + components: + - type: Transform + pos: -102.5,6.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerGlassLocked + entities: + - uid: 167 + components: + - type: Transform + pos: 23.5,41.5 + parent: 2 + - uid: 168 + components: + - type: Transform + pos: 24.5,33.5 + parent: 2 +- proto: AirlockChiefMedicalOfficerLocked + entities: + - uid: 169 + components: + - type: Transform + pos: 24.5,38.5 + parent: 2 +- proto: AirlockCommandGlassLocked + entities: + - uid: 170 + components: + - type: Transform + pos: 46.5,1.5 + parent: 2 + - uid: 171 + components: + - type: Transform + pos: 46.5,0.5 + parent: 2 + - uid: 172 + components: + - type: Transform + pos: 35.5,9.5 + parent: 2 + - uid: 173 + components: + - type: Transform + pos: -57.5,45.5 + parent: 2 + - uid: 174 + components: + - type: Transform + pos: -57.5,44.5 + parent: 2 + - uid: 175 + components: + - type: Transform + pos: -56.5,46.5 + parent: 2 + - uid: 24342 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 24340 +- proto: AirlockCommandLocked + entities: + - uid: 176 + components: + - type: Transform + pos: 18.5,0.5 + parent: 2 + - uid: 177 + components: + - type: Transform + pos: 42.5,1.5 + parent: 2 + - uid: 178 + components: + - type: Transform + pos: 42.5,0.5 + parent: 2 +- proto: AirlockDetectiveGlassLocked + entities: + - uid: 179 + components: + - type: Transform + pos: 19.5,4.5 + parent: 2 + - uid: 180 + components: + - type: Transform + pos: 15.5,7.5 + parent: 2 +- proto: AirlockDetectiveLocked + entities: + - uid: 181 + components: + - type: Transform + pos: 21.5,10.5 + parent: 2 +- proto: AirlockEngineering + entities: + - uid: 182 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 2 +- proto: AirlockEngineeringGlass + entities: + - uid: 23714 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 23711 +- proto: AirlockEngineeringGlassLocked + entities: + - uid: 183 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,-6.5 + parent: 2 + - uid: 184 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,-3.5 + parent: 2 + - uid: 185 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -106.5,-4.5 + parent: 2 + - uid: 186 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,4.5 + parent: 2 + - uid: 187 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - uid: 188 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -114.5,3.5 + parent: 2 + - uid: 189 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,34.5 + parent: 2 + - uid: 190 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,34.5 + parent: 2 + - uid: 191 + components: + - type: Transform + pos: -115.5,-11.5 + parent: 2 +- proto: AirlockEngineeringLocked + entities: + - uid: 192 + components: + - type: Transform + pos: -113.5,-1.5 + parent: 2 + - uid: 193 + components: + - type: Transform + pos: -113.5,9.5 + parent: 2 + - uid: 194 + components: + - type: Transform + pos: -96.5,7.5 + parent: 2 + - uid: 195 + components: + - type: Transform + pos: -96.5,8.5 + parent: 2 + - uid: 196 + components: + - type: Transform + pos: -40.5,22.5 + parent: 2 + - uid: 197 + components: + - type: Transform + pos: -119.5,-10.5 + parent: 2 + - uid: 198 + components: + - type: Transform + pos: -37.5,-8.5 + parent: 2 + - uid: 199 + components: + - type: Transform + pos: -118.5,-1.5 + parent: 2 + - uid: 200 + components: + - type: Transform + pos: -127.5,-7.5 + parent: 2 + - uid: 201 + components: + - type: Transform + pos: -4.5,26.5 + parent: 2 + - uid: 202 + components: + - type: Transform + pos: -122.5,4.5 + parent: 2 + - uid: 203 + components: + - type: Transform + pos: -126.5,13.5 + parent: 2 + - uid: 204 + components: + - type: Transform + pos: -126.5,11.5 + parent: 2 + - uid: 205 + components: + - type: Transform + pos: -122.5,3.5 + parent: 2 + - uid: 206 + components: + - type: Transform + pos: -124.5,3.5 + parent: 2 + - uid: 207 + components: + - type: Transform + pos: -124.5,4.5 + parent: 2 + - uid: 208 + components: + - type: Transform + pos: -118.5,9.5 + parent: 2 + - uid: 209 + components: + - type: Transform + pos: -127.5,-6.5 + parent: 2 + - uid: 210 + components: + - type: Transform + pos: -111.5,-3.5 + parent: 2 + - uid: 211 + components: + - type: Transform + pos: -118.5,15.5 + parent: 2 + - uid: 212 + components: + - type: Transform + pos: -82.5,-7.5 + parent: 2 + - uid: 213 + components: + - type: Transform + pos: -36.5,11.5 + parent: 2 + - uid: 214 + components: + - type: Transform + pos: -89.5,20.5 + parent: 2 + - uid: 215 + components: + - type: Transform + pos: -51.5,30.5 + parent: 2 + - uid: 216 + components: + - type: Transform + pos: 34.5,24.5 + parent: 2 + - uid: 217 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 45.5,19.5 + parent: 2 + - uid: 218 + components: + - type: Transform + pos: 15.5,-14.5 + parent: 2 + - uid: 219 + components: + - type: Transform + pos: -11.5,-26.5 + parent: 2 + - uid: 23927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 23919 + - uid: 24473 + components: + - type: Transform + pos: -9.5,-2.5 + parent: 24450 + - uid: 24474 + components: + - type: Transform + pos: -14.5,-2.5 + parent: 24450 + - uid: 24475 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-15.5 + parent: 24450 + - uid: 24476 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 24450 + - uid: 27268 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 27260 +- proto: AirlockEVALocked + entities: + - uid: 220 + components: + - type: Transform + pos: 24.5,4.5 + parent: 2 + - uid: 221 + components: + - type: Transform + pos: 31.5,4.5 + parent: 2 +- proto: AirlockExternalEngineeringLocked + entities: + - uid: 222 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 39.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 223: + - DoorStatus: DoorBolt + - uid: 223 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,26.5 + parent: 2 + - type: DeviceLinkSink + links: + - 222 + - uid: 224 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,38.5 + parent: 2 + - uid: 225 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,38.5 + parent: 2 +- proto: AirlockExternalGlass + entities: + - uid: 226 + components: + - type: Transform + pos: -68.5,30.5 + parent: 2 + - uid: 227 + components: + - type: Transform + pos: -82.5,30.5 + parent: 2 + - uid: 228 + components: + - type: Transform + pos: -66.5,46.5 + parent: 2 + - uid: 229 + components: + - type: Transform + pos: -64.5,46.5 + parent: 2 + - uid: 230 + components: + - type: Transform + pos: -58.5,46.5 + parent: 2 + - uid: 231 + components: + - type: Transform + pos: -68.5,37.5 + parent: 2 + - uid: 232 + components: + - type: Transform + pos: -82.5,37.5 + parent: 2 + - uid: 24477 + components: + - type: Transform + pos: -15.5,-18.5 + parent: 24450 + - uid: 24478 + components: + - type: Transform + pos: -11.5,-18.5 + parent: 24450 + - uid: 24479 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 24450 + - uid: 24480 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 24450 +- proto: AirlockExternalGlassLocked + entities: + - uid: 233 + components: + - type: Transform + pos: -62.5,-18.5 + parent: 2 + - uid: 234 + components: + - type: Transform + pos: -60.5,-18.5 + parent: 2 + - uid: 235 + components: + - type: Transform + pos: -84.5,46.5 + parent: 2 + - uid: 236 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 +- proto: AirlockExternalGlassShuttleArrivals + entities: + - uid: 237 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,30.5 + parent: 2 + - uid: 238 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,30.5 + parent: 2 + - uid: 239 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,37.5 + parent: 2 + - uid: 240 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -70.5,37.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEmergencyLocked + entities: + - uid: 241 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,49.5 + parent: 2 + - uid: 242 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,49.5 + parent: 2 + - uid: 243 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,49.5 + parent: 2 + - uid: 244 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,49.5 + parent: 2 +- proto: AirlockExternalGlassShuttleEscape + entities: + - uid: 245 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,41.5 + parent: 2 + - uid: 246 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,35.5 + parent: 2 + - uid: 247 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,44.5 + parent: 2 + - uid: 248 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,38.5 + parent: 2 + - uid: 249 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,32.5 + parent: 2 + - uid: 250 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,46.5 + parent: 2 +- proto: AirlockExternalGlassShuttleLocked + entities: + - uid: 251 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 252 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 253 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -84.5,48.5 + parent: 2 +- proto: AirlockExternalLocked + entities: + - uid: 254 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -77.5,-19.5 + parent: 2 + - uid: 255 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -76.5,-20.5 + parent: 2 + - uid: 256 + components: + - type: Transform + pos: -47.5,-14.5 + parent: 2 + - uid: 257 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 258 + components: + - type: Transform + pos: -9.5,30.5 + parent: 2 + - uid: 259 + components: + - type: Transform + pos: -7.5,30.5 + parent: 2 + - uid: 260 + components: + - type: Transform + pos: -128.5,-14.5 + parent: 2 + - uid: 261 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -133.5,-12.5 + parent: 2 + - uid: 262 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -134.5,-12.5 + parent: 2 + - uid: 263 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,-13.5 + parent: 2 + - uid: 264 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,-14.5 + parent: 2 + - uid: 265 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,-20.5 + parent: 2 + - uid: 266 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -109.5,-22.5 + parent: 2 + - uid: 267 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,-22.5 + parent: 2 + - uid: 268 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -108.5,-20.5 + parent: 2 + - uid: 269 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -128.5,-12.5 + parent: 2 + - uid: 270 + components: + - type: Transform + pos: -76.5,-17.5 + parent: 2 + - uid: 23928 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 23919 + - uid: 23929 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 23919 + - uid: 27269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 27260 + - uid: 27270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 27260 +- proto: AirlockExternalShuttleLocked + entities: + - uid: 271 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 49.5,20.5 + parent: 2 + - type: Docking + dockJointId: docking111798 + dockedWith: 24343 + - uid: 272 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - type: Docking + dockJointId: docking314611 + dockedWith: 23719 + - uid: 273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - type: Docking + dockJointId: docking314616 + dockedWith: 23718 + - uid: 23930 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 23919 + - type: Docking + dockJointId: docking206957 + dockedWith: 27271 + - uid: 23931 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 23919 + - type: Docking + dockJointId: docking206958 + dockedWith: 27272 + - uid: 24343 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24340 + - type: Docking + dockJointId: docking111798 + dockedWith: 271 + - uid: 24481 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 24450 + - uid: 24482 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 24450 + - uid: 24483 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 24450 + - uid: 24484 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 24450 + - uid: 27271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 27260 + - type: Docking + dockJointId: docking206957 + dockedWith: 23930 + - uid: 27272 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 27260 + - type: Docking + dockJointId: docking206958 + dockedWith: 23931 +- proto: AirlockFreezerKitchenHydroLocked + entities: + - uid: 274 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -16.5,-7.5 + parent: 2 + - uid: 275 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 +- proto: AirlockFreezerLocked + entities: + - uid: 276 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -13.5,-6.5 + parent: 2 +- proto: AirlockGlass + entities: + - uid: 277 + components: + - type: Transform + pos: -28.5,16.5 + parent: 2 + - uid: 278 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 2 + - uid: 279 + components: + - type: Transform + pos: -20.5,-9.5 + parent: 2 + - uid: 280 + components: + - type: Transform + pos: -19.5,0.5 + parent: 2 + - uid: 281 + components: + - type: Transform + pos: -17.5,0.5 + parent: 2 + - uid: 282 + components: + - type: Transform + pos: -50.5,2.5 + parent: 2 + - uid: 283 + components: + - type: Transform + pos: -49.5,2.5 + parent: 2 + - uid: 284 + components: + - type: Transform + pos: -51.5,6.5 + parent: 2 + - uid: 285 + components: + - type: Transform + pos: -49.5,6.5 + parent: 2 + - uid: 286 + components: + - type: Transform + pos: -93.5,11.5 + parent: 2 + - uid: 287 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 54.5,-30.5 + parent: 2 + - uid: 288 + components: + - type: Transform + pos: 52.5,-25.5 + parent: 2 + - uid: 289 + components: + - type: Transform + pos: 52.5,-22.5 + parent: 2 + - uid: 290 + components: + - type: Transform + pos: 52.5,-20.5 + parent: 2 + - uid: 291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,39.5 + parent: 2 + - uid: 292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,38.5 + parent: 2 + - uid: 293 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -86.5,37.5 + parent: 2 + - uid: 23932 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 23919 + - uid: 24485 + components: + - type: Transform + pos: -28.5,5.5 + parent: 24450 + - uid: 24486 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,5.5 + parent: 24450 + - uid: 24487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,0.5 + parent: 24450 + - uid: 24488 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,0.5 + parent: 24450 +- proto: AirlockHeadOfPersonnelLocked + entities: + - uid: 294 + components: + - type: Transform + pos: 46.5,8.5 + parent: 2 + - uid: 295 + components: + - type: Transform + pos: 46.5,7.5 + parent: 2 + - uid: 296 + components: + - type: Transform + pos: 43.5,11.5 + parent: 2 + - uid: 297 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 42.5,15.5 + parent: 2 +- proto: AirlockHeadOfSecurityGlassLocked + entities: + - uid: 298 + components: + - type: Transform + pos: 36.5,-4.5 + parent: 2 +- proto: AirlockHydroponicsLocked + entities: + - uid: 299 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 2 +- proto: AirlockJanitorLocked + entities: + - uid: 300 + components: + - type: Transform + pos: -40.5,6.5 + parent: 2 +- proto: AirlockLawyerGlassLocked + entities: + - uid: 301 + components: + - type: Transform + pos: -74.5,-4.5 + parent: 2 +- proto: AirlockMaint + entities: + - uid: 24489 + components: + - type: Transform + pos: -27.5,7.5 + parent: 24450 + - uid: 24490 + components: + - type: Transform + pos: -24.5,11.5 + parent: 24450 + - uid: 24491 + components: + - type: Transform + pos: 3.5,7.5 + parent: 24450 +- proto: AirlockMaintAtmoLocked + entities: + - uid: 302 + components: + - type: Transform + pos: -78.5,-10.5 + parent: 2 +- proto: AirlockMaintBarLocked + entities: + - uid: 303 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 2 +- proto: AirlockMaintCaptainLocked + entities: + - uid: 304 + components: + - type: Transform + pos: -127.5,20.5 + parent: 2 +- proto: AirlockMaintCargoLocked + entities: + - uid: 305 + components: + - type: Transform + pos: -72.5,-10.5 + parent: 2 +- proto: AirlockMaintChapelLocked + entities: + - uid: 306 + components: + - type: Transform + pos: -44.5,-6.5 + parent: 2 +- proto: AirlockMaintCommandLocked + entities: + - uid: 307 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 +- proto: AirlockMaintCommonLocked + entities: + - uid: 308 + components: + - type: Transform + pos: -110.5,17.5 + parent: 2 + - uid: 309 + components: + - type: Transform + pos: -79.5,4.5 + parent: 2 + - uid: 310 + components: + - type: Transform + pos: -38.5,-4.5 + parent: 2 + - uid: 311 + components: + - type: Transform + pos: -90.5,16.5 + parent: 2 + - uid: 312 + components: + - type: Transform + pos: -86.5,-1.5 + parent: 2 + - uid: 313 + components: + - type: Transform + pos: -106.5,17.5 + parent: 2 + - uid: 314 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - uid: 315 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 316 + components: + - type: Transform + pos: -4.5,36.5 + parent: 2 + - uid: 317 + components: + - type: Transform + pos: -74.5,16.5 + parent: 2 + - uid: 318 + components: + - type: Transform + pos: -1.5,28.5 + parent: 2 + - uid: 319 + components: + - type: Transform + pos: -3.5,28.5 + parent: 2 + - uid: 320 + components: + - type: Transform + pos: 12.5,26.5 + parent: 2 + - uid: 321 + components: + - type: Transform + pos: -42.5,-4.5 + parent: 2 + - uid: 322 + components: + - type: Transform + pos: -43.5,11.5 + parent: 2 + - uid: 323 + components: + - type: Transform + pos: -36.5,15.5 + parent: 2 + - uid: 324 + components: + - type: Transform + pos: -14.5,13.5 + parent: 2 + - uid: 325 + components: + - type: Transform + pos: -48.5,19.5 + parent: 2 + - uid: 326 + components: + - type: Transform + pos: -54.5,25.5 + parent: 2 + - uid: 327 + components: + - type: Transform + pos: -78.5,-4.5 + parent: 2 + - uid: 328 + components: + - type: Transform + pos: -79.5,16.5 + parent: 2 + - uid: 329 + components: + - type: Transform + pos: -20.5,13.5 + parent: 2 + - uid: 330 + components: + - type: Transform + pos: 1.5,-15.5 + parent: 2 + - uid: 331 + components: + - type: Transform + pos: 26.5,22.5 + parent: 2 + - uid: 332 + components: + - type: Transform + pos: 22.5,25.5 + parent: 2 + - uid: 333 + components: + - type: Transform + pos: 26.5,25.5 + parent: 2 + - uid: 334 + components: + - type: Transform + pos: 15.5,26.5 + parent: 2 +- proto: AirlockMaintEngiLocked + entities: + - uid: 335 + components: + - type: Transform + pos: -108.5,16.5 + parent: 2 + - uid: 336 + components: + - type: Transform + pos: -111.5,11.5 + parent: 2 + - uid: 337 + components: + - type: Transform + pos: -103.5,14.5 + parent: 2 + - uid: 338 + components: + - type: Transform + pos: -118.5,17.5 + parent: 2 + - uid: 339 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -99.5,23.5 + parent: 2 +- proto: AirlockMaintHOPLocked + entities: + - uid: 340 + components: + - type: Transform + pos: 42.5,18.5 + parent: 2 +- proto: AirlockMaintJanitorLocked + entities: + - uid: 341 + components: + - type: Transform + pos: -37.5,10.5 + parent: 2 +- proto: AirlockMaintLawyerLocked + entities: + - uid: 342 + components: + - type: Transform + pos: -74.5,-7.5 + parent: 2 +- proto: AirlockMaintLocked + entities: + - uid: 343 + components: + - type: Transform + pos: -86.5,22.5 + parent: 2 + - uid: 344 + components: + - type: Transform + pos: -25.5,20.5 + parent: 2 + - uid: 345 + components: + - type: Transform + pos: -37.5,-2.5 + parent: 2 + - uid: 346 + components: + - type: Transform + pos: -34.5,20.5 + parent: 2 +- proto: AirlockMaintMedLocked + entities: + - uid: 347 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,22.5 + parent: 2 + - uid: 348 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,19.5 + parent: 2 +- proto: AirlockMaintRnDLocked + entities: + - uid: 349 + components: + - type: Transform + pos: -23.5,-16.5 + parent: 2 + - uid: 350 + components: + - type: Transform + pos: 2.5,-17.5 + parent: 2 + - uid: 351 + components: + - type: Transform + pos: 5.5,-24.5 + parent: 2 +- proto: AirlockMaintSalvageLocked + entities: + - uid: 352 + components: + - type: Transform + pos: -46.5,-12.5 + parent: 2 +- proto: AirlockMaintSecLocked + entities: + - uid: 353 + components: + - type: Transform + pos: -86.5,16.5 + parent: 2 + - uid: 354 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,21.5 + parent: 2 + - uid: 356 + components: + - type: Transform + pos: -52.5,33.5 + parent: 2 + - uid: 357 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 57.5,-23.5 + parent: 2 + - uid: 358 + components: + - type: Transform + pos: 37.5,-16.5 + parent: 2 + - uid: 359 + components: + - type: MetaData + name: Техобслуживание подстанции + - type: Transform + pos: 16.5,-11.5 + parent: 2 +- proto: AirlockMaintTheatreLocked + entities: + - uid: 360 + components: + - type: Transform + pos: -36.5,-4.5 + parent: 2 +- proto: AirlockMedical + entities: + - uid: 361 + components: + - type: Transform + pos: -12.5,5.5 + parent: 2 + - uid: 362 + components: + - type: Transform + pos: -11.5,5.5 + parent: 2 + - uid: 363 + components: + - type: Transform + pos: 12.5,7.5 + parent: 2 + - uid: 364 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 18.5,16.5 + parent: 2 +- proto: AirlockMedicalGlassLocked + entities: + - uid: 365 + components: + - type: Transform + pos: 28.5,30.5 + parent: 2 + - uid: 366 + components: + - type: Transform + pos: 20.5,30.5 + parent: 2 + - uid: 367 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 2 + - uid: 23933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 23919 + - uid: 27273 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 27260 +- proto: AirlockMedicalLocked + entities: + - uid: 368 + components: + - type: Transform + pos: -2.5,12.5 + parent: 2 + - uid: 369 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - uid: 370 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -8.5,15.5 + parent: 2 + - uid: 371 + components: + - type: Transform + pos: 6.5,10.5 + parent: 2 + - uid: 372 + components: + - type: Transform + pos: 7.5,15.5 + parent: 2 + - uid: 373 + components: + - type: Transform + pos: 9.5,15.5 + parent: 2 + - uid: 374 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 375 + components: + - type: Transform + pos: 15.5,22.5 + parent: 2 + - uid: 376 + components: + - type: Transform + pos: 24.5,21.5 + parent: 2 + - uid: 377 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + - uid: 378 + components: + - type: Transform + pos: -7.5,18.5 + parent: 2 + - uid: 379 + components: + - type: Transform + pos: 12.5,22.5 + parent: 2 + - uid: 380 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 +- proto: AirlockMining + entities: + - uid: 381 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 + - uid: 382 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,19.5 + parent: 2 + - uid: 383 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,19.5 + parent: 2 + - uid: 384 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,0.5 + parent: 2 + - uid: 385 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,0.5 + parent: 2 + - uid: 386 + components: + - type: Transform + pos: 33.5,1.5 + parent: 2 + - uid: 387 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,8.5 + parent: 2 + - uid: 388 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -76.5,9.5 + parent: 2 + - uid: 389 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,10.5 + parent: 2 + - uid: 390 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - uid: 391 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 + - uid: 392 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,18.5 + parent: 2 + - uid: 393 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,16.5 + parent: 2 + - uid: 394 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -50.5,16.5 + parent: 2 + - uid: 395 + components: + - type: Transform + pos: -34.5,16.5 + parent: 2 + - uid: 396 + components: + - type: Transform + pos: -34.5,17.5 + parent: 2 + - uid: 397 + components: + - type: Transform + pos: -34.5,18.5 + parent: 2 + - uid: 398 + components: + - type: Transform + pos: -30.5,6.5 + parent: 2 + - uid: 399 + components: + - type: Transform + pos: -31.5,6.5 + parent: 2 + - uid: 400 + components: + - type: Transform + pos: -32.5,6.5 + parent: 2 + - uid: 401 + components: + - type: Transform + pos: -28.5,3.5 + parent: 2 + - uid: 402 + components: + - type: Transform + pos: -21.5,1.5 + parent: 2 + - uid: 403 + components: + - type: Transform + pos: -21.5,2.5 + parent: 2 + - uid: 404 + components: + - type: Transform + pos: -21.5,3.5 + parent: 2 + - uid: 405 + components: + - type: Transform + pos: 1.5,3.5 + parent: 2 + - uid: 406 + components: + - type: Transform + pos: 1.5,2.5 + parent: 2 + - uid: 407 + components: + - type: Transform + pos: 33.5,2.5 + parent: 2 + - uid: 408 + components: + - type: Transform + pos: 33.5,3.5 + parent: 2 + - uid: 409 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 + - uid: 410 + components: + - type: Transform + pos: -4.5,-11.5 + parent: 2 + - uid: 411 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,4.5 + parent: 2 + - uid: 412 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 + - uid: 413 + components: + - type: Transform + pos: -38.5,-13.5 + parent: 2 + - uid: 414 + components: + - type: Transform + pos: -38.5,-12.5 + parent: 2 + - uid: 415 + components: + - type: Transform + pos: -38.5,-11.5 + parent: 2 + - uid: 416 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 + - uid: 417 + components: + - type: Transform + pos: 1.5,1.5 + parent: 2 + - uid: 418 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,18.5 + parent: 2 + - uid: 419 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -82.5,11.5 + parent: 2 + - uid: 420 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,11.5 + parent: 2 + - uid: 421 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -80.5,11.5 + parent: 2 + - uid: 422 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -66.5,6.5 + parent: 2 + - uid: 423 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,6.5 + parent: 2 + - uid: 424 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,14.5 + parent: 2 + - uid: 425 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 + - uid: 426 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - uid: 427 + components: + - type: Transform + pos: -28.5,4.5 + parent: 2 + - uid: 428 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 429 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -55.5,19.5 + parent: 2 + - uid: 430 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -56.5,19.5 + parent: 2 + - uid: 431 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,19.5 + parent: 2 + - uid: 432 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 433 + components: + - type: Transform + pos: -70.5,16.5 + parent: 2 + - uid: 434 + components: + - type: Transform + pos: -70.5,18.5 + parent: 2 + - uid: 435 + components: + - type: Transform + pos: -70.5,17.5 + parent: 2 + - uid: 436 + components: + - type: Transform + pos: -4.5,2.5 + parent: 2 + - uid: 437 + components: + - type: Transform + pos: -4.5,1.5 + parent: 2 + - uid: 438 + components: + - type: Transform + pos: -4.5,3.5 + parent: 2 + - uid: 439 + components: + - type: Transform + pos: -42.5,3.5 + parent: 2 +- proto: AirlockQuartermasterLocked + entities: + - uid: 440 + components: + - type: Transform + pos: -73.5,-14.5 + parent: 2 + - uid: 441 + components: + - type: Transform + pos: -70.5,-14.5 + parent: 2 +- proto: AirlockResearchDirectorLocked + entities: + - uid: 442 + components: + - type: MetaData + name: научный руководитель + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 443 + components: + - type: Transform + pos: 5.5,-28.5 + parent: 2 + - uid: 444 + components: + - type: MetaData + name: серверная + - type: Transform + pos: -3.5,-35.5 + parent: 2 +- proto: AirlockSalvageLocked + entities: + - uid: 445 + components: + - type: Transform + pos: -53.5,-9.5 + parent: 2 + - uid: 446 + components: + - type: Transform + pos: -53.5,-10.5 + parent: 2 + - uid: 447 + components: + - type: Transform + pos: -53.5,-13.5 + parent: 2 + - uid: 448 + components: + - type: Transform + pos: -53.5,-16.5 + parent: 2 +- proto: AirlockScienceGlassLocked + entities: + - uid: 449 + components: + - type: MetaData + name: робототехника + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 450 + components: + - type: Transform + pos: -1.5,-26.5 + parent: 2 +- proto: AirlockScienceLocked + entities: + - uid: 451 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -2.5,-18.5 + parent: 2 + - uid: 452 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -0.5,-18.5 + parent: 2 + - uid: 453 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -2.5,-23.5 + parent: 2 + - uid: 454 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 455 + components: + - type: MetaData + name: ксеноархеология + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 456 + components: + - type: MetaData + name: отдел аномалистики + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 457 + components: + - type: MetaData + name: лаборатория + - type: Transform + pos: -8.5,-19.5 + parent: 2 + - uid: 458 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 459 + components: + - type: MetaData + name: РнД + - type: Transform + pos: -0.5,-23.5 + parent: 2 + - uid: 460 + components: + - type: MetaData + name: комната отдыха РнД + - type: Transform + pos: 2.5,-23.5 + parent: 2 +- proto: AirlockSecurity + entities: + - uid: 24492 + components: + - type: Transform + pos: -17.5,-9.5 + parent: 24450 + - uid: 24493 + components: + - type: Transform + pos: -17.5,-13.5 + parent: 24450 +- proto: AirlockSecurityGlass + entities: + - uid: 461 + components: + - type: Transform + pos: 1.5,-12.5 + parent: 2 + - uid: 462 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 2 +- proto: AirlockSecurityGlassLocked + entities: + - uid: 463 + components: + - type: Transform + pos: 11.5,-4.5 + parent: 2 + - uid: 464 + components: + - type: Transform + pos: 26.5,-7.5 + parent: 2 + - uid: 465 + components: + - type: Transform + pos: 27.5,-7.5 + parent: 2 + - uid: 466 + components: + - type: Transform + pos: -53.5,44.5 + parent: 2 + - uid: 467 + components: + - type: Transform + pos: -53.5,40.5 + parent: 2 + - uid: 468 + components: + - type: Transform + pos: -55.5,46.5 + parent: 2 + - uid: 23715 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-5.5 + parent: 23711 + - uid: 23716 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 23711 + - uid: 23717 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 23711 + - uid: 24494 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 24450 + - uid: 24495 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,8.5 + parent: 24450 + - uid: 24496 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 24450 + - uid: 24497 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 24450 +- proto: AirlockSecurityLocked + entities: + - uid: 469 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 2 + - uid: 470 + components: + - type: Transform + pos: -15.5,10.5 + parent: 2 + - uid: 471 + components: + - type: Transform + pos: -42.5,-0.5 + parent: 2 + - uid: 472 + components: + - type: Transform + pos: -59.5,11.5 + parent: 2 + - uid: 473 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -83.5,13.5 + parent: 2 + - uid: 474 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 475 + components: + - type: Transform + pos: -54.5,35.5 + parent: 2 + - uid: 24498 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 24450 + - uid: 24499 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 24450 +- proto: AirlockServiceCaptainLocked + entities: + - uid: 476 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 +- proto: AirlockServiceLocked + entities: + - uid: 477 + components: + - type: Transform + pos: -54.5,10.5 + parent: 2 + - uid: 478 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18443 +- proto: AirlockShuttle + entities: + - uid: 479 + components: + - type: Transform + pos: -45.5,-22.5 + parent: 2 + - uid: 23718 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 23711 + - type: Docking + dockJointId: docking314616 + dockedWith: 273 + - uid: 23719 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 23711 + - type: Docking + dockJointId: docking314611 + dockedWith: 272 + - uid: 24500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 24450 + - uid: 24501 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,23.5 + parent: 24450 + - uid: 24502 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,15.5 + parent: 24450 + - uid: 24503 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,17.5 + parent: 24450 + - uid: 24504 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,17.5 + parent: 24450 + - uid: 24505 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,15.5 + parent: 24450 + - uid: 24506 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,21.5 + parent: 24450 + - uid: 24507 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,21.5 + parent: 24450 + - uid: 24508 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,15.5 + parent: 24450 + - uid: 24509 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,21.5 + parent: 24450 + - uid: 24510 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,21.5 + parent: 24450 + - uid: 24511 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,17.5 + parent: 24450 + - uid: 24512 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -24.5,17.5 + parent: 24450 + - uid: 24513 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 0.5,23.5 + parent: 24450 + - uid: 24514 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,23.5 + parent: 24450 + - uid: 24515 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -19.5,15.5 + parent: 24450 +- proto: AirlockTheatreLocked + entities: + - uid: 480 + components: + - type: Transform + pos: -32.5,-8.5 + parent: 2 + - uid: 481 + components: + - type: Transform + pos: -32.5,-4.5 + parent: 2 +- proto: AirlockVirologyGlassLocked + entities: + - uid: 482 + components: + - type: Transform + pos: 9.5,39.5 + parent: 2 + - uid: 483 + components: + - type: Transform + pos: 10.5,39.5 + parent: 2 + - uid: 484 + components: + - type: Transform + pos: 8.5,31.5 + parent: 2 + - uid: 485 + components: + - type: Transform + pos: 13.5,35.5 + parent: 2 + - uid: 486 + components: + - type: Transform + pos: 6.5,35.5 + parent: 2 +- proto: AirlockVirologyLocked + entities: + - uid: 487 + components: + - type: Transform + pos: 13.5,28.5 + parent: 2 + - uid: 488 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 489 + components: + - type: Transform + pos: 12.5,29.5 + parent: 2 + - uid: 490 + components: + - type: Transform + pos: 14.5,28.5 + parent: 2 + - uid: 491 + components: + - type: Transform + pos: 13.5,31.5 + parent: 2 + - uid: 492 + components: + - type: Transform + pos: 14.5,31.5 + parent: 2 + - uid: 493 + components: + - type: Transform + pos: 14.5,24.5 + parent: 2 +- proto: AirSensor + entities: + - uid: 494 + components: + - type: Transform + pos: -99.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 495 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -81.5,-25.5 + parent: 2 + - uid: 496 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -105.5,-19.5 + parent: 2 + - uid: 497 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -100.5,-8.5 + parent: 2 + - uid: 498 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,-0.5 + parent: 2 + - uid: 499 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-11.5 + parent: 2 + - uid: 500 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -62.5,-6.5 + parent: 2 + - uid: 501 + components: + - type: Transform + pos: -48.5,-3.5 + parent: 2 + - uid: 502 + components: + - type: Transform + pos: -93.5,6.5 + parent: 2 + - uid: 503 + components: + - type: Transform + pos: -99.5,-3.5 + parent: 2 + - uid: 504 + components: + - type: Transform + pos: -99.5,5.5 + parent: 2 + - uid: 505 + components: + - type: Transform + pos: -94.5,14.5 + parent: 2 + - uid: 506 + components: + - type: Transform + pos: 22.5,1.5 + parent: 2 + - uid: 507 + components: + - type: Transform + pos: -1.5,0.5 + parent: 2 + - uid: 508 + components: + - type: Transform + pos: -13.5,1.5 + parent: 2 + - uid: 509 + components: + - type: Transform + pos: -24.5,5.5 + parent: 2 + - uid: 510 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -34.5,3.5 + parent: 2 + - uid: 511 + components: + - type: Transform + pos: -41.5,-2.5 + parent: 2 + - uid: 512 + components: + - type: Transform + pos: -55.5,3.5 + parent: 2 + - uid: 513 + components: + - type: Transform + pos: -64.5,9.5 + parent: 2 + - uid: 514 + components: + - type: Transform + pos: -71.5,13.5 + parent: 2 + - uid: 515 + components: + - type: Transform + pos: -56.5,13.5 + parent: 2 + - uid: 516 + components: + - type: Transform + pos: -57.5,16.5 + parent: 2 + - uid: 517 + components: + - type: Transform + pos: -48.5,14.5 + parent: 2 + - uid: 518 + components: + - type: Transform + pos: -31.5,12.5 + parent: 2 + - uid: 519 + components: + - type: Transform + pos: -40.5,16.5 + parent: 2 + - uid: 520 + components: + - type: Transform + pos: -85.5,8.5 + parent: 2 + - uid: 521 + components: + - type: Transform + pos: -21.5,-11.5 + parent: 2 + - uid: 522 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 4.5,-12.5 + parent: 2 + - uid: 523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 38.5,6.5 + parent: 2 + - uid: 524 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 2 + - uid: 525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,4.5 + parent: 2 + - uid: 526 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,22.5 + parent: 2 + - uid: 527 + components: + - type: Transform + pos: 24.5,31.5 + parent: 2 + - uid: 528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 8.5,17.5 + parent: 2 + - uid: 529 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,9.5 + parent: 2 + - uid: 530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 + - uid: 531 + components: + - type: Transform + pos: 31.5,30.5 + parent: 2 + - uid: 532 + components: + - type: Transform + pos: 17.5,30.5 + parent: 2 + - uid: 533 + components: + - type: Transform + pos: -100.5,27.5 + parent: 2 + - uid: 534 + components: + - type: Transform + pos: 0.5,18.5 + parent: 2 + - uid: 535 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,43.5 + parent: 2 + - uid: 536 + components: + - type: Transform + pos: -29.5,36.5 + parent: 2 + - uid: 537 + components: + - type: Transform + pos: 14.5,19.5 + parent: 2 + - uid: 538 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -131.5,11.5 + parent: 2 + - uid: 539 + components: + - type: Transform + pos: 9.5,33.5 + parent: 2 + - uid: 540 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 541 + components: + - type: Transform + pos: -130.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 542 + components: + - type: Transform + pos: -120.5,3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 543 + components: + - type: Transform + pos: -1.5,8.5 + parent: 2 + - uid: 544 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,34.5 + parent: 2 + - uid: 545 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,11.5 + parent: 2 + - uid: 546 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,12.5 + parent: 2 + - uid: 547 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 27.5,11.5 + parent: 2 + - uid: 548 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 24.5,22.5 + parent: 2 + - uid: 549 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 + - uid: 550 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 23.5,40.5 + parent: 2 + - uid: 551 + components: + - type: Transform + pos: -6.5,-43.5 + parent: 2 + - uid: 552 + components: + - type: Transform + pos: 1.5,-43.5 + parent: 2 + - uid: 553 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 554 + components: + - type: Transform + pos: -0.5,-34.5 + parent: 2 + - uid: 555 + components: + - type: Transform + pos: -1.5,-29.5 + parent: 2 + - uid: 556 + components: + - type: Transform + pos: -11.5,-17.5 + parent: 2 + - uid: 557 + components: + - type: Transform + pos: -18.5,-21.5 + parent: 2 + - uid: 558 + components: + - type: Transform + pos: 4.5,-28.5 + parent: 2 + - uid: 559 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 560 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 561 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 562 + components: + - type: Transform + pos: -11.5,18.5 + parent: 2 + - uid: 563 + components: + - type: Transform + pos: 48.5,-26.5 + parent: 2 + - uid: 564 + components: + - type: Transform + pos: 44.5,-24.5 + parent: 2 + - uid: 565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-25.5 + parent: 2 + - uid: 566 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-25.5 + parent: 2 + - uid: 567 + components: + - type: Transform + pos: -44.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 568 + components: + - type: Transform + pos: -26.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 569 + components: + - type: Transform + pos: -15.5,-26.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 570 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 571 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 572 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 36.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 573 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 574 + components: + - type: Transform + pos: -53.5,30.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 575 + components: + - type: Transform + pos: -37.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 576 + components: + - type: Transform + pos: -50.5,21.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 23720 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 23711 + - uid: 23721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-8.5 + parent: 23711 + - uid: 23722 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 23711 + - uid: 23934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 23919 + - uid: 24344 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 24340 + - uid: 24516 + components: + - type: Transform + pos: 5.5,4.5 + parent: 24450 + - uid: 24517 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -21.5,0.5 + parent: 24450 + - uid: 24518 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,4.5 + parent: 24450 + - uid: 24519 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -12.5,5.5 + parent: 24450 + - uid: 24520 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 24450 + - uid: 24521 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,2.5 + parent: 24450 + - uid: 24522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,16.5 + parent: 24450 + - uid: 24523 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -9.5,-25.5 + parent: 24450 + - uid: 24524 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -13.5,-25.5 + parent: 24450 + - uid: 24525 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,16.5 + parent: 24450 + - uid: 27274 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-7.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 +- proto: AltarSpawner + entities: + - uid: 577 + components: + - type: Transform + pos: -50.5,-3.5 + parent: 2 +- proto: AlwaysPoweredWallLight + entities: + - uid: 578 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -98.5,-25.5 + parent: 2 + - uid: 579 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -94.5,-25.5 + parent: 2 + - uid: 580 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -100.5,-25.5 + parent: 2 + - uid: 581 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -96.5,-25.5 + parent: 2 + - uid: 582 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -92.5,-25.5 + parent: 2 + - uid: 583 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -90.5,-25.5 + parent: 2 + - uid: 584 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -88.5,-25.5 + parent: 2 + - uid: 585 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -86.5,-25.5 + parent: 2 + - uid: 586 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-25.5 + parent: 2 +- proto: AmmoTechFab + entities: + - uid: 23935 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 23919 +- proto: AnomalyScanner + entities: + - uid: 587 + components: + - type: Transform + pos: -4.4272065,-27.335176 + parent: 2 + - uid: 588 + components: + - type: Transform + pos: -4.4272065,-28.007051 + parent: 2 + - uid: 589 + components: + - type: Transform + pos: -4.3334565,-27.663301 + parent: 2 + - uid: 590 + components: + - type: Transform + pos: -4.3334565,-28.335176 + parent: 2 +- proto: AntiPoisonMedipen + entities: + - uid: 592 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 593 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23937 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23938 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24527 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: APCBasic + entities: + - uid: 606 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 33.5,26.5 + parent: 2 + - uid: 607 + components: + - type: MetaData + name: ЛКП ГП + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 608 + components: + - type: MetaData + name: ЛКП Крио и туалеты + - type: Transform + pos: -27.5,15.5 + parent: 2 + - uid: 609 + components: + - type: MetaData + name: ЛКП НИО + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-19.5 + parent: 2 + - uid: 610 + components: + - type: MetaData + name: ЛКП НР + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-29.5 + parent: 2 + - uid: 611 + components: + - type: MetaData + name: ЛКП Мостик - конференц зал + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - uid: 612 + components: + - type: MetaData + name: ЛКП ЕВА + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,8.5 + parent: 2 + - uid: 613 + components: + - type: MetaData + name: ЛКП КМ + - type: Transform + pos: -72.5,-14.5 + parent: 2 + - uid: 614 + components: + - type: MetaData + name: ЛКП Холл каргонии + - type: Transform + rot: 1.5707963267948966 rad + pos: -68.5,-8.5 + parent: 2 + - uid: 615 + components: + - type: MetaData + name: ЛКП Утилизаторы + - type: Transform + rot: 1.5707963267948966 rad + pos: -53.5,-11.5 + parent: 2 + - uid: 616 + components: + - type: MetaData + name: ЛКП Неизвестно + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,38.5 + parent: 2 + - uid: 617 + components: + - type: MetaData + name: ЛКП Прибытие 1 + - type: Transform + pos: -86.5,36.5 + parent: 2 + - uid: 618 + components: + - type: MetaData + name: ЛКП Жилые помещения + - type: Transform + pos: -27.5,22.5 + parent: 2 + - uid: 619 + components: + - type: MetaData + name: ЛКП Каморка уборщиков + - type: Transform + rot: 3.141592653589793 rad + pos: -36.5,6.5 + parent: 2 + - uid: 620 + components: + - type: MetaData + name: ЛКП Техи жилых пом. + - type: Transform + rot: -1.5707963267948966 rad + pos: -39.5,23.5 + parent: 2 + - uid: 621 + components: + - type: MetaData + name: ЛКП КПП СБ мед + - type: Transform + pos: -18.5,10.5 + parent: 2 + - uid: 622 + components: + - type: MetaData + name: ЛКП Мед отдел 4 + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 623 + components: + - type: MetaData + name: ЛКП Бриф рум инженерного + - type: Transform + rot: 1.5707963267948966 rad + pos: -106.5,-2.5 + parent: 2 + - uid: 624 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -96.5,3.5 + parent: 2 + - uid: 625 + components: + - type: MetaData + name: ЛКП СИ + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,9.5 + parent: 2 + - uid: 626 + components: + - type: MetaData + name: ЛКП Холл иженерного отдела + - type: Transform + rot: 1.5707963267948966 rad + pos: -111.5,1.5 + parent: 2 + - uid: 627 + components: + - type: MetaData + name: ЛКП телекоммуникация + - type: Transform + pos: -107.5,22.5 + parent: 2 + - uid: 628 + components: + - type: MetaData + name: ЛКП Мусоросброс + - type: Transform + rot: 1.5707963267948966 rad + pos: -101.5,25.5 + parent: 2 + - uid: 629 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -118.5,14.5 + parent: 2 + - uid: 630 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -86.5,15.5 + parent: 2 + - uid: 631 + components: + - type: Transform + pos: -10.5,5.5 + parent: 2 + - uid: 632 + components: + - type: MetaData + name: ЛКП Бар + - type: Transform + pos: -28.5,0.5 + parent: 2 + - uid: 633 + components: + - type: MetaData + name: ЛКП Мед отдел 3 + - type: Transform + pos: 26.5,21.5 + parent: 2 + - uid: 634 + components: + - type: MetaData + name: ЛКП Зал суда и АВД + - type: Transform + pos: -79.5,2.5 + parent: 2 + - uid: 635 + components: + - type: Transform + pos: -67.5,15.5 + parent: 2 + - uid: 636 + components: + - type: MetaData + name: ЛКП Прибытие 2 + - type: Transform + pos: -58.5,31.5 + parent: 2 + - uid: 637 + components: + - type: MetaData + name: ЛКП Техи прибытия + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,29.5 + parent: 2 + - uid: 638 + components: + - type: Transform + pos: -64.5,6.5 + parent: 2 + - uid: 639 + components: + - type: MetaData + name: ЛКП Церковь + - type: Transform + pos: -46.5,-5.5 + parent: 2 + - uid: 640 + components: + - type: MetaData + name: ЛКП Библиотека + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,8.5 + parent: 2 + - uid: 641 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 2 + - uid: 642 + components: + - type: MetaData + name: ЛКП Робототехника + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-17.5 + parent: 2 + - uid: 643 + components: + - type: MetaData + name: ЛКП Верфь + - type: Transform + pos: -31.5,38.5 + parent: 2 + - uid: 644 + components: + - type: MetaData + name: ЛКП Мед отдел вирусология + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,32.5 + parent: 2 + - uid: 645 + components: + - type: MetaData + name: ЛКП Детектив + - type: Transform + pos: 20.5,9.5 + parent: 2 + - uid: 646 + components: + - type: MetaData + name: ЛКП Техи НИО + - type: Transform + pos: -10.5,-24.5 + parent: 2 + - uid: 647 + components: + - type: MetaData + name: ЛКП Мед отдел 2 + - type: Transform + rot: -1.5707963267948966 rad + pos: 15.5,19.5 + parent: 2 + - uid: 648 + components: + - type: MetaData + name: ЛКП Бриг стрельбище + - type: Transform + pos: 42.5,-10.5 + parent: 2 + - uid: 649 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,16.5 + parent: 2 + - uid: 650 + components: + - type: MetaData + name: ЛКП Мед отдел + - type: Transform + pos: 0.5,14.5 + parent: 2 + - uid: 651 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,19.5 + parent: 2 + - uid: 652 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 653 + components: + - type: MetaData + name: ЛКП Хранилище + - type: Transform + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - uid: 654 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 39.5,-9.5 + parent: 2 + - uid: 655 + components: + - type: MetaData + name: ЛКП Оружейная + - type: Transform + pos: 43.5,-7.5 + parent: 2 + - uid: 656 + components: + - type: Transform + pos: 13.5,-14.5 + parent: 2 + - uid: 657 + components: + - type: MetaData + name: ЛКП Кухня + - type: Transform + rot: -1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 658 + components: + - type: MetaData + name: ЛКП Генератор гравитации + - type: Transform + rot: -1.5707963267948966 rad + pos: -113.5,24.5 + parent: 2 + - uid: 659 + components: + - type: MetaData + name: ЛКП ТЭГ + - type: Transform + rot: 1.5707963267948966 rad + pos: -116.5,-14.5 + parent: 2 + - uid: 660 + components: + - type: MetaData + name: ЛКП Гидропоника + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-10.5 + parent: 2 + - uid: 661 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-7.5 + parent: 2 + - uid: 662 + components: + - type: MetaData + name: ЛКП Атмоссия раздевалка + - type: Transform + pos: -93.5,-3.5 + parent: 2 + - uid: 663 + components: + - type: MetaData + name: ЛКП Жральня НИО + - type: Transform + rot: 1.5707963267948966 rad + pos: 1.5,-18.5 + parent: 2 + - uid: 664 + components: + - type: MetaData + name: ЛКП Генератор Аномалий + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,-31.5 + parent: 2 + - uid: 665 + components: + - type: MetaData + name: ЛКП Ксеноархеология + - type: Transform + pos: -4.5,-37.5 + parent: 2 + - uid: 666 + components: + - type: MetaData + name: ЛКП Кломиммузная + - type: Transform + rot: -1.5707963267948966 rad + pos: -36.5,-5.5 + parent: 2 + - uid: 23953 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 23919 + - uid: 24345 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-3.5 + parent: 24340 + - uid: 24551 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -8.5,-25.5 + parent: 24450 + - uid: 24552 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 24450 + - uid: 24553 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 24450 + - uid: 27275 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 27260 + - uid: 27276 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 27260 +- proto: APCElectronics + entities: + - uid: 667 + components: + - type: Transform + pos: -98.65839,-10.332106 + parent: 2 + - uid: 668 + components: + - type: Transform + pos: -98.34589,-10.613356 + parent: 2 +- proto: APCHighCapacity + entities: + - uid: 669 + components: + - type: MetaData + name: ЛКП Мостик + - type: Transform + rot: 1.5707963267948966 rad + pos: 50.5,5.5 + parent: 2 + - uid: 670 + components: + - type: MetaData + name: ЛКП Капитан + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,12.5 + parent: 2 + - uid: 671 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 +- proto: APCHyperCapacity + entities: + - uid: 672 + components: + - type: MetaData + name: ЛКП Двигательный зал + - type: Transform + pos: -130.5,-4.5 + parent: 2 + - uid: 673 + components: + - type: MetaData + name: ЛКП Атмоссия + - type: Transform + pos: -100.5,-11.5 + parent: 2 + - uid: 674 + components: + - type: MetaData + name: ЛКП Атмоссия 2 + - type: Transform + pos: -83.5,-10.5 + parent: 2 + - uid: 23954 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,1.5 + parent: 23919 +- proto: APCSuperCapacity + entities: + - uid: 675 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 52.5,-23.5 + parent: 2 + - uid: 676 + components: + - type: MetaData + name: ЛКП Пермабриг + - type: Transform + rot: 1.5707963267948966 rad + pos: 37.5,-18.5 + parent: 2 + - uid: 23723 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 23711 +- proto: ArrivalsShuttleTimer + entities: + - uid: 677 + components: + - type: Transform + pos: -68.5,38.5 + parent: 2 + - uid: 678 + components: + - type: Transform + pos: -82.5,29.5 + parent: 2 + - uid: 679 + components: + - type: Transform + pos: -68.5,29.5 + parent: 2 + - uid: 680 + components: + - type: Transform + pos: -82.5,38.5 + parent: 2 +- proto: ArrowRegular + entities: + - uid: 24554 + components: + - type: Transform + pos: -30.792511,-0.52710724 + parent: 24450 + - uid: 24555 + components: + - type: Transform + pos: -30.417511,-0.55835724 + parent: 24450 + - uid: 24556 + components: + - type: Transform + pos: -30.605011,-0.58960724 + parent: 24450 +- proto: Ashtray + entities: + - uid: 681 + components: + - type: Transform + pos: -76.28542,-2.3884234 + parent: 2 +- proto: AsteroidRock + entities: + - uid: 682 + components: + - type: Transform + pos: 41.5,30.5 + parent: 2 + - uid: 683 + components: + - type: Transform + pos: 40.5,29.5 + parent: 2 + - uid: 684 + components: + - type: Transform + pos: 41.5,29.5 + parent: 2 + - uid: 685 + components: + - type: Transform + pos: 28.5,42.5 + parent: 2 + - uid: 686 + components: + - type: Transform + pos: 32.5,42.5 + parent: 2 + - uid: 687 + components: + - type: Transform + pos: 32.5,39.5 + parent: 2 + - uid: 688 + components: + - type: Transform + pos: 31.5,41.5 + parent: 2 + - uid: 689 + components: + - type: Transform + pos: 30.5,40.5 + parent: 2 + - uid: 690 + components: + - type: Transform + pos: 31.5,38.5 + parent: 2 + - uid: 691 + components: + - type: Transform + pos: 32.5,38.5 + parent: 2 + - uid: 692 + components: + - type: Transform + pos: 30.5,38.5 + parent: 2 + - uid: 693 + components: + - type: Transform + pos: 32.5,40.5 + parent: 2 + - uid: 694 + components: + - type: Transform + pos: 30.5,39.5 + parent: 2 + - uid: 695 + components: + - type: Transform + pos: 27.5,43.5 + parent: 2 + - uid: 696 + components: + - type: Transform + pos: 28.5,43.5 + parent: 2 + - uid: 24557 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 24450 + - uid: 24558 + components: + - type: Transform + pos: -18.5,-16.5 + parent: 24450 + - uid: 24559 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24560 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24561 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 24450 + - uid: 24562 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 24450 + - uid: 24563 + components: + - type: Transform + pos: -6.5,-10.5 + parent: 24450 + - uid: 24564 + components: + - type: Transform + pos: -18.5,-3.5 + parent: 24450 + - uid: 24565 + components: + - type: Transform + pos: -32.5,-0.5 + parent: 24450 + - uid: 24566 + components: + - type: Transform + pos: 1.5,-11.5 + parent: 24450 + - uid: 24567 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 24450 + - uid: 24568 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24569 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24570 + components: + - type: Transform + pos: 0.5,-10.5 + parent: 24450 + - uid: 24571 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24572 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24573 + components: + - type: Transform + pos: -0.5,-10.5 + parent: 24450 + - uid: 24574 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 24450 + - uid: 24575 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 24450 + - uid: 24576 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24577 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24578 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24579 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24580 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 24450 + - uid: 24581 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 24450 + - uid: 24582 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 24450 + - uid: 24583 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 24450 + - uid: 24584 + components: + - type: Transform + pos: 3.5,-10.5 + parent: 24450 + - uid: 24585 + components: + - type: Transform + pos: 4.5,-10.5 + parent: 24450 + - uid: 24586 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 24450 + - uid: 24587 + components: + - type: Transform + pos: 5.5,-9.5 + parent: 24450 + - uid: 24588 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 24450 + - uid: 24589 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 24450 + - uid: 24590 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24591 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24592 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24593 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24594 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24595 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24596 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24597 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24598 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24599 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 24450 + - uid: 24600 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 24450 + - uid: 24601 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 24450 + - uid: 24602 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 24450 + - uid: 24603 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24604 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24605 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 24450 + - uid: 24606 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24607 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24608 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24609 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 24450 + - uid: 24610 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24611 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24612 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24613 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 24450 + - uid: 24614 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24615 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24616 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 24450 + - uid: 24617 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24618 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 24450 + - uid: 24619 + components: + - type: Transform + pos: 5.5,-7.5 + parent: 24450 + - uid: 24620 + components: + - type: Transform + pos: 5.5,-6.5 + parent: 24450 + - uid: 24621 + components: + - type: Transform + pos: 5.5,-5.5 + parent: 24450 + - uid: 24622 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24623 + components: + - type: Transform + pos: 4.5,-7.5 + parent: 24450 + - uid: 24624 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 24450 + - uid: 24625 + components: + - type: Transform + pos: 4.5,-5.5 + parent: 24450 + - uid: 24626 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24627 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 24450 + - uid: 24628 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24629 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 24450 + - uid: 24630 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24631 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 24450 + - uid: 24632 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 24450 + - uid: 24633 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24634 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 24450 + - uid: 24635 + components: + - type: Transform + pos: 1.5,-4.5 + parent: 24450 + - uid: 24636 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 24450 + - uid: 24637 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 24450 + - uid: 24638 + components: + - type: Transform + pos: 2.5,-4.5 + parent: 24450 + - uid: 24639 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24640 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 24450 + - uid: 24641 + components: + - type: Transform + pos: -19.5,-14.5 + parent: 24450 + - uid: 24642 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 24450 + - uid: 24643 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 24450 + - uid: 24644 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 24450 + - uid: 24645 + components: + - type: Transform + pos: -28.5,-8.5 + parent: 24450 + - uid: 24646 + components: + - type: Transform + pos: -28.5,-9.5 + parent: 24450 + - uid: 24647 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 24450 + - uid: 24648 + components: + - type: Transform + pos: -26.5,-10.5 + parent: 24450 + - uid: 24649 + components: + - type: Transform + pos: -27.5,-10.5 + parent: 24450 + - uid: 24650 + components: + - type: Transform + pos: -26.5,-9.5 + parent: 24450 + - uid: 24651 + components: + - type: Transform + pos: -25.5,-11.5 + parent: 24450 + - uid: 24652 + components: + - type: Transform + pos: -25.5,-10.5 + parent: 24450 + - uid: 24653 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 24450 + - uid: 24654 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 24450 + - uid: 24655 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 24450 + - uid: 24656 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 24450 + - uid: 24657 + components: + - type: Transform + pos: -22.5,-13.5 + parent: 24450 + - uid: 24658 + components: + - type: Transform + pos: -22.5,-12.5 + parent: 24450 + - uid: 24659 + components: + - type: Transform + pos: -22.5,-11.5 + parent: 24450 + - uid: 24660 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 24450 + - uid: 24661 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 24450 + - uid: 24662 + components: + - type: Transform + pos: -23.5,-13.5 + parent: 24450 + - uid: 24663 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 24450 + - uid: 24664 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 24450 + - uid: 24665 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 24450 + - uid: 24666 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 24450 + - uid: 24667 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 24450 + - uid: 24668 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 24450 + - uid: 24669 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 24450 + - uid: 24670 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 24450 + - uid: 24671 + components: + - type: Transform + pos: -25.5,-8.5 + parent: 24450 + - uid: 24672 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 24450 + - uid: 24673 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 24450 + - uid: 24674 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 24450 + - uid: 24675 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 24450 + - uid: 24676 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 24450 + - uid: 24677 + components: + - type: Transform + pos: -25.5,-6.5 + parent: 24450 + - uid: 24678 + components: + - type: Transform + pos: -24.5,-5.5 + parent: 24450 + - uid: 24679 + components: + - type: Transform + pos: -22.5,-8.5 + parent: 24450 + - uid: 24680 + components: + - type: Transform + pos: -21.5,-8.5 + parent: 24450 + - uid: 24681 + components: + - type: Transform + pos: -20.5,-8.5 + parent: 24450 + - uid: 24682 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 24450 + - uid: 24683 + components: + - type: Transform + pos: -20.5,-6.5 + parent: 24450 + - uid: 24684 + components: + - type: Transform + pos: -20.5,-7.5 + parent: 24450 + - uid: 24685 + components: + - type: Transform + pos: -20.5,-4.5 + parent: 24450 + - uid: 24686 + components: + - type: Transform + pos: -21.5,-5.5 + parent: 24450 + - uid: 24687 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 24450 + - uid: 24688 + components: + - type: Transform + pos: -21.5,-4.5 + parent: 24450 + - uid: 24689 + components: + - type: Transform + pos: -21.5,-7.5 + parent: 24450 + - uid: 24690 + components: + - type: Transform + pos: -22.5,-5.5 + parent: 24450 + - uid: 24691 + components: + - type: Transform + pos: -22.5,-4.5 + parent: 24450 + - uid: 24692 + components: + - type: Transform + pos: -22.5,-3.5 + parent: 24450 + - uid: 24693 + components: + - type: Transform + pos: -23.5,-3.5 + parent: 24450 + - uid: 24694 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 24450 + - uid: 24695 + components: + - type: Transform + pos: -23.5,-5.5 + parent: 24450 + - uid: 24696 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 24450 + - uid: 24697 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 24450 + - uid: 24698 + components: + - type: Transform + pos: -25.5,-3.5 + parent: 24450 + - uid: 24699 + components: + - type: Transform + pos: -26.5,-2.5 + parent: 24450 + - uid: 24700 + components: + - type: Transform + pos: -27.5,-2.5 + parent: 24450 + - uid: 24701 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 24450 + - uid: 24702 + components: + - type: Transform + pos: -27.5,-3.5 + parent: 24450 + - uid: 24703 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 24450 + - uid: 24704 + components: + - type: Transform + pos: -26.5,-5.5 + parent: 24450 + - uid: 24705 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 24450 + - uid: 24706 + components: + - type: Transform + pos: -28.5,-4.5 + parent: 24450 + - uid: 24707 + components: + - type: Transform + pos: -27.5,-4.5 + parent: 24450 + - uid: 24708 + components: + - type: Transform + pos: -28.5,-5.5 + parent: 24450 + - uid: 24709 + components: + - type: Transform + pos: -28.5,-6.5 + parent: 24450 + - uid: 24710 + components: + - type: Transform + pos: -28.5,-7.5 + parent: 24450 + - uid: 24711 + components: + - type: Transform + pos: -27.5,-5.5 + parent: 24450 + - uid: 24712 + components: + - type: Transform + pos: -27.5,-6.5 + parent: 24450 + - uid: 24713 + components: + - type: Transform + pos: -27.5,-7.5 + parent: 24450 + - uid: 24714 + components: + - type: Transform + pos: -24.5,-6.5 + parent: 24450 + - uid: 24715 + components: + - type: Transform + pos: -24.5,-7.5 + parent: 24450 + - uid: 24716 + components: + - type: Transform + pos: -24.5,-8.5 + parent: 24450 + - uid: 24717 + components: + - type: Transform + pos: -24.5,-9.5 + parent: 24450 + - uid: 24718 + components: + - type: Transform + pos: -24.5,-10.5 + parent: 24450 + - uid: 24719 + components: + - type: Transform + pos: -24.5,-11.5 + parent: 24450 + - uid: 24720 + components: + - type: Transform + pos: -24.5,-12.5 + parent: 24450 + - uid: 24721 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 24450 + - uid: 24722 + components: + - type: Transform + pos: -23.5,-7.5 + parent: 24450 + - uid: 24723 + components: + - type: Transform + pos: -23.5,-8.5 + parent: 24450 + - uid: 24724 + components: + - type: Transform + pos: -23.5,-9.5 + parent: 24450 + - uid: 24725 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 24450 + - uid: 24726 + components: + - type: Transform + pos: -23.5,-11.5 + parent: 24450 + - uid: 24727 + components: + - type: Transform + pos: -23.5,-12.5 + parent: 24450 + - uid: 24728 + components: + - type: Transform + pos: -23.5,-6.5 + parent: 24450 + - uid: 24729 + components: + - type: Transform + pos: -22.5,-6.5 + parent: 24450 + - uid: 24730 + components: + - type: Transform + pos: -21.5,-6.5 + parent: 24450 + - uid: 24731 + components: + - type: Transform + pos: -23.5,-10.5 + parent: 24450 + - uid: 24732 + components: + - type: Transform + pos: -22.5,-10.5 + parent: 24450 + - uid: 24733 + components: + - type: Transform + pos: -22.5,-9.5 + parent: 24450 + - uid: 24734 + components: + - type: Transform + pos: -29.5,-6.5 + parent: 24450 + - uid: 24735 + components: + - type: Transform + pos: -30.5,-5.5 + parent: 24450 + - uid: 24736 + components: + - type: Transform + pos: -30.5,-4.5 + parent: 24450 + - uid: 24737 + components: + - type: Transform + pos: -29.5,-4.5 + parent: 24450 + - uid: 24738 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 24450 + - uid: 24739 + components: + - type: Transform + pos: -30.5,-2.5 + parent: 24450 + - uid: 24740 + components: + - type: Transform + pos: -29.5,-2.5 + parent: 24450 + - uid: 24741 + components: + - type: Transform + pos: -28.5,-2.5 + parent: 24450 + - uid: 24742 + components: + - type: Transform + pos: -30.5,-3.5 + parent: 24450 + - uid: 24743 + components: + - type: Transform + pos: -26.5,-3.5 + parent: 24450 + - uid: 24744 + components: + - type: Transform + pos: -24.5,-4.5 + parent: 24450 + - uid: 24745 + components: + - type: Transform + pos: -29.5,-1.5 + parent: 24450 + - uid: 24746 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 24450 + - uid: 24747 + components: + - type: Transform + pos: -33.5,-0.5 + parent: 24450 + - uid: 24748 + components: + - type: Transform + pos: -34.5,-0.5 + parent: 24450 + - uid: 24749 + components: + - type: Transform + pos: -35.5,-0.5 + parent: 24450 + - uid: 24750 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 24450 + - uid: 24751 + components: + - type: Transform + pos: 6.5,-5.5 + parent: 24450 + - uid: 24752 + components: + - type: Transform + pos: -36.5,0.5 + parent: 24450 + - uid: 24753 + components: + - type: Transform + pos: -36.5,-0.5 + parent: 24450 + - uid: 24754 + components: + - type: Transform + pos: -37.5,3.5 + parent: 24450 + - uid: 24755 + components: + - type: Transform + pos: -37.5,4.5 + parent: 24450 + - uid: 24756 + components: + - type: Transform + pos: -37.5,5.5 + parent: 24450 + - uid: 24757 + components: + - type: Transform + pos: -37.5,7.5 + parent: 24450 + - uid: 24758 + components: + - type: Transform + pos: -37.5,8.5 + parent: 24450 + - uid: 24759 + components: + - type: Transform + pos: -9.5,-12.5 + parent: 24450 + - uid: 24760 + components: + - type: Transform + pos: -37.5,12.5 + parent: 24450 + - uid: 24761 + components: + - type: Transform + pos: -9.5,-11.5 + parent: 24450 + - uid: 24762 + components: + - type: Transform + pos: -10.5,-10.5 + parent: 24450 + - uid: 24763 + components: + - type: Transform + pos: -8.5,-10.5 + parent: 24450 + - uid: 24764 + components: + - type: Transform + pos: -8.5,-11.5 + parent: 24450 + - uid: 24765 + components: + - type: Transform + pos: -9.5,-10.5 + parent: 24450 + - uid: 24766 + components: + - type: Transform + pos: -9.5,-8.5 + parent: 24450 + - uid: 24767 + components: + - type: Transform + pos: -8.5,-9.5 + parent: 24450 + - uid: 24768 + components: + - type: Transform + pos: -9.5,-9.5 + parent: 24450 + - uid: 24769 + components: + - type: Transform + pos: -8.5,-8.5 + parent: 24450 + - uid: 24770 + components: + - type: Transform + pos: -10.5,-7.5 + parent: 24450 + - uid: 24771 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 24450 + - uid: 24772 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 24450 + - uid: 24773 + components: + - type: Transform + pos: -8.5,-6.5 + parent: 24450 + - uid: 24774 + components: + - type: Transform + pos: -3.5,-8.5 + parent: 24450 + - uid: 24775 + components: + - type: Transform + pos: -2.5,-8.5 + parent: 24450 + - uid: 24776 + components: + - type: Transform + pos: -2.5,-7.5 + parent: 24450 + - uid: 24777 + components: + - type: Transform + pos: -2.5,-9.5 + parent: 24450 + - uid: 24778 + components: + - type: Transform + pos: -1.5,-10.5 + parent: 24450 + - uid: 24779 + components: + - type: Transform + pos: -3.5,-10.5 + parent: 24450 + - uid: 24780 + components: + - type: Transform + pos: -2.5,-10.5 + parent: 24450 + - uid: 24781 + components: + - type: Transform + pos: -3.5,-14.5 + parent: 24450 + - uid: 24782 + components: + - type: Transform + pos: -2.5,-14.5 + parent: 24450 + - uid: 24783 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 24450 + - uid: 24784 + components: + - type: Transform + pos: -11.5,-13.5 + parent: 24450 + - uid: 24785 + components: + - type: Transform + pos: -12.5,-15.5 + parent: 24450 + - uid: 24786 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 24450 + - uid: 24787 + components: + - type: Transform + pos: -13.5,-15.5 + parent: 24450 + - uid: 24788 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 24450 + - uid: 24789 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 24450 + - uid: 24790 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 24450 + - uid: 24791 + components: + - type: Transform + pos: -16.5,-15.5 + parent: 24450 + - uid: 24792 + components: + - type: Transform + pos: -16.5,-14.5 + parent: 24450 + - uid: 24793 + components: + - type: Transform + pos: -20.5,-17.5 + parent: 24450 + - uid: 24794 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 24450 + - uid: 24795 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 24450 + - uid: 24796 + components: + - type: Transform + pos: -22.5,-15.5 + parent: 24450 + - uid: 24797 + components: + - type: Transform + pos: -21.5,-15.5 + parent: 24450 + - uid: 24798 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 24450 + - uid: 24799 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 24450 + - uid: 24800 + components: + - type: Transform + pos: -20.5,-15.5 + parent: 24450 + - uid: 24801 + components: + - type: Transform + pos: -19.5,-15.5 + parent: 24450 + - uid: 24802 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 24450 + - uid: 24803 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 24450 + - uid: 24804 + components: + - type: Transform + pos: -18.5,-19.5 + parent: 24450 + - uid: 24805 + components: + - type: Transform + pos: -17.5,-19.5 + parent: 24450 + - uid: 24806 + components: + - type: Transform + pos: -17.5,-18.5 + parent: 24450 + - uid: 24807 + components: + - type: Transform + pos: -9.5,-19.5 + parent: 24450 + - uid: 24808 + components: + - type: Transform + pos: -9.5,-18.5 + parent: 24450 + - uid: 24809 + components: + - type: Transform + pos: -1.5,-2.5 + parent: 24450 + - uid: 24810 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 24450 + - uid: 24811 + components: + - type: Transform + pos: 3.5,-2.5 + parent: 24450 + - uid: 24812 + components: + - type: Transform + pos: -0.5,-4.5 + parent: 24450 + - uid: 24813 + components: + - type: Transform + pos: -2.5,-4.5 + parent: 24450 + - uid: 24814 + components: + - type: Transform + pos: -1.5,-3.5 + parent: 24450 + - uid: 24815 + components: + - type: Transform + pos: -1.5,-6.5 + parent: 24450 + - uid: 24816 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 24450 + - uid: 24817 + components: + - type: Transform + pos: -1.5,-7.5 + parent: 24450 + - uid: 24818 + components: + - type: Transform + pos: -1.5,-9.5 + parent: 24450 + - uid: 24819 + components: + - type: Transform + pos: -1.5,-4.5 + parent: 24450 + - uid: 24820 + components: + - type: Transform + pos: -1.5,-5.5 + parent: 24450 + - uid: 24821 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 24450 + - uid: 24822 + components: + - type: Transform + pos: -4.5,-3.5 + parent: 24450 + - uid: 24823 + components: + - type: Transform + pos: -5.5,-3.5 + parent: 24450 + - uid: 24824 + components: + - type: Transform + pos: -6.5,-3.5 + parent: 24450 + - uid: 24825 + components: + - type: Transform + pos: -6.5,-4.5 + parent: 24450 + - uid: 24826 + components: + - type: Transform + pos: -3.5,-6.5 + parent: 24450 + - uid: 24827 + components: + - type: Transform + pos: -3.5,-5.5 + parent: 24450 + - uid: 24828 + components: + - type: Transform + pos: -2.5,-6.5 + parent: 24450 + - uid: 24829 + components: + - type: Transform + pos: 6.5,-4.5 + parent: 24450 + - uid: 24830 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24831 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 24450 + - uid: 24832 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 24450 + - uid: 24833 + components: + - type: Transform + pos: 5.5,-2.5 + parent: 24450 + - uid: 24834 + components: + - type: Transform + pos: 4.5,-2.5 + parent: 24450 + - uid: 24835 + components: + - type: Transform + pos: 4.5,-3.5 + parent: 24450 + - uid: 24836 + components: + - type: Transform + pos: 4.5,-4.5 + parent: 24450 + - uid: 24837 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 24450 + - uid: 24838 + components: + - type: Transform + pos: 2.5,-3.5 + parent: 24450 + - uid: 24839 + components: + - type: Transform + pos: 2.5,-2.5 + parent: 24450 + - uid: 24840 + components: + - type: Transform + pos: 1.5,-2.5 + parent: 24450 + - uid: 24841 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 24450 + - uid: 24842 + components: + - type: Transform + pos: 0.5,-3.5 + parent: 24450 + - uid: 24843 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 24450 + - uid: 24844 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 24450 + - uid: 24845 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 24450 + - uid: 24846 + components: + - type: Transform + pos: 9.5,-0.5 + parent: 24450 + - uid: 24847 + components: + - type: Transform + pos: 10.5,-0.5 + parent: 24450 + - uid: 24848 + components: + - type: Transform + pos: 11.5,-0.5 + parent: 24450 + - uid: 24849 + components: + - type: Transform + pos: 12.5,0.5 + parent: 24450 + - uid: 24850 + components: + - type: Transform + pos: 13.5,3.5 + parent: 24450 + - uid: 24851 + components: + - type: Transform + pos: 13.5,4.5 + parent: 24450 + - uid: 24852 + components: + - type: Transform + pos: 13.5,5.5 + parent: 24450 + - uid: 24853 + components: + - type: Transform + pos: 13.5,9.5 + parent: 24450 + - uid: 24854 + components: + - type: Transform + pos: 13.5,13.5 + parent: 24450 + - uid: 24855 + components: + - type: Transform + pos: 13.5,12.5 + parent: 24450 + - uid: 24856 + components: + - type: Transform + pos: 13.5,1.5 + parent: 24450 + - uid: 24857 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24858 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 24450 + - uid: 24859 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 24450 + - uid: 24860 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 24450 + - uid: 24861 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24862 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24863 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 24450 + - uid: 24864 + components: + - type: Transform + pos: 6.5,-2.5 + parent: 24450 + - uid: 24865 + components: + - type: Transform + pos: 6.5,-3.5 + parent: 24450 + - uid: 24866 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 24450 + - uid: 24867 + components: + - type: Transform + pos: 8.5,-0.5 + parent: 24450 + - uid: 24868 + components: + - type: Transform + pos: 7.5,-0.5 + parent: 24450 + - uid: 24869 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24870 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24871 + components: + - type: Transform + pos: 7.5,-1.5 + parent: 24450 + - uid: 24872 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24873 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24874 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 24450 + - uid: 24875 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 24450 + - uid: 24876 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 24450 + - uid: 24877 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24878 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24879 + components: + - type: Transform + pos: -19.5,-8.5 + parent: 24450 + - uid: 24880 + components: + - type: Transform + pos: -18.5,-6.5 + parent: 24450 + - uid: 24881 + components: + - type: Transform + pos: -18.5,-4.5 + parent: 24450 + - uid: 24882 + components: + - type: Transform + pos: -20.5,-3.5 + parent: 24450 + - uid: 24883 + components: + - type: Transform + pos: -16.5,-5.5 + parent: 24450 + - uid: 24884 + components: + - type: Transform + pos: -21.5,-3.5 + parent: 24450 + - uid: 24885 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 24450 + - uid: 24886 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 24450 + - uid: 24887 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24888 + components: + - type: Transform + pos: -17.5,-3.5 + parent: 24450 + - uid: 24889 + components: + - type: Transform + pos: -22.5,-2.5 + parent: 24450 + - uid: 24890 + components: + - type: Transform + pos: -37.5,10.5 + parent: 24450 + - uid: 24891 + components: + - type: Transform + pos: -9.5,-17.5 + parent: 24450 + - uid: 24892 + components: + - type: Transform + pos: -23.5,-2.5 + parent: 24450 + - uid: 24893 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24894 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24895 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24896 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24897 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 24450 + - uid: 24898 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 24450 + - uid: 24899 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 24450 + - uid: 24900 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 24450 + - uid: 24901 + components: + - type: Transform + pos: -18.5,-17.5 + parent: 24450 + - uid: 24902 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 24450 + - uid: 24903 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 24450 + - uid: 24904 + components: + - type: Transform + pos: -19.5,-17.5 + parent: 24450 + - uid: 24905 + components: + - type: Transform + pos: -18.5,-18.5 + parent: 24450 + - uid: 24906 + components: + - type: Transform + pos: -19.5,-18.5 + parent: 24450 + - uid: 24907 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 24450 + - uid: 24908 + components: + - type: Transform + pos: -4.5,-8.5 + parent: 24450 + - uid: 24909 + components: + - type: Transform + pos: -4.5,-7.5 + parent: 24450 + - uid: 24910 + components: + - type: Transform + pos: -4.5,-6.5 + parent: 24450 + - uid: 24911 + components: + - type: Transform + pos: -3.5,-7.5 + parent: 24450 + - uid: 24912 + components: + - type: Transform + pos: -6.5,-5.5 + parent: 24450 + - uid: 24913 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24914 + components: + - type: Transform + pos: -5.5,-5.5 + parent: 24450 + - uid: 24915 + components: + - type: Transform + pos: -5.5,-4.5 + parent: 24450 + - uid: 24916 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 24450 + - uid: 24917 + components: + - type: Transform + pos: -7.5,-6.5 + parent: 24450 + - uid: 24918 + components: + - type: Transform + pos: -7.5,-5.5 + parent: 24450 + - uid: 24919 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24920 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 24450 + - uid: 24921 + components: + - type: Transform + pos: -4.5,-9.5 + parent: 24450 + - uid: 24922 + components: + - type: Transform + pos: -5.5,-9.5 + parent: 24450 + - uid: 24923 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24924 + components: + - type: Transform + pos: -5.5,-6.5 + parent: 24450 + - uid: 24925 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24926 + components: + - type: Transform + pos: -6.5,-7.5 + parent: 24450 + - uid: 24927 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 24450 + - uid: 24928 + components: + - type: Transform + pos: -6.5,-9.5 + parent: 24450 + - uid: 24929 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24930 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24931 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24932 + components: + - type: Transform + pos: -5.5,-7.5 + parent: 24450 + - uid: 24933 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 24450 + - uid: 24934 + components: + - type: Transform + pos: -6.5,-8.5 + parent: 24450 + - uid: 24935 + components: + - type: Transform + pos: -6.5,-6.5 + parent: 24450 + - uid: 24936 + components: + - type: Transform + pos: -11.5,-8.5 + parent: 24450 + - uid: 24937 + components: + - type: Transform + pos: -11.5,-7.5 + parent: 24450 + - uid: 24938 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 24450 + - uid: 24939 + components: + - type: Transform + pos: -10.5,-8.5 + parent: 24450 + - uid: 24940 + components: + - type: Transform + pos: -10.5,-9.5 + parent: 24450 + - uid: 24941 + components: + - type: Transform + pos: -12.5,-6.5 + parent: 24450 + - uid: 24942 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 24450 + - uid: 24943 + components: + - type: Transform + pos: -14.5,-6.5 + parent: 24450 + - uid: 24944 + components: + - type: Transform + pos: -20.5,-5.5 + parent: 24450 + - uid: 24945 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 24450 + - uid: 24946 + components: + - type: Transform + pos: -3.5,-11.5 + parent: 24450 + - uid: 24947 + components: + - type: Transform + pos: -3.5,-12.5 + parent: 24450 + - uid: 24948 + components: + - type: Transform + pos: -2.5,-12.5 + parent: 24450 + - uid: 24949 + components: + - type: Transform + pos: -3.5,-13.5 + parent: 24450 + - uid: 24950 + components: + - type: Transform + pos: -2.5,-13.5 + parent: 24450 + - uid: 24951 + components: + - type: Transform + pos: -1.5,-14.5 + parent: 24450 + - uid: 24952 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 24450 + - uid: 24953 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 24450 + - uid: 24954 + components: + - type: Transform + pos: -19.5,-4.5 + parent: 24450 + - uid: 24955 + components: + - type: Transform + pos: -19.5,-6.5 + parent: 24450 + - uid: 24956 + components: + - type: Transform + pos: -19.5,-5.5 + parent: 24450 + - uid: 24957 + components: + - type: Transform + pos: -0.5,-5.5 + parent: 24450 + - uid: 24958 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24959 + components: + - type: Transform + pos: 0.5,-5.5 + parent: 24450 + - uid: 24960 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24961 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 24450 + - uid: 24962 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 24450 + - uid: 24963 + components: + - type: Transform + pos: 2.5,-5.5 + parent: 24450 + - uid: 24964 + components: + - type: Transform + pos: 3.5,-6.5 + parent: 24450 + - uid: 24965 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 24450 + - uid: 24966 + components: + - type: Transform + pos: -0.5,-6.5 + parent: 24450 + - uid: 24967 + components: + - type: Transform + pos: -0.5,-7.5 + parent: 24450 + - uid: 24968 + components: + - type: Transform + pos: -0.5,-8.5 + parent: 24450 + - uid: 24969 + components: + - type: Transform + pos: -0.5,-9.5 + parent: 24450 + - uid: 24970 + components: + - type: Transform + pos: 0.5,-6.5 + parent: 24450 + - uid: 24971 + components: + - type: Transform + pos: 0.5,-7.5 + parent: 24450 + - uid: 24972 + components: + - type: Transform + pos: 0.5,-8.5 + parent: 24450 + - uid: 24973 + components: + - type: Transform + pos: 0.5,-9.5 + parent: 24450 + - uid: 24974 + components: + - type: Transform + pos: 1.5,-6.5 + parent: 24450 + - uid: 24975 + components: + - type: Transform + pos: 1.5,-7.5 + parent: 24450 + - uid: 24976 + components: + - type: Transform + pos: 1.5,-8.5 + parent: 24450 + - uid: 24977 + components: + - type: Transform + pos: 1.5,-9.5 + parent: 24450 + - uid: 24978 + components: + - type: Transform + pos: 2.5,-8.5 + parent: 24450 + - uid: 24979 + components: + - type: Transform + pos: 2.5,-9.5 + parent: 24450 + - uid: 24980 + components: + - type: Transform + pos: 3.5,-8.5 + parent: 24450 + - uid: 24981 + components: + - type: Transform + pos: 3.5,-9.5 + parent: 24450 + - uid: 24982 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 24450 + - uid: 24983 + components: + - type: Transform + pos: 4.5,-9.5 + parent: 24450 + - uid: 24984 + components: + - type: Transform + pos: 4.5,-6.5 + parent: 24450 + - uid: 24985 + components: + - type: Transform + pos: 1.5,-5.5 + parent: 24450 + - uid: 24986 + components: + - type: Transform + pos: 1.5,-3.5 + parent: 24450 + - uid: 24987 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 24450 + - uid: 24988 + components: + - type: Transform + pos: 3.5,-3.5 + parent: 24450 + - uid: 24989 + components: + - type: Transform + pos: -0.5,-2.5 + parent: 24450 + - uid: 24990 + components: + - type: Transform + pos: -0.5,-3.5 + parent: 24450 + - uid: 24991 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 24450 + - uid: 24992 + components: + - type: Transform + pos: 7.5,-2.5 + parent: 24450 + - uid: 24993 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 24450 + - uid: 24994 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 24450 + - uid: 24995 + components: + - type: Transform + pos: -19.5,-3.5 + parent: 24450 + - uid: 24996 + components: + - type: Transform + pos: -30.5,-1.5 + parent: 24450 + - uid: 24997 + components: + - type: Transform + pos: -31.5,-0.5 + parent: 24450 + - uid: 24998 + components: + - type: Transform + pos: -31.5,-1.5 + parent: 24450 +- proto: AtmosDeviceFanTiny + entities: + - uid: 697 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,42.5 + parent: 2 + - uid: 698 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-8.5 + parent: 2 + - uid: 699 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 46.5,21.5 + parent: 2 + - uid: 700 + components: + - type: Transform + pos: -84.5,48.5 + parent: 2 + - uid: 701 + components: + - type: Transform + pos: -16.5,-7.5 + parent: 2 + - uid: 702 + components: + - type: Transform + pos: -13.5,-6.5 + parent: 2 + - uid: 703 + components: + - type: Transform + pos: -70.5,30.5 + parent: 2 + - uid: 704 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -56.5,49.5 + parent: 2 + - uid: 705 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -58.5,49.5 + parent: 2 + - uid: 706 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -64.5,49.5 + parent: 2 + - uid: 707 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -66.5,49.5 + parent: 2 + - uid: 708 + components: + - type: Transform + pos: -62.5,-21.5 + parent: 2 + - uid: 709 + components: + - type: Transform + pos: -60.5,-21.5 + parent: 2 + - uid: 710 + components: + - type: Transform + pos: -47.5,-18.5 + parent: 2 + - uid: 711 + components: + - type: Transform + pos: -70.5,37.5 + parent: 2 + - uid: 712 + components: + - type: Transform + pos: -80.5,37.5 + parent: 2 + - uid: 713 + components: + - type: Transform + pos: -80.5,30.5 + parent: 2 + - uid: 714 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,44.5 + parent: 2 + - uid: 715 + components: + - type: Transform + pos: 49.5,20.5 + parent: 2 + - uid: 716 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,38.5 + parent: 2 + - uid: 717 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,38.5 + parent: 2 + - uid: 718 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 719 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-23.5 + parent: 2 + - uid: 720 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-25.5 + parent: 2 + - uid: 721 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 56.5,4.5 + parent: 2 + - uid: 722 + components: + - type: Transform + pos: -108.5,22.5 + parent: 2 + - uid: 723 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -30.5,42.5 + parent: 2 + - uid: 724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,35.5 + parent: 2 + - uid: 725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,38.5 + parent: 2 + - uid: 726 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,41.5 + parent: 2 + - uid: 727 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -89.5,32.5 + parent: 2 + - uid: 728 + components: + - type: Transform + pos: -88.5,46.5 + parent: 2 + - uid: 23724 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 23711 + - uid: 23725 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 23711 + - uid: 23955 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 23919 + - uid: 23956 + components: + - type: Transform + pos: 5.5,-12.5 + parent: 23919 + - uid: 24346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 24340 + - uid: 24999 + components: + - type: Transform + pos: -9.5,-27.5 + parent: 24450 + - uid: 25000 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,15.5 + parent: 24450 + - uid: 25001 + components: + - type: Transform + pos: -11.5,-27.5 + parent: 24450 + - uid: 25002 + components: + - type: Transform + pos: -13.5,-27.5 + parent: 24450 + - uid: 25003 + components: + - type: Transform + pos: -15.5,-27.5 + parent: 24450 + - uid: 25004 + components: + - type: Transform + pos: -17.5,-27.5 + parent: 24450 + - uid: 25005 + components: + - type: Transform + pos: -11.5,-20.5 + parent: 24450 + - uid: 25006 + components: + - type: Transform + pos: -15.5,-20.5 + parent: 24450 + - uid: 25007 + components: + - type: Transform + pos: -12.5,-4.5 + parent: 24450 + - uid: 25008 + components: + - type: Transform + pos: -11.5,-4.5 + parent: 24450 + - uid: 25009 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,17.5 + parent: 24450 + - uid: 25010 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,21.5 + parent: 24450 + - uid: 25011 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,23.5 + parent: 24450 + - uid: 25012 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,23.5 + parent: 24450 + - uid: 25013 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,21.5 + parent: 24450 + - uid: 25014 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,17.5 + parent: 24450 + - uid: 25015 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,15.5 + parent: 24450 + - uid: 25016 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,15.5 + parent: 24450 + - uid: 25017 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,17.5 + parent: 24450 + - uid: 25018 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,21.5 + parent: 24450 + - uid: 25019 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -19.5,23.5 + parent: 24450 + - uid: 25020 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,23.5 + parent: 24450 + - uid: 25021 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,21.5 + parent: 24450 + - uid: 25022 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 24450 + - uid: 25023 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -24.5,15.5 + parent: 24450 + - uid: 27277 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 27260 + - uid: 27278 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,0.5 + parent: 27260 +- proto: AtmosFixBlockerMarker + entities: + - uid: 729 + components: + - type: Transform + pos: -90.5,-23.5 + parent: 2 + - uid: 730 + components: + - type: Transform + pos: -90.5,-24.5 + parent: 2 + - uid: 731 + components: + - type: Transform + pos: -90.5,-25.5 + parent: 2 + - uid: 732 + components: + - type: Transform + pos: -88.5,-23.5 + parent: 2 + - uid: 733 + components: + - type: Transform + pos: -88.5,-24.5 + parent: 2 + - uid: 734 + components: + - type: Transform + pos: -88.5,-25.5 + parent: 2 + - uid: 735 + components: + - type: Transform + pos: -86.5,-25.5 + parent: 2 + - uid: 736 + components: + - type: Transform + pos: -86.5,-24.5 + parent: 2 + - uid: 737 + components: + - type: Transform + pos: -86.5,-23.5 + parent: 2 + - uid: 738 + components: + - type: Transform + pos: -94.5,-23.5 + parent: 2 + - uid: 739 + components: + - type: Transform + pos: -94.5,-24.5 + parent: 2 + - uid: 740 + components: + - type: Transform + pos: -94.5,-25.5 + parent: 2 + - uid: 741 + components: + - type: Transform + pos: -96.5,-25.5 + parent: 2 + - uid: 742 + components: + - type: Transform + pos: -96.5,-24.5 + parent: 2 + - uid: 743 + components: + - type: Transform + pos: -96.5,-23.5 + parent: 2 +- proto: AtmosFixFreezerMarker + entities: + - uid: 744 + components: + - type: Transform + pos: -15.5,-9.5 + parent: 2 + - uid: 745 + components: + - type: Transform + pos: -15.5,-8.5 + parent: 2 + - uid: 746 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 2 + - uid: 747 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 2 + - uid: 748 + components: + - type: Transform + pos: -14.5,-7.5 + parent: 2 + - uid: 749 + components: + - type: Transform + pos: -15.5,-7.5 + parent: 2 + - uid: 750 + components: + - type: Transform + pos: -12.5,-8.5 + parent: 2 + - uid: 751 + components: + - type: Transform + pos: -12.5,-7.5 + parent: 2 + - uid: 752 + components: + - type: Transform + pos: -13.5,-9.5 + parent: 2 + - uid: 753 + components: + - type: Transform + pos: -13.5,-7.5 + parent: 2 + - uid: 754 + components: + - type: Transform + pos: -13.5,-8.5 + parent: 2 + - uid: 755 + components: + - type: Transform + pos: -12.5,-9.5 + parent: 2 + - uid: 756 + components: + - type: Transform + pos: -7.5,-36.5 + parent: 2 + - uid: 757 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 758 + components: + - type: Transform + pos: -7.5,-34.5 + parent: 2 + - uid: 759 + components: + - type: Transform + pos: -6.5,-34.5 + parent: 2 + - uid: 760 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 761 + components: + - type: Transform + pos: -6.5,-36.5 + parent: 2 + - uid: 762 + components: + - type: Transform + pos: -5.5,-36.5 + parent: 2 + - uid: 763 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 764 + components: + - type: Transform + pos: -5.5,-34.5 + parent: 2 + - uid: 765 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 766 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 767 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 + - uid: 768 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,4.5 + parent: 2 + - uid: 769 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,5.5 + parent: 2 + - uid: 770 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,4.5 + parent: 2 + - uid: 771 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,5.5 + parent: 2 + - uid: 772 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,3.5 + parent: 2 + - uid: 773 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,6.5 + parent: 2 + - uid: 774 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,3.5 + parent: 2 + - uid: 775 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,2.5 + parent: 2 + - uid: 776 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 54.5,6.5 + parent: 2 + - uid: 777 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - uid: 778 + components: + - type: Transform + pos: -117.5,25.5 + parent: 2 + - uid: 779 + components: + - type: Transform + pos: -116.5,24.5 + parent: 2 + - uid: 780 + components: + - type: Transform + pos: -117.5,24.5 + parent: 2 + - uid: 781 + components: + - type: Transform + pos: -115.5,25.5 + parent: 2 + - uid: 782 + components: + - type: Transform + pos: -117.5,23.5 + parent: 2 + - uid: 783 + components: + - type: Transform + pos: -113.5,25.5 + parent: 2 + - uid: 784 + components: + - type: Transform + pos: -115.5,24.5 + parent: 2 + - uid: 785 + components: + - type: Transform + pos: -114.5,24.5 + parent: 2 + - uid: 786 + components: + - type: Transform + pos: -115.5,23.5 + parent: 2 + - uid: 787 + components: + - type: Transform + pos: -114.5,23.5 + parent: 2 + - uid: 788 + components: + - type: Transform + pos: -114.5,25.5 + parent: 2 + - uid: 789 + components: + - type: Transform + pos: -116.5,25.5 + parent: 2 + - uid: 790 + components: + - type: Transform + pos: -116.5,23.5 + parent: 2 + - uid: 791 + components: + - type: Transform + pos: -112.5,27.5 + parent: 2 + - uid: 792 + components: + - type: Transform + pos: -112.5,26.5 + parent: 2 + - uid: 793 + components: + - type: Transform + pos: -112.5,25.5 + parent: 2 + - uid: 794 + components: + - type: Transform + pos: -112.5,24.5 + parent: 2 + - uid: 795 + components: + - type: Transform + pos: -112.5,23.5 + parent: 2 + - uid: 796 + components: + - type: Transform + pos: -111.5,27.5 + parent: 2 + - uid: 797 + components: + - type: Transform + pos: -111.5,26.5 + parent: 2 + - uid: 798 + components: + - type: Transform + pos: -111.5,25.5 + parent: 2 + - uid: 799 + components: + - type: Transform + pos: -111.5,24.5 + parent: 2 + - uid: 800 + components: + - type: Transform + pos: -111.5,23.5 + parent: 2 + - uid: 801 + components: + - type: Transform + pos: -110.5,27.5 + parent: 2 + - uid: 802 + components: + - type: Transform + pos: -110.5,26.5 + parent: 2 + - uid: 803 + components: + - type: Transform + pos: -110.5,25.5 + parent: 2 + - uid: 804 + components: + - type: Transform + pos: -110.5,24.5 + parent: 2 + - uid: 805 + components: + - type: Transform + pos: -110.5,23.5 + parent: 2 + - uid: 806 + components: + - type: Transform + pos: -109.5,27.5 + parent: 2 + - uid: 807 + components: + - type: Transform + pos: -109.5,26.5 + parent: 2 + - uid: 808 + components: + - type: Transform + pos: -109.5,25.5 + parent: 2 + - uid: 809 + components: + - type: Transform + pos: -109.5,24.5 + parent: 2 + - uid: 810 + components: + - type: Transform + pos: -109.5,23.5 + parent: 2 + - uid: 811 + components: + - type: Transform + pos: -108.5,27.5 + parent: 2 + - uid: 812 + components: + - type: Transform + pos: -108.5,26.5 + parent: 2 + - uid: 813 + components: + - type: Transform + pos: -108.5,25.5 + parent: 2 + - uid: 814 + components: + - type: Transform + pos: -108.5,24.5 + parent: 2 + - uid: 815 + components: + - type: Transform + pos: -108.5,23.5 + parent: 2 + - uid: 816 + components: + - type: Transform + pos: -107.5,27.5 + parent: 2 + - uid: 817 + components: + - type: Transform + pos: -107.5,26.5 + parent: 2 + - uid: 818 + components: + - type: Transform + pos: -107.5,25.5 + parent: 2 + - uid: 819 + components: + - type: Transform + pos: -107.5,24.5 + parent: 2 + - uid: 820 + components: + - type: Transform + pos: -107.5,23.5 + parent: 2 + - uid: 821 + components: + - type: Transform + pos: -106.5,27.5 + parent: 2 + - uid: 822 + components: + - type: Transform + pos: -106.5,26.5 + parent: 2 + - uid: 823 + components: + - type: Transform + pos: -106.5,25.5 + parent: 2 + - uid: 824 + components: + - type: Transform + pos: -106.5,24.5 + parent: 2 + - uid: 825 + components: + - type: Transform + pos: -106.5,23.5 + parent: 2 + - uid: 826 + components: + - type: Transform + pos: -105.5,27.5 + parent: 2 + - uid: 827 + components: + - type: Transform + pos: -105.5,26.5 + parent: 2 + - uid: 828 + components: + - type: Transform + pos: -105.5,25.5 + parent: 2 + - uid: 829 + components: + - type: Transform + pos: -105.5,24.5 + parent: 2 + - uid: 830 + components: + - type: Transform + pos: -105.5,23.5 + parent: 2 + - uid: 831 + components: + - type: Transform + pos: -104.5,27.5 + parent: 2 + - uid: 832 + components: + - type: Transform + pos: -104.5,26.5 + parent: 2 + - uid: 833 + components: + - type: Transform + pos: -104.5,25.5 + parent: 2 + - uid: 834 + components: + - type: Transform + pos: -104.5,24.5 + parent: 2 + - uid: 835 + components: + - type: Transform + pos: -104.5,23.5 + parent: 2 + - uid: 836 + components: + - type: Transform + pos: -103.5,27.5 + parent: 2 + - uid: 837 + components: + - type: Transform + pos: -103.5,26.5 + parent: 2 + - uid: 838 + components: + - type: Transform + pos: -103.5,25.5 + parent: 2 + - uid: 839 + components: + - type: Transform + pos: -103.5,24.5 + parent: 2 + - uid: 840 + components: + - type: Transform + pos: -103.5,23.5 + parent: 2 + - uid: 841 + components: + - type: Transform + pos: -102.5,27.5 + parent: 2 + - uid: 842 + components: + - type: Transform + pos: -102.5,26.5 + parent: 2 + - uid: 843 + components: + - type: Transform + pos: -102.5,25.5 + parent: 2 + - uid: 844 + components: + - type: Transform + pos: -102.5,24.5 + parent: 2 + - uid: 845 + components: + - type: Transform + pos: -102.5,23.5 + parent: 2 +- proto: AtmosFixNitrogenMarker + entities: + - uid: 846 + components: + - type: Transform + pos: -98.5,-25.5 + parent: 2 + - uid: 847 + components: + - type: Transform + pos: -98.5,-24.5 + parent: 2 + - uid: 848 + components: + - type: Transform + pos: -98.5,-23.5 + parent: 2 + - uid: 25024 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,-10.5 + parent: 24450 + - uid: 25025 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 24450 + - uid: 25026 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-10.5 + parent: 24450 +- proto: AtmosFixOxygenMarker + entities: + - uid: 849 + components: + - type: Transform + pos: -100.5,-23.5 + parent: 2 + - uid: 850 + components: + - type: Transform + pos: -100.5,-24.5 + parent: 2 + - uid: 851 + components: + - type: Transform + pos: -100.5,-25.5 + parent: 2 + - uid: 25027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -20.5,-12.5 + parent: 24450 + - uid: 25028 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.5,-12.5 + parent: 24450 +- proto: AtmosFixPlasmaMarker + entities: + - uid: 852 + components: + - type: Transform + pos: -92.5,-23.5 + parent: 2 + - uid: 853 + components: + - type: Transform + pos: -92.5,-24.5 + parent: 2 + - uid: 854 + components: + - type: Transform + pos: -92.5,-25.5 + parent: 2 +- proto: Autolathe + entities: + - uid: 855 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 856 + components: + - type: Transform + pos: -103.5,-5.5 + parent: 2 + - uid: 857 + components: + - type: Transform + pos: -90.5,14.5 + parent: 2 + - uid: 858 + components: + - type: Transform + pos: -67.5,-17.5 + parent: 2 + - uid: 25029 + components: + - type: Transform + pos: 3.5,2.5 + parent: 24450 + - uid: 25030 + components: + - type: Transform + pos: -27.5,2.5 + parent: 24450 +- proto: BalloonCorgi + entities: + - uid: 859 + components: + - type: Transform + pos: 1.3953991,-34.48816 + parent: 2 +- proto: BalloonSyn + entities: + - uid: 860 + components: + - type: Transform + pos: 31.830946,31.551973 + parent: 2 + - uid: 861 + components: + - type: Transform + pos: 27.481878,40.471504 + parent: 2 + - uid: 862 + components: + - type: Transform + pos: -51.44482,29.548405 + parent: 2 +- proto: BannerCargo + entities: + - uid: 863 + components: + - type: Transform + pos: -67.5,-4.5 + parent: 2 + - uid: 864 + components: + - type: Transform + pos: -70.5,-7.5 + parent: 2 + - uid: 865 + components: + - type: Transform + pos: -67.5,-2.5 + parent: 2 + - uid: 866 + components: + - type: Transform + pos: -58.5,-2.5 + parent: 2 + - uid: 867 + components: + - type: Transform + pos: -58.5,-4.5 + parent: 2 + - uid: 868 + components: + - type: Transform + pos: -74.5,-17.5 + parent: 2 + - uid: 869 + components: + - type: Transform + pos: -56.5,-10.5 + parent: 2 +- proto: BannerEngineering + entities: + - uid: 870 + components: + - type: Transform + pos: -105.5,-5.5 + parent: 2 + - uid: 871 + components: + - type: Transform + pos: -95.5,6.5 + parent: 2 + - uid: 872 + components: + - type: Transform + pos: -95.5,9.5 + parent: 2 + - uid: 873 + components: + - type: Transform + pos: -119.5,8.5 + parent: 2 + - uid: 874 + components: + - type: Transform + pos: -119.5,-0.5 + parent: 2 + - uid: 875 + components: + - type: Transform + pos: -129.5,-11.5 + parent: 2 + - uid: 876 + components: + - type: Transform + pos: -132.5,-0.5 + parent: 2 +- proto: BannerNanotrasen + entities: + - uid: 877 + components: + - type: Transform + pos: 30.5,16.5 + parent: 2 + - uid: 878 + components: + - type: Transform + pos: 38.5,16.5 + parent: 2 + - uid: 879 + components: + - type: Transform + pos: 44.5,2.5 + parent: 2 + - uid: 880 + components: + - type: Transform + pos: 38.5,11.5 + parent: 2 + - uid: 881 + components: + - type: Transform + pos: 62.5,9.5 + parent: 2 + - uid: 882 + components: + - type: Transform + pos: 52.5,12.5 + parent: 2 + - uid: 883 + components: + - type: Transform + pos: 30.5,11.5 + parent: 2 + - uid: 884 + components: + - type: Transform + pos: -16.5,5.5 + parent: 2 + - uid: 885 + components: + - type: Transform + pos: -45.5,-0.5 + parent: 2 + - uid: 886 + components: + - type: Transform + pos: -60.5,10.5 + parent: 2 + - uid: 887 + components: + - type: Transform + pos: -63.5,22.5 + parent: 2 + - uid: 888 + components: + - type: Transform + pos: -84.5,14.5 + parent: 2 + - uid: 889 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 890 + components: + - type: Transform + pos: 62.5,-0.5 + parent: 2 + - uid: 891 + components: + - type: Transform + pos: 41.5,3.5 + parent: 2 + - uid: 892 + components: + - type: Transform + pos: 55.5,-2.5 + parent: 2 + - uid: 893 + components: + - type: Transform + pos: 56.5,-2.5 + parent: 2 + - uid: 894 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 895 + components: + - type: Transform + pos: 61.5,13.5 + parent: 2 +- proto: BannerScience + entities: + - uid: 896 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 897 + components: + - type: Transform + pos: -3.5,-17.5 + parent: 2 + - uid: 898 + components: + - type: Transform + pos: 0.5,-17.5 + parent: 2 + - uid: 899 + components: + - type: Transform + pos: -9.5,-23.5 + parent: 2 + - uid: 900 + components: + - type: Transform + pos: -5.5,-38.5 + parent: 2 + - uid: 901 + components: + - type: Transform + pos: -4.5,-34.5 + parent: 2 + - uid: 902 + components: + - type: Transform + pos: -4.5,-36.5 + parent: 2 +- proto: BannerSecurity + entities: + - uid: 903 + components: + - type: Transform + pos: -16.5,9.5 + parent: 2 +- proto: BannerSyndicate + entities: + - uid: 904 + components: + - type: Transform + pos: -89.5,26.5 + parent: 2 +- proto: Barricade + entities: + - uid: 905 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 24.5,-16.5 + parent: 2 + - uid: 906 + components: + - type: Transform + pos: -3.5,38.5 + parent: 2 + - uid: 907 + components: + - type: Transform + pos: 1.5,39.5 + parent: 2 + - uid: 908 + components: + - type: Transform + pos: -1.5,35.5 + parent: 2 + - uid: 909 + components: + - type: Transform + pos: -7.5,34.5 + parent: 2 + - uid: 910 + components: + - type: Transform + pos: -3.5,27.5 + parent: 2 + - uid: 911 + components: + - type: Transform + pos: 32.5,-16.5 + parent: 2 + - uid: 912 + components: + - type: Transform + pos: -125.5,21.5 + parent: 2 + - uid: 913 + components: + - type: Transform + pos: -46.5,21.5 + parent: 2 + - uid: 914 + components: + - type: Transform + pos: -76.5,18.5 + parent: 2 + - uid: 915 + components: + - type: Transform + pos: -77.5,14.5 + parent: 2 + - uid: 916 + components: + - type: Transform + pos: -78.5,11.5 + parent: 2 + - uid: 917 + components: + - type: Transform + pos: -11.5,-28.5 + parent: 2 + - uid: 918 + components: + - type: Transform + pos: -12.5,-33.5 + parent: 2 + - uid: 919 + components: + - type: Transform + pos: -11.5,-33.5 + parent: 2 + - uid: 920 + components: + - type: Transform + pos: -12.5,-28.5 + parent: 2 + - uid: 921 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,23.5 + parent: 2 + - uid: 922 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 13.5,-18.5 + parent: 2 + - uid: 923 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 19.5,-16.5 + parent: 2 + - uid: 924 + components: + - type: Transform + pos: -125.5,20.5 + parent: 2 + - uid: 925 + components: + - type: Transform + pos: -121.5,20.5 + parent: 2 + - uid: 25031 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,11.5 + parent: 24450 +- proto: BarricadeBlock + entities: + - uid: 926 + components: + - type: Transform + pos: -2.5,28.5 + parent: 2 + - uid: 927 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,33.5 + parent: 2 + - uid: 928 + components: + - type: Transform + pos: -127.5,-7.5 + parent: 2 + - uid: 929 + components: + - type: Transform + pos: -127.5,-6.5 + parent: 2 + - uid: 930 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-10.5 + parent: 2 + - uid: 931 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -72.5,-10.5 + parent: 2 + - uid: 932 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -74.5,-7.5 + parent: 2 + - uid: 25032 + components: + - type: Transform + pos: 3.5,7.5 + parent: 24450 + - uid: 25033 + components: + - type: Transform + pos: 0.5,11.5 + parent: 24450 +- proto: BarricadeDirectional + entities: + - uid: 933 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-6.5 + parent: 2 + - uid: 934 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-7.5 + parent: 2 + - uid: 935 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,27.5 + parent: 2 + - uid: 936 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,27.5 + parent: 2 + - uid: 937 + components: + - type: Transform + pos: -3.5,29.5 + parent: 2 + - uid: 938 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 33.5,-16.5 + parent: 2 + - uid: 939 + components: + - type: Transform + pos: -52.5,34.5 + parent: 2 + - uid: 940 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-11.5 + parent: 2 + - uid: 941 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -73.5,-10.5 + parent: 2 + - uid: 942 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -74.5,-8.5 + parent: 2 + - uid: 943 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-11.5 + parent: 2 + - uid: 944 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -81.5,-12.5 + parent: 2 + - uid: 945 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -78.5,-13.5 + parent: 2 + - uid: 946 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -79.5,-13.5 + parent: 2 + - uid: 947 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -80.5,-13.5 + parent: 2 + - uid: 25034 + components: + - type: Transform + pos: 3.5,8.5 + parent: 24450 + - uid: 25035 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,6.5 + parent: 24450 + - uid: 25036 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -0.5,11.5 + parent: 24450 +- proto: BarSign + entities: + - uid: 948 + components: + - type: Transform + pos: -25.5,0.5 + parent: 2 +- proto: BaseBallBat + entities: + - uid: 949 + components: + - type: Transform + pos: -34.46009,24.006712 + parent: 2 + - uid: 950 + components: + - type: Transform + pos: -29.434896,-19.43375 + parent: 2 + - uid: 25037 + components: + - type: Transform + pos: 3.7139354,11.511048 + parent: 24450 + - uid: 25038 + components: + - type: Transform + pos: 4.5576854,11.448548 + parent: 24450 +- proto: BaseUplinkRadio + entities: + - uid: 951 + components: + - type: Transform + pos: -114.493805,20.350246 + parent: 2 +- proto: BassGuitarInstrument + entities: + - uid: 952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -33.462486,-1.5650146 + parent: 2 +- proto: Beaker + entities: + - uid: 953 + components: + - type: Transform + pos: -1.8334813,-41.39243 + parent: 2 + - uid: 954 + components: + - type: Transform + pos: 46.722706,-26.49298 + parent: 2 + - uid: 955 + components: + - type: Transform + pos: 46.410206,-26.508604 + parent: 2 +- proto: Bed + entities: + - uid: 956 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 957 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 958 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 + - uid: 959 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 + - uid: 960 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 961 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 + - uid: 962 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 + - uid: 963 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 964 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 965 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 + - uid: 966 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 + - uid: 967 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 + - uid: 968 + components: + - type: Transform + pos: -101.5,10.5 + parent: 2 + - uid: 969 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 + - uid: 970 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 + - uid: 971 + components: + - type: Transform + pos: 3.5,36.5 + parent: 2 + - uid: 972 + components: + - type: Transform + pos: 12.5,37.5 + parent: 2 + - uid: 973 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 974 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 975 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 + - uid: 976 + components: + - type: Transform + pos: -25.5,27.5 + parent: 2 + - uid: 977 + components: + - type: Transform + pos: -25.5,31.5 + parent: 2 + - uid: 978 + components: + - type: Transform + pos: -32.5,33.5 + parent: 2 + - uid: 979 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 + - uid: 980 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 + - uid: 981 + components: + - type: Transform + pos: -39.5,32.5 + parent: 2 + - uid: 982 + components: + - type: Transform + pos: -40.5,32.5 + parent: 2 + - uid: 983 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 984 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 + - uid: 985 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 + - uid: 986 + components: + - type: Transform + pos: 14.5,37.5 + parent: 2 + - uid: 987 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 + - uid: 988 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 989 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 990 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 + - uid: 991 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 + - uid: 992 + components: + - type: Transform + pos: -40.5,33.5 + parent: 2 + - uid: 993 + components: + - type: Transform + pos: -39.5,33.5 + parent: 2 +- proto: BedsheetBlack + entities: + - uid: 994 + components: + - type: Transform + pos: -46.5,-7.5 + parent: 2 +- proto: BedsheetBlue + entities: + - uid: 995 + components: + - type: Transform + pos: 21.5,23.5 + parent: 2 +- proto: BedsheetBrigmedic + entities: + - uid: 996 + components: + - type: Transform + pos: 15.5,-3.5 + parent: 2 +- proto: BedsheetCaptain + entities: + - uid: 997 + components: + - type: Transform + pos: 46.5,13.5 + parent: 2 +- proto: BedsheetCE + entities: + - uid: 998 + components: + - type: Transform + pos: -101.5,10.5 + parent: 2 +- proto: BedsheetCentcom + entities: + - uid: 999 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,31.5 + parent: 2 +- proto: BedsheetClown + entities: + - uid: 1000 + components: + - type: Transform + pos: -34.5,-3.5 + parent: 2 +- proto: BedsheetCMO + entities: + - uid: 1001 + components: + - type: Transform + pos: 25.5,43.5 + parent: 2 +- proto: BedsheetCosmos + entities: + - uid: 1002 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -25.5,27.5 + parent: 2 +- proto: BedsheetGreen + entities: + - uid: 1003 + components: + - type: Transform + pos: 5.5,37.5 + parent: 2 + - uid: 1004 + components: + - type: Transform + pos: 7.5,37.5 + parent: 2 + - uid: 1005 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 14.5,37.5 + parent: 2 + - uid: 1006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 12.5,37.5 + parent: 2 +- proto: BedsheetHOP + entities: + - uid: 1007 + components: + - type: Transform + pos: 41.5,14.5 + parent: 2 +- proto: BedsheetHOS + entities: + - uid: 1008 + components: + - type: Transform + pos: 31.5,-3.5 + parent: 2 +- proto: BedsheetIan + entities: + - uid: 1009 + components: + - type: Transform + pos: -35.5,-6.5 + parent: 2 + - uid: 1010 + components: + - type: Transform + pos: -32.5,29.5 + parent: 2 +- proto: BedsheetMedical + entities: + - uid: 1011 + components: + - type: Transform + pos: 3.5,15.5 + parent: 2 + - uid: 1012 + components: + - type: Transform + pos: 3.5,17.5 + parent: 2 + - uid: 1013 + components: + - type: Transform + pos: 3.5,19.5 + parent: 2 + - uid: 1014 + components: + - type: Transform + pos: 3.5,21.5 + parent: 2 + - uid: 27279 + components: + - type: Transform + pos: -5.5,-8.5 + parent: 27260 +- proto: BedsheetMime + entities: + - uid: 1015 + components: + - type: Transform + pos: -34.5,-9.5 + parent: 2 +- proto: BedsheetOrange + entities: + - uid: 1016 + components: + - type: Transform + pos: 28.5,-14.5 + parent: 2 + - uid: 1017 + components: + - type: Transform + pos: 25.5,-14.5 + parent: 2 + - uid: 1018 + components: + - type: Transform + pos: 22.5,-14.5 + parent: 2 +- proto: BedsheetPurple + entities: + - uid: 1019 + components: + - type: Transform + pos: 21.5,17.5 + parent: 2 +- proto: BedsheetQM + entities: + - uid: 1020 + components: + - type: Transform + pos: -70.5,-17.5 + parent: 2 +- proto: BedsheetRD + entities: + - uid: 1021 + components: + - type: Transform + pos: 1.5,-31.5 + parent: 2 +- proto: BedsheetSpawner + entities: + - uid: 1022 + components: + - type: Transform + pos: -31.5,-2.5 + parent: 2 + - uid: 1023 + components: + - type: Transform + pos: -56.5,7.5 + parent: 2 + - uid: 1024 + components: + - type: Transform + pos: -50.5,41.5 + parent: 2 + - uid: 1025 + components: + - type: Transform + pos: -50.5,45.5 + parent: 2 + - uid: 25039 + components: + - type: Transform + pos: -35.5,6.5 + parent: 24450 + - uid: 25040 + components: + - type: Transform + pos: -35.5,8.5 + parent: 24450 + - uid: 25041 + components: + - type: Transform + pos: -35.5,12.5 + parent: 24450 + - uid: 25042 + components: + - type: Transform + pos: 11.5,6.5 + parent: 24450 + - uid: 25043 + components: + - type: Transform + pos: 11.5,8.5 + parent: 24450 + - uid: 25044 + components: + - type: Transform + pos: 11.5,12.5 + parent: 24450 +- proto: BedsheetSyndie + entities: + - uid: 1026 + components: + - type: Transform + pos: 19.5,-14.5 + parent: 2 +- proto: BedsheetUSA + entities: + - uid: 1027 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 +- proto: BedsheetWhite + entities: + - uid: 1028 + components: + - type: Transform + pos: -19.5,32.5 + parent: 2 + - uid: 1029 + components: + - type: Transform + pos: -20.5,32.5 + parent: 2 +- proto: BedsheetWiz + entities: + - uid: 1030 + components: + - type: Transform + pos: -32.5,25.5 + parent: 2 +- proto: BedsheetYellow + entities: + - uid: 1031 + components: + - type: Transform + pos: -25.5,23.5 + parent: 2 +- proto: BikeHornImplanter + entities: + - uid: 594 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BiomassReclaimer + entities: + - uid: 1032 + components: + - type: Transform + pos: 6.5,18.5 + parent: 2 +- proto: BlastDoor + entities: + - uid: 1033 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 1.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18416 + - uid: 1034 + components: + - type: Transform + pos: -6.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18411 + - uid: 1035 + components: + - type: Transform + pos: 1.5,-46.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18410 + - uid: 1036 + components: + - type: Transform + pos: 30.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18420 + - uid: 1037 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -82.5,-24.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18413 + - 18412 + - uid: 1038 + components: + - type: Transform + pos: -63.5,-21.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18424 + - uid: 1039 + components: + - type: MetaData + name: гермозатвор внешний + - type: Transform + pos: -56.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16004 + - 16003 + - uid: 1040 + components: + - type: MetaData + name: гермозатвор внешний + - type: Transform + pos: -55.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16004 + - 16003 + - uid: 1041 + components: + - type: Transform + pos: -63.5,-18.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18424 + - uid: 1042 + components: + - type: Transform + pos: -59.5,-18.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18415 + - uid: 1043 + components: + - type: Transform + pos: -59.5,-21.5 + parent: 2 + - type: Door + state: Open + - type: Occluder + enabled: False + - type: Physics + canCollide: False + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 18415 + - uid: 1044 + components: + - type: MetaData + name: гермозатвор внешний + - type: Transform + pos: -54.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16004 + - 16003 + - uid: 1045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -6.5,-42.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18436 + - uid: 1046 + components: + - type: Transform + pos: -118.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18454 + - 18455 + - uid: 1047 + components: + - type: Transform + pos: -123.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15998 + - 15999 + - uid: 1048 + components: + - type: Transform + pos: -123.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15999 + - 15998 + - uid: 1049 + components: + - type: Transform + pos: -123.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15998 + - 15999 + - uid: 1050 + components: + - type: Transform + pos: -123.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15998 + - 15999 + - uid: 1051 + components: + - type: Transform + pos: -117.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18454 + - 18455 + - uid: 1052 + components: + - type: MetaData + name: защитный гермозатвор + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16005 + - uid: 1053 + components: + - type: MetaData + name: защитный гермозатвор + - type: Transform + rot: 3.141592653589793 rad + pos: -53.5,-13.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16005 + - uid: 25045 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25046 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -20.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25047 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25048 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26726 + - uid: 25049 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 25050 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -2.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 25051 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 25052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -0.5,13.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26725 + - uid: 27280 + components: + - type: Transform + pos: 3.5,-5.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27801 + - uid: 27281 + components: + - type: Transform + pos: -4.5,-0.5 + parent: 27260 + - type: DeviceLinkSink + links: + - 15995 + - type: DeviceLinkSource + linkedPorts: + 27802: + - DoorStatus: InputA + 27803: + - DoorStatus: InputA + - uid: 27282 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -4.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + links: + - 15996 + - type: DeviceLinkSource + linkedPorts: + 27804: + - DoorStatus: InputA + 27803: + - DoorStatus: InputB + - uid: 27283 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + links: + - 27864 + - type: DeviceLinkSource + linkedPorts: + 27804: + - DoorStatus: InputB + 27287: + - DoorStatus: Toggle + 27286: + - DoorStatus: Toggle + 27285: + - DoorStatus: Toggle + 27288: + - DoorStatus: Toggle + 27290: + - DoorStatus: Toggle + 27289: + - DoorStatus: Toggle + 27608: + - DoorStatus: Trigger + 27611: + - DoorStatus: Trigger + 27612: + - DoorStatus: Trigger + 27613: + - DoorStatus: Trigger + 27610: + - DoorStatus: Trigger + - uid: 27284 + components: + - type: Transform + pos: 5.5,-0.5 + parent: 27260 + - type: WirelessNetworkConnection + range: 10000 + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 27864 + - 27292 + - 27291 + - type: DeviceLinkSource + range: 10000 + linkedPorts: + 27802: + - DoorStatus: InputB + 27609: + - DoorStatus: Trigger +- proto: BlastDoorBridgeOpen + entities: + - uid: 1054 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 + - uid: 1055 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 45.5,0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 + - uid: 1056 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 + - uid: 1057 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 47.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18450 +- proto: BlastDoorOpen + entities: + - uid: 1058 + components: + - type: Transform + pos: -127.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18453 + - uid: 1059 + components: + - type: Transform + pos: -126.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18453 + - uid: 1060 + components: + - type: Transform + pos: -125.5,-0.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18453 + - uid: 1061 + components: + - type: Transform + pos: -127.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18452 + - uid: 1062 + components: + - type: Transform + pos: -126.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18452 + - uid: 1063 + components: + - type: Transform + pos: -125.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18426 + - 18452 + - uid: 23957 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24179 + - uid: 23958 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24179 + - uid: 25053 + components: + - type: Transform + pos: -8.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26723 + - uid: 25054 + components: + - type: Transform + pos: -15.5,10.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26722 + - uid: 25055 + components: + - type: Transform + pos: -8.5,10.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26723 + - uid: 25056 + components: + - type: Transform + pos: -15.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26722 + - uid: 25057 + components: + - type: Transform + pos: -8.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26720 + - uid: 25058 + components: + - type: Transform + pos: -15.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26721 + - uid: 25059 + components: + - type: Transform + pos: -15.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26721 + - uid: 25060 + components: + - type: Transform + pos: -8.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26720 + - uid: 27285 + components: + - type: Transform + pos: 2.5,-0.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27286 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27287 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.5,-2.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27288 + components: + - type: Transform + pos: -1.5,-0.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27289 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,16.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 6.5,16.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,15.5 + parent: 27260 + - type: DeviceLinkSource + linkedPorts: + 27284: + - DoorStatus: Open + - uid: 27292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -5.5,15.5 + parent: 27260 + - type: DeviceLinkSource + linkedPorts: + 27284: + - DoorStatus: Open +- proto: BlockGameArcade + entities: + - uid: 1064 + components: + - type: Transform + pos: -58.5,26.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: Bloodpack + entities: + - uid: 1065 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -1.3417411,15.598124 + parent: 2 +- proto: BodyBag + entities: + - uid: 1066 + components: + - type: Transform + pos: 10.528219,9.687132 + parent: 2 +- proto: BodyScannerComputerCircuitboard + entities: + - uid: 1067 + components: + - type: Transform + pos: 22.447916,35.989582 + parent: 2 +- proto: Bonfire + entities: + - uid: 1068 + components: + - type: Transform + pos: -118.5,-18.5 + parent: 2 +- proto: BookAtmosAirAlarms + entities: + - uid: 1069 + components: + - type: Transform + pos: -113.607376,-4.7557926 + parent: 2 +- proto: BookAtmosDistro + entities: + - uid: 1070 + components: + - type: Transform + pos: -113.326126,-4.8182926 + parent: 2 +- proto: BookAtmosVentsMore + entities: + - uid: 1071 + components: + - type: Transform + pos: -113.61827,-4.3182926 + parent: 2 +- proto: BookAtmosWaste + entities: + - uid: 1072 + components: + - type: Transform + pos: -113.290146,-4.3339176 + parent: 2 +- proto: BookBase + entities: + - uid: 1073 + components: + - type: MetaData + name: Анатомия для чайников + - type: Transform + pos: 9.534124,9.582435 + parent: 2 +- proto: BookRandom + entities: + - uid: 1074 + components: + - type: Transform + pos: -52.542038,8.649527 + parent: 2 + - uid: 1075 + components: + - type: Transform + pos: -52.526413,7.8995266 + parent: 2 + - uid: 1076 + components: + - type: Transform + pos: -56.714577,10.714533 + parent: 2 + - uid: 1077 + components: + - type: Transform + pos: -56.32395,10.714533 + parent: 2 + - uid: 1078 + components: + - type: Transform + pos: -91.549774,5.6631217 + parent: 2 +- proto: BookRandomStory + entities: + - uid: 1079 + components: + - type: Transform + pos: -19.895487,5.6136208 + parent: 2 + - uid: 1080 + components: + - type: Transform + pos: 18.493877,8.552801 + parent: 2 + - uid: 1081 + components: + - type: Transform + pos: -36.530155,28.398226 + parent: 2 +- proto: BooksBag + entities: + - uid: 1082 + components: + - type: Transform + pos: -55.479183,7.443512 + parent: 2 +- proto: Bookshelf + entities: + - uid: 1083 + components: + - type: Transform + pos: -56.5,10.5 + parent: 2 + - uid: 1084 + components: + - type: Transform + pos: -19.5,26.5 + parent: 2 + - uid: 1085 + components: + - type: Transform + pos: 58.5,-27.5 + parent: 2 +- proto: BookshelfFilled + entities: + - uid: 1086 + components: + - type: Transform + pos: -47.5,11.5 + parent: 2 + - uid: 1087 + components: + - type: Transform + pos: -50.5,11.5 + parent: 2 + - uid: 1088 + components: + - type: Transform + pos: -47.5,9.5 + parent: 2 + - uid: 1089 + components: + - type: Transform + pos: -47.5,8.5 + parent: 2 + - uid: 1090 + components: + - type: Transform + pos: 58.5,-28.5 + parent: 2 + - uid: 1091 + components: + - type: Transform + pos: 58.5,-25.5 + parent: 2 + - uid: 1092 + components: + - type: Transform + pos: 58.5,-26.5 + parent: 2 + - uid: 1093 + components: + - type: Transform + pos: 58.5,-30.5 + parent: 2 + - uid: 1094 + components: + - type: Transform + pos: 58.5,-29.5 + parent: 2 + - uid: 1095 + components: + - type: Transform + pos: 21.5,21.5 + parent: 2 +- proto: BoozeDispenser + entities: + - uid: 1096 + components: + - type: Transform + pos: -25.5,-0.5 + parent: 2 + - uid: 1097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -8.5,45.5 + parent: 2 + - uid: 1098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,45.5 + parent: 2 +- proto: BoozeDispenserEmpty + entities: + - uid: 1099 + components: + - type: Transform + pos: -104.5,0.5 + parent: 2 +- proto: BorgCharger + entities: + - uid: 1100 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 +- proto: BowImprovised + entities: + - uid: 25061 + components: + - type: Transform + pos: -30.526886,-0.51148224 + parent: 24450 +- proto: BoxBeaker + entities: + - uid: 1102 + components: + - type: Transform + parent: 1101 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1103 + components: + - type: Transform + pos: 9.0787525,20.674503 + parent: 2 + - uid: 1104 + components: + - type: Transform + pos: -1.4276239,5.5878706 + parent: 2 + - uid: 23939 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27294 + components: + - type: Transform + parent: 27293 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBeanbag + entities: + - uid: 1105 + components: + - type: Transform + pos: -28.49978,-2.404027 + parent: 2 + - uid: 1106 + components: + - type: Transform + pos: 48.603382,-6.600572 + parent: 2 + - uid: 24528 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxBodyBag + entities: + - uid: 1107 + components: + - type: Transform + pos: 10.347248,5.518587 + parent: 2 + - uid: 1108 + components: + - type: Transform + pos: 10.847248,5.690462 + parent: 2 + - uid: 1109 + components: + - type: Transform + pos: 8.513576,18.630486 + parent: 2 + - uid: 1110 + components: + - type: Transform + pos: 22.512924,11.537976 + parent: 2 + - uid: 1111 + components: + - type: Transform + pos: 17.453873,23.65856 + parent: 2 + - uid: 23959 + components: + - type: Transform + pos: 4.4125977,-5.3530293 + parent: 23919 + - uid: 25062 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -14.358505,7.6814413 + parent: 24450 +- proto: BoxCardboard + entities: + - uid: 1112 + components: + - type: Transform + pos: -44.606075,-17.155802 + parent: 2 + - uid: 1113 + components: + - type: Transform + pos: -44.418575,-17.390177 + parent: 2 +- proto: BoxCartridgeCap + entities: + - uid: 1114 + components: + - type: Transform + pos: -34.500256,33.591328 + parent: 2 +- proto: BoxCleanerGrenades + entities: + - uid: 1116 + components: + - type: Transform + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxDonkSoftBox + entities: + - uid: 1128 + components: + - type: Transform + pos: 51.50729,-18.488604 + parent: 2 +- proto: BoxFlashbang + entities: + - uid: 27298 + components: + - type: Transform + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxFolderBlack + entities: + - uid: 1129 + components: + - type: Transform + pos: -103.35947,21.741177 + parent: 2 + - uid: 1130 + components: + - type: MetaData + name: папка с грифом секретности + - type: Transform + pos: 48.328125,-2.529991 + parent: 2 + - uid: 1131 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 5.848522,16.598705 + parent: 2 +- proto: BoxFolderBlue + entities: + - uid: 1132 + components: + - type: Transform + pos: 44.351154,4.7485046 + parent: 2 + - uid: 1133 + components: + - type: Transform + pos: -74.33679,-1.436574 + parent: 2 +- proto: BoxFolderClipboard + entities: + - uid: 1134 + components: + - type: Transform + pos: -76.62917,-2.4311993 + parent: 2 +- proto: BoxFolderGreen + entities: + - uid: 1135 + components: + - type: Transform + pos: -75.51346,-5.5499306 + parent: 2 +- proto: BoxFolderGrey + entities: + - uid: 1136 + components: + - type: Transform + pos: -103.23447,21.506802 + parent: 2 + - uid: 1137 + components: + - type: Transform + pos: -25.305325,9.497218 + parent: 2 +- proto: BoxFolderRed + entities: + - uid: 1138 + components: + - type: Transform + pos: 20.624432,6.395512 + parent: 2 + - uid: 1139 + components: + - type: Transform + pos: -78.613785,-1.420949 + parent: 2 + - uid: 1140 + components: + - type: Transform + pos: 30.689117,-3.3946733 + parent: 2 + - uid: 1141 + components: + - type: Transform + pos: 30.360992,-3.3946733 + parent: 2 + - uid: 23960 + components: + - type: Transform + pos: 4.9870605,3.6952515 + parent: 23919 +- proto: BoxFolderWhite + entities: + - uid: 1142 + components: + - type: Transform + pos: 12.630811,-1.111159 + parent: 2 + - uid: 1143 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.542812,17.657099 + parent: 2 + - uid: 1144 + components: + - type: Transform + pos: 25.482803,29.552721 + parent: 2 + - uid: 1145 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.550704,32.649754 + parent: 2 + - uid: 1146 + components: + - type: Transform + pos: 24.664398,13.078537 + parent: 2 + - uid: 1147 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.503829,32.63413 + parent: 2 + - uid: 1148 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.550704,32.63413 + parent: 2 + - uid: 1149 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 16.477533,12.397864 + parent: 2 + - uid: 1150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.354307,5.5851474 + parent: 2 + - uid: 1151 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 25.890072,36.674587 + parent: 2 + - type: ContainerContainer + containers: + storagebase: !type:Container + showEnts: False + occludes: True + ents: + - 1152 + - 1153 + - 1154 + - uid: 1155 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 19.574062,17.672724 + parent: 2 +- proto: BoxFolderYellow + entities: + - uid: 1156 + components: + - type: Transform + pos: -101.9492,-2.3743103 + parent: 2 + - uid: 1157 + components: + - type: Transform + pos: -25.69595,9.497218 + parent: 2 +- proto: BoxHandcuff + entities: + - uid: 25063 + components: + - type: Transform + pos: -11.794121,7.5770445 + parent: 24450 +- proto: BoxLatexGloves + entities: + - uid: 1158 + components: + - type: Transform + pos: 12.297477,-0.41324234 + parent: 2 + - uid: 1159 + components: + - type: Transform + pos: 5.604253,33.525932 + parent: 2 + - uid: 1160 + components: + - type: Transform + pos: 33.688656,20.37791 + parent: 2 +- proto: BoxLethalshot + entities: + - uid: 24529 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxLightMixed + entities: + - uid: 1161 + components: + - type: Transform + pos: -36.14434,9.678255 + parent: 2 + - uid: 1162 + components: + - type: Transform + pos: -36.14434,9.428255 + parent: 2 +- proto: BoxMagazineLightRifle + entities: + - uid: 1164 + components: + - type: Transform + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineLightRiflePractice + entities: + - uid: 1165 + components: + - type: Transform + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolHighCapacityPractice + entities: + - uid: 1172 + components: + - type: Transform + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazinePistolSubMachineGunTopMounted + entities: + - uid: 27314 + components: + - type: Transform + pos: 5.8222504,-10.36261 + parent: 27260 + - uid: 27316 + components: + - type: Transform + parent: 27315 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineRifle + entities: + - uid: 27319 + components: + - type: Transform + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxMagazineShotgun + entities: + - uid: 27323 + components: + - type: Transform + pos: 4.6796875,-13.509033 + parent: 27260 +- proto: BoxMousetrap + entities: + - uid: 1179 + components: + - type: Transform + pos: -36.61309,9.647005 + parent: 2 +- proto: BoxMouthSwab + entities: + - uid: 1180 + components: + - type: Transform + pos: 5.317952,30.635622 + parent: 2 + - uid: 1181 + components: + - type: Transform + pos: 5.7715664,30.619997 + parent: 2 +- proto: BoxMRE + entities: + - uid: 23962 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23963 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23964 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23965 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23966 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23967 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23968 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23969 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23970 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23971 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23972 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23973 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23974 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23975 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23976 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23977 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23978 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23979 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23980 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23981 + components: + - type: Transform + parent: 23961 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25064 + components: + - type: Transform + pos: 11.59539,5.523186 + parent: 24450 + - uid: 25065 + components: + - type: Transform + pos: 11.611015,9.488903 + parent: 24450 + - uid: 25066 + components: + - type: Transform + pos: 11.548515,11.535778 + parent: 24450 + - uid: 25067 + components: + - type: Transform + pos: -35.65962,9.535778 + parent: 24450 + - uid: 25068 + components: + - type: Transform + pos: -35.65962,11.535778 + parent: 24450 + - uid: 25069 + components: + - type: Transform + pos: -35.62837,5.4420276 + parent: 24450 + - uid: 27324 + components: + - type: Transform + pos: -1.5990448,-6.3531494 + parent: 27260 + - uid: 27325 + components: + - type: Transform + pos: -1.432373,-6.4503784 + parent: 27260 + - uid: 27326 + components: + - type: Transform + pos: -1.557373,-6.533722 + parent: 27260 +- proto: BoxNitrileGloves + entities: + - uid: 1182 + components: + - type: Transform + pos: -10.460536,17.614714 + parent: 2 +- proto: BoxPillCanister + entities: + - uid: 27295 + components: + - type: Transform + parent: 27293 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShellTranquilizer + entities: + - uid: 1184 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1185 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunFlare + entities: + - uid: 1186 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunIncendiary + entities: + - uid: 1187 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1188 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunPractice + entities: + - uid: 1173 + components: + - type: Transform + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1174 + components: + - type: Transform + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxShotgunSlug + entities: + - uid: 1189 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1190 + components: + - type: Transform + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BoxSterileMask + entities: + - uid: 1197 + components: + - type: Transform + pos: 12.745394,-0.41324234 + parent: 2 + - uid: 1198 + components: + - type: Transform + pos: -12.570879,13.642749 + parent: 2 + - uid: 1199 + components: + - type: Transform + pos: 5.479253,33.229057 + parent: 2 + - uid: 1200 + components: + - type: Transform + pos: 5.5059414,30.260622 + parent: 2 + - uid: 1201 + components: + - type: Transform + pos: 33.262108,20.3741 + parent: 2 +- proto: BoxSyringe + entities: + - uid: 1202 + components: + - type: Transform + pos: 15.709843,-0.37841368 + parent: 2 + - uid: 23940 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrbSign + entities: + - uid: 1203 + components: + - type: Transform + pos: 41.54235,9.564385 + parent: 2 + - uid: 1204 + components: + - type: Transform + pos: 40.5,14.5 + parent: 2 +- proto: BriefcaseBrown + entities: + - uid: 1205 + components: + - type: Transform + pos: 20.488884,12.603939 + parent: 2 +- proto: BrigmedicIDCard + entities: + - uid: 1206 + components: + - type: Transform + pos: 42.24128,10.763885 + parent: 2 +- proto: BrigmedicPDA + entities: + - uid: 1207 + components: + - type: Transform + pos: 42.189194,10.409718 + parent: 2 +- proto: BrigTimer + entities: + - uid: 1208 + components: + - type: Transform + pos: 20.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23359: + - Start: Close + - Timer: AutoClose + - Timer: Open + - type: DeviceLinkSink + links: + - 23360 + - uid: 1209 + components: + - type: Transform + pos: 26.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23361: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 1210 + components: + - type: Transform + pos: 23.5,-11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 23360: + - Start: Close + - Timer: AutoClose + - Timer: Open + - uid: 1211 + components: + - type: Transform + pos: 17.5,-11.5 + parent: 2 +- proto: BrokenBottle + entities: + - uid: 1212 + components: + - type: Transform + pos: -39.725395,28.237118 + parent: 2 +- proto: BruteAutoInjector + entities: + - uid: 595 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 596 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23941 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23942 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24530 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Brutepack + entities: + - uid: 24348 + components: + - type: Transform + parent: 24347 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25071 + components: + - type: Transform + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25079 + components: + - type: Transform + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25086 + components: + - type: Transform + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25093 + components: + - type: Transform + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25101 + components: + - type: Transform + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25108 + components: + - type: Transform + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: BrutepackAdvanced1 + entities: + - uid: 1213 + components: + - type: Transform + pos: -10.536647,19.594604 + parent: 2 +- proto: Bucket + entities: + - uid: 1214 + components: + - type: Transform + pos: -8.91569,-1.1623886 + parent: 2 + - uid: 1215 + components: + - type: Transform + pos: -6.1851063,35.372414 + parent: 2 + - uid: 1216 + components: + - type: Transform + pos: 28.68244,25.837227 + parent: 2 + - uid: 1217 + components: + - type: Transform + pos: 35.65477,-19.538193 + parent: 2 + - uid: 1218 + components: + - type: Transform + pos: 42.445152,-28.240416 + parent: 2 + - uid: 1219 + components: + - type: Transform + pos: 53.45202,-26.642078 + parent: 2 + - uid: 1220 + components: + - type: Transform + pos: 53.436394,-23.626453 + parent: 2 + - uid: 1221 + components: + - type: Transform + pos: 53.405144,-19.517078 + parent: 2 +- proto: BulletFoam + entities: + - uid: 1222 + components: + - type: Transform + pos: 48.772915,-21.37861 + parent: 2 + - uid: 1223 + components: + - type: Transform + pos: 48.897915,-21.47236 + parent: 2 + - uid: 1224 + components: + - type: Transform + pos: 49.63229,-21.394236 + parent: 2 + - uid: 1225 + components: + - type: Transform + pos: 49.741665,-21.50361 + parent: 2 +- proto: BurnAutoInjector + entities: + - uid: 597 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 598 + components: + - type: Transform + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23943 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23944 + components: + - type: Transform + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24531 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ButtonFrameCaution + entities: + - uid: 1226 + components: + - type: Transform + pos: -128.5,-0.5 + parent: 2 + - uid: 1227 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -128.5,8.5 + parent: 2 +- proto: ButtonFrameCautionSecurity + entities: + - uid: 1228 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - uid: 1229 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + - uid: 27327 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.517624,-6.217499 + parent: 27260 +- proto: CableApcExtension + entities: + - uid: 1230 + components: + - type: Transform + pos: -2.5,-38.5 + parent: 2 + - uid: 1231 + components: + - type: Transform + pos: 46.5,-5.5 + parent: 2 + - uid: 1232 + components: + - type: Transform + pos: -0.5,0.5 + parent: 2 + - uid: 1233 + components: + - type: Transform + pos: 1.5,-41.5 + parent: 2 + - uid: 1234 + components: + - type: Transform + pos: -126.5,-8.5 + parent: 2 + - uid: 1235 + components: + - type: Transform + pos: -3.5,-41.5 + parent: 2 + - uid: 1236 + components: + - type: Transform + pos: 2.5,-30.5 + parent: 2 + - uid: 1237 + components: + - type: Transform + pos: 2.5,-27.5 + parent: 2 + - uid: 1238 + components: + - type: Transform + pos: 2.5,-28.5 + parent: 2 + - uid: 1239 + components: + - type: Transform + pos: -34.5,-6.5 + parent: 2 + - uid: 1240 + components: + - type: Transform + pos: -5.5,-31.5 + parent: 2 + - uid: 1241 + components: + - type: Transform + pos: -5.5,-32.5 + parent: 2 + - uid: 1242 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 1243 + components: + - type: Transform + pos: -10.5,-17.5 + parent: 2 + - uid: 1244 + components: + - type: Transform + pos: -5.5,-28.5 + parent: 2 + - uid: 1245 + components: + - type: Transform + pos: -8.5,-31.5 + parent: 2 + - uid: 1246 + components: + - type: Transform + pos: -8.5,-28.5 + parent: 2 + - uid: 1247 + components: + - type: Transform + pos: -8.5,-29.5 + parent: 2 + - uid: 1248 + components: + - type: Transform + pos: -7.5,-24.5 + parent: 2 + - uid: 1249 + components: + - type: Transform + pos: -1.5,-40.5 + parent: 2 + - uid: 1250 + components: + - type: Transform + pos: -1.5,-38.5 + parent: 2 + - uid: 1251 + components: + - type: Transform + pos: -0.5,-24.5 + parent: 2 + - uid: 1252 + components: + - type: Transform + pos: 50.5,4.5 + parent: 2 + - uid: 1253 + components: + - type: Transform + pos: 51.5,5.5 + parent: 2 + - uid: 1254 + components: + - type: Transform + pos: 50.5,5.5 + parent: 2 + - uid: 1255 + components: + - type: Transform + pos: -81.5,37.5 + parent: 2 + - uid: 1256 + components: + - type: Transform + pos: 51.5,-25.5 + parent: 2 + - uid: 1257 + components: + - type: Transform + pos: 47.5,14.5 + parent: 2 + - uid: 1258 + components: + - type: Transform + pos: 49.5,12.5 + parent: 2 + - uid: 1259 + components: + - type: Transform + pos: 48.5,12.5 + parent: 2 + - uid: 1260 + components: + - type: Transform + pos: 47.5,12.5 + parent: 2 + - uid: 1261 + components: + - type: Transform + pos: 47.5,13.5 + parent: 2 + - uid: 1262 + components: + - type: Transform + pos: 47.5,11.5 + parent: 2 + - uid: 1263 + components: + - type: Transform + pos: 47.5,10.5 + parent: 2 + - uid: 1264 + components: + - type: Transform + pos: 50.5,13.5 + parent: 2 + - uid: 1265 + components: + - type: Transform + pos: 49.5,13.5 + parent: 2 + - uid: 1266 + components: + - type: Transform + pos: 1.5,-24.5 + parent: 2 + - uid: 1267 + components: + - type: Transform + pos: 61.5,10.5 + parent: 2 + - uid: 1268 + components: + - type: Transform + pos: 60.5,11.5 + parent: 2 + - uid: 1269 + components: + - type: Transform + pos: 49.5,4.5 + parent: 2 + - uid: 1270 + components: + - type: Transform + pos: 48.5,4.5 + parent: 2 + - uid: 1271 + components: + - type: Transform + pos: 52.5,4.5 + parent: 2 + - uid: 1272 + components: + - type: Transform + pos: 52.5,3.5 + parent: 2 + - uid: 1273 + components: + - type: Transform + pos: 52.5,2.5 + parent: 2 + - uid: 1274 + components: + - type: Transform + pos: 52.5,1.5 + parent: 2 + - uid: 1275 + components: + - type: Transform + pos: 52.5,0.5 + parent: 2 + - uid: 1276 + components: + - type: Transform + pos: 52.5,5.5 + parent: 2 + - uid: 1277 + components: + - type: Transform + pos: 52.5,6.5 + parent: 2 + - uid: 1278 + components: + - type: Transform + pos: 52.5,7.5 + parent: 2 + - uid: 1279 + components: + - type: Transform + pos: 52.5,8.5 + parent: 2 + - uid: 1280 + components: + - type: Transform + pos: 52.5,9.5 + parent: 2 + - uid: 1281 + components: + - type: Transform + pos: 52.5,10.5 + parent: 2 + - uid: 1282 + components: + - type: Transform + pos: 52.5,11.5 + parent: 2 + - uid: 1283 + components: + - type: Transform + pos: 53.5,11.5 + parent: 2 + - uid: 1284 + components: + - type: Transform + pos: 53.5,12.5 + parent: 2 + - uid: 1285 + components: + - type: Transform + pos: 53.5,13.5 + parent: 2 + - uid: 1286 + components: + - type: Transform + pos: 53.5,14.5 + parent: 2 + - uid: 1287 + components: + - type: Transform + pos: 54.5,11.5 + parent: 2 + - uid: 1288 + components: + - type: Transform + pos: 55.5,11.5 + parent: 2 + - uid: 1289 + components: + - type: Transform + pos: 56.5,11.5 + parent: 2 + - uid: 1290 + components: + - type: Transform + pos: 57.5,11.5 + parent: 2 + - uid: 1291 + components: + - type: Transform + pos: 58.5,11.5 + parent: 2 + - uid: 1292 + components: + - type: Transform + pos: 59.5,11.5 + parent: 2 + - uid: 1293 + components: + - type: Transform + pos: 58.5,12.5 + parent: 2 + - uid: 1294 + components: + - type: Transform + pos: 58.5,13.5 + parent: 2 + - uid: 1295 + components: + - type: Transform + pos: 58.5,14.5 + parent: 2 + - uid: 1296 + components: + - type: Transform + pos: 54.5,14.5 + parent: 2 + - uid: 1297 + components: + - type: Transform + pos: 55.5,14.5 + parent: 2 + - uid: 1298 + components: + - type: Transform + pos: 56.5,14.5 + parent: 2 + - uid: 1299 + components: + - type: Transform + pos: 57.5,14.5 + parent: 2 + - uid: 1300 + components: + - type: Transform + pos: 61.5,11.5 + parent: 2 + - uid: 1301 + components: + - type: Transform + pos: 62.5,11.5 + parent: 2 + - uid: 1302 + components: + - type: Transform + pos: 63.5,11.5 + parent: 2 + - uid: 1303 + components: + - type: Transform + pos: 64.5,11.5 + parent: 2 + - uid: 1304 + components: + - type: Transform + pos: 65.5,11.5 + parent: 2 + - uid: 1305 + components: + - type: Transform + pos: 64.5,12.5 + parent: 2 + - uid: 1306 + components: + - type: Transform + pos: 61.5,9.5 + parent: 2 + - uid: 1307 + components: + - type: Transform + pos: 61.5,8.5 + parent: 2 + - uid: 1308 + components: + - type: Transform + pos: 61.5,7.5 + parent: 2 + - uid: 1309 + components: + - type: Transform + pos: 61.5,6.5 + parent: 2 + - uid: 1310 + components: + - type: Transform + pos: 61.5,5.5 + parent: 2 + - uid: 1311 + components: + - type: Transform + pos: 61.5,4.5 + parent: 2 + - uid: 1312 + components: + - type: Transform + pos: 61.5,3.5 + parent: 2 + - uid: 1313 + components: + - type: Transform + pos: 61.5,2.5 + parent: 2 + - uid: 1314 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 1315 + components: + - type: Transform + pos: 61.5,0.5 + parent: 2 + - uid: 1316 + components: + - type: Transform + pos: 58.5,1.5 + parent: 2 + - uid: 1317 + components: + - type: Transform + pos: 53.5,8.5 + parent: 2 + - uid: 1318 + components: + - type: Transform + pos: 54.5,8.5 + parent: 2 + - uid: 1319 + components: + - type: Transform + pos: 55.5,8.5 + parent: 2 + - uid: 1320 + components: + - type: Transform + pos: 56.5,8.5 + parent: 2 + - uid: 1321 + components: + - type: Transform + pos: 57.5,8.5 + parent: 2 + - uid: 1322 + components: + - type: Transform + pos: 58.5,8.5 + parent: 2 + - uid: 1323 + components: + - type: Transform + pos: 59.5,8.5 + parent: 2 + - uid: 1324 + components: + - type: Transform + pos: 60.5,8.5 + parent: 2 + - uid: 1325 + components: + - type: Transform + pos: 60.5,0.5 + parent: 2 + - uid: 1326 + components: + - type: Transform + pos: 59.5,0.5 + parent: 2 + - uid: 1327 + components: + - type: Transform + pos: 58.5,0.5 + parent: 2 + - uid: 1328 + components: + - type: Transform + pos: 57.5,0.5 + parent: 2 + - uid: 1329 + components: + - type: Transform + pos: 56.5,0.5 + parent: 2 + - uid: 1330 + components: + - type: Transform + pos: 55.5,0.5 + parent: 2 + - uid: 1331 + components: + - type: Transform + pos: 54.5,0.5 + parent: 2 + - uid: 1332 + components: + - type: Transform + pos: 53.5,0.5 + parent: 2 + - uid: 1333 + components: + - type: Transform + pos: 58.5,2.5 + parent: 2 + - uid: 1334 + components: + - type: Transform + pos: 58.5,3.5 + parent: 2 + - uid: 1335 + components: + - type: Transform + pos: 58.5,4.5 + parent: 2 + - uid: 1336 + components: + - type: Transform + pos: 57.5,4.5 + parent: 2 + - uid: 1337 + components: + - type: Transform + pos: 56.5,4.5 + parent: 2 + - uid: 1338 + components: + - type: Transform + pos: 55.5,4.5 + parent: 2 + - uid: 1339 + components: + - type: Transform + pos: 55.5,5.5 + parent: 2 + - uid: 1340 + components: + - type: Transform + pos: 55.5,3.5 + parent: 2 + - uid: 1341 + components: + - type: Transform + pos: 58.5,5.5 + parent: 2 + - uid: 1342 + components: + - type: Transform + pos: 58.5,6.5 + parent: 2 + - uid: 1343 + components: + - type: Transform + pos: 58.5,7.5 + parent: 2 + - uid: 1344 + components: + - type: Transform + pos: 51.5,7.5 + parent: 2 + - uid: 1345 + components: + - type: Transform + pos: 50.5,7.5 + parent: 2 + - uid: 1346 + components: + - type: Transform + pos: 48.5,7.5 + parent: 2 + - uid: 1347 + components: + - type: Transform + pos: 49.5,7.5 + parent: 2 + - uid: 1348 + components: + - type: Transform + pos: 48.5,1.5 + parent: 2 + - uid: 1349 + components: + - type: Transform + pos: 49.5,1.5 + parent: 2 + - uid: 1350 + components: + - type: Transform + pos: 50.5,1.5 + parent: 2 + - uid: 1351 + components: + - type: Transform + pos: 51.5,1.5 + parent: 2 + - uid: 1352 + components: + - type: Transform + pos: 2.5,-24.5 + parent: 2 + - uid: 1353 + components: + - type: Transform + pos: 2.5,-20.5 + parent: 2 + - uid: 1354 + components: + - type: Transform + pos: -9.5,-16.5 + parent: 2 + - uid: 1355 + components: + - type: Transform + pos: -8.5,-16.5 + parent: 2 + - uid: 1356 + components: + - type: Transform + pos: -7.5,-16.5 + parent: 2 + - uid: 1357 + components: + - type: Transform + pos: -1.5,-39.5 + parent: 2 + - uid: 1358 + components: + - type: Transform + pos: -1.5,-36.5 + parent: 2 + - uid: 1359 + components: + - type: Transform + pos: -1.5,-32.5 + parent: 2 + - uid: 1360 + components: + - type: Transform + pos: -2.5,-30.5 + parent: 2 + - uid: 1361 + components: + - type: Transform + pos: -3.5,-30.5 + parent: 2 + - uid: 1362 + components: + - type: Transform + pos: -10.5,-16.5 + parent: 2 + - uid: 1363 + components: + - type: Transform + pos: -14.5,-16.5 + parent: 2 + - uid: 1364 + components: + - type: Transform + pos: 14.5,29.5 + parent: 2 + - uid: 1365 + components: + - type: Transform + pos: -5.5,-16.5 + parent: 2 + - uid: 1366 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 1367 + components: + - type: Transform + pos: -6.5,-16.5 + parent: 2 + - uid: 1368 + components: + - type: Transform + pos: -19.5,10.5 + parent: 2 + - uid: 1369 + components: + - type: Transform + pos: -83.5,30.5 + parent: 2 + - uid: 1370 + components: + - type: Transform + pos: 0.5,-41.5 + parent: 2 + - uid: 1371 + components: + - type: Transform + pos: 2.5,-21.5 + parent: 2 + - uid: 1372 + components: + - type: Transform + pos: -5.5,-22.5 + parent: 2 + - uid: 1373 + components: + - type: Transform + pos: -9.5,-22.5 + parent: 2 + - uid: 1374 + components: + - type: Transform + pos: -15.5,-22.5 + parent: 2 + - uid: 1375 + components: + - type: Transform + pos: -16.5,-22.5 + parent: 2 + - uid: 1376 + components: + - type: Transform + pos: -19.5,-22.5 + parent: 2 + - uid: 1377 + components: + - type: Transform + pos: -20.5,-20.5 + parent: 2 + - uid: 1378 + components: + - type: Transform + pos: -22.5,-17.5 + parent: 2 + - uid: 1379 + components: + - type: Transform + pos: -22.5,-16.5 + parent: 2 + - uid: 1380 + components: + - type: Transform + pos: -20.5,-16.5 + parent: 2 + - uid: 1381 + components: + - type: Transform + pos: -16.5,-18.5 + parent: 2 + - uid: 1382 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1383 + components: + - type: Transform + pos: -16.5,-17.5 + parent: 2 + - uid: 1384 + components: + - type: Transform + pos: -4.5,-35.5 + parent: 2 + - uid: 1385 + components: + - type: Transform + pos: -3.5,-35.5 + parent: 2 + - uid: 1386 + components: + - type: Transform + pos: -2.5,-35.5 + parent: 2 + - uid: 1387 + components: + - type: Transform + pos: -1.5,-24.5 + parent: 2 + - uid: 1388 + components: + - type: Transform + pos: -6.5,-35.5 + parent: 2 + - uid: 1389 + components: + - type: Transform + pos: -11.5,-16.5 + parent: 2 + - uid: 1390 + components: + - type: Transform + pos: -12.5,-16.5 + parent: 2 + - uid: 1391 + components: + - type: Transform + pos: -13.5,-16.5 + parent: 2 + - uid: 1392 + components: + - type: Transform + pos: -5.5,-30.5 + parent: 2 + - uid: 1393 + components: + - type: Transform + pos: -6.5,-30.5 + parent: 2 + - uid: 1394 + components: + - type: Transform + pos: -7.5,-30.5 + parent: 2 + - uid: 1395 + components: + - type: Transform + pos: -8.5,-30.5 + parent: 2 + - uid: 1396 + components: + - type: Transform + pos: -9.5,-30.5 + parent: 2 + - uid: 1397 + components: + - type: Transform + pos: -4.5,-30.5 + parent: 2 + - uid: 1398 + components: + - type: Transform + pos: -1.5,-35.5 + parent: 2 + - uid: 1399 + components: + - type: Transform + pos: -1.5,-33.5 + parent: 2 + - uid: 1400 + components: + - type: Transform + pos: -5.5,-41.5 + parent: 2 + - uid: 1401 + components: + - type: Transform + pos: 0.5,-24.5 + parent: 2 + - uid: 1402 + components: + - type: Transform + pos: -82.5,30.5 + parent: 2 + - uid: 1403 + components: + - type: Transform + pos: -7.5,-35.5 + parent: 2 + - uid: 1404 + components: + - type: Transform + pos: -5.5,-35.5 + parent: 2 + - uid: 1405 + components: + - type: Transform + pos: -4.5,-18.5 + parent: 2 + - uid: 1406 + components: + - type: Transform + pos: -4.5,-17.5 + parent: 2 + - uid: 1407 + components: + - type: Transform + pos: -4.5,-16.5 + parent: 2 + - uid: 1408 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 2 + - uid: 1409 + components: + - type: Transform + pos: -4.5,-14.5 + parent: 2 + - uid: 1410 + components: + - type: Transform + pos: -5.5,-14.5 + parent: 2 + - uid: 1411 + components: + - type: Transform + pos: -6.5,-14.5 + parent: 2 + - uid: 1412 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 1413 + components: + - type: Transform + pos: -7.5,-14.5 + parent: 2 + - uid: 1414 + components: + - type: Transform + pos: -8.5,-14.5 + parent: 2 + - uid: 1415 + components: + - type: Transform + pos: -9.5,-14.5 + parent: 2 + - uid: 1416 + components: + - type: Transform + pos: -10.5,-14.5 + parent: 2 + - uid: 1417 + components: + - type: Transform + pos: -11.5,-14.5 + parent: 2 + - uid: 1418 + components: + - type: Transform + pos: -12.5,-14.5 + parent: 2 + - uid: 1419 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1420 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1421 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1422 + components: + - type: Transform + pos: 2.5,-31.5 + parent: 2 + - uid: 1423 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1424 + components: + - type: Transform + pos: -14.5,-14.5 + parent: 2 + - uid: 1425 + components: + - type: Transform + pos: -13.5,-14.5 + parent: 2 + - uid: 1426 + components: + - type: Transform + pos: -15.5,-14.5 + parent: 2 + - uid: 1427 + components: + - type: Transform + pos: -10.5,-18.5 + parent: 2 + - uid: 1428 + components: + - type: Transform + pos: 4.5,-29.5 + parent: 2 + - uid: 1429 + components: + - type: Transform + pos: 2.5,-23.5 + parent: 2 + - uid: 1430 + components: + - type: Transform + pos: 2.5,-22.5 + parent: 2 + - uid: 1431 + components: + - type: Transform + pos: 2.5,-19.5 + parent: 2 + - uid: 1432 + components: + - type: Transform + pos: 2.5,-41.5 + parent: 2 + - uid: 1433 + components: + - type: Transform + pos: -10.5,-22.5 + parent: 2 + - uid: 1434 + components: + - type: Transform + pos: -19.5,-19.5 + parent: 2 + - uid: 1435 + components: + - type: Transform + pos: -17.5,-16.5 + parent: 2 + - uid: 1436 + components: + - type: Transform + pos: 0.5,23.5 + parent: 2 + - uid: 1437 + components: + - type: Transform + pos: -15.5,-19.5 + parent: 2 + - uid: 1438 + components: + - type: Transform + pos: -16.5,-16.5 + parent: 2 + - uid: 1439 + components: + - type: Transform + pos: 5.5,-29.5 + parent: 2 + - uid: 1440 + components: + - type: Transform + pos: 2.5,-29.5 + parent: 2 + - uid: 1441 + components: + - type: Transform + pos: 3.5,-29.5 + parent: 2 + - uid: 1442 + components: + - type: Transform + pos: -7.5,-22.5 + parent: 2 + - uid: 1443 + components: + - type: Transform + pos: -7.5,-21.5 + parent: 2 + - uid: 1444 + components: + - type: Transform + pos: -6.5,-22.5 + parent: 2 + - uid: 1445 + components: + - type: Transform + pos: -14.5,-22.5 + parent: 2 + - uid: 1446 + components: + - type: Transform + pos: -8.5,-22.5 + parent: 2 + - uid: 1447 + components: + - type: Transform + pos: -13.5,-22.5 + parent: 2 + - uid: 1448 + components: + - type: Transform + pos: -18.5,-22.5 + parent: 2 + - uid: 1449 + components: + - type: Transform + pos: -22.5,-20.5 + parent: 2 + - uid: 1450 + components: + - type: Transform + pos: -19.5,-21.5 + parent: 2 + - uid: 1451 + components: + - type: Transform + pos: -22.5,-19.5 + parent: 2 + - uid: 1452 + components: + - type: Transform + pos: -21.5,-20.5 + parent: 2 + - uid: 1453 + components: + - type: Transform + pos: -22.5,-18.5 + parent: 2 + - uid: 1454 + components: + - type: Transform + pos: -21.5,-16.5 + parent: 2 + - uid: 1455 + components: + - type: Transform + pos: -19.5,-16.5 + parent: 2 + - uid: 1456 + components: + - type: Transform + pos: -19.5,-20.5 + parent: 2 + - uid: 1457 + components: + - type: Transform + pos: 2.5,-26.5 + parent: 2 + - uid: 1458 + components: + - type: Transform + pos: -1.5,-34.5 + parent: 2 + - uid: 1459 + components: + - type: Transform + pos: -4.5,-41.5 + parent: 2 + - uid: 1460 + components: + - type: Transform + pos: -7.5,-23.5 + parent: 2 + - uid: 1461 + components: + - type: Transform + pos: -7.5,-41.5 + parent: 2 + - uid: 1462 + components: + - type: Transform + pos: -0.5,-41.5 + parent: 2 + - uid: 1463 + components: + - type: Transform + pos: 0.5,-26.5 + parent: 2 + - uid: 1464 + components: + - type: Transform + pos: 3.5,-41.5 + parent: 2 + - uid: 1465 + components: + - type: Transform + pos: -14.5,-19.5 + parent: 2 + - uid: 1466 + components: + - type: Transform + pos: -1.5,-22.5 + parent: 2 + - uid: 1467 + components: + - type: Transform + pos: -1.5,-21.5 + parent: 2 + - uid: 1468 + components: + - type: Transform + pos: -1.5,-20.5 + parent: 2 + - uid: 1469 + components: + - type: Transform + pos: -1.5,-19.5 + parent: 2 + - uid: 1470 + components: + - type: Transform + pos: -1.5,-41.5 + parent: 2 + - uid: 1471 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 2 + - uid: 1472 + components: + - type: Transform + pos: -16.5,-19.5 + parent: 2 + - uid: 1473 + components: + - type: Transform + pos: -2.5,-41.5 + parent: 2 + - uid: 1474 + components: + - type: Transform + pos: -1.5,-37.5 + parent: 2 + - uid: 1475 + components: + - type: Transform + pos: -11.5,-19.5 + parent: 2 + - uid: 1476 + components: + - type: Transform + pos: -12.5,-22.5 + parent: 2 + - uid: 1477 + components: + - type: Transform + pos: -8.5,-32.5 + parent: 2 + - uid: 1478 + components: + - type: Transform + pos: 39.5,5.5 + parent: 2 + - uid: 1479 + components: + - type: Transform + pos: 44.5,11.5 + parent: 2 + - uid: 1480 + components: + - type: Transform + pos: 44.5,12.5 + parent: 2 + - uid: 1481 + components: + - type: Transform + pos: 43.5,12.5 + parent: 2 + - uid: 1482 + components: + - type: Transform + pos: 42.5,12.5 + parent: 2 + - uid: 1483 + components: + - type: Transform + pos: 41.5,12.5 + parent: 2 + - uid: 1484 + components: + - type: Transform + pos: 44.5,10.5 + parent: 2 + - uid: 1485 + components: + - type: Transform + pos: 44.5,9.5 + parent: 2 + - uid: 1486 + components: + - type: Transform + pos: 44.5,8.5 + parent: 2 + - uid: 1487 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 1488 + components: + - type: Transform + pos: 44.5,6.5 + parent: 2 + - uid: 1489 + components: + - type: Transform + pos: 44.5,5.5 + parent: 2 + - uid: 1490 + components: + - type: Transform + pos: 44.5,4.5 + parent: 2 + - uid: 1491 + components: + - type: Transform + pos: 43.5,6.5 + parent: 2 + - uid: 1492 + components: + - type: Transform + pos: 42.5,6.5 + parent: 2 + - uid: 1493 + components: + - type: Transform + pos: 43.5,9.5 + parent: 2 + - uid: 1494 + components: + - type: Transform + pos: 42.5,9.5 + parent: 2 + - uid: 1495 + components: + - type: Transform + pos: 45.5,9.5 + parent: 2 + - uid: 1496 + components: + - type: Transform + pos: 45.5,6.5 + parent: 2 + - uid: 1497 + components: + - type: Transform + pos: 1.5,23.5 + parent: 2 + - uid: 1498 + components: + - type: Transform + pos: 49.5,-2.5 + parent: 2 + - uid: 1499 + components: + - type: Transform + pos: 31.5,9.5 + parent: 2 + - uid: 1500 + components: + - type: Transform + pos: 33.5,8.5 + parent: 2 + - uid: 1501 + components: + - type: Transform + pos: 32.5,5.5 + parent: 2 + - uid: 1502 + components: + - type: Transform + pos: 39.5,6.5 + parent: 2 + - uid: 1503 + components: + - type: Transform + pos: 31.5,8.5 + parent: 2 + - uid: 1504 + components: + - type: Transform + pos: 32.5,8.5 + parent: 2 + - uid: 1505 + components: + - type: Transform + pos: 30.5,8.5 + parent: 2 + - uid: 1506 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 1507 + components: + - type: Transform + pos: 31.5,6.5 + parent: 2 + - uid: 1508 + components: + - type: Transform + pos: 30.5,6.5 + parent: 2 + - uid: 1509 + components: + - type: Transform + pos: 30.5,5.5 + parent: 2 + - uid: 1510 + components: + - type: Transform + pos: 32.5,6.5 + parent: 2 + - uid: 1511 + components: + - type: Transform + pos: 39.5,14.5 + parent: 2 + - uid: 1512 + components: + - type: Transform + pos: 38.5,14.5 + parent: 2 + - uid: 1513 + components: + - type: Transform + pos: 37.5,14.5 + parent: 2 + - uid: 1514 + components: + - type: Transform + pos: 37.5,15.5 + parent: 2 + - uid: 1515 + components: + - type: Transform + pos: 36.5,15.5 + parent: 2 + - uid: 1516 + components: + - type: Transform + pos: 35.5,15.5 + parent: 2 + - uid: 1517 + components: + - type: Transform + pos: 34.5,15.5 + parent: 2 + - uid: 1518 + components: + - type: Transform + pos: 33.5,15.5 + parent: 2 + - uid: 1519 + components: + - type: Transform + pos: 32.5,15.5 + parent: 2 + - uid: 1520 + components: + - type: Transform + pos: 31.5,15.5 + parent: 2 + - uid: 1521 + components: + - type: Transform + pos: 31.5,14.5 + parent: 2 + - uid: 1522 + components: + - type: Transform + pos: 31.5,13.5 + parent: 2 + - uid: 1523 + components: + - type: Transform + pos: 31.5,12.5 + parent: 2 + - uid: 1524 + components: + - type: Transform + pos: 32.5,12.5 + parent: 2 + - uid: 1525 + components: + - type: Transform + pos: 33.5,12.5 + parent: 2 + - uid: 1526 + components: + - type: Transform + pos: 34.5,12.5 + parent: 2 + - uid: 1527 + components: + - type: Transform + pos: 35.5,12.5 + parent: 2 + - uid: 1528 + components: + - type: Transform + pos: 36.5,12.5 + parent: 2 + - uid: 1529 + components: + - type: Transform + pos: 37.5,12.5 + parent: 2 + - uid: 1530 + components: + - type: Transform + pos: 37.5,13.5 + parent: 2 + - uid: 1531 + components: + - type: Transform + pos: 35.5,11.5 + parent: 2 + - uid: 1532 + components: + - type: Transform + pos: 35.5,10.5 + parent: 2 + - uid: 1533 + components: + - type: Transform + pos: 41.5,4.5 + parent: 2 + - uid: 1534 + components: + - type: Transform + pos: 40.5,4.5 + parent: 2 + - uid: 1535 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - uid: 1536 + components: + - type: Transform + pos: 38.5,4.5 + parent: 2 + - uid: 1537 + components: + - type: Transform + pos: 36.5,2.5 + parent: 2 + - uid: 1538 + components: + - type: Transform + pos: 35.5,4.5 + parent: 2 + - uid: 1539 + components: + - type: Transform + pos: 34.5,4.5 + parent: 2 + - uid: 1540 + components: + - type: Transform + pos: 35.5,5.5 + parent: 2 + - uid: 1541 + components: + - type: Transform + pos: 35.5,6.5 + parent: 2 + - uid: 1542 + components: + - type: Transform + pos: 35.5,7.5 + parent: 2 + - uid: 1543 + components: + - type: Transform + pos: 39.5,7.5 + parent: 2 + - uid: 1544 + components: + - type: Transform + pos: 39.5,8.5 + parent: 2 + - uid: 1545 + components: + - type: Transform + pos: 39.5,3.5 + parent: 2 + - uid: 1546 + components: + - type: Transform + pos: 39.5,2.5 + parent: 2 + - uid: 1547 + components: + - type: Transform + pos: 39.5,1.5 + parent: 2 + - uid: 1548 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - uid: 1549 + components: + - type: Transform + pos: 35.5,2.5 + parent: 2 + - uid: 1550 + components: + - type: Transform + pos: 35.5,1.5 + parent: 2 + - uid: 1551 components: - type: Transform - pos: 26.5,38.5 - parent: 89 - - type: DeviceList - devices: - - 20114 - - 20144 - - 16796 - - 20032 - - 20033 - - 19960 - - 20031 - - 19963 - - 20129 - - 20145 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15419 + pos: 56.5,-5.5 + parent: 2 + - uid: 1552 components: - type: Transform - pos: 7.5,31.5 - parent: 89 - - type: DeviceList - devices: - - 15472 - - 15547 - - 16137 - - 15444 - - 15467 - - 15525 - - 20010 - - 20011 - - 20013 - - 20012 - - 15453 - - 15438 - - 20016 - - 20017 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16508 + pos: 57.5,-5.5 + parent: 2 + - uid: 1553 components: - type: Transform - pos: 8.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 20128 - - 20127 - - 12735 - - 10485 - - 12736 - - 10488 - - 12239 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17144 + pos: 58.5,-5.5 + parent: 2 + - uid: 1554 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,46.5 - parent: 89 - - type: DeviceList - devices: - - 17136 - - 17135 - - 17088 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17145 + pos: -5.5,-29.5 + parent: 2 + - uid: 1555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,34.5 - parent: 89 - - type: DeviceList - devices: - - 17138 - - 17137 - - 17017 - - 21260 - - 21262 - - 21226 - - 21259 - - 21223 - - 21261 - - 21225 - - 21264 - - 21227 - - 21228 - - 21263 - - 21222 - - 21244 - - type: AtmosDevice - joinedGrid: 89 - - uid: 18154 + pos: 37.5,7.5 + parent: 2 + - uid: 1556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-12.5 - parent: 18153 - - type: DeviceList - devices: - - 25525 - - 25526 - - 25425 - - 25424 - - 25426 - - 25527 - - type: AtmosDevice - joinedGrid: 18153 - - uid: 19675 + pos: 58.5,-4.5 + parent: 2 + - uid: 1557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 8758 - - 15725 - - 19409 - - 10758 - - 8531 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20004 + pos: 38.5,2.5 + parent: 2 + - uid: 1558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,20.5 - parent: 89 - - type: DeviceList - devices: - - 20021 - - 20020 - - 15589 - - 16165 - - 20025 - - 17039 - - 20018 - - 20019 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20115 + pos: 36.5,7.5 + parent: 2 + - uid: 1559 components: - type: Transform - pos: -2.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 121 - - 20108 - - 20109 - - 20110 - - 20111 - - 20112 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20116 + pos: 37.5,2.5 + parent: 2 + - uid: 1560 components: - type: Transform - pos: 5.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 9371 - - 9375 - - 13204 - - 5414 - - 5426 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20160 + pos: 22.5,-5.5 + parent: 2 + - uid: 1561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-34.5 - parent: 89 - - type: DeviceList - devices: - - 20173 - - 20161 - - 20164 - - 4759 - - 4761 - - 20149 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20176 + pos: 38.5,7.5 + parent: 2 + - uid: 1562 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-20.5 - parent: 89 - - type: DeviceList - devices: - - 20154 - - 4692 - - 4691 - - 20168 - - 20177 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20821 + pos: 20.5,-5.5 + parent: 2 + - uid: 1563 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 20142 - - 20804 - - 20442 - - 20823 - - 20094 - - 20093 - - 16549 - - type: AtmosDevice - joinedGrid: 89 - - uid: 21628 + pos: 19.5,-5.5 + parent: 2 + - uid: 1564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 21627 - - type: DeviceList - devices: - - 21692 - - 21631 - - 21693 - - 21681 - - 21682 - - 21680 - - 21683 - - type: AtmosDevice - joinedGrid: 21627 - - uid: 22475 + pos: -11.5,-22.5 + parent: 2 + - uid: 1565 components: - type: Transform - pos: 45.5,-17.5 - parent: 89 - - type: DeviceList - devices: - - 22473 - - 22470 - - 22466 - - 22439 - - 22313 - - 22501 - - 22314 - - 22437 - - type: AtmosDevice - joinedGrid: 89 - - uid: 22566 + pos: -1.5,-23.5 + parent: 2 + - uid: 1566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 22565 - - type: DeviceList - devices: - - 24378 - - 24406 - - 22631 - - 24379 - - 24403 - - 24404 - - 24380 - - 24381 - - 24405 - - 24007 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22567 + pos: 58.5,-3.5 + parent: 2 + - uid: 1567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 22565 - - type: DeviceList - devices: - - 24361 - - 22634 - - 24397 - - 23984 - - 23993 - - 23995 - - 23994 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22568 + pos: 53.5,-2.5 + parent: 2 + - uid: 1568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-25.5 - parent: 22565 - - type: DeviceList - devices: - - 24009 - - 24010 - - 22639 - - 24012 - - 24011 - - 24014 - - 24013 - - 24385 - - 24376 - - 24384 - - 24370 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22569 + pos: 53.5,-4.5 + parent: 2 + - uid: 1569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 22565 - - type: DeviceList - devices: - - 24007 - - 24006 - - 24005 - - 24004 - - 24003 - - 23989 - - 23990 - - 23988 - - 23987 - - 22636 - - 24377 - - 24399 - - 24402 - - 24363 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22570 + pos: 50.5,-2.5 + parent: 2 + - uid: 1570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,7.5 - parent: 22565 - - type: DeviceList - devices: - - 24388 - - 22633 - - 24367 - - 24359 - - 24390 - - 24389 - - 24365 - - 24366 - - 24391 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22571 + pos: 53.5,-1.5 + parent: 2 + - uid: 1571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,14.5 - parent: 22565 - - type: DeviceList - devices: - - 24396 - - 24373 - - 22640 - - 24374 - - 24395 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22572 + pos: 50.5,-1.5 + parent: 2 + - uid: 1572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,4.5 - parent: 22565 - - type: DeviceList - devices: - - 23985 - - 23986 - - 24371 - - 22632 - - 24392 - - 23992 - - 23991 - - 24002 - - 24001 - - 24000 - - 23999 - - 23998 - - 24375 - - 24394 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22573 + pos: 53.5,-0.5 + parent: 2 + - uid: 1573 components: - type: Transform - pos: -11.5,0.5 - parent: 22565 - - type: DeviceList - devices: - - 24387 - - 22635 - - 24368 - - 23996 - - 23997 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22574 + pos: 53.5,-3.5 + parent: 2 + - uid: 1574 components: - type: Transform - pos: -9.5,-20.5 - parent: 22565 - - type: DeviceList - devices: - - 24362 - - 24384 - - 22638 - - 24376 - - 24385 - - 24011 - - 24012 - - 24013 - - 24014 - - 24010 - - 24009 - - 24369 - - 24008 - - 22639 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 22575 + pos: -73.5,-16.5 + parent: 2 + - uid: 1575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,14.5 - parent: 22565 - - type: DeviceList - devices: - - 24400 - - 24382 - - 22637 - - 24383 - - 24401 - - 24006 - - 24005 - - 24004 - - 24003 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25421 + pos: -74.5,-16.5 + parent: 2 + - uid: 1576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 89 - - type: DeviceList - devices: - - 25414 - - 25415 - - 25417 - - 25416 - - 25418 - - type: AtmosDevice - joinedGrid: 89 -- proto: AirAlarmElectronics - entities: - - uid: 7043 + pos: 47.5,15.5 + parent: 2 + - uid: 1577 components: - type: Transform - pos: -98.70526,-9.816481 - parent: 89 - - uid: 7044 + pos: 58.5,-2.5 + parent: 2 + - uid: 1578 components: - type: Transform - pos: -98.36151,-9.957106 - parent: 89 -- proto: AirCanister - entities: - - uid: 987 + pos: 18.5,-1.5 + parent: 2 + - uid: 1579 components: - type: Transform - pos: -90.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 989 + pos: 14.5,18.5 + parent: 2 + - uid: 1580 components: - type: Transform - pos: -91.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3551 + pos: 62.5,-3.5 + parent: 2 + - uid: 1581 components: - type: Transform - pos: -93.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8127 + pos: 58.5,-0.5 + parent: 2 + - uid: 1582 components: - type: Transform - pos: 1.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9612 + pos: 54.5,-5.5 + parent: 2 + - uid: 1583 components: - type: Transform - pos: -94.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9639 + pos: 53.5,-5.5 + parent: 2 + - uid: 1584 components: - type: Transform - pos: -26.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14663 + pos: 55.5,-5.5 + parent: 2 + - uid: 1585 components: - type: Transform - pos: -111.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15459 + pos: 64.5,-3.5 + parent: 2 + - uid: 1586 components: - type: Transform - pos: 2.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16296 + pos: 63.5,-3.5 + parent: 2 + - uid: 1587 components: - type: Transform - pos: 5.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 18155 + pos: -72.5,-14.5 + parent: 2 + - uid: 1588 components: - type: Transform - pos: 2.5,-11.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - uid: 25676 + pos: 61.5,-3.5 + parent: 2 + - uid: 1589 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: Airlock - entities: - - uid: 1061 + pos: -72.5,-15.5 + parent: 2 + - uid: 1590 components: - type: Transform - pos: 1.5,3.5 - parent: 89 - - uid: 2319 + pos: -18.5,13.5 + parent: 2 + - uid: 1591 components: - type: Transform - pos: -76.5,9.5 - parent: 89 - - uid: 2320 + pos: -73.5,-15.5 + parent: 2 + - uid: 1592 components: - type: Transform - pos: -76.5,8.5 - parent: 89 - - uid: 2634 + pos: -73.5,-14.5 + parent: 2 + - uid: 1593 components: - type: Transform - pos: -70.5,10.5 - parent: 89 - - uid: 2635 + pos: -73.5,-13.5 + parent: 2 + - uid: 1594 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 2642 + pos: -72.5,-16.5 + parent: 2 + - uid: 1595 components: - type: Transform - pos: -70.5,16.5 - parent: 89 - - uid: 2643 + pos: -71.5,-16.5 + parent: 2 + - uid: 1596 components: - type: Transform - pos: -70.5,17.5 - parent: 89 - - uid: 2644 + pos: -70.5,-16.5 + parent: 2 + - uid: 1597 components: - type: Transform - pos: -70.5,18.5 - parent: 89 - - uid: 2647 + pos: -69.5,-16.5 + parent: 2 + - uid: 1598 components: - type: Transform - pos: -50.5,18.5 - parent: 89 - - uid: 2648 + pos: -70.5,-7.5 + parent: 2 + - uid: 1599 components: - type: Transform - pos: -50.5,17.5 - parent: 89 - - uid: 2649 + pos: -65.5,-8.5 + parent: 2 + - uid: 1600 components: - type: Transform - pos: -50.5,16.5 - parent: 89 - - uid: 2657 + pos: -66.5,-8.5 + parent: 2 + - uid: 1601 components: - type: Transform - pos: -46.5,16.5 - parent: 89 - - uid: 2658 + pos: -67.5,-8.5 + parent: 2 + - uid: 1602 components: - type: Transform - pos: -46.5,17.5 - parent: 89 - - uid: 2659 + pos: -68.5,-8.5 + parent: 2 + - uid: 1603 components: - type: Transform - pos: -46.5,18.5 - parent: 89 - - uid: 2662 + pos: -70.5,-10.5 + parent: 2 + - uid: 1604 components: - type: Transform - pos: -34.5,18.5 - parent: 89 - - uid: 2663 + pos: -70.5,-9.5 + parent: 2 + - uid: 1605 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 2664 + pos: -64.5,-8.5 + parent: 2 + - uid: 1606 components: - type: Transform - pos: -34.5,16.5 - parent: 89 - - uid: 2666 + pos: -63.5,-8.5 + parent: 2 + - uid: 1607 components: - type: Transform - pos: -32.5,6.5 - parent: 89 - - uid: 2667 + pos: -62.5,-8.5 + parent: 2 + - uid: 1608 components: - type: Transform - pos: -31.5,6.5 - parent: 89 - - uid: 2668 + pos: -63.5,-9.5 + parent: 2 + - uid: 1609 components: - type: Transform - pos: -30.5,6.5 - parent: 89 - - uid: 2669 + pos: -63.5,-10.5 + parent: 2 + - uid: 1610 components: - type: Transform - pos: -28.5,4.5 - parent: 89 - - uid: 2670 + pos: -63.5,-11.5 + parent: 2 + - uid: 1611 components: - type: Transform - pos: -28.5,3.5 - parent: 89 - - uid: 2671 + pos: -63.5,-12.5 + parent: 2 + - uid: 1612 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - uid: 2672 + pos: -63.5,-13.5 + parent: 2 + - uid: 1613 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - uid: 2673 + pos: -63.5,-14.5 + parent: 2 + - uid: 1614 components: - type: Transform - pos: -21.5,1.5 - parent: 89 - - uid: 2674 + pos: -63.5,-15.5 + parent: 2 + - uid: 1615 components: - type: Transform - pos: -4.5,1.5 - parent: 89 - - uid: 2675 + pos: -63.5,-16.5 + parent: 2 + - uid: 1616 components: - type: Transform - pos: -4.5,2.5 - parent: 89 - - uid: 2677 + pos: -63.5,-17.5 + parent: 2 + - uid: 1617 components: - type: Transform - pos: 1.5,2.5 - parent: 89 - - uid: 2678 + pos: -62.5,-17.5 + parent: 2 + - uid: 1618 components: - type: Transform - pos: 1.5,1.5 - parent: 89 - - uid: 3443 + pos: -62.5,-18.5 + parent: 2 + - uid: 1619 components: - type: Transform - pos: -4.5,-11.5 - parent: 89 - - uid: 3444 + pos: -62.5,-19.5 + parent: 2 + - uid: 1620 components: - type: Transform - pos: -4.5,-12.5 - parent: 89 - - uid: 3445 + pos: -60.5,-17.5 + parent: 2 + - uid: 1621 components: - type: Transform - pos: -4.5,-13.5 - parent: 89 - - uid: 6871 + pos: -60.5,-18.5 + parent: 2 + - uid: 1622 components: - type: Transform - pos: -38.5,4.5 - parent: 89 - - uid: 6872 + pos: -60.5,-19.5 + parent: 2 + - uid: 1623 components: - type: Transform - pos: -38.5,3.5 - parent: 89 - - uid: 6873 + pos: -61.5,-17.5 + parent: 2 + - uid: 1624 components: - type: Transform - pos: -38.5,-11.5 - parent: 89 - - uid: 6874 + pos: -59.5,-17.5 + parent: 2 + - uid: 1625 components: - type: Transform - pos: -38.5,-12.5 - parent: 89 - - uid: 6875 + pos: -59.5,-16.5 + parent: 2 + - uid: 1626 components: - type: Transform - pos: -38.5,-13.5 - parent: 89 - - uid: 6904 + pos: -59.5,-15.5 + parent: 2 + - uid: 1627 components: - type: Transform - pos: -66.5,6.5 - parent: 89 - - uid: 6905 + pos: -59.5,-14.5 + parent: 2 + - uid: 1628 components: - type: Transform - pos: -65.5,6.5 - parent: 89 - - uid: 6906 + pos: -59.5,-13.5 + parent: 2 + - uid: 1629 components: - type: Transform - pos: -54.5,15.5 - parent: 89 - - uid: 6907 + pos: -59.5,-12.5 + parent: 2 + - uid: 1630 components: - type: Transform - pos: -52.5,15.5 - parent: 89 - - uid: 8380 + pos: -59.5,-11.5 + parent: 2 + - uid: 1631 components: - type: Transform - pos: 31.5,-16.5 - parent: 89 - - uid: 9392 + pos: -59.5,-10.5 + parent: 2 + - uid: 1632 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - uid: 9393 + pos: -59.5,-9.5 + parent: 2 + - uid: 1633 components: - type: Transform - pos: -65.5,14.5 - parent: 89 - - uid: 10126 + pos: -59.5,-8.5 + parent: 2 + - uid: 1634 components: - type: Transform - pos: -28.5,25.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21595 - - uid: 10127 + pos: -60.5,-8.5 + parent: 2 + - uid: 1635 components: - type: Transform - pos: -31.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21594 - - uid: 10128 + pos: -61.5,-8.5 + parent: 2 + - uid: 1636 components: - type: Transform - pos: -31.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21593 - - uid: 10130 + pos: -59.5,-7.5 + parent: 2 + - uid: 1637 components: - type: Transform - pos: -28.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21592 - - uid: 10131 + pos: -59.5,-6.5 + parent: 2 + - uid: 1638 components: - type: Transform - pos: -31.5,31.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21590 - - uid: 10208 + pos: -58.5,-6.5 + parent: 2 + - uid: 1639 components: - type: Transform - pos: -76.5,2.5 - parent: 89 - - uid: 10912 + pos: -57.5,-6.5 + parent: 2 + - uid: 1640 components: - type: Transform - pos: -21.5,12.5 - parent: 89 - - uid: 10913 + pos: -56.5,-6.5 + parent: 2 + - uid: 1641 components: - type: Transform - pos: -27.5,12.5 - parent: 89 - - uid: 10915 + pos: -55.5,-6.5 + parent: 2 + - uid: 1642 components: - type: Transform - pos: -25.5,12.5 - parent: 89 - - uid: 10916 + pos: -55.5,-7.5 + parent: 2 + - uid: 1643 components: - type: Transform - pos: -23.5,12.5 - parent: 89 - - uid: 10926 + pos: -55.5,-8.5 + parent: 2 + - uid: 1644 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 11603 + pos: -55.5,-9.5 + parent: 2 + - uid: 1645 components: - type: Transform - pos: -4.5,3.5 - parent: 89 - - uid: 15605 + pos: -53.5,-11.5 + parent: 2 + - uid: 1646 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,6.5 - parent: 89 - - uid: 16504 + pos: -55.5,-5.5 + parent: 2 + - uid: 1647 components: - type: Transform - pos: 32.5,25.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15218 - - uid: 17067 + pos: -66.5,-7.5 + parent: 2 + - uid: 1648 components: - type: Transform - pos: -28.5,16.5 - parent: 89 - - uid: 18225 + pos: -66.5,-6.5 + parent: 2 + - uid: 1649 components: - type: Transform - pos: 24.5,-16.5 - parent: 89 - - uid: 18753 + pos: -67.5,-6.5 + parent: 2 + - uid: 1650 components: - type: Transform - pos: 30.5,25.5 - parent: 89 - - type: DeviceLinkSink - links: - - 16167 - - uid: 21324 + pos: -68.5,-6.5 + parent: 2 + - uid: 1651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-32.5 - parent: 89 - - uid: 21327 + pos: -69.5,-6.5 + parent: 2 + - uid: 1652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-32.5 - parent: 89 - - uid: 21514 + pos: -70.5,-6.5 + parent: 2 + - uid: 1653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,23.5 - parent: 89 - - uid: 21767 + pos: -70.5,-5.5 + parent: 2 + - uid: 1654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-32.5 - parent: 89 - - uid: 21770 + pos: -52.5,-11.5 + parent: 2 + - uid: 1655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-32.5 - parent: 89 - - uid: 22576 + pos: -51.5,-11.5 + parent: 2 + - uid: 1656 components: - type: Transform - pos: -13.5,-20.5 - parent: 22565 - - uid: 22577 + pos: -50.5,-11.5 + parent: 2 + - uid: 1657 components: - type: Transform - pos: -34.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24808 - - uid: 22578 + pos: -49.5,-11.5 + parent: 2 + - uid: 1658 components: - type: Transform - pos: 10.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24823 - - uid: 22579 + pos: -48.5,-11.5 + parent: 2 + - uid: 1659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 22565 - - uid: 22580 + pos: -47.5,-11.5 + parent: 2 + - uid: 1660 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 22565 - - uid: 22581 + pos: -51.5,-10.5 + parent: 2 + - uid: 1661 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 22565 - - uid: 22582 + pos: -51.5,-9.5 + parent: 2 + - uid: 1662 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,5.5 - parent: 22565 - - uid: 22583 + pos: -51.5,-12.5 + parent: 2 + - uid: 1663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,9.5 - parent: 22565 - - uid: 22584 + pos: -51.5,-13.5 + parent: 2 + - uid: 1664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,11.5 - parent: 22565 -- proto: AirlockArmoryGlassLocked - entities: - - uid: 5039 + pos: -51.5,-14.5 + parent: 2 + - uid: 1665 components: - type: Transform - pos: 10.5,-9.5 - parent: 89 -- proto: AirlockAssembly - entities: - - uid: 21111 + pos: -51.5,-15.5 + parent: 2 + - uid: 1666 components: - type: Transform - pos: 36.5,38.5 - parent: 89 - - uid: 22585 + pos: -51.5,-16.5 + parent: 2 + - uid: 1667 components: - type: Transform - pos: 0.5,11.5 - parent: 22565 -- proto: AirlockAssemblyMaintenance - entities: - - uid: 12855 + pos: -51.5,-17.5 + parent: 2 + - uid: 1668 components: - type: Transform - pos: -2.5,28.5 - parent: 89 -- proto: AirlockAtmospherics - entities: - - uid: 22586 + pos: -47.5,-12.5 + parent: 2 + - uid: 1669 components: - type: Transform - pos: -12.5,-12.5 - parent: 22565 -- proto: AirlockAtmosphericsGlass - entities: - - uid: 7797 + pos: -47.5,-13.5 + parent: 2 + - uid: 1670 components: - type: Transform - pos: -83.5,-11.5 - parent: 89 -- proto: AirlockAtmosphericsGlassLocked - entities: - - uid: 480 + pos: -47.5,-14.5 + parent: 2 + - uid: 1671 components: - type: Transform - pos: -107.5,-8.5 - parent: 89 - - uid: 481 + pos: -47.5,-15.5 + parent: 2 + - uid: 1672 components: - type: Transform - pos: -109.5,-8.5 - parent: 89 - - uid: 844 + pos: -47.5,-16.5 + parent: 2 + - uid: 1673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-12.5 - parent: 89 - - uid: 845 + pos: -47.5,-17.5 + parent: 2 + - uid: 1674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-13.5 - parent: 89 - - uid: 848 + pos: -47.5,-18.5 + parent: 2 + - uid: 1675 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-12.5 - parent: 89 - - uid: 22587 + pos: -47.5,-19.5 + parent: 2 + - uid: 1676 components: - type: Transform - pos: -16.5,-12.5 - parent: 22565 -- proto: AirlockAtmosphericsLocked - entities: - - uid: 895 + pos: -46.5,-19.5 + parent: 2 + - uid: 1677 components: - type: Transform - pos: -106.5,-17.5 - parent: 89 - - uid: 936 + pos: -48.5,-19.5 + parent: 2 + - uid: 1678 components: - type: Transform - pos: -106.5,-16.5 - parent: 89 - - uid: 937 + pos: -49.5,-19.5 + parent: 2 + - uid: 1679 components: - type: Transform - pos: -95.5,-6.5 - parent: 89 - - uid: 8193 + pos: -45.5,-19.5 + parent: 2 + - uid: 1680 components: - type: Transform - pos: -0.5,26.5 - parent: 89 - - uid: 9618 + pos: -52.5,-13.5 + parent: 2 + - uid: 1681 components: - type: Transform - pos: -93.5,21.5 - parent: 89 - - uid: 9641 + pos: -53.5,-13.5 + parent: 2 + - uid: 1682 components: - type: Transform - pos: -24.5,-26.5 - parent: 89 -- proto: AirlockBarLocked - entities: - - uid: 72 + pos: -54.5,-13.5 + parent: 2 + - uid: 1683 components: - type: Transform - pos: -27.5,-1.5 - parent: 89 -- proto: AirlockBrigGlassLocked - entities: - - uid: 6510 + pos: -55.5,-13.5 + parent: 2 + - uid: 1684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-21.5 - parent: 89 - - uid: 17100 + pos: -52.5,-16.5 + parent: 2 + - uid: 1685 components: - type: Transform - pos: 41.5,-20.5 - parent: 89 - - uid: 17103 + pos: -53.5,-16.5 + parent: 2 + - uid: 1686 components: - type: Transform - pos: 41.5,-18.5 - parent: 89 - - uid: 17104 + pos: -54.5,-16.5 + parent: 2 + - uid: 1687 components: - type: Transform - pos: 43.5,-20.5 - parent: 89 - - uid: 17225 + pos: -55.5,-16.5 + parent: 2 + - uid: 1688 components: - type: Transform - pos: 43.5,-18.5 - parent: 89 - - uid: 18404 + pos: -64.5,-16.5 + parent: 2 + - uid: 1689 components: - type: Transform - pos: 41.5,-13.5 - parent: 89 - - uid: 21777 + pos: -65.5,-16.5 + parent: 2 + - uid: 1690 components: - type: Transform - pos: 37.5,-20.5 - parent: 89 - - uid: 25367 + pos: -66.5,-16.5 + parent: 2 + - uid: 1691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,-22.5 - parent: 89 -- proto: AirlockBrigLocked - entities: - - uid: 438 + pos: -66.5,-14.5 + parent: 2 + - uid: 1692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 89 - - uid: 4659 + pos: -66.5,-13.5 + parent: 2 + - uid: 1693 components: - type: Transform - pos: 3.5,-9.5 - parent: 89 - - uid: 5018 + pos: -66.5,-12.5 + parent: 2 + - uid: 1694 components: - type: Transform - pos: 5.5,-9.5 - parent: 89 - - uid: 6524 + pos: -66.5,-11.5 + parent: 2 + - uid: 1695 components: - type: Transform - pos: 8.5,-3.5 - parent: 89 - - uid: 9731 + pos: -66.5,-10.5 + parent: 2 + - uid: 1696 components: - type: Transform - pos: -58.5,33.5 - parent: 89 - - uid: 9862 + pos: -66.5,-9.5 + parent: 2 + - uid: 1697 components: - type: Transform - pos: -58.5,35.5 - parent: 89 - - uid: 9875 + pos: -66.5,-15.5 + parent: 2 + - uid: 1698 components: - type: Transform - pos: -56.5,37.5 - parent: 89 - - uid: 9876 + pos: -70.5,-11.5 + parent: 2 + - uid: 1699 components: - type: Transform - pos: -55.5,37.5 - parent: 89 - - uid: 10629 + pos: -70.5,-12.5 + parent: 2 + - uid: 1700 components: - type: Transform - pos: 9.5,-6.5 - parent: 89 -- proto: AirlockCaptainLocked - entities: - - uid: 721 + pos: -69.5,-10.5 + parent: 2 + - uid: 1701 components: - type: Transform - pos: 49.5,11.5 - parent: 89 - - uid: 3193 + pos: -68.5,-10.5 + parent: 2 + - uid: 1702 components: - type: Transform - pos: 47.5,16.5 - parent: 89 -- proto: AirlockCargoLocked - entities: - - uid: 5851 + pos: -67.5,-10.5 + parent: 2 + - uid: 1703 components: - type: Transform - pos: -70.5,-4.5 - parent: 89 - - uid: 5852 + pos: -36.5,22.5 + parent: 2 + - uid: 1704 components: - type: Transform - pos: -68.5,-6.5 - parent: 89 - - uid: 5853 + pos: 34.5,-12.5 + parent: 2 + - uid: 1705 components: - type: Transform - pos: -55.5,-4.5 - parent: 89 - - uid: 5854 + pos: 34.5,-10.5 + parent: 2 + - uid: 1706 components: - type: Transform - pos: -57.5,-6.5 - parent: 89 - - uid: 5857 + pos: -130.5,-7.5 + parent: 2 + - uid: 1707 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 -- proto: AirlockChapelLocked - entities: - - uid: 5478 + pos: -94.5,-8.5 + parent: 2 + - uid: 1708 components: - type: Transform - pos: -47.5,-5.5 - parent: 89 -- proto: AirlockChemistryLocked - entities: - - uid: 15236 + pos: -93.5,-8.5 + parent: 2 + - uid: 1709 components: - type: Transform - pos: 0.5,10.5 - parent: 89 -- proto: AirlockChiefEngineerLocked - entities: - - uid: 1842 + pos: -14.5,23.5 + parent: 2 + - uid: 1710 components: - type: Transform - pos: -115.5,-12.5 - parent: 89 - - uid: 3361 + pos: -10.5,23.5 + parent: 2 + - uid: 1711 components: - type: Transform - pos: -102.5,6.5 - parent: 89 -- proto: AirlockChiefMedicalOfficerGlassLocked - entities: - - uid: 19713 + pos: -8.5,23.5 + parent: 2 + - uid: 1712 components: - type: Transform - pos: 23.5,41.5 - parent: 89 - - uid: 19889 + pos: -5.5,23.5 + parent: 2 + - uid: 1713 components: - type: Transform - pos: 24.5,33.5 - parent: 89 -- proto: AirlockChiefMedicalOfficerLocked - entities: - - uid: 19915 + pos: -63.5,-5.5 + parent: 2 + - uid: 1714 components: - type: Transform - pos: 24.5,38.5 - parent: 89 -- proto: AirlockCommandGlassLocked - entities: - - uid: 1753 + pos: -3.5,23.5 + parent: 2 + - uid: 1715 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 1754 + pos: -2.5,23.5 + parent: 2 + - uid: 1716 components: - type: Transform - pos: 46.5,0.5 - parent: 89 - - uid: 2318 + pos: -0.5,23.5 + parent: 2 + - uid: 1717 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 17275 + pos: -83.5,37.5 + parent: 2 + - uid: 1718 components: - type: Transform - pos: -57.5,45.5 - parent: 89 - - uid: 17278 + pos: -67.5,30.5 + parent: 2 + - uid: 1719 components: - type: Transform - pos: -57.5,44.5 - parent: 89 - - uid: 17279 + pos: -82.5,37.5 + parent: 2 + - uid: 1720 components: - type: Transform - pos: -56.5,46.5 - parent: 89 - - uid: 21629 + pos: -68.5,30.5 + parent: 2 + - uid: 1721 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 21627 -- proto: AirlockCommandLocked - entities: - - uid: 2709 + pos: -69.5,30.5 + parent: 2 + - uid: 1722 components: - type: Transform - pos: 18.5,0.5 - parent: 89 - - uid: 7497 + pos: -66.5,37.5 + parent: 2 + - uid: 1723 components: - type: Transform - pos: -108.5,22.5 - parent: 89 - - uid: 7630 + pos: -69.5,37.5 + parent: 2 + - uid: 1724 components: - type: Transform - pos: -108.5,19.5 - parent: 89 - - uid: 9186 + pos: -68.5,37.5 + parent: 2 + - uid: 1725 components: - type: Transform - pos: -108.5,16.5 - parent: 89 - - uid: 10988 + pos: -67.5,37.5 + parent: 2 + - uid: 1726 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 10990 + pos: -130.5,-6.5 + parent: 2 + - uid: 1727 components: - type: Transform - pos: 42.5,0.5 - parent: 89 -- proto: AirlockDetectiveGlassLocked - entities: - - uid: 1137 + pos: -81.5,30.5 + parent: 2 + - uid: 1728 components: - type: Transform - pos: 19.5,4.5 - parent: 89 - - uid: 2008 + pos: -36.5,-16.5 + parent: 2 + - uid: 1729 components: - type: Transform - pos: 15.5,7.5 - parent: 89 -- proto: AirlockDetectiveLocked - entities: - - uid: 13683 + pos: -33.5,-16.5 + parent: 2 + - uid: 1730 components: - type: Transform - pos: 21.5,10.5 - parent: 89 -- proto: AirlockEngineering - entities: - - uid: 6935 + pos: -132.5,-7.5 + parent: 2 + - uid: 1731 components: - type: Transform - pos: -88.5,0.5 - parent: 89 - - uid: 7093 + pos: -12.5,23.5 + parent: 2 + - uid: 1732 components: - type: Transform - pos: -89.5,0.5 - parent: 89 - - uid: 21769 + pos: -130.5,-5.5 + parent: 2 + - uid: 1733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-18.5 - parent: 89 -- proto: AirlockEngineeringGlass - entities: - - uid: 18156 + pos: -130.5,-4.5 + parent: 2 + - uid: 1734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 18153 -- proto: AirlockEngineeringGlassLocked - entities: - - uid: 855 + pos: 34.5,-11.5 + parent: 2 + - uid: 1735 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-6.5 - parent: 89 - - uid: 919 + pos: -13.5,23.5 + parent: 2 + - uid: 1736 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-3.5 - parent: 89 - - uid: 921 + pos: -92.5,22.5 + parent: 2 + - uid: 1737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-4.5 - parent: 89 - - uid: 924 + pos: -89.5,22.5 + parent: 2 + - uid: 1738 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,4.5 - parent: 89 - - uid: 15876 + pos: -34.5,-17.5 + parent: 2 + - uid: 1739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-10.5 - parent: 89 - - uid: 16915 + pos: -87.5,22.5 + parent: 2 + - uid: 1740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,3.5 - parent: 89 -- proto: AirlockEngineeringLocked - entities: - - uid: 923 + pos: -4.5,23.5 + parent: 2 + - uid: 1741 components: - type: Transform - pos: -113.5,-1.5 - parent: 89 - - uid: 926 + pos: 13.5,31.5 + parent: 2 + - uid: 1742 components: - type: Transform - pos: -113.5,9.5 - parent: 89 - - uid: 930 + pos: -1.5,23.5 + parent: 2 + - uid: 1743 components: - type: Transform - pos: -96.5,7.5 - parent: 89 - - uid: 1111 + pos: -4.5,26.5 + parent: 2 + - uid: 1744 components: - type: Transform - pos: -96.5,8.5 - parent: 89 - - uid: 1539 + pos: -2.5,30.5 + parent: 2 + - uid: 1745 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 1720 + pos: -3.5,37.5 + parent: 2 + - uid: 1746 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 2866 + pos: -2.5,38.5 + parent: 2 + - uid: 1747 components: - type: Transform - pos: -119.5,-10.5 - parent: 89 - - uid: 3951 + pos: -2.5,39.5 + parent: 2 + - uid: 1748 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 4476 + pos: -3.5,38.5 + parent: 2 + - uid: 1749 components: - type: Transform - pos: -118.5,-1.5 - parent: 89 - - uid: 4520 + pos: -3.5,39.5 + parent: 2 + - uid: 1750 components: - type: Transform - pos: -127.5,-7.5 - parent: 89 - - uid: 8194 + pos: -3.5,36.5 + parent: 2 + - uid: 1751 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8482 + pos: -3.5,35.5 + parent: 2 + - uid: 1752 components: - type: Transform - pos: -122.5,4.5 - parent: 89 - - uid: 8500 + pos: -3.5,34.5 + parent: 2 + - uid: 1753 components: - type: Transform - pos: -126.5,13.5 - parent: 89 - - uid: 8505 + pos: -3.5,33.5 + parent: 2 + - uid: 1754 components: - type: Transform - pos: -126.5,11.5 - parent: 89 - - uid: 8509 + pos: -3.5,31.5 + parent: 2 + - uid: 1755 components: - type: Transform - pos: -122.5,3.5 - parent: 89 - - uid: 8516 + pos: -3.5,30.5 + parent: 2 + - uid: 1756 components: - type: Transform - pos: -124.5,3.5 - parent: 89 - - uid: 8517 + pos: -3.5,29.5 + parent: 2 + - uid: 1757 components: - type: Transform - pos: -124.5,4.5 - parent: 89 - - uid: 8551 + pos: -3.5,28.5 + parent: 2 + - uid: 1758 components: - type: Transform - pos: -118.5,9.5 - parent: 89 - - uid: 8915 + pos: -3.5,27.5 + parent: 2 + - uid: 1759 components: - type: Transform - pos: -127.5,-6.5 - parent: 89 - - uid: 9018 + pos: -3.5,26.5 + parent: 2 + - uid: 1760 components: - type: Transform - pos: -111.5,-3.5 - parent: 89 - - uid: 9227 + pos: -3.5,41.5 + parent: 2 + - uid: 1761 components: - type: Transform - pos: -118.5,15.5 - parent: 89 - - uid: 10396 + pos: -4.5,36.5 + parent: 2 + - uid: 1762 components: - type: Transform - pos: -121.5,-12.5 - parent: 89 - - uid: 11381 + pos: -5.5,36.5 + parent: 2 + - uid: 1763 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 11921 + pos: -6.5,36.5 + parent: 2 + - uid: 1764 components: - type: Transform - pos: -82.5,-7.5 - parent: 89 - - uid: 12650 + pos: -7.5,36.5 + parent: 2 + - uid: 1765 components: - type: Transform - pos: -36.5,11.5 - parent: 89 - - uid: 12979 + pos: -7.5,35.5 + parent: 2 + - uid: 1766 components: - type: Transform - pos: -89.5,20.5 - parent: 89 - - uid: 13448 + pos: -7.5,34.5 + parent: 2 + - uid: 1767 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 15920 + pos: -7.5,33.5 + parent: 2 + - uid: 1768 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 20918 + pos: -3.5,35.5 + parent: 2 + - uid: 1769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,19.5 - parent: 89 - - uid: 22588 + pos: -2.5,35.5 + parent: 2 + - uid: 1770 components: - type: Transform - pos: -9.5,-2.5 - parent: 22565 - - uid: 22589 + pos: -1.5,35.5 + parent: 2 + - uid: 1771 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 22590 + pos: 0.5,35.5 + parent: 2 + - uid: 1772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-15.5 - parent: 22565 - - uid: 22591 + pos: 1.5,35.5 + parent: 2 + - uid: 1773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-15.5 - parent: 22565 -- proto: AirlockEVALocked - entities: - - uid: 2189 + pos: 1.5,36.5 + parent: 2 + - uid: 1774 components: - type: Transform - pos: 29.5,8.5 - parent: 89 - - uid: 2190 + pos: 0.5,30.5 + parent: 2 + - uid: 1775 components: - type: Transform - pos: 29.5,6.5 - parent: 89 - - uid: 2270 + pos: 1.5,30.5 + parent: 2 + - uid: 1776 components: - type: Transform - pos: 32.5,4.5 - parent: 89 - - uid: 6307 + pos: 2.5,30.5 + parent: 2 + - uid: 1777 components: - type: Transform - pos: 24.5,4.5 - parent: 89 -- proto: AirlockExternalEngineeringLocked - entities: - - uid: 20291 + pos: -4.5,30.5 + parent: 2 + - uid: 1778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 20292: - - DoorStatus: DoorBolt - - uid: 20292 + pos: -5.5,30.5 + parent: 2 + - uid: 1779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,26.5 - parent: 89 - - type: DeviceLinkSink - links: - - 20291 -- proto: AirlockExternalGlass - entities: - - uid: 6449 + pos: -7.5,30.5 + parent: 2 + - uid: 1780 components: - type: Transform - pos: -68.5,30.5 - parent: 89 - - uid: 6457 + pos: -8.5,30.5 + parent: 2 + - uid: 1781 components: - type: Transform - pos: -82.5,30.5 - parent: 89 - - uid: 9950 + pos: -2.5,26.5 + parent: 2 + - uid: 1782 components: - type: Transform - pos: -66.5,46.5 - parent: 89 - - uid: 9951 + pos: -1.5,26.5 + parent: 2 + - uid: 1783 components: - type: Transform - pos: -64.5,46.5 - parent: 89 - - uid: 9952 + pos: -0.5,26.5 + parent: 2 + - uid: 1784 components: - type: Transform - pos: -58.5,46.5 - parent: 89 - - uid: 10566 + pos: 0.5,26.5 + parent: 2 + - uid: 1785 components: - type: Transform - pos: -68.5,37.5 - parent: 89 - - uid: 10773 + pos: -5.5,26.5 + parent: 2 + - uid: 1786 components: - type: Transform - pos: -82.5,37.5 - parent: 89 - - uid: 22592 + pos: -3.5,42.5 + parent: 2 + - uid: 1787 components: - type: Transform - pos: -15.5,-18.5 - parent: 22565 - - uid: 22593 + pos: -3.5,44.5 + parent: 2 + - uid: 1788 components: - type: Transform - pos: -11.5,-18.5 - parent: 22565 - - uid: 22594 + pos: -3.5,45.5 + parent: 2 + - uid: 1789 components: - type: Transform - pos: -12.5,-4.5 - parent: 22565 - - uid: 22595 + pos: -5.5,45.5 + parent: 2 + - uid: 1790 components: - type: Transform - pos: -11.5,-4.5 - parent: 22565 -- proto: AirlockExternalGlassLocked - entities: - - uid: 4480 + pos: -6.5,45.5 + parent: 2 + - uid: 1791 components: - type: Transform - pos: -62.5,-18.5 - parent: 89 - - uid: 4481 + pos: -7.5,45.5 + parent: 2 + - uid: 1792 components: - type: Transform - pos: -60.5,-18.5 - parent: 89 - - uid: 7511 + pos: -1.5,45.5 + parent: 2 + - uid: 1793 components: - type: Transform - pos: -84.5,46.5 - parent: 89 - - uid: 7512 + pos: -0.5,45.5 + parent: 2 + - uid: 1794 components: - type: Transform - pos: -86.5,39.5 - parent: 89 - - uid: 7554 + pos: 0.5,45.5 + parent: 2 + - uid: 1795 components: - type: Transform - pos: -86.5,37.5 - parent: 89 - - uid: 21041 + pos: -4.5,41.5 + parent: 2 + - uid: 1796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,21.5 - parent: 89 -- proto: AirlockExternalGlassShuttleArrivals - entities: - - uid: 6462 + pos: -5.5,41.5 + parent: 2 + - uid: 1797 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,30.5 - parent: 89 - - uid: 6476 + pos: -6.5,41.5 + parent: 2 + - uid: 1798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,30.5 - parent: 89 - - uid: 6523 + pos: -7.5,41.5 + parent: 2 + - uid: 1799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,37.5 - parent: 89 - - uid: 6544 + pos: -1.5,41.5 + parent: 2 + - uid: 1800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,37.5 - parent: 89 -- proto: AirlockExternalGlassShuttleEmergencyLocked - entities: - - uid: 9891 + pos: 0.5,41.5 + parent: 2 + - uid: 1801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,49.5 - parent: 89 - - uid: 9893 + pos: 1.5,41.5 + parent: 2 + - uid: 1802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,49.5 - parent: 89 - - uid: 9894 + pos: 2.5,41.5 + parent: 2 + - uid: 1803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,49.5 - parent: 89 - - uid: 9896 + pos: -6.5,33.5 + parent: 2 + - uid: 1804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,49.5 - parent: 89 -- proto: AirlockExternalGlassShuttleLocked - entities: - - uid: 4472 + pos: -3.5,24.5 + parent: 2 + - uid: 1805 components: - type: Transform - pos: -62.5,-21.5 - parent: 89 - - uid: 4473 + pos: -6.5,23.5 + parent: 2 + - uid: 1806 components: - type: Transform - pos: -60.5,-21.5 - parent: 89 - - uid: 7496 + pos: -15.5,22.5 + parent: 2 + - uid: 1807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,37.5 - parent: 89 - - uid: 7501 + pos: -128.5,-9.5 + parent: 2 + - uid: 1808 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,39.5 - parent: 89 - - uid: 7506 + pos: -129.5,-9.5 + parent: 2 + - uid: 1809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,48.5 - parent: 89 -- proto: AirlockExternalLocked - entities: - - uid: 1215 + pos: -128.5,-10.5 + parent: 2 + - uid: 1810 components: - type: Transform - pos: -105.5,-20.5 - parent: 89 - - uid: 1217 + pos: -129.5,-8.5 + parent: 2 + - uid: 1811 components: - type: Transform - pos: -104.5,-20.5 - parent: 89 - - uid: 1219 + pos: -129.5,-7.5 + parent: 2 + - uid: 1812 components: - type: Transform - pos: -103.5,-21.5 - parent: 89 - - uid: 2241 + pos: -9.5,23.5 + parent: 2 + - uid: 1813 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-19.5 - parent: 89 - - uid: 2244 + pos: -11.5,23.5 + parent: 2 + - uid: 1814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-20.5 - parent: 89 - - uid: 2329 + pos: -10.5,-19.5 + parent: 2 + - uid: 1815 components: - type: Transform - pos: -84.5,-20.5 - parent: 89 - - uid: 5454 + pos: -12.5,-19.5 + parent: 2 + - uid: 1816 components: - type: Transform - pos: -47.5,-14.5 - parent: 89 - - uid: 5456 + pos: -6.5,-41.5 + parent: 2 + - uid: 1817 components: - type: Transform - pos: -47.5,-18.5 - parent: 89 - - uid: 7657 + pos: 29.5,8.5 + parent: 2 + - uid: 1818 components: - type: Transform - pos: -76.5,-18.5 - parent: 89 - - uid: 8021 + pos: 28.5,8.5 + parent: 2 + - uid: 1819 components: - type: Transform - pos: -9.5,30.5 - parent: 89 - - uid: 8069 + pos: 27.5,8.5 + parent: 2 + - uid: 1820 components: - type: Transform - pos: -7.5,30.5 - parent: 89 - - uid: 8880 + pos: 26.5,8.5 + parent: 2 + - uid: 1821 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 19571 + pos: 25.5,8.5 + parent: 2 + - uid: 1822 components: - type: Transform - pos: -128.5,-14.5 - parent: 89 -- proto: AirlockExternalShuttleLocked - entities: - - uid: 21565 + pos: 28.5,6.5 + parent: 2 + - uid: 1823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,20.5 - parent: 89 - - type: Docking - dockJointId: docking111798 - dockedWith: 21630 - - uid: 21630 + pos: 29.5,6.5 + parent: 2 + - uid: 1824 components: - type: Transform - pos: 0.5,-6.5 - parent: 21627 - - type: Docking - dockJointId: docking111798 - dockedWith: 21565 - - uid: 21748 + pos: 27.5,6.5 + parent: 2 + - uid: 1825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 89 - - type: Docking - dockJointId: docking314611 - dockedWith: 25423 - - uid: 22596 + pos: 26.5,6.5 + parent: 2 + - uid: 1826 components: - type: Transform - pos: -15.5,-27.5 - parent: 22565 - - uid: 22597 + pos: 25.5,6.5 + parent: 2 + - uid: 1827 components: - type: Transform - pos: -17.5,-27.5 - parent: 22565 - - uid: 22598 + pos: -63.5,-4.5 + parent: 2 + - uid: 1828 components: - type: Transform - pos: -9.5,-27.5 - parent: 22565 - - uid: 22599 + pos: -90.5,22.5 + parent: 2 + - uid: 1829 components: - type: Transform - pos: -11.5,-27.5 - parent: 22565 - - uid: 25357 + pos: -88.5,22.5 + parent: 2 + - uid: 1830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 89 - - type: Docking - dockJointId: docking314616 - dockedWith: 25422 -- proto: AirlockFreezerKitchenHydroLocked - entities: - - uid: 726 + pos: -91.5,22.5 + parent: 2 + - uid: 1831 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 3608 + pos: -53.5,48.5 + parent: 2 + - uid: 1832 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 89 -- proto: AirlockFreezerLocked - entities: - - uid: 14031 + pos: 22.5,-2.5 + parent: 2 + - uid: 1833 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-6.5 - parent: 89 -- proto: AirlockGlass - entities: - - uid: 4817 + pos: 18.5,-5.5 + parent: 2 + - uid: 1834 components: - type: Transform - pos: -22.5,-9.5 - parent: 89 - - uid: 4818 + pos: 61.5,-0.5 + parent: 2 + - uid: 1835 components: - type: Transform - pos: -20.5,-9.5 - parent: 89 - - uid: 4820 + pos: 61.5,-1.5 + parent: 2 + - uid: 1836 components: - type: Transform - pos: -19.5,0.5 - parent: 89 - - uid: 4821 + pos: 61.5,-2.5 + parent: 2 + - uid: 1837 components: - type: Transform - pos: -17.5,0.5 - parent: 89 - - uid: 5107 + pos: -17.5,-22.5 + parent: 2 + - uid: 1838 components: - type: Transform - pos: -50.5,2.5 - parent: 89 - - uid: 5108 + pos: -7.5,23.5 + parent: 2 + - uid: 1839 components: - type: Transform - pos: -49.5,2.5 - parent: 89 - - uid: 5990 + pos: 10.5,41.5 + parent: 2 + - uid: 1840 components: - type: Transform - pos: -51.5,6.5 - parent: 89 - - uid: 5997 + pos: 7.5,30.5 + parent: 2 + - uid: 1841 components: - type: Transform - pos: -49.5,6.5 - parent: 89 - - uid: 7277 + pos: -3.5,-42.5 + parent: 2 + - uid: 1842 components: - type: Transform - pos: -93.5,11.5 - parent: 89 - - uid: 9172 + pos: -3.5,-43.5 + parent: 2 + - uid: 1843 components: - type: Transform - pos: -30.5,19.5 - parent: 89 - - uid: 9187 + pos: -3.5,-44.5 + parent: 2 + - uid: 1844 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 21381 + pos: -7.5,-44.5 + parent: 2 + - uid: 1845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 89 - - uid: 21873 + pos: -7.5,-43.5 + parent: 2 + - uid: 1846 components: - type: Transform - pos: 52.5,-25.5 - parent: 89 - - uid: 21874 + pos: -7.5,-42.5 + parent: 2 + - uid: 1847 components: - type: Transform - pos: 52.5,-22.5 - parent: 89 - - uid: 21875 + pos: 0.5,-44.5 + parent: 2 + - uid: 1848 components: - type: Transform - pos: 52.5,-20.5 - parent: 89 - - uid: 22600 + pos: 0.5,-43.5 + parent: 2 + - uid: 1849 components: - type: Transform - pos: -28.5,5.5 - parent: 22565 - - uid: 22601 + pos: 0.5,-42.5 + parent: 2 + - uid: 1850 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,5.5 - parent: 22565 - - uid: 22602 + pos: -129.5,-2.5 + parent: 2 + - uid: 1851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,0.5 - parent: 22565 - - uid: 22603 + pos: -129.5,-1.5 + parent: 2 + - uid: 1852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,0.5 - parent: 22565 -- proto: AirlockHeadOfPersonnelLocked - entities: - - uid: 1810 + pos: 8.5,31.5 + parent: 2 + - uid: 1853 components: - type: Transform - pos: 46.5,8.5 - parent: 89 - - uid: 1813 + pos: -121.5,17.5 + parent: 2 + - uid: 1854 components: - type: Transform - pos: 46.5,7.5 - parent: 89 - - uid: 1826 + pos: 20.5,25.5 + parent: 2 + - uid: 1855 components: - type: Transform - pos: 43.5,11.5 - parent: 89 - - uid: 20942 + pos: 21.5,25.5 + parent: 2 + - uid: 1856 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,15.5 - parent: 89 -- proto: AirlockHeadOfSecurityGlassLocked - entities: - - uid: 2910 + pos: 15.5,32.5 + parent: 2 + - uid: 1857 components: - type: Transform - pos: 36.5,-4.5 - parent: 89 -- proto: AirlockHeadOfSecurityLocked - entities: - - uid: 1658 + pos: -27.5,15.5 + parent: 2 + - uid: 1858 components: - type: Transform - pos: 31.5,0.5 - parent: 89 -- proto: AirlockHydroGlassLocked - entities: - - uid: 27 + pos: 0.5,6.5 + parent: 2 + - uid: 1859 components: - type: Transform - pos: -9.5,-6.5 - parent: 89 -- proto: AirlockHydroponicsLocked - entities: - - uid: 3780 + pos: 13.5,32.5 + parent: 2 + - uid: 1860 components: - type: Transform - pos: -9.5,-10.5 - parent: 89 -- proto: AirlockJanitorLocked - entities: - - uid: 9548 + pos: 14.5,32.5 + parent: 2 + - uid: 1861 components: - type: Transform - pos: -40.5,6.5 - parent: 89 -- proto: AirlockLawyerGlassLocked - entities: - - uid: 441 + pos: -120.5,17.5 + parent: 2 + - uid: 1862 components: - type: Transform - pos: -74.5,-4.5 - parent: 89 -- proto: AirlockMaint - entities: - - uid: 22604 + pos: -27.5,21.5 + parent: 2 + - uid: 1863 components: - type: Transform - pos: -27.5,7.5 - parent: 22565 - - uid: 22605 + pos: -28.5,21.5 + parent: 2 + - uid: 1864 components: - type: Transform - pos: -24.5,11.5 - parent: 22565 - - uid: 22606 + pos: -29.5,21.5 + parent: 2 + - uid: 1865 components: - type: Transform - pos: 3.5,7.5 - parent: 22565 -- proto: AirlockMaintBarLocked - entities: - - uid: 74 + pos: -27.5,22.5 + parent: 2 + - uid: 1866 components: - type: Transform - pos: -32.5,-0.5 - parent: 89 -- proto: AirlockMaintCaptainLocked - entities: - - uid: 14654 + pos: -29.5,22.5 + parent: 2 + - uid: 1867 components: - type: Transform - pos: -127.5,20.5 - parent: 89 -- proto: AirlockMaintCargoLocked - entities: - - uid: 10086 + pos: -29.5,23.5 + parent: 2 + - uid: 1868 components: - type: Transform - pos: -72.5,-10.5 - parent: 89 -- proto: AirlockMaintChapelLocked - entities: - - uid: 5473 + pos: -29.5,24.5 + parent: 2 + - uid: 1869 components: - type: Transform - pos: -44.5,-6.5 - parent: 89 -- proto: AirlockMaintCommandLocked - entities: - - uid: 1146 + pos: -29.5,25.5 + parent: 2 + - uid: 1870 components: - type: Transform - pos: 50.5,4.5 - parent: 89 -- proto: AirlockMaintCommonLocked - entities: - - uid: 2070 + pos: -29.5,26.5 + parent: 2 + - uid: 1871 components: - type: Transform - pos: -110.5,17.5 - parent: 89 - - uid: 2250 + pos: -29.5,27.5 + parent: 2 + - uid: 1872 components: - type: Transform - pos: -79.5,4.5 - parent: 89 - - uid: 4758 + pos: -29.5,28.5 + parent: 2 + - uid: 1873 components: - type: Transform - pos: -38.5,-4.5 - parent: 89 - - uid: 7326 + pos: -29.5,29.5 + parent: 2 + - uid: 1874 components: - type: Transform - pos: -90.5,16.5 - parent: 89 - - uid: 7332 + pos: -29.5,30.5 + parent: 2 + - uid: 1875 components: - type: Transform - pos: -86.5,-1.5 - parent: 89 - - uid: 7349 + pos: -29.5,31.5 + parent: 2 + - uid: 1876 components: - type: Transform - pos: -106.5,17.5 - parent: 89 - - uid: 7589 + pos: -29.5,32.5 + parent: 2 + - uid: 1877 components: - type: Transform - pos: -78.5,11.5 - parent: 89 - - uid: 7866 + pos: -29.5,33.5 + parent: 2 + - uid: 1878 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8055 + pos: -30.5,31.5 + parent: 2 + - uid: 1879 components: - type: Transform - pos: -4.5,36.5 - parent: 89 - - uid: 8083 + pos: -31.5,31.5 + parent: 2 + - uid: 1880 components: - type: Transform - pos: -74.5,16.5 - parent: 89 - - uid: 8136 + pos: -32.5,31.5 + parent: 2 + - uid: 1881 components: - type: Transform - pos: -1.5,28.5 - parent: 89 - - uid: 8138 + pos: -28.5,33.5 + parent: 2 + - uid: 1882 components: - type: Transform - pos: -3.5,28.5 - parent: 89 - - uid: 8706 + pos: -27.5,33.5 + parent: 2 + - uid: 1883 components: - type: Transform - pos: 12.5,26.5 - parent: 89 - - uid: 9152 + pos: -28.5,29.5 + parent: 2 + - uid: 1884 components: - type: Transform - pos: -42.5,-4.5 - parent: 89 - - uid: 9325 + pos: -27.5,29.5 + parent: 2 + - uid: 1885 components: - type: Transform - pos: -43.5,11.5 - parent: 89 - - uid: 9326 + pos: -30.5,27.5 + parent: 2 + - uid: 1886 components: - type: Transform - pos: -36.5,15.5 - parent: 89 - - uid: 9327 + pos: -31.5,27.5 + parent: 2 + - uid: 1887 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 9328 + pos: -32.5,27.5 + parent: 2 + - uid: 1888 components: - type: Transform - pos: -48.5,19.5 - parent: 89 - - uid: 9819 + pos: -30.5,23.5 + parent: 2 + - uid: 1889 components: - type: Transform - pos: -54.5,25.5 - parent: 89 - - uid: 10136 + pos: -31.5,23.5 + parent: 2 + - uid: 1890 components: - type: Transform - pos: -78.5,-4.5 - parent: 89 - - uid: 10539 + pos: -32.5,23.5 + parent: 2 + - uid: 1891 components: - type: Transform - pos: -79.5,16.5 - parent: 89 - - uid: 10924 + pos: -28.5,25.5 + parent: 2 + - uid: 1892 components: - type: Transform - pos: -20.5,13.5 - parent: 89 - - uid: 10946 + pos: -27.5,25.5 + parent: 2 + - uid: 1893 components: - type: Transform - pos: 1.5,-15.5 - parent: 89 - - uid: 15303 + pos: -29.5,20.5 + parent: 2 + - uid: 1894 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16131 + pos: -29.5,19.5 + parent: 2 + - uid: 1895 components: - type: Transform - pos: 22.5,25.5 - parent: 89 - - uid: 16132 + pos: -29.5,18.5 + parent: 2 + - uid: 1896 components: - type: Transform - pos: 26.5,25.5 - parent: 89 - - uid: 16139 + pos: -30.5,20.5 + parent: 2 + - uid: 1897 components: - type: Transform - pos: 15.5,26.5 - parent: 89 -- proto: AirlockMaintEngiLocked - entities: - - uid: 927 + pos: -31.5,20.5 + parent: 2 + - uid: 1898 components: - type: Transform - pos: -111.5,11.5 - parent: 89 - - uid: 7340 + pos: -32.5,20.5 + parent: 2 + - uid: 1899 components: - type: Transform - pos: -103.5,14.5 - parent: 89 - - uid: 10407 + pos: -33.5,20.5 + parent: 2 + - uid: 1900 components: - type: Transform - pos: -118.5,17.5 - parent: 89 -- proto: AirlockMaintHOPLocked - entities: - - uid: 20983 + pos: -34.5,20.5 + parent: 2 + - uid: 1901 components: - type: Transform - pos: 42.5,18.5 - parent: 89 -- proto: AirlockMaintJanitorLocked - entities: - - uid: 9495 + pos: -35.5,20.5 + parent: 2 + - uid: 1902 components: - type: Transform - pos: -37.5,10.5 - parent: 89 -- proto: AirlockMaintLawyerLocked - entities: - - uid: 434 + pos: -27.5,20.5 + parent: 2 + - uid: 1903 components: - type: Transform - pos: -74.5,-7.5 - parent: 89 -- proto: AirlockMaintLocked - entities: - - uid: 1063 + pos: -26.5,20.5 + parent: 2 + - uid: 1904 components: - type: Transform - pos: -86.5,22.5 - parent: 89 - - uid: 5778 + pos: -25.5,20.5 + parent: 2 + - uid: 1905 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 6700 + pos: -24.5,20.5 + parent: 2 + - uid: 1906 components: - type: Transform - pos: -37.5,-2.5 - parent: 89 - - uid: 9179 + pos: -27.5,14.5 + parent: 2 + - uid: 1907 components: - type: Transform - pos: -34.5,20.5 - parent: 89 -- proto: AirlockMaintMedLocked - entities: - - uid: 16515 + pos: -27.5,13.5 + parent: 2 + - uid: 1908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,22.5 - parent: 89 - - uid: 16560 + pos: -28.5,13.5 + parent: 2 + - uid: 1909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,19.5 - parent: 89 -- proto: AirlockMaintRnDLocked - entities: - - uid: 1376 + pos: -29.5,13.5 + parent: 2 + - uid: 1910 components: - type: Transform - pos: -23.5,-16.5 - parent: 89 - - uid: 1732 + pos: -26.5,13.5 + parent: 2 + - uid: 1911 components: - type: Transform - pos: 2.5,-17.5 - parent: 89 - - uid: 9044 + pos: -25.5,13.5 + parent: 2 + - uid: 1912 components: - type: Transform - pos: 5.5,-24.5 - parent: 89 -- proto: AirlockMaintSalvageLocked - entities: - - uid: 4597 + pos: -24.5,13.5 + parent: 2 + - uid: 1913 components: - type: Transform - pos: -46.5,-12.5 - parent: 89 -- proto: AirlockMaintSecLocked - entities: - - uid: 2036 + pos: -23.5,13.5 + parent: 2 + - uid: 1914 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 5099 + pos: -22.5,13.5 + parent: 2 + - uid: 1915 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 6161 + pos: -21.5,13.5 + parent: 2 + - uid: 1916 components: - type: Transform - pos: -19.5,10.5 - parent: 89 - - uid: 8336 + pos: -39.5,23.5 + parent: 2 + - uid: 1917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,21.5 - parent: 89 - - uid: 9734 + pos: -40.5,23.5 + parent: 2 + - uid: 1918 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 21809 + pos: -40.5,22.5 + parent: 2 + - uid: 1919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-23.5 - parent: 89 - - uid: 25688 + pos: -40.5,21.5 + parent: 2 + - uid: 1920 components: - type: Transform - pos: 37.5,-16.5 - parent: 89 -- proto: AirlockMaintTheatreLocked - entities: - - uid: 4611 + pos: -40.5,20.5 + parent: 2 + - uid: 1921 components: - type: Transform - pos: -36.5,-4.5 - parent: 89 -- proto: AirlockMedical - entities: - - uid: 6596 + pos: -42.5,20.5 + parent: 2 + - uid: 1922 components: - type: Transform - pos: -12.5,5.5 - parent: 89 - - uid: 6597 + pos: -43.5,20.5 + parent: 2 + - uid: 1923 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 10667 + pos: -44.5,20.5 + parent: 2 + - uid: 1924 components: - type: Transform - pos: 12.5,7.5 - parent: 89 - - uid: 11217 + pos: -45.5,20.5 + parent: 2 + - uid: 1925 components: - type: Transform - pos: 23.5,14.5 - parent: 89 - - uid: 11218 + pos: -46.5,20.5 + parent: 2 + - uid: 1926 components: - type: Transform - pos: 17.5,14.5 - parent: 89 - - uid: 14932 + pos: -47.5,20.5 + parent: 2 + - uid: 1927 components: - type: Transform - pos: 17.5,15.5 - parent: 89 - - uid: 14961 + pos: -48.5,20.5 + parent: 2 + - uid: 1928 components: - type: Transform - pos: 23.5,15.5 - parent: 89 - - uid: 16398 + pos: -49.5,20.5 + parent: 2 + - uid: 1929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,16.5 - parent: 89 -- proto: AirlockMedicalGlassLocked - entities: - - uid: 2228 + pos: -50.5,20.5 + parent: 2 + - uid: 1930 components: - type: Transform - pos: 28.5,30.5 - parent: 89 - - uid: 2249 + pos: -51.5,20.5 + parent: 2 + - uid: 1931 components: - type: Transform - pos: 20.5,30.5 - parent: 89 - - uid: 12531 + pos: -52.5,20.5 + parent: 2 + - uid: 1932 components: - type: Transform - pos: 12.5,13.5 - parent: 89 - - uid: 12532 + pos: -53.5,20.5 + parent: 2 + - uid: 1933 components: - type: Transform - pos: 12.5,11.5 - parent: 89 - - uid: 19794 + pos: -53.5,21.5 + parent: 2 + - uid: 1934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 - parent: 89 -- proto: AirlockMedicalLocked - entities: - - uid: 440 + pos: -53.5,22.5 + parent: 2 + - uid: 1935 components: - type: Transform - pos: -2.5,12.5 - parent: 89 - - uid: 1657 + pos: -53.5,23.5 + parent: 2 + - uid: 1936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 89 - - uid: 1839 + pos: -53.5,24.5 + parent: 2 + - uid: 1937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,15.5 - parent: 89 - - uid: 8149 + pos: -53.5,25.5 + parent: 2 + - uid: 1938 components: - type: Transform - pos: 14.5,16.5 - parent: 89 - - uid: 8195 + pos: -53.5,26.5 + parent: 2 + - uid: 1939 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 10818 + pos: -53.5,27.5 + parent: 2 + - uid: 1940 components: - type: Transform - pos: 6.5,10.5 - parent: 89 - - uid: 11031 + pos: -53.5,28.5 + parent: 2 + - uid: 1941 components: - type: Transform - pos: 4.5,13.5 - parent: 89 - - uid: 11038 + pos: -53.5,29.5 + parent: 2 + - uid: 1942 components: - type: Transform - pos: 4.5,11.5 - parent: 89 - - uid: 12639 + pos: -53.5,30.5 + parent: 2 + - uid: 1943 components: - type: Transform - pos: 7.5,15.5 - parent: 89 - - uid: 12640 + pos: -53.5,31.5 + parent: 2 + - uid: 1944 components: - type: Transform - pos: 9.5,15.5 - parent: 89 - - uid: 12827 + pos: -53.5,32.5 + parent: 2 + - uid: 1945 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 14033 + pos: -52.5,32.5 + parent: 2 + - uid: 1946 components: - type: Transform - pos: 15.5,22.5 - parent: 89 - - uid: 15066 + pos: -52.5,33.5 + parent: 2 + - uid: 1947 components: - type: Transform - pos: 24.5,21.5 - parent: 89 - - uid: 15180 + pos: -31.5,10.5 + parent: 2 + - uid: 1948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 89 - - uid: 16026 + pos: -39.5,20.5 + parent: 2 + - uid: 1949 components: - type: Transform - pos: -7.5,18.5 - parent: 89 - - uid: 16496 + pos: -38.5,20.5 + parent: 2 + - uid: 1950 components: - type: Transform - pos: 12.5,22.5 - parent: 89 - - uid: 20250 + pos: -37.5,20.5 + parent: 2 + - uid: 1951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 89 -- proto: AirlockQuartermasterLocked - entities: - - uid: 4479 + pos: -37.5,21.5 + parent: 2 + - uid: 1952 components: - type: Transform - pos: -73.5,-14.5 - parent: 89 - - uid: 4511 + pos: -37.5,22.5 + parent: 2 + - uid: 1953 components: - type: Transform - pos: -70.5,-14.5 - parent: 89 -- proto: AirlockResearchDirectorLocked - entities: - - uid: 1807 + pos: -37.5,23.5 + parent: 2 + - uid: 1954 components: - - type: MetaData - name: научный руководитель - type: Transform - pos: 2.5,-26.5 - parent: 89 - - uid: 10685 + pos: -37.5,24.5 + parent: 2 + - uid: 1955 components: - type: Transform - pos: 5.5,-28.5 - parent: 89 - - uid: 10687 + pos: -37.5,25.5 + parent: 2 + - uid: 1956 components: - - type: MetaData - name: серверная - type: Transform - pos: -3.5,-35.5 - parent: 89 -- proto: AirlockSalvageLocked - entities: - - uid: 5231 + pos: -37.5,26.5 + parent: 2 + - uid: 1957 components: - type: Transform - pos: -53.5,-9.5 - parent: 89 - - uid: 5234 + pos: -37.5,27.5 + parent: 2 + - uid: 1958 components: - type: Transform - pos: -53.5,-10.5 - parent: 89 - - uid: 5837 + pos: -37.5,28.5 + parent: 2 + - uid: 1959 components: - type: Transform - pos: -53.5,-13.5 - parent: 89 - - uid: 10780 + pos: -21.5,19.5 + parent: 2 + - uid: 1960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,34.5 - parent: 89 - - uid: 10781 + pos: -21.5,20.5 + parent: 2 + - uid: 1961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 89 - - uid: 10783 + pos: -21.5,21.5 + parent: 2 + - uid: 1962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,38.5 - parent: 89 - - uid: 10784 + pos: -22.5,21.5 + parent: 2 + - uid: 1963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,38.5 - parent: 89 - - uid: 10788 + pos: -22.5,22.5 + parent: 2 + - uid: 1964 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,46.5 - parent: 89 - - uid: 10789 + pos: -22.5,23.5 + parent: 2 + - uid: 1965 components: - type: Transform - pos: -29.5,46.5 - parent: 89 -- proto: AirlockScienceGlassLocked - entities: - - uid: 300 + pos: -22.5,24.5 + parent: 2 + - uid: 1966 components: - - type: MetaData - name: робототехника - type: Transform - pos: -10.5,-22.5 - parent: 89 - - uid: 7380 + pos: -22.5,25.5 + parent: 2 + - uid: 1967 components: - type: Transform - pos: -1.5,-26.5 - parent: 89 -- proto: AirlockScienceLocked - entities: - - uid: 4 + pos: -22.5,26.5 + parent: 2 + - uid: 1968 components: - - type: MetaData - name: РнД - type: Transform - pos: -2.5,-18.5 - parent: 89 - - uid: 8 + pos: -22.5,27.5 + parent: 2 + - uid: 1969 components: - - type: MetaData - name: РнД - type: Transform - pos: -0.5,-18.5 - parent: 89 - - uid: 9 + pos: -22.5,28.5 + parent: 2 + - uid: 1970 components: - - type: MetaData - name: РнД - type: Transform - pos: -2.5,-23.5 - parent: 89 - - uid: 296 + pos: -20.5,20.5 + parent: 2 + - uid: 1971 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 297 + pos: -19.5,20.5 + parent: 2 + - uid: 1972 components: - - type: MetaData - name: ксеноархеология - type: Transform - pos: -1.5,-37.5 - parent: 89 - - uid: 10686 + pos: -18.5,20.5 + parent: 2 + - uid: 1973 components: - - type: MetaData - name: отдел аномалистики - type: Transform - pos: -3.5,-30.5 - parent: 89 - - uid: 10688 + pos: -17.5,20.5 + parent: 2 + - uid: 1974 components: - - type: MetaData - name: лаборатория - type: Transform - pos: -8.5,-19.5 - parent: 89 - - uid: 10689 + pos: -16.5,20.5 + parent: 2 + - uid: 1975 components: - type: Transform - pos: -17.5,-16.5 - parent: 89 - - uid: 10690 + pos: -15.5,20.5 + parent: 2 + - uid: 1976 components: - - type: MetaData - name: РнД - type: Transform - pos: -0.5,-23.5 - parent: 89 - - uid: 10691 + pos: -14.5,20.5 + parent: 2 + - uid: 1977 components: - - type: MetaData - name: комната отдыха РнД - type: Transform - pos: 2.5,-23.5 - parent: 89 -- proto: AirlockSecurity - entities: - - uid: 22607 + pos: -14.5,13.5 + parent: 2 + - uid: 1978 components: - type: Transform - pos: -17.5,-9.5 - parent: 22565 - - uid: 22608 + pos: -14.5,14.5 + parent: 2 + - uid: 1979 components: - type: Transform - pos: -17.5,-13.5 - parent: 22565 -- proto: AirlockSecurityGlass - entities: - - uid: 4592 + pos: -14.5,15.5 + parent: 2 + - uid: 1980 components: - type: Transform - pos: 1.5,-12.5 - parent: 89 - - uid: 4593 + pos: -14.5,16.5 + parent: 2 + - uid: 1981 components: - type: Transform - pos: 1.5,-10.5 - parent: 89 -- proto: AirlockSecurityGlassLocked - entities: - - uid: 331 + pos: -14.5,17.5 + parent: 2 + - uid: 1982 components: - type: Transform - pos: 11.5,-4.5 - parent: 89 - - uid: 2909 + pos: -19.5,11.5 + parent: 2 + - uid: 1983 components: - type: Transform - pos: 26.5,-7.5 - parent: 89 - - uid: 5076 + pos: -19.5,12.5 + parent: 2 + - uid: 1984 components: - type: Transform - pos: 27.5,-7.5 - parent: 89 - - uid: 9860 + pos: -19.5,13.5 + parent: 2 + - uid: 1985 components: - type: Transform - pos: -53.5,44.5 - parent: 89 - - uid: 9861 + pos: -19.5,14.5 + parent: 2 + - uid: 1986 components: - type: Transform - pos: -53.5,40.5 - parent: 89 - - uid: 17276 + pos: 2.5,23.5 + parent: 2 + - uid: 1987 components: - type: Transform - pos: -55.5,46.5 - parent: 89 - - uid: 18196 + pos: -18.5,14.5 + parent: 2 + - uid: 1988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-5.5 - parent: 18153 - - uid: 18197 + pos: -17.5,14.5 + parent: 2 + - uid: 1989 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 18153 - - uid: 18198 + pos: -16.5,14.5 + parent: 2 + - uid: 1990 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 18153 - - uid: 22609 + pos: -15.5,14.5 + parent: 2 + - uid: 1991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 22565 - - uid: 22610 + pos: -36.5,6.5 + parent: 2 + - uid: 1992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,8.5 - parent: 22565 - - uid: 22611 + pos: -36.5,5.5 + parent: 2 + - uid: 1993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 22565 - - uid: 22612 + pos: -36.5,4.5 + parent: 2 + - uid: 1994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 22565 -- proto: AirlockSecurityLocked - entities: - - uid: 5732 + pos: -36.5,3.5 + parent: 2 + - uid: 1995 components: - type: Transform - pos: 5.5,-3.5 - parent: 89 - - uid: 6160 + pos: -37.5,3.5 + parent: 2 + - uid: 1996 components: - type: Transform - pos: -15.5,10.5 - parent: 89 - - uid: 6794 + pos: -38.5,3.5 + parent: 2 + - uid: 1997 components: - type: Transform - pos: -42.5,-0.5 - parent: 89 - - uid: 7937 + pos: -39.5,3.5 + parent: 2 + - uid: 1998 components: - type: Transform - pos: -59.5,11.5 - parent: 89 - - uid: 8082 + pos: -40.5,3.5 + parent: 2 + - uid: 1999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,13.5 - parent: 89 - - uid: 8224 + pos: -40.5,4.5 + parent: 2 + - uid: 2000 components: - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 10021 + pos: -40.5,5.5 + parent: 2 + - uid: 2001 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 22613 + pos: -40.5,6.5 + parent: 2 + - uid: 2002 components: - type: Transform - pos: -11.5,-20.5 - parent: 22565 - - uid: 22614 + pos: -40.5,7.5 + parent: 2 + - uid: 2003 components: - type: Transform - pos: -15.5,-20.5 - parent: 22565 -- proto: AirlockServiceCaptainLocked - entities: - - uid: 671 + pos: -40.5,8.5 + parent: 2 + - uid: 2004 components: - type: Transform - pos: 49.5,13.5 - parent: 89 -- proto: AirlockServiceLocked - entities: - - uid: 6008 + pos: -39.5,8.5 + parent: 2 + - uid: 2005 components: - type: Transform - pos: -54.5,10.5 - parent: 89 - - uid: 12617 + pos: -38.5,8.5 + parent: 2 + - uid: 2006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,31.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21591 -- proto: AirlockShuttle - entities: - - uid: 7330 + pos: -37.5,8.5 + parent: 2 + - uid: 2007 components: - type: Transform - pos: -42.5,-22.5 - parent: 89 - - uid: 22615 + pos: -37.5,9.5 + parent: 2 + - uid: 2008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,23.5 - parent: 22565 - - uid: 22616 + pos: -36.5,8.5 + parent: 2 + - uid: 2009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,23.5 - parent: 22565 - - uid: 22617 + pos: -35.5,4.5 + parent: 2 + - uid: 2010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,15.5 - parent: 22565 - - uid: 22618 + pos: -34.5,4.5 + parent: 2 + - uid: 2011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,17.5 - parent: 22565 - - uid: 22619 + pos: -33.5,4.5 + parent: 2 + - uid: 2012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 22565 - - uid: 22620 + pos: -32.5,4.5 + parent: 2 + - uid: 2013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,15.5 - parent: 22565 - - uid: 22621 + pos: -31.5,4.5 + parent: 2 + - uid: 2014 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,21.5 - parent: 22565 - - uid: 22622 + pos: -30.5,4.5 + parent: 2 + - uid: 2015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,21.5 - parent: 22565 - - uid: 22623 + pos: -29.5,4.5 + parent: 2 + - uid: 2016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,15.5 - parent: 22565 - - uid: 22624 + pos: -31.5,5.5 + parent: 2 + - uid: 2017 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,21.5 - parent: 22565 - - uid: 22625 + pos: -30.5,13.5 + parent: 2 + - uid: 2018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,21.5 - parent: 22565 - - uid: 22626 + pos: -31.5,13.5 + parent: 2 + - uid: 2019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,17.5 - parent: 22565 - - uid: 22627 + pos: -32.5,13.5 + parent: 2 + - uid: 2020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,17.5 - parent: 22565 - - uid: 22628 + pos: -33.5,13.5 + parent: 2 + - uid: 2021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,23.5 - parent: 22565 - - uid: 22629 + pos: -33.5,14.5 + parent: 2 + - uid: 2022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,23.5 - parent: 22565 - - uid: 22630 + pos: -33.5,15.5 + parent: 2 + - uid: 2023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,15.5 - parent: 22565 - - uid: 25422 + pos: -33.5,16.5 + parent: 2 + - uid: 2024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 18153 - - type: Docking - dockJointId: docking314616 - dockedWith: 25357 - - uid: 25423 + pos: -33.5,17.5 + parent: 2 + - uid: 2025 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 18153 - - type: Docking - dockJointId: docking314611 - dockedWith: 21748 -- proto: AirlockTheatreLocked - entities: - - uid: 4587 + pos: -33.5,18.5 + parent: 2 + - uid: 2026 components: - type: Transform - pos: -32.5,-8.5 - parent: 89 - - uid: 4589 + pos: -14.5,22.5 + parent: 2 + - uid: 2027 components: - type: Transform - pos: -32.5,-4.5 - parent: 89 -- proto: AirlockVirologyGlassLocked - entities: - - uid: 11916 + pos: -34.5,-16.5 + parent: 2 + - uid: 2028 components: - type: Transform - pos: 9.5,39.5 - parent: 89 - - uid: 11917 + pos: -37.5,-16.5 + parent: 2 + - uid: 2029 components: - type: Transform - pos: 10.5,39.5 - parent: 89 - - uid: 15759 + pos: -101.5,-1.5 + parent: 2 + - uid: 2030 components: - type: Transform - pos: 8.5,31.5 - parent: 89 - - uid: 16174 + pos: -105.5,-2.5 + parent: 2 + - uid: 2031 components: - type: Transform - pos: 13.5,35.5 - parent: 89 - - uid: 16189 + pos: -105.5,-3.5 + parent: 2 + - uid: 2032 components: - type: Transform - pos: 6.5,35.5 - parent: 89 -- proto: AirlockVirologyLocked - entities: - - uid: 8146 + pos: -105.5,-4.5 + parent: 2 + - uid: 2033 components: - type: Transform - pos: 13.5,28.5 - parent: 89 - - uid: 8599 + pos: -104.5,-2.5 + parent: 2 + - uid: 2034 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 15402 + pos: -103.5,-2.5 + parent: 2 + - uid: 2035 components: - type: Transform - pos: 12.5,29.5 - parent: 89 - - uid: 15572 + pos: -102.5,-2.5 + parent: 2 + - uid: 2036 components: - type: Transform - pos: 14.5,28.5 - parent: 89 - - uid: 15608 + pos: -101.5,-2.5 + parent: 2 + - uid: 2037 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 16136 + pos: -100.5,-2.5 + parent: 2 + - uid: 2038 components: - type: Transform - pos: 14.5,31.5 - parent: 89 - - uid: 16170 + pos: -99.5,-2.5 + parent: 2 + - uid: 2039 components: - type: Transform - pos: 14.5,24.5 - parent: 89 -- proto: AirSensor - entities: - - uid: 2013 + pos: -106.5,-2.5 + parent: 2 + - uid: 2040 components: - type: Transform - pos: -99.5,-15.5 - parent: 89 - - uid: 2140 + pos: -101.5,-0.5 + parent: 2 + - uid: 2041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-25.5 - parent: 89 - - uid: 2907 + pos: -102.5,-3.5 + parent: 2 + - uid: 2042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-10.5 - parent: 89 - - uid: 3085 + pos: -102.5,-4.5 + parent: 2 + - uid: 2043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-19.5 - parent: 89 - - uid: 3097 + pos: -99.5,-3.5 + parent: 2 + - uid: 2044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-8.5 - parent: 89 - - uid: 6624 + pos: -99.5,-4.5 + parent: 2 + - uid: 2045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-0.5 - parent: 89 - - uid: 6701 + pos: -99.5,-5.5 + parent: 2 + - uid: 2046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-11.5 - parent: 89 - - uid: 6750 + pos: -99.5,-6.5 + parent: 2 + - uid: 2047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 89 - - uid: 6772 + pos: -99.5,-7.5 + parent: 2 + - uid: 2048 components: - type: Transform - pos: -48.5,-3.5 - parent: 89 - - uid: 7383 + pos: -99.5,-8.5 + parent: 2 + - uid: 2049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-10.5 - parent: 89 - - uid: 7395 + pos: -99.5,-9.5 + parent: 2 + - uid: 2050 components: - type: Transform - pos: -93.5,6.5 - parent: 89 - - uid: 7412 + pos: -100.5,-9.5 + parent: 2 + - uid: 2051 components: - type: Transform - pos: -99.5,-3.5 - parent: 89 - - uid: 7430 + pos: -101.5,-9.5 + parent: 2 + - uid: 2052 components: - type: Transform - pos: -99.5,5.5 - parent: 89 - - uid: 7459 + pos: -102.5,-9.5 + parent: 2 + - uid: 2053 components: - type: Transform - pos: -94.5,14.5 - parent: 89 - - uid: 9443 + pos: -103.5,-9.5 + parent: 2 + - uid: 2054 components: - type: Transform - pos: 22.5,1.5 - parent: 89 - - uid: 9456 + pos: -104.5,-9.5 + parent: 2 + - uid: 2055 components: - type: Transform - pos: -1.5,0.5 - parent: 89 - - uid: 9457 + pos: -104.5,-8.5 + parent: 2 + - uid: 2056 components: - type: Transform - pos: -13.5,1.5 - parent: 89 - - uid: 9469 + pos: -105.5,-12.5 + parent: 2 + - uid: 2057 components: - type: Transform - pos: -24.5,5.5 - parent: 89 - - uid: 9472 + pos: -105.5,-13.5 + parent: 2 + - uid: 2058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,3.5 - parent: 89 - - uid: 9490 + pos: -105.5,-14.5 + parent: 2 + - uid: 2059 components: - type: Transform - pos: -41.5,-2.5 - parent: 89 - - uid: 9502 + pos: -105.5,-15.5 + parent: 2 + - uid: 2060 components: - type: Transform - pos: -55.5,3.5 - parent: 89 - - uid: 9514 + pos: -105.5,-16.5 + parent: 2 + - uid: 2061 components: - type: Transform - pos: -64.5,9.5 - parent: 89 - - uid: 9515 + pos: -105.5,-17.5 + parent: 2 + - uid: 2062 components: - type: Transform - pos: -71.5,13.5 - parent: 89 - - uid: 9516 + pos: -105.5,-18.5 + parent: 2 + - uid: 2063 components: - type: Transform - pos: -56.5,13.5 - parent: 89 - - uid: 9517 + pos: -105.5,-19.5 + parent: 2 + - uid: 2064 components: - type: Transform - pos: -57.5,16.5 - parent: 89 - - uid: 9520 + pos: -104.5,-12.5 + parent: 2 + - uid: 2065 components: - type: Transform - pos: -48.5,14.5 - parent: 89 - - uid: 9521 + pos: -103.5,-12.5 + parent: 2 + - uid: 2066 components: - type: Transform - pos: -31.5,12.5 - parent: 89 - - uid: 9522 + pos: -102.5,-12.5 + parent: 2 + - uid: 2067 components: - type: Transform - pos: -40.5,16.5 - parent: 89 - - uid: 9569 + pos: -101.5,-12.5 + parent: 2 + - uid: 2068 components: - type: Transform - pos: -85.5,8.5 - parent: 89 - - uid: 9579 + pos: -100.5,-12.5 + parent: 2 + - uid: 2069 components: - type: Transform - pos: -21.5,-11.5 - parent: 89 - - uid: 9584 + pos: -99.5,-12.5 + parent: 2 + - uid: 2070 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-12.5 - parent: 89 - - uid: 9585 + pos: -98.5,-12.5 + parent: 2 + - uid: 2071 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,6.5 - parent: 89 - - uid: 9595 + pos: -98.5,-13.5 + parent: 2 + - uid: 2072 components: - type: Transform - pos: -20.5,-4.5 - parent: 89 - - uid: 10051 + pos: -97.5,-13.5 + parent: 2 + - uid: 2073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,4.5 - parent: 89 - - uid: 10174 + pos: -96.5,-13.5 + parent: 2 + - uid: 2074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,22.5 - parent: 89 - - uid: 10817 + pos: -96.5,-12.5 + parent: 2 + - uid: 2075 components: - type: Transform - pos: 24.5,31.5 - parent: 89 - - uid: 12239 + pos: -96.5,-11.5 + parent: 2 + - uid: 2076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,17.5 - parent: 89 - - uid: 12847 + pos: -96.5,-10.5 + parent: 2 + - uid: 2077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,9.5 - parent: 89 - - uid: 13204 + pos: -96.5,-9.5 + parent: 2 + - uid: 2078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,6.5 - parent: 89 - - uid: 15195 + pos: -96.5,-8.5 + parent: 2 + - uid: 2079 components: - type: Transform - pos: 31.5,30.5 - parent: 89 - - uid: 15431 + pos: -95.5,-8.5 + parent: 2 + - uid: 2080 components: - type: Transform - pos: 17.5,30.5 - parent: 89 - - uid: 15656 + pos: -95.5,-7.5 + parent: 2 + - uid: 2081 components: - type: Transform - pos: -100.5,27.5 - parent: 89 - - uid: 16549 + pos: -92.5,-8.5 + parent: 2 + - uid: 2082 components: - type: Transform - pos: 0.5,18.5 - parent: 89 - - uid: 16796 + pos: -91.5,-8.5 + parent: 2 + - uid: 2083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,43.5 - parent: 89 - - uid: 17017 + pos: -91.5,-10.5 + parent: 2 + - uid: 2084 components: - type: Transform - pos: -29.5,36.5 - parent: 89 - - uid: 17039 + pos: -91.5,-9.5 + parent: 2 + - uid: 2085 components: - type: Transform - pos: 14.5,19.5 - parent: 89 - - uid: 17088 + pos: -103.5,-13.5 + parent: 2 + - uid: 2086 components: - type: Transform - pos: -28.5,47.5 - parent: 89 - - uid: 19409 + pos: -101.5,-13.5 + parent: 2 + - uid: 2087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,11.5 - parent: 89 - - uid: 20016 + pos: -92.5,-13.5 + parent: 2 + - uid: 2088 components: - type: Transform - pos: 9.5,33.5 - parent: 89 - - uid: 20017 + pos: -91.5,-13.5 + parent: 2 + - uid: 2089 components: - type: Transform - pos: 14.5,29.5 - parent: 89 - - uid: 20103 + pos: -90.5,-13.5 + parent: 2 + - uid: 2090 components: - type: Transform - pos: -130.5,3.5 - parent: 89 - - uid: 20107 + pos: -89.5,-13.5 + parent: 2 + - uid: 2091 components: - type: Transform - pos: -120.5,3.5 - parent: 89 - - uid: 20110 + pos: -88.5,-13.5 + parent: 2 + - uid: 2092 components: - type: Transform - pos: -1.5,8.5 - parent: 89 - - uid: 20114 + pos: -87.5,-13.5 + parent: 2 + - uid: 2093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,34.5 - parent: 89 - - uid: 20118 + pos: -86.5,-13.5 + parent: 2 + - uid: 2094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,11.5 - parent: 89 - - uid: 20121 + pos: -85.5,-13.5 + parent: 2 + - uid: 2095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,12.5 - parent: 89 - - uid: 20135 + pos: -84.5,-13.5 + parent: 2 + - uid: 2096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,11.5 - parent: 89 - - uid: 20139 + pos: -83.5,-13.5 + parent: 2 + - uid: 2097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,22.5 - parent: 89 - - uid: 20140 + pos: -82.5,-13.5 + parent: 2 + - uid: 2098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 89 - - uid: 20144 + pos: -81.5,-13.5 + parent: 2 + - uid: 2099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,40.5 - parent: 89 - - uid: 20146 + pos: -80.5,-13.5 + parent: 2 + - uid: 2100 components: - type: Transform - pos: -6.5,-43.5 - parent: 89 - - uid: 20147 + pos: -79.5,-13.5 + parent: 2 + - uid: 2101 components: - type: Transform - pos: 1.5,-43.5 - parent: 89 - - uid: 20148 + pos: -78.5,-13.5 + parent: 2 + - uid: 2102 components: - type: Transform - pos: -1.5,-39.5 - parent: 89 - - uid: 20149 + pos: -78.5,-14.5 + parent: 2 + - uid: 2103 components: - type: Transform - pos: -0.5,-34.5 - parent: 89 - - uid: 20150 + pos: -78.5,-15.5 + parent: 2 + - uid: 2104 components: - type: Transform - pos: -1.5,-29.5 - parent: 89 - - uid: 20151 + pos: -78.5,-16.5 + parent: 2 + - uid: 2105 components: - type: Transform - pos: -11.5,-17.5 - parent: 89 - - uid: 20152 + pos: -78.5,-17.5 + parent: 2 + - uid: 2106 components: - type: Transform - pos: -18.5,-21.5 - parent: 89 - - uid: 20153 + pos: -78.5,-18.5 + parent: 2 + - uid: 2107 components: - type: Transform - pos: 4.5,-28.5 - parent: 89 - - uid: 20154 + pos: -78.5,-19.5 + parent: 2 + - uid: 2108 components: - type: Transform - pos: 2.5,-20.5 - parent: 89 - - uid: 20156 + pos: -79.5,-19.5 + parent: 2 + - uid: 2109 components: - type: Transform - pos: -9.5,-30.5 - parent: 89 - - uid: 20158 + pos: -80.5,-19.5 + parent: 2 + - uid: 2110 components: - type: Transform - pos: -7.5,-35.5 - parent: 89 - - uid: 20823 + pos: -81.5,-19.5 + parent: 2 + - uid: 2111 components: - type: Transform - pos: -11.5,18.5 - parent: 89 - - uid: 21631 + pos: -83.5,-10.5 + parent: 2 + - uid: 2112 components: - type: Transform - pos: 1.5,-2.5 - parent: 21627 - - uid: 22314 + pos: -83.5,-11.5 + parent: 2 + - uid: 2113 components: - type: Transform - pos: 48.5,-26.5 - parent: 89 - - uid: 22473 + pos: -83.5,-12.5 + parent: 2 + - uid: 2114 components: - type: Transform - pos: 44.5,-24.5 - parent: 89 - - uid: 22631 + pos: -78.5,-21.5 + parent: 2 + - uid: 2115 components: - type: Transform - pos: 5.5,4.5 - parent: 22565 - - uid: 22632 + pos: -77.5,-21.5 + parent: 2 + - uid: 2116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,0.5 - parent: 22565 - - uid: 22633 + pos: -77.5,-19.5 + parent: 2 + - uid: 2117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,4.5 - parent: 22565 - - uid: 22634 + pos: -76.5,-19.5 + parent: 2 + - uid: 2118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,5.5 - parent: 22565 - - uid: 22635 + pos: -76.5,-21.5 + parent: 2 + - uid: 2119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 22565 - - uid: 22636 + pos: -76.5,-20.5 + parent: 2 + - uid: 2120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,2.5 - parent: 22565 - - uid: 22637 + pos: -79.5,-21.5 + parent: 2 + - uid: 2121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,16.5 - parent: 22565 - - uid: 22638 + pos: -80.5,-21.5 + parent: 2 + - uid: 2122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-25.5 - parent: 22565 - - uid: 22639 + pos: -81.5,-21.5 + parent: 2 + - uid: 2123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-25.5 - parent: 22565 - - uid: 22640 + pos: -82.5,-21.5 + parent: 2 + - uid: 2124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,16.5 - parent: 22565 - - uid: 25416 + pos: -83.5,-21.5 + parent: 2 + - uid: 2125 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-25.5 - parent: 89 - - uid: 25417 + pos: -83.5,-22.5 + parent: 2 + - uid: 2126 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-25.5 - parent: 89 - - uid: 25424 + pos: -83.5,-23.5 + parent: 2 + - uid: 2127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 18153 - - uid: 25425 + pos: -83.5,-24.5 + parent: 2 + - uid: 2128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-8.5 - parent: 18153 - - uid: 25426 + pos: -82.5,-24.5 + parent: 2 + - uid: 2129 components: - type: Transform - pos: 3.5,-2.5 - parent: 18153 -- proto: AltarSpawner - entities: - - uid: 5195 + pos: -81.5,-24.5 + parent: 2 + - uid: 2130 components: - type: Transform - pos: -50.5,-3.5 - parent: 89 -- proto: AlwaysPoweredWallLight - entities: - - uid: 18229 + pos: -80.5,-24.5 + parent: 2 + - uid: 2131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-25.5 - parent: 89 - - uid: 18238 + pos: -104.5,-19.5 + parent: 2 + - uid: 2132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-25.5 - parent: 89 - - uid: 18246 + pos: -95.5,3.5 + parent: 2 + - uid: 2133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-25.5 - parent: 89 - - uid: 18247 + pos: -94.5,3.5 + parent: 2 + - uid: 2134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-25.5 - parent: 89 - - uid: 18248 + pos: -93.5,3.5 + parent: 2 + - uid: 2135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-25.5 - parent: 89 - - uid: 18251 + pos: -96.5,3.5 + parent: 2 + - uid: 2136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-25.5 - parent: 89 - - uid: 18252 + pos: -93.5,4.5 + parent: 2 + - uid: 2137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-25.5 - parent: 89 - - uid: 18253 + pos: -93.5,5.5 + parent: 2 + - uid: 2138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-25.5 - parent: 89 - - uid: 18269 + pos: -93.5,6.5 + parent: 2 + - uid: 2139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-25.5 - parent: 89 -- proto: AnomalyScanner - entities: - - uid: 12037 + pos: -93.5,7.5 + parent: 2 + - uid: 2140 components: - type: Transform - pos: -4.4272065,-27.335176 - parent: 89 - - uid: 12048 + pos: -93.5,8.5 + parent: 2 + - uid: 2141 components: - type: Transform - pos: -4.4272065,-28.007051 - parent: 89 - - uid: 12193 + pos: -93.5,9.5 + parent: 2 + - uid: 2142 components: - type: Transform - pos: -4.3334565,-27.663301 - parent: 89 - - uid: 15657 + pos: -93.5,10.5 + parent: 2 + - uid: 2143 components: - type: Transform - pos: -4.3334565,-28.335176 - parent: 89 -- proto: AntiPoisonMedipen - entities: - - uid: 22642 + pos: -93.5,11.5 + parent: 2 + - uid: 2144 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: APCBasic - entities: - - uid: 201 + pos: -93.5,12.5 + parent: 2 + - uid: 2145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,26.5 - parent: 89 - - uid: 599 + pos: -93.5,13.5 + parent: 2 + - uid: 2146 components: - type: Transform - pos: 44.5,11.5 - parent: 89 - - uid: 1224 + pos: -93.5,14.5 + parent: 2 + - uid: 2147 components: - type: Transform - pos: -27.5,15.5 - parent: 89 - - uid: 1458 + pos: -93.5,15.5 + parent: 2 + - uid: 2148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-19.5 - parent: 89 - - uid: 1464 + pos: -93.5,16.5 + parent: 2 + - uid: 2149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-29.5 - parent: 89 - - uid: 1552 + pos: -92.5,16.5 + parent: 2 + - uid: 2150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-3.5 - parent: 89 - - uid: 1736 + pos: -91.5,16.5 + parent: 2 + - uid: 2151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-41.5 - parent: 89 - - uid: 2092 + pos: -92.5,14.5 + parent: 2 + - uid: 2152 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 2254 + pos: -91.5,14.5 + parent: 2 + - uid: 2153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 89 - - uid: 2430 + pos: -94.5,16.5 + parent: 2 + - uid: 2154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 89 - - uid: 5439 + pos: -95.5,16.5 + parent: 2 + - uid: 2155 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 5440 + pos: -92.5,12.5 + parent: 2 + - uid: 2156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-8.5 - parent: 89 - - uid: 5443 + pos: -91.5,12.5 + parent: 2 + - uid: 2157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-11.5 - parent: 89 - - uid: 8217 + pos: -93.5,2.5 + parent: 2 + - uid: 2158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,38.5 - parent: 89 - - uid: 10526 + pos: -93.5,1.5 + parent: 2 + - uid: 2159 components: - type: Transform - pos: -86.5,36.5 - parent: 89 - - uid: 11048 + pos: -93.5,0.5 + parent: 2 + - uid: 2160 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 11105 + pos: -93.5,-0.5 + parent: 2 + - uid: 2161 components: - type: Transform - pos: -27.5,22.5 - parent: 89 - - uid: 11204 + pos: -93.5,-1.5 + parent: 2 + - uid: 2162 components: - type: Transform - pos: -36.5,6.5 - parent: 89 - - uid: 11225 + pos: -92.5,-1.5 + parent: 2 + - uid: 2163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,23.5 - parent: 89 - - uid: 11275 + pos: -91.5,-1.5 + parent: 2 + - uid: 2164 components: - type: Transform - pos: -18.5,10.5 - parent: 89 - - uid: 11329 + pos: -90.5,-1.5 + parent: 2 + - uid: 2165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,31.5 - parent: 89 - - uid: 12001 + pos: -89.5,-1.5 + parent: 2 + - uid: 2166 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-2.5 - parent: 89 - - uid: 12002 + pos: -88.5,-1.5 + parent: 2 + - uid: 2167 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 12131 + pos: -87.5,-1.5 + parent: 2 + - uid: 2168 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,3.5 - parent: 89 - - uid: 12195 + pos: -88.5,-0.5 + parent: 2 + - uid: 2169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,9.5 - parent: 89 - - uid: 12218 + pos: -94.5,7.5 + parent: 2 + - uid: 2170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,1.5 - parent: 89 - - uid: 12331 + pos: -103.5,10.5 + parent: 2 + - uid: 2171 components: - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 12395 + pos: -100.5,9.5 + parent: 2 + - uid: 2172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,25.5 - parent: 89 - - uid: 12430 + pos: -101.5,9.5 + parent: 2 + - uid: 2173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,14.5 - parent: 89 - - uid: 12990 + pos: -102.5,9.5 + parent: 2 + - uid: 2174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,15.5 - parent: 89 - - uid: 13139 + pos: -102.5,8.5 + parent: 2 + - uid: 2175 components: - type: Transform - pos: -10.5,5.5 - parent: 89 - - uid: 13182 + pos: -102.5,7.5 + parent: 2 + - uid: 2176 components: - type: Transform - pos: -28.5,0.5 - parent: 89 - - uid: 13207 + pos: -102.5,10.5 + parent: 2 + - uid: 2177 components: - type: Transform - pos: 26.5,21.5 - parent: 89 - - uid: 13307 + pos: -104.5,10.5 + parent: 2 + - uid: 2178 components: - type: Transform - pos: -79.5,2.5 - parent: 89 - - uid: 13376 + pos: -104.5,11.5 + parent: 2 + - uid: 2179 components: - type: Transform - pos: -67.5,15.5 - parent: 89 - - uid: 13447 + pos: -103.5,7.5 + parent: 2 + - uid: 2180 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 13450 + pos: -105.5,7.5 + parent: 2 + - uid: 2181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,29.5 - parent: 89 - - uid: 13755 + pos: -104.5,7.5 + parent: 2 + - uid: 2182 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13848 + pos: -111.5,1.5 + parent: 2 + - uid: 2183 components: - type: Transform - pos: -46.5,-5.5 - parent: 89 - - uid: 14079 + pos: -110.5,1.5 + parent: 2 + - uid: 2184 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 14121 + pos: -109.5,1.5 + parent: 2 + - uid: 2185 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14385 + pos: -108.5,1.5 + parent: 2 + - uid: 2186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,8.5 - parent: 89 - - uid: 14431 + pos: -108.5,0.5 + parent: 2 + - uid: 2187 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 14909 + pos: -108.5,-0.5 + parent: 2 + - uid: 2188 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-37.5 - parent: 89 - - uid: 15336 + pos: -108.5,-1.5 + parent: 2 + - uid: 2189 components: - type: Transform - pos: -31.5,38.5 - parent: 89 - - uid: 15463 + pos: -109.5,-1.5 + parent: 2 + - uid: 2190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,32.5 - parent: 89 - - uid: 15641 + pos: -110.5,-1.5 + parent: 2 + - uid: 2191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-15.5 - parent: 89 - - uid: 16212 + pos: -111.5,-1.5 + parent: 2 + - uid: 2192 components: - type: Transform - pos: -10.5,-6.5 - parent: 89 - - uid: 16246 + pos: -112.5,-1.5 + parent: 2 + - uid: 2193 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 16720 + pos: -111.5,-2.5 + parent: 2 + - uid: 2194 components: - type: Transform - pos: -10.5,-24.5 - parent: 89 - - uid: 17624 + pos: -108.5,-2.5 + parent: 2 + - uid: 2195 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,19.5 - parent: 89 - - uid: 18362 + pos: -108.5,-3.5 + parent: 2 + - uid: 2196 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 20829 + pos: -108.5,-4.5 + parent: 2 + - uid: 2197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,16.5 - parent: 89 - - uid: 21597 + pos: -107.5,-3.5 + parent: 2 + - uid: 2198 components: - type: Transform - pos: 0.5,14.5 - parent: 89 - - uid: 21606 + pos: -108.5,-5.5 + parent: 2 + - uid: 2199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,19.5 - parent: 89 - - uid: 21632 + pos: -108.5,-6.5 + parent: 2 + - uid: 2200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-3.5 - parent: 21627 - - uid: 22666 + pos: -108.5,-7.5 + parent: 2 + - uid: 2201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-25.5 - parent: 22565 - - uid: 22667 + pos: -108.5,-8.5 + parent: 2 + - uid: 2202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-2.5 - parent: 22565 - - uid: 22668 + pos: -108.5,-9.5 + parent: 2 + - uid: 2203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 22565 - - uid: 24762 + pos: -108.5,-10.5 + parent: 2 + - uid: 2204 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-17.5 - parent: 89 -- proto: APCElectronics - entities: - - uid: 6987 + pos: -108.5,-11.5 + parent: 2 + - uid: 2205 components: - type: Transform - pos: -98.65839,-10.332106 - parent: 89 - - uid: 7042 + pos: -108.5,-12.5 + parent: 2 + - uid: 2206 components: - type: Transform - pos: -98.34589,-10.613356 - parent: 89 -- proto: APCHighCapacity - entities: - - uid: 596 + pos: -108.5,-13.5 + parent: 2 + - uid: 2207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,5.5 - parent: 89 - - uid: 801 + pos: -108.5,-14.5 + parent: 2 + - uid: 2208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,12.5 - parent: 89 - - uid: 2477 + pos: -108.5,-15.5 + parent: 2 + - uid: 2209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,4.5 - parent: 89 -- proto: APCSuperCapacity - entities: - - uid: 6951 + pos: -108.5,-16.5 + parent: 2 + - uid: 2210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-23.5 - parent: 89 - - uid: 21920 + pos: -108.5,-17.5 + parent: 2 + - uid: 2211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-18.5 - parent: 89 - - uid: 25427 + pos: -107.5,-17.5 + parent: 2 + - uid: 2212 components: - type: Transform - pos: 5.5,-10.5 - parent: 18153 -- proto: ArrivalsShuttleTimer - entities: - - uid: 14123 + pos: -108.5,2.5 + parent: 2 + - uid: 2213 components: - type: Transform - pos: -68.5,38.5 - parent: 89 - - uid: 14527 + pos: -108.5,3.5 + parent: 2 + - uid: 2214 components: - type: Transform - pos: -82.5,29.5 - parent: 89 - - uid: 25800 + pos: -108.5,4.5 + parent: 2 + - uid: 2215 components: - type: Transform - pos: -68.5,29.5 - parent: 89 - - uid: 25805 + pos: -108.5,5.5 + parent: 2 + - uid: 2216 components: - type: Transform - pos: -82.5,38.5 - parent: 89 -- proto: ArrowRegular - entities: - - uid: 25645 + pos: -108.5,6.5 + parent: 2 + - uid: 2217 components: - type: Transform - pos: -30.792511,-0.52710724 - parent: 22565 - - uid: 25649 + pos: -108.5,7.5 + parent: 2 + - uid: 2218 components: - type: Transform - pos: -30.417511,-0.55835724 - parent: 22565 - - uid: 25650 + pos: -108.5,8.5 + parent: 2 + - uid: 2219 components: - type: Transform - pos: -30.605011,-0.58960724 - parent: 22565 -- proto: Ash - entities: - - uid: 1175 + pos: -108.5,9.5 + parent: 2 + - uid: 2220 components: - type: Transform - pos: 44.32567,17.431087 - parent: 89 - - uid: 6025 + pos: -108.5,10.5 + parent: 2 + - uid: 2221 components: - type: Transform - pos: 44.457054,17.606356 - parent: 89 - - uid: 6979 + pos: -108.5,11.5 + parent: 2 + - uid: 2222 components: - type: Transform - pos: 44.457054,17.693989 - parent: 89 - - uid: 8477 + pos: -108.5,12.5 + parent: 2 + - uid: 2223 components: - type: Transform - pos: 44.610336,17.803532 - parent: 89 - - uid: 10530 + pos: -108.5,13.5 + parent: 2 + - uid: 2224 components: - type: Transform - pos: 44.719826,17.584446 - parent: 89 - - uid: 15032 + pos: -108.5,14.5 + parent: 2 + - uid: 2225 components: - type: Transform - pos: 44.69793,17.803532 - parent: 89 - - uid: 15326 + pos: -107.5,14.5 + parent: 2 + - uid: 2226 components: - type: Transform - pos: 44.238075,17.781624 - parent: 89 -- proto: Ashtray - entities: - - uid: 14521 + pos: -106.5,14.5 + parent: 2 + - uid: 2227 components: - type: Transform - pos: -76.28542,-2.3884234 - parent: 89 -- proto: AsteroidRock - entities: - - uid: 186 + pos: -105.5,14.5 + parent: 2 + - uid: 2228 components: - type: Transform - pos: 41.5,30.5 - parent: 89 - - uid: 187 + pos: -109.5,9.5 + parent: 2 + - uid: 2229 components: - type: Transform - pos: 37.5,32.5 - parent: 89 - - uid: 202 + pos: -110.5,9.5 + parent: 2 + - uid: 2230 components: - type: Transform - pos: 38.5,32.5 - parent: 89 - - uid: 458 + pos: -111.5,9.5 + parent: 2 + - uid: 2231 components: - type: Transform - pos: 38.5,33.5 - parent: 89 - - uid: 546 + pos: -112.5,9.5 + parent: 2 + - uid: 2232 components: - type: Transform - pos: 38.5,34.5 - parent: 89 - - uid: 550 + pos: -113.5,9.5 + parent: 2 + - uid: 2233 components: - type: Transform - pos: 40.5,29.5 - parent: 89 - - uid: 554 + pos: -114.5,9.5 + parent: 2 + - uid: 2234 components: - type: Transform - pos: 41.5,29.5 - parent: 89 - - uid: 561 + pos: -115.5,9.5 + parent: 2 + - uid: 2235 components: - type: Transform - pos: 41.5,42.5 - parent: 89 - - uid: 567 + pos: -116.5,9.5 + parent: 2 + - uid: 2236 components: - type: Transform - pos: 28.5,42.5 - parent: 89 - - uid: 1120 + pos: -117.5,9.5 + parent: 2 + - uid: 2237 components: - type: Transform - pos: 32.5,42.5 - parent: 89 - - uid: 1126 + pos: -113.5,-1.5 + parent: 2 + - uid: 2238 components: - type: Transform - pos: 32.5,39.5 - parent: 89 - - uid: 1634 + pos: -114.5,-1.5 + parent: 2 + - uid: 2239 components: - type: Transform - pos: 31.5,41.5 - parent: 89 - - uid: 1844 + pos: -115.5,-1.5 + parent: 2 + - uid: 2240 components: - type: Transform - pos: 30.5,40.5 - parent: 89 - - uid: 2076 + pos: -116.5,-1.5 + parent: 2 + - uid: 2241 components: - type: Transform - pos: 31.5,38.5 - parent: 89 - - uid: 2718 + pos: -117.5,-1.5 + parent: 2 + - uid: 2242 components: - type: Transform - pos: 32.5,38.5 - parent: 89 - - uid: 2759 + pos: -111.5,-3.5 + parent: 2 + - uid: 2243 components: - type: Transform - pos: 30.5,38.5 - parent: 89 - - uid: 2760 + pos: -111.5,-4.5 + parent: 2 + - uid: 2244 components: - type: Transform - pos: 32.5,40.5 - parent: 89 - - uid: 2761 + pos: -111.5,-5.5 + parent: 2 + - uid: 2245 components: - type: Transform - pos: 30.5,39.5 - parent: 89 - - uid: 2762 + pos: -111.5,-6.5 + parent: 2 + - uid: 2246 components: - type: Transform - pos: 42.5,42.5 - parent: 89 - - uid: 2823 + pos: -111.5,-7.5 + parent: 2 + - uid: 2247 components: - type: Transform - pos: 27.5,43.5 - parent: 89 - - uid: 2824 + pos: -111.5,-8.5 + parent: 2 + - uid: 2248 components: - type: Transform - pos: 28.5,43.5 - parent: 89 - - uid: 22669 + pos: -111.5,-9.5 + parent: 2 + - uid: 2249 components: - type: Transform - pos: -4.5,-14.5 - parent: 22565 - - uid: 22670 + pos: -111.5,-10.5 + parent: 2 + - uid: 2250 components: - type: Transform - pos: -18.5,-16.5 - parent: 22565 - - uid: 22671 + pos: -107.5,4.5 + parent: 2 + - uid: 2251 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22672 + pos: -112.5,-10.5 + parent: 2 + - uid: 2252 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22673 + pos: -113.5,-10.5 + parent: 2 + - uid: 2253 components: - type: Transform - pos: -19.5,-15.5 - parent: 22565 - - uid: 22674 + pos: -111.5,10.5 + parent: 2 + - uid: 2254 components: - type: Transform - pos: -6.5,-14.5 - parent: 22565 - - uid: 22675 + pos: -111.5,11.5 + parent: 2 + - uid: 2255 components: - type: Transform - pos: -6.5,-10.5 - parent: 22565 - - uid: 22676 + pos: -111.5,12.5 + parent: 2 + - uid: 2256 components: - type: Transform - pos: -18.5,-3.5 - parent: 22565 - - uid: 22677 + pos: -111.5,13.5 + parent: 2 + - uid: 2257 components: - type: Transform - pos: -32.5,-0.5 - parent: 22565 - - uid: 22678 + pos: -111.5,14.5 + parent: 2 + - uid: 2258 components: - type: Transform - pos: 1.5,-11.5 - parent: 22565 - - uid: 22679 + pos: -111.5,15.5 + parent: 2 + - uid: 2259 components: - type: Transform - pos: 1.5,-10.5 - parent: 22565 - - uid: 22680 + pos: -111.5,16.5 + parent: 2 + - uid: 2260 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 22681 + pos: -111.5,17.5 + parent: 2 + - uid: 2261 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 22682 + pos: -112.5,17.5 + parent: 2 + - uid: 2262 components: - type: Transform - pos: 0.5,-10.5 - parent: 22565 - - uid: 22683 + pos: -113.5,17.5 + parent: 2 + - uid: 2263 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 22684 + pos: -114.5,17.5 + parent: 2 + - uid: 2264 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 22685 + pos: -115.5,17.5 + parent: 2 + - uid: 2265 components: - type: Transform - pos: -0.5,-10.5 - parent: 22565 - - uid: 22686 + pos: -116.5,17.5 + parent: 2 + - uid: 2266 components: - type: Transform - pos: -0.5,-9.5 - parent: 22565 - - uid: 22687 + pos: -117.5,17.5 + parent: 2 + - uid: 2267 components: - type: Transform - pos: -0.5,-8.5 - parent: 22565 - - uid: 22688 + pos: -106.5,4.5 + parent: 2 + - uid: 2268 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 22689 + pos: -105.5,4.5 + parent: 2 + - uid: 2269 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 22690 + pos: -104.5,4.5 + parent: 2 + - uid: 2270 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 22691 + pos: -103.5,4.5 + parent: 2 + - uid: 2271 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 22692 + pos: -102.5,4.5 + parent: 2 + - uid: 2272 components: - type: Transform - pos: 4.5,-9.5 - parent: 22565 - - uid: 22693 + pos: -102.5,5.5 + parent: 2 + - uid: 2273 components: - type: Transform - pos: 5.5,-8.5 - parent: 22565 - - uid: 22694 + pos: -101.5,4.5 + parent: 2 + - uid: 2274 components: - type: Transform - pos: 5.5,-9.5 - parent: 22565 - - uid: 22695 + pos: -100.5,4.5 + parent: 2 + - uid: 2275 components: - type: Transform - pos: 3.5,-10.5 - parent: 22565 - - uid: 22696 + pos: -99.5,4.5 + parent: 2 + - uid: 2276 components: - type: Transform - pos: 3.5,-10.5 - parent: 22565 - - uid: 22697 + pos: -98.5,4.5 + parent: 2 + - uid: 2277 components: - type: Transform - pos: 4.5,-10.5 - parent: 22565 - - uid: 22698 + pos: -98.5,5.5 + parent: 2 + - uid: 2278 components: - type: Transform - pos: 6.5,-8.5 - parent: 22565 - - uid: 22699 + pos: -98.5,6.5 + parent: 2 + - uid: 2279 components: - type: Transform - pos: 5.5,-9.5 - parent: 22565 - - uid: 22700 + pos: -98.5,7.5 + parent: 2 + - uid: 2280 components: - type: Transform - pos: 5.5,-8.5 - parent: 22565 - - uid: 22701 + pos: -98.5,8.5 + parent: 2 + - uid: 2281 components: - type: Transform - pos: 4.5,-9.5 - parent: 22565 - - uid: 22702 + pos: -97.5,8.5 + parent: 2 + - uid: 2282 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 22703 + pos: -97.5,7.5 + parent: 2 + - uid: 2283 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 22704 + pos: -104.5,14.5 + parent: 2 + - uid: 2284 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 22705 + pos: -108.5,15.5 + parent: 2 + - uid: 2285 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 22706 + pos: -107.5,22.5 + parent: 2 + - uid: 2286 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 22707 + pos: -107.5,21.5 + parent: 2 + - uid: 2287 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 22708 + pos: -108.5,21.5 + parent: 2 + - uid: 2288 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 22709 + pos: -108.5,20.5 + parent: 2 + - uid: 2289 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 22710 + pos: -108.5,19.5 + parent: 2 + - uid: 2290 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 22711 + pos: -108.5,18.5 + parent: 2 + - uid: 2291 components: - type: Transform - pos: -0.5,-9.5 - parent: 22565 - - uid: 22712 + pos: -108.5,17.5 + parent: 2 + - uid: 2292 components: - type: Transform - pos: -0.5,-8.5 - parent: 22565 - - uid: 22713 + pos: -109.5,17.5 + parent: 2 + - uid: 2293 components: - type: Transform - pos: -0.5,-7.5 - parent: 22565 - - uid: 22714 + pos: -107.5,17.5 + parent: 2 + - uid: 2294 components: - type: Transform - pos: -0.5,-6.5 - parent: 22565 - - uid: 22715 + pos: -108.5,22.5 + parent: 2 + - uid: 2295 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 22716 + pos: -108.5,23.5 + parent: 2 + - uid: 2296 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 22717 + pos: -109.5,23.5 + parent: 2 + - uid: 2297 components: - type: Transform - pos: 0.5,-7.5 - parent: 22565 - - uid: 22718 + pos: -110.5,23.5 + parent: 2 + - uid: 2298 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 22719 + pos: -111.5,23.5 + parent: 2 + - uid: 2299 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 22720 + pos: -112.5,23.5 + parent: 2 + - uid: 2300 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 22721 + pos: -107.5,23.5 + parent: 2 + - uid: 2301 components: - type: Transform - pos: 1.5,-7.5 - parent: 22565 - - uid: 22722 + pos: -106.5,23.5 + parent: 2 + - uid: 2302 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 22723 + pos: -105.5,23.5 + parent: 2 + - uid: 2303 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 22724 + pos: -104.5,23.5 + parent: 2 + - uid: 2304 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 22725 + pos: -103.5,23.5 + parent: 2 + - uid: 2305 components: - type: Transform - pos: 2.5,-6.5 - parent: 22565 - - uid: 22726 + pos: -102.5,23.5 + parent: 2 + - uid: 2306 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 22727 + pos: -108.5,24.5 + parent: 2 + - uid: 2307 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 22728 + pos: -108.5,25.5 + parent: 2 + - uid: 2308 components: - type: Transform - pos: 3.5,-7.5 - parent: 22565 - - uid: 22729 + pos: -107.5,25.5 + parent: 2 + - uid: 2309 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 22730 + pos: -106.5,25.5 + parent: 2 + - uid: 2310 components: - type: Transform - pos: 5.5,-8.5 - parent: 22565 - - uid: 22731 + pos: -105.5,25.5 + parent: 2 + - uid: 2311 components: - type: Transform - pos: 5.5,-7.5 - parent: 22565 - - uid: 22732 + pos: -104.5,25.5 + parent: 2 + - uid: 2312 components: - type: Transform - pos: 5.5,-6.5 - parent: 22565 - - uid: 22733 + pos: -103.5,25.5 + parent: 2 + - uid: 2313 components: - type: Transform - pos: 5.5,-5.5 - parent: 22565 - - uid: 22734 + pos: -109.5,25.5 + parent: 2 + - uid: 2314 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 22735 + pos: -110.5,25.5 + parent: 2 + - uid: 2315 components: - type: Transform - pos: 4.5,-7.5 - parent: 22565 - - uid: 22736 + pos: -111.5,25.5 + parent: 2 + - uid: 2316 components: - type: Transform - pos: 4.5,-6.5 - parent: 22565 - - uid: 22737 + pos: -112.5,25.5 + parent: 2 + - uid: 2317 components: - type: Transform - pos: 4.5,-5.5 - parent: 22565 - - uid: 22738 + pos: -108.5,26.5 + parent: 2 + - uid: 2318 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 22739 + pos: -108.5,27.5 + parent: 2 + - uid: 2319 components: - type: Transform - pos: 3.5,-7.5 - parent: 22565 - - uid: 22740 + pos: -109.5,27.5 + parent: 2 + - uid: 2320 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 22741 + pos: -110.5,27.5 + parent: 2 + - uid: 2321 components: - type: Transform - pos: 3.5,-5.5 - parent: 22565 - - uid: 22742 + pos: -111.5,27.5 + parent: 2 + - uid: 2322 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 22743 + pos: -107.5,27.5 + parent: 2 + - uid: 2323 components: - type: Transform - pos: 0.5,-5.5 - parent: 22565 - - uid: 22744 + pos: -106.5,27.5 + parent: 2 + - uid: 2324 components: - type: Transform - pos: -0.5,-6.5 - parent: 22565 - - uid: 22745 + pos: -105.5,27.5 + parent: 2 + - uid: 2325 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 22746 + pos: -104.5,27.5 + parent: 2 + - uid: 2326 components: - type: Transform - pos: 1.5,-5.5 - parent: 22565 - - uid: 22747 + pos: -103.5,27.5 + parent: 2 + - uid: 2327 components: - type: Transform - pos: 1.5,-4.5 - parent: 22565 - - uid: 22748 + pos: -102.5,27.5 + parent: 2 + - uid: 2328 components: - type: Transform - pos: 2.5,-6.5 - parent: 22565 - - uid: 22749 + pos: -101.5,25.5 + parent: 2 + - uid: 2329 components: - type: Transform - pos: 2.5,-5.5 - parent: 22565 - - uid: 22750 + pos: -100.5,25.5 + parent: 2 + - uid: 2330 components: - type: Transform - pos: 2.5,-4.5 - parent: 22565 - - uid: 22751 + pos: -99.5,25.5 + parent: 2 + - uid: 2331 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 22752 + pos: -99.5,24.5 + parent: 2 + - uid: 2332 components: - type: Transform - pos: 3.5,-5.5 - parent: 22565 - - uid: 22753 + pos: -99.5,26.5 + parent: 2 + - uid: 2333 components: - type: Transform - pos: -19.5,-14.5 - parent: 22565 - - uid: 22754 + pos: -98.5,25.5 + parent: 2 + - uid: 2334 components: - type: Transform - pos: -27.5,-7.5 - parent: 22565 - - uid: 22755 + pos: -97.5,25.5 + parent: 2 + - uid: 2335 components: - type: Transform - pos: -27.5,-6.5 - parent: 22565 - - uid: 22756 + pos: -97.5,26.5 + parent: 2 + - uid: 2336 components: - type: Transform - pos: -28.5,-7.5 - parent: 22565 - - uid: 22757 + pos: -97.5,27.5 + parent: 2 + - uid: 2337 components: - type: Transform - pos: -28.5,-8.5 - parent: 22565 - - uid: 22758 + pos: -97.5,28.5 + parent: 2 + - uid: 2338 components: - type: Transform - pos: -28.5,-9.5 - parent: 22565 - - uid: 22759 + pos: -98.5,28.5 + parent: 2 + - uid: 2339 components: - type: Transform - pos: -27.5,-9.5 - parent: 22565 - - uid: 22760 + pos: -98.5,29.5 + parent: 2 + - uid: 2340 components: - type: Transform - pos: -26.5,-10.5 - parent: 22565 - - uid: 22761 + pos: -99.5,29.5 + parent: 2 + - uid: 2341 components: - type: Transform - pos: -27.5,-10.5 - parent: 22565 - - uid: 22762 + pos: -100.5,29.5 + parent: 2 + - uid: 2342 components: - type: Transform - pos: -26.5,-9.5 - parent: 22565 - - uid: 22763 + pos: -101.5,29.5 + parent: 2 + - uid: 2343 components: - type: Transform - pos: -25.5,-11.5 - parent: 22565 - - uid: 22764 + pos: -118.5,14.5 + parent: 2 + - uid: 2344 components: - type: Transform - pos: -25.5,-10.5 - parent: 22565 - - uid: 22765 + pos: -119.5,14.5 + parent: 2 + - uid: 2345 components: - type: Transform - pos: -24.5,-11.5 - parent: 22565 - - uid: 22766 + pos: -119.5,15.5 + parent: 2 + - uid: 2346 components: - type: Transform - pos: -24.5,-10.5 - parent: 22565 - - uid: 22767 + pos: -119.5,16.5 + parent: 2 + - uid: 2347 components: - type: Transform - pos: -24.5,-12.5 - parent: 22565 - - uid: 22768 + pos: -119.5,17.5 + parent: 2 + - uid: 2348 components: - type: Transform - pos: -23.5,-12.5 - parent: 22565 - - uid: 22769 + pos: -119.5,13.5 + parent: 2 + - uid: 2349 components: - type: Transform - pos: -22.5,-13.5 - parent: 22565 - - uid: 22770 + pos: -119.5,12.5 + parent: 2 + - uid: 2350 components: - type: Transform - pos: -22.5,-12.5 - parent: 22565 - - uid: 22771 + pos: -119.5,11.5 + parent: 2 + - uid: 2351 components: - type: Transform - pos: -22.5,-11.5 - parent: 22565 - - uid: 22772 + pos: -119.5,10.5 + parent: 2 + - uid: 2352 components: - type: Transform - pos: -22.5,-10.5 - parent: 22565 - - uid: 22773 + pos: -119.5,9.5 + parent: 2 + - uid: 2353 components: - type: Transform - pos: -22.5,-9.5 - parent: 22565 - - uid: 22774 + pos: -120.5,11.5 + parent: 2 + - uid: 2354 components: - type: Transform - pos: -23.5,-13.5 - parent: 22565 - - uid: 22775 + pos: -121.5,11.5 + parent: 2 + - uid: 2355 components: - type: Transform - pos: -23.5,-12.5 - parent: 22565 - - uid: 22776 + pos: -122.5,11.5 + parent: 2 + - uid: 2356 components: - type: Transform - pos: -23.5,-11.5 - parent: 22565 - - uid: 22777 + pos: -123.5,11.5 + parent: 2 + - uid: 2357 components: - type: Transform - pos: -23.5,-10.5 - parent: 22565 - - uid: 22778 + pos: -124.5,11.5 + parent: 2 + - uid: 2358 components: - type: Transform - pos: -23.5,-9.5 - parent: 22565 - - uid: 22779 + pos: -125.5,11.5 + parent: 2 + - uid: 2359 components: - type: Transform - pos: -23.5,-9.5 - parent: 22565 - - uid: 22780 + pos: -124.5,12.5 + parent: 2 + - uid: 2360 components: - type: Transform - pos: -23.5,-8.5 - parent: 22565 - - uid: 22781 + pos: -124.5,13.5 + parent: 2 + - uid: 2361 components: - type: Transform - pos: -24.5,-9.5 - parent: 22565 - - uid: 22782 + pos: -125.5,13.5 + parent: 2 + - uid: 2362 components: - type: Transform - pos: -24.5,-8.5 - parent: 22565 - - uid: 22783 + pos: -126.5,11.5 + parent: 2 + - uid: 2363 components: - type: Transform - pos: -25.5,-9.5 - parent: 22565 - - uid: 22784 + pos: -127.5,11.5 + parent: 2 + - uid: 2364 components: - type: Transform - pos: -25.5,-8.5 - parent: 22565 - - uid: 22785 + pos: -127.5,12.5 + parent: 2 + - uid: 2365 components: - type: Transform - pos: -23.5,-8.5 - parent: 22565 - - uid: 22786 + pos: -128.5,12.5 + parent: 2 + - uid: 2366 components: - type: Transform - pos: -24.5,-7.5 - parent: 22565 - - uid: 22787 + pos: -129.5,12.5 + parent: 2 + - uid: 2367 components: - type: Transform - pos: -24.5,-6.5 - parent: 22565 - - uid: 22788 + pos: -130.5,13.5 + parent: 2 + - uid: 2368 components: - type: Transform - pos: -23.5,-7.5 - parent: 22565 - - uid: 22789 + pos: -130.5,14.5 + parent: 2 + - uid: 2369 components: - type: Transform - pos: -23.5,-6.5 - parent: 22565 - - uid: 22790 + pos: -130.5,15.5 + parent: 2 + - uid: 2370 components: - type: Transform - pos: -25.5,-6.5 - parent: 22565 - - uid: 22791 + pos: -130.5,16.5 + parent: 2 + - uid: 2371 components: - type: Transform - pos: -24.5,-5.5 - parent: 22565 - - uid: 22792 + pos: -131.5,15.5 + parent: 2 + - uid: 2372 components: - type: Transform - pos: -22.5,-8.5 - parent: 22565 - - uid: 22793 + pos: -129.5,15.5 + parent: 2 + - uid: 2373 components: - type: Transform - pos: -21.5,-8.5 - parent: 22565 - - uid: 22794 + pos: -120.5,9.5 + parent: 2 + - uid: 2374 components: - type: Transform - pos: -20.5,-8.5 - parent: 22565 - - uid: 22795 + pos: -120.5,8.5 + parent: 2 + - uid: 2375 components: - type: Transform - pos: -20.5,-7.5 - parent: 22565 - - uid: 22796 + pos: -120.5,7.5 + parent: 2 + - uid: 2376 components: - type: Transform - pos: -20.5,-6.5 - parent: 22565 - - uid: 22797 + pos: -120.5,6.5 + parent: 2 + - uid: 2377 components: - type: Transform - pos: -20.5,-7.5 - parent: 22565 - - uid: 22798 + pos: -120.5,5.5 + parent: 2 + - uid: 2378 components: - type: Transform - pos: -20.5,-4.5 - parent: 22565 - - uid: 22799 + pos: -120.5,4.5 + parent: 2 + - uid: 2379 components: - type: Transform - pos: -21.5,-5.5 - parent: 22565 - - uid: 22800 + pos: -120.5,3.5 + parent: 2 + - uid: 2380 components: - type: Transform - pos: -21.5,-6.5 - parent: 22565 - - uid: 22801 + pos: -120.5,2.5 + parent: 2 + - uid: 2381 components: - type: Transform - pos: -21.5,-4.5 - parent: 22565 - - uid: 22802 + pos: -120.5,1.5 + parent: 2 + - uid: 2382 components: - type: Transform - pos: -21.5,-7.5 - parent: 22565 - - uid: 22803 + pos: -120.5,0.5 + parent: 2 + - uid: 2383 components: - type: Transform - pos: -22.5,-5.5 - parent: 22565 - - uid: 22804 + pos: -120.5,-0.5 + parent: 2 + - uid: 2384 components: - type: Transform - pos: -22.5,-4.5 - parent: 22565 - - uid: 22805 + pos: -120.5,-1.5 + parent: 2 + - uid: 2385 components: - type: Transform - pos: -22.5,-3.5 - parent: 22565 - - uid: 22806 + pos: -119.5,-1.5 + parent: 2 + - uid: 2386 components: - type: Transform - pos: -23.5,-3.5 - parent: 22565 - - uid: 22807 + pos: -120.5,-2.5 + parent: 2 + - uid: 2387 components: - type: Transform - pos: -22.5,-6.5 - parent: 22565 - - uid: 22808 + pos: -120.5,-3.5 + parent: 2 + - uid: 2388 components: - type: Transform - pos: -23.5,-5.5 - parent: 22565 - - uid: 22809 + pos: -121.5,-3.5 + parent: 2 + - uid: 2389 components: - type: Transform - pos: -25.5,-4.5 - parent: 22565 - - uid: 22810 + pos: -121.5,-4.5 + parent: 2 + - uid: 2390 components: - type: Transform - pos: -25.5,-4.5 - parent: 22565 - - uid: 22811 + pos: -121.5,-5.5 + parent: 2 + - uid: 2391 components: - type: Transform - pos: -25.5,-3.5 - parent: 22565 - - uid: 22812 + pos: -121.5,-6.5 + parent: 2 + - uid: 2392 components: - type: Transform - pos: -26.5,-2.5 - parent: 22565 - - uid: 22813 + pos: -121.5,-7.5 + parent: 2 + - uid: 2393 components: - type: Transform - pos: -27.5,-2.5 - parent: 22565 - - uid: 22814 + pos: -121.5,-8.5 + parent: 2 + - uid: 2394 components: - type: Transform - pos: -27.5,-3.5 - parent: 22565 - - uid: 22815 + pos: -121.5,-9.5 + parent: 2 + - uid: 2395 components: - type: Transform - pos: -27.5,-3.5 - parent: 22565 - - uid: 22816 + pos: -121.5,-10.5 + parent: 2 + - uid: 2396 components: - type: Transform - pos: -27.5,-5.5 - parent: 22565 - - uid: 22817 + pos: -120.5,-10.5 + parent: 2 + - uid: 2397 components: - type: Transform - pos: -26.5,-5.5 - parent: 22565 - - uid: 22818 + pos: -119.5,-10.5 + parent: 2 + - uid: 2398 components: - type: Transform - pos: -27.5,-5.5 - parent: 22565 - - uid: 22819 + pos: -118.5,-10.5 + parent: 2 + - uid: 2399 components: - type: Transform - pos: -28.5,-4.5 - parent: 22565 - - uid: 22820 + pos: -117.5,-10.5 + parent: 2 + - uid: 2400 components: - type: Transform - pos: -27.5,-4.5 - parent: 22565 - - uid: 22821 + pos: -116.5,-10.5 + parent: 2 + - uid: 2401 components: - type: Transform - pos: -28.5,-5.5 - parent: 22565 - - uid: 22822 + pos: -115.5,-10.5 + parent: 2 + - uid: 2402 components: - type: Transform - pos: -28.5,-6.5 - parent: 22565 - - uid: 22823 + pos: -122.5,-7.5 + parent: 2 + - uid: 2403 components: - type: Transform - pos: -28.5,-7.5 - parent: 22565 - - uid: 22824 + pos: -123.5,-7.5 + parent: 2 + - uid: 2404 components: - type: Transform - pos: -27.5,-5.5 - parent: 22565 - - uid: 22825 + pos: -124.5,-7.5 + parent: 2 + - uid: 2405 components: - type: Transform - pos: -27.5,-6.5 - parent: 22565 - - uid: 22826 + pos: -125.5,-7.5 + parent: 2 + - uid: 2406 components: - type: Transform - pos: -27.5,-7.5 - parent: 22565 - - uid: 22827 + pos: -126.5,-7.5 + parent: 2 + - uid: 2407 components: - type: Transform - pos: -24.5,-6.5 - parent: 22565 - - uid: 22828 + pos: -126.5,-6.5 + parent: 2 + - uid: 2408 components: - type: Transform - pos: -24.5,-7.5 - parent: 22565 - - uid: 22829 + pos: -122.5,-3.5 + parent: 2 + - uid: 2409 components: - type: Transform - pos: -24.5,-8.5 - parent: 22565 - - uid: 22830 + pos: -123.5,-3.5 + parent: 2 + - uid: 2410 components: - type: Transform - pos: -24.5,-9.5 - parent: 22565 - - uid: 22831 + pos: -124.5,-3.5 + parent: 2 + - uid: 2411 components: - type: Transform - pos: -24.5,-10.5 - parent: 22565 - - uid: 22832 + pos: -125.5,-3.5 + parent: 2 + - uid: 2412 components: - type: Transform - pos: -24.5,-11.5 - parent: 22565 - - uid: 22833 + pos: -126.5,-3.5 + parent: 2 + - uid: 2413 components: - type: Transform - pos: -24.5,-12.5 - parent: 22565 - - uid: 22834 + pos: -127.5,-3.5 + parent: 2 + - uid: 2414 components: - type: Transform - pos: -23.5,-6.5 - parent: 22565 - - uid: 22835 + pos: -128.5,-3.5 + parent: 2 + - uid: 2415 components: - type: Transform - pos: -23.5,-7.5 - parent: 22565 - - uid: 22836 + pos: -129.5,-3.5 + parent: 2 + - uid: 2416 components: - type: Transform - pos: -23.5,-8.5 - parent: 22565 - - uid: 22837 + pos: -129.5,-0.5 + parent: 2 + - uid: 2417 components: - type: Transform - pos: -23.5,-9.5 - parent: 22565 - - uid: 22838 + pos: -129.5,0.5 + parent: 2 + - uid: 2418 components: - type: Transform - pos: -23.5,-10.5 - parent: 22565 - - uid: 22839 + pos: -129.5,1.5 + parent: 2 + - uid: 2419 components: - type: Transform - pos: -23.5,-11.5 - parent: 22565 - - uid: 22840 + pos: -129.5,2.5 + parent: 2 + - uid: 2420 components: - type: Transform - pos: -23.5,-12.5 - parent: 22565 - - uid: 22841 + pos: -129.5,3.5 + parent: 2 + - uid: 2421 components: - type: Transform - pos: -23.5,-6.5 - parent: 22565 - - uid: 22842 + pos: -129.5,4.5 + parent: 2 + - uid: 2422 components: - type: Transform - pos: -22.5,-6.5 - parent: 22565 - - uid: 22843 + pos: -129.5,5.5 + parent: 2 + - uid: 2423 components: - type: Transform - pos: -21.5,-6.5 - parent: 22565 - - uid: 22844 + pos: -129.5,6.5 + parent: 2 + - uid: 2424 components: - type: Transform - pos: -23.5,-10.5 - parent: 22565 - - uid: 22845 + pos: -129.5,7.5 + parent: 2 + - uid: 2425 components: - type: Transform - pos: -22.5,-10.5 - parent: 22565 - - uid: 22846 + pos: -129.5,8.5 + parent: 2 + - uid: 2426 components: - type: Transform - pos: -22.5,-9.5 - parent: 22565 - - uid: 22847 + pos: -129.5,9.5 + parent: 2 + - uid: 2427 components: - type: Transform - pos: -29.5,-6.5 - parent: 22565 - - uid: 22848 + pos: -128.5,9.5 + parent: 2 + - uid: 2428 components: - type: Transform - pos: -30.5,-5.5 - parent: 22565 - - uid: 22849 + pos: -127.5,9.5 + parent: 2 + - uid: 2429 components: - type: Transform - pos: -30.5,-4.5 - parent: 22565 - - uid: 22850 + pos: -126.5,9.5 + parent: 2 + - uid: 2430 components: - type: Transform - pos: -29.5,-4.5 - parent: 22565 - - uid: 22851 + pos: -125.5,9.5 + parent: 2 + - uid: 2431 components: - type: Transform - pos: -31.5,-2.5 - parent: 22565 - - uid: 22852 + pos: -124.5,9.5 + parent: 2 + - uid: 2432 components: - type: Transform - pos: -30.5,-2.5 - parent: 22565 - - uid: 22853 + pos: -123.5,9.5 + parent: 2 + - uid: 2433 components: - type: Transform - pos: -29.5,-2.5 - parent: 22565 - - uid: 22854 + pos: -122.5,9.5 + parent: 2 + - uid: 2434 components: - type: Transform - pos: -28.5,-2.5 - parent: 22565 - - uid: 22855 + pos: -121.5,9.5 + parent: 2 + - uid: 2435 components: - type: Transform - pos: -30.5,-3.5 - parent: 22565 - - uid: 22856 + pos: -126.5,-9.5 + parent: 2 + - uid: 2436 components: - type: Transform - pos: -29.5,-3.5 - parent: 22565 - - uid: 22857 + pos: -126.5,-10.5 + parent: 2 + - uid: 2437 components: - type: Transform - pos: -26.5,-3.5 - parent: 22565 - - uid: 22858 + pos: -125.5,-10.5 + parent: 2 + - uid: 2438 components: - type: Transform - pos: -24.5,-4.5 - parent: 22565 - - uid: 22859 + pos: -124.5,-10.5 + parent: 2 + - uid: 2439 components: - type: Transform - pos: -29.5,-1.5 - parent: 22565 - - uid: 22860 + pos: -123.5,-10.5 + parent: 2 + - uid: 2440 components: - type: Transform - pos: -30.5,-1.5 - parent: 22565 - - uid: 22861 + pos: -122.5,17.5 + parent: 2 + - uid: 2441 components: - type: Transform - pos: -33.5,-0.5 - parent: 22565 - - uid: 22862 + pos: -123.5,17.5 + parent: 2 + - uid: 2442 components: - type: Transform - pos: -34.5,-0.5 - parent: 22565 - - uid: 22863 + pos: -124.5,17.5 + parent: 2 + - uid: 2443 components: - type: Transform - pos: -35.5,-0.5 - parent: 22565 - - uid: 22864 + pos: -125.5,17.5 + parent: 2 + - uid: 2444 components: - type: Transform - pos: -31.5,-0.5 - parent: 22565 - - uid: 22865 + pos: -125.5,16.5 + parent: 2 + - uid: 2445 components: - type: Transform - pos: 6.5,-5.5 - parent: 22565 - - uid: 22866 + pos: -125.5,15.5 + parent: 2 + - uid: 2446 components: - type: Transform - pos: -36.5,0.5 - parent: 22565 - - uid: 22867 + pos: -121.5,4.5 + parent: 2 + - uid: 2447 components: - type: Transform - pos: -36.5,-0.5 - parent: 22565 - - uid: 22868 + pos: -122.5,4.5 + parent: 2 + - uid: 2448 components: - type: Transform - pos: -37.5,3.5 - parent: 22565 - - uid: 22869 + pos: -123.5,4.5 + parent: 2 + - uid: 2449 components: - type: Transform - pos: -37.5,4.5 - parent: 22565 - - uid: 22870 + pos: -123.5,3.5 + parent: 2 + - uid: 2450 components: - type: Transform - pos: -37.5,5.5 - parent: 22565 - - uid: 22871 + pos: 28.5,30.5 + parent: 2 + - uid: 2451 components: - type: Transform - pos: -37.5,7.5 - parent: 22565 - - uid: 22872 + pos: -31.5,9.5 + parent: 2 + - uid: 2452 components: - type: Transform - pos: -37.5,8.5 - parent: 22565 - - uid: 22873 + pos: 29.5,30.5 + parent: 2 + - uid: 2453 components: - - type: Transform - pos: -9.5,-12.5 - parent: 22565 - - uid: 22874 + - type: Transform + pos: 23.5,23.5 + parent: 2 + - uid: 2454 components: - type: Transform - pos: -37.5,12.5 - parent: 22565 - - uid: 22875 + pos: 23.5,25.5 + parent: 2 + - uid: 2455 components: - type: Transform - pos: -9.5,-11.5 - parent: 22565 - - uid: 22876 + pos: -109.5,4.5 + parent: 2 + - uid: 2456 components: - type: Transform - pos: -10.5,-10.5 - parent: 22565 - - uid: 22877 + pos: -110.5,4.5 + parent: 2 + - uid: 2457 components: - type: Transform - pos: -8.5,-10.5 - parent: 22565 - - uid: 22878 + pos: -111.5,4.5 + parent: 2 + - uid: 2458 components: - type: Transform - pos: -8.5,-11.5 - parent: 22565 - - uid: 22879 + pos: -112.5,4.5 + parent: 2 + - uid: 2459 components: - type: Transform - pos: -9.5,-10.5 - parent: 22565 - - uid: 22880 + pos: -113.5,4.5 + parent: 2 + - uid: 2460 components: - type: Transform - pos: -9.5,-8.5 - parent: 22565 - - uid: 22881 + pos: -114.5,4.5 + parent: 2 + - uid: 2461 components: - type: Transform - pos: -8.5,-9.5 - parent: 22565 - - uid: 22882 + pos: -115.5,4.5 + parent: 2 + - uid: 2462 components: - type: Transform - pos: -9.5,-9.5 - parent: 22565 - - uid: 22883 + pos: -116.5,4.5 + parent: 2 + - uid: 2463 components: - type: Transform - pos: -8.5,-8.5 - parent: 22565 - - uid: 22884 + pos: -116.5,3.5 + parent: 2 + - uid: 2464 components: - type: Transform - pos: -10.5,-7.5 - parent: 22565 - - uid: 22885 + pos: -116.5,2.5 + parent: 2 + - uid: 2465 components: - type: Transform - pos: -5.5,-8.5 - parent: 22565 - - uid: 22886 + pos: -116.5,1.5 + parent: 2 + - uid: 2466 components: - type: Transform - pos: -5.5,-6.5 - parent: 22565 - - uid: 22887 + pos: -116.5,5.5 + parent: 2 + - uid: 2467 components: - type: Transform - pos: -8.5,-6.5 - parent: 22565 - - uid: 22888 + pos: -116.5,6.5 + parent: 2 + - uid: 2468 components: - type: Transform - pos: -3.5,-8.5 - parent: 22565 - - uid: 22889 + pos: -86.5,15.5 + parent: 2 + - uid: 2469 components: - type: Transform - pos: -2.5,-8.5 - parent: 22565 - - uid: 22890 + pos: -85.5,15.5 + parent: 2 + - uid: 2470 components: - type: Transform - pos: -2.5,-7.5 - parent: 22565 - - uid: 22891 + pos: -85.5,16.5 + parent: 2 + - uid: 2471 components: - type: Transform - pos: -2.5,-9.5 - parent: 22565 - - uid: 22892 + pos: -85.5,17.5 + parent: 2 + - uid: 2472 components: - type: Transform - pos: -1.5,-10.5 - parent: 22565 - - uid: 22893 + pos: -85.5,14.5 + parent: 2 + - uid: 2473 components: - type: Transform - pos: -3.5,-10.5 - parent: 22565 - - uid: 22894 + pos: -85.5,13.5 + parent: 2 + - uid: 2474 components: - type: Transform - pos: -2.5,-10.5 - parent: 22565 - - uid: 22895 + pos: -85.5,12.5 + parent: 2 + - uid: 2475 components: - type: Transform - pos: -3.5,-14.5 - parent: 22565 - - uid: 22896 + pos: -86.5,13.5 + parent: 2 + - uid: 2476 components: - type: Transform - pos: -2.5,-14.5 - parent: 22565 - - uid: 22897 + pos: -87.5,13.5 + parent: 2 + - uid: 2477 components: - type: Transform - pos: -0.5,-14.5 - parent: 22565 - - uid: 22898 + pos: -88.5,13.5 + parent: 2 + - uid: 2478 components: - type: Transform - pos: -11.5,-13.5 - parent: 22565 - - uid: 22899 + pos: -86.5,16.5 + parent: 2 + - uid: 2479 components: - type: Transform - pos: -12.5,-15.5 - parent: 22565 - - uid: 22900 + pos: -87.5,16.5 + parent: 2 + - uid: 2480 components: - type: Transform - pos: -13.5,-16.5 - parent: 22565 - - uid: 22901 + pos: -87.5,17.5 + parent: 2 + - uid: 2481 components: - type: Transform - pos: -13.5,-15.5 - parent: 22565 - - uid: 22902 + pos: -87.5,18.5 + parent: 2 + - uid: 2482 components: - type: Transform - pos: -13.5,-14.5 - parent: 22565 - - uid: 22903 + pos: -87.5,19.5 + parent: 2 + - uid: 2483 components: - type: Transform - pos: -12.5,-14.5 - parent: 22565 - - uid: 22904 + pos: -87.5,20.5 + parent: 2 + - uid: 2484 components: - type: Transform - pos: -11.5,-14.5 - parent: 22565 - - uid: 22905 + pos: -87.5,21.5 + parent: 2 + - uid: 2485 components: - type: Transform - pos: -16.5,-15.5 - parent: 22565 - - uid: 22906 + pos: -87.5,22.5 + parent: 2 + - uid: 2486 components: - type: Transform - pos: -16.5,-14.5 - parent: 22565 - - uid: 22907 + pos: -87.5,23.5 + parent: 2 + - uid: 2487 components: - type: Transform - pos: -20.5,-17.5 - parent: 22565 - - uid: 22908 + pos: -87.5,24.5 + parent: 2 + - uid: 2488 components: - type: Transform - pos: -20.5,-16.5 - parent: 22565 - - uid: 22909 + pos: -87.5,26.5 + parent: 2 + - uid: 2489 components: - type: Transform - pos: -21.5,-16.5 - parent: 22565 - - uid: 22910 + pos: -87.5,27.5 + parent: 2 + - uid: 2490 components: - type: Transform - pos: -22.5,-15.5 - parent: 22565 - - uid: 22911 + pos: -87.5,28.5 + parent: 2 + - uid: 2491 components: - type: Transform - pos: -21.5,-15.5 - parent: 22565 - - uid: 22912 + pos: -88.5,28.5 + parent: 2 + - uid: 2492 components: - type: Transform - pos: -20.5,-15.5 - parent: 22565 - - uid: 22913 + pos: -89.5,28.5 + parent: 2 + - uid: 2493 components: - type: Transform - pos: -20.5,-15.5 - parent: 22565 - - uid: 22914 + pos: -90.5,28.5 + parent: 2 + - uid: 2494 components: - type: Transform - pos: -20.5,-15.5 - parent: 22565 - - uid: 22915 + pos: -92.5,28.5 + parent: 2 + - uid: 2495 components: - type: Transform - pos: -19.5,-15.5 - parent: 22565 - - uid: 22916 + pos: -92.5,27.5 + parent: 2 + - uid: 2496 components: - type: Transform - pos: -20.5,-16.5 - parent: 22565 - - uid: 22917 + pos: -92.5,26.5 + parent: 2 + - uid: 2497 components: - type: Transform - pos: -18.5,-18.5 - parent: 22565 - - uid: 22918 + pos: -92.5,25.5 + parent: 2 + - uid: 2498 components: - type: Transform - pos: -18.5,-19.5 - parent: 22565 - - uid: 22919 + pos: -92.5,24.5 + parent: 2 + - uid: 2499 components: - type: Transform - pos: -17.5,-19.5 - parent: 22565 - - uid: 22920 + pos: -92.5,23.5 + parent: 2 + - uid: 2500 components: - type: Transform - pos: -17.5,-18.5 - parent: 22565 - - uid: 22921 + pos: -92.5,22.5 + parent: 2 + - uid: 2501 components: - type: Transform - pos: -9.5,-19.5 - parent: 22565 - - uid: 22922 + pos: -93.5,22.5 + parent: 2 + - uid: 2502 components: - type: Transform - pos: -9.5,-18.5 - parent: 22565 - - uid: 22923 + pos: -94.5,22.5 + parent: 2 + - uid: 2503 components: - type: Transform - pos: -1.5,-2.5 - parent: 22565 - - uid: 22924 + pos: -95.5,22.5 + parent: 2 + - uid: 2504 components: - type: Transform - pos: 1.5,-3.5 - parent: 22565 - - uid: 22925 + pos: -96.5,22.5 + parent: 2 + - uid: 2505 components: - type: Transform - pos: 3.5,-2.5 - parent: 22565 - - uid: 22926 + pos: -84.5,13.5 + parent: 2 + - uid: 2506 components: - type: Transform - pos: -0.5,-4.5 - parent: 22565 - - uid: 22927 + pos: -93.5,21.5 + parent: 2 + - uid: 2507 components: - type: Transform - pos: -2.5,-4.5 - parent: 22565 - - uid: 22928 + pos: -93.5,20.5 + parent: 2 + - uid: 2508 components: - type: Transform - pos: -1.5,-3.5 - parent: 22565 - - uid: 22929 + pos: -93.5,19.5 + parent: 2 + - uid: 2509 components: - type: Transform - pos: -1.5,-6.5 - parent: 22565 - - uid: 22930 + pos: -100.5,19.5 + parent: 2 + - uid: 2510 components: - type: Transform - pos: -0.5,-5.5 - parent: 22565 - - uid: 22931 + pos: -98.5,21.5 + parent: 2 + - uid: 2511 components: - type: Transform - pos: -1.5,-7.5 - parent: 22565 - - uid: 22932 + pos: -98.5,20.5 + parent: 2 + - uid: 2512 components: - type: Transform - pos: -1.5,-9.5 - parent: 22565 - - uid: 22933 + pos: -98.5,19.5 + parent: 2 + - uid: 2513 components: - type: Transform - pos: -1.5,-4.5 - parent: 22565 - - uid: 22934 + pos: -98.5,18.5 + parent: 2 + - uid: 2514 components: - type: Transform - pos: -1.5,-5.5 - parent: 22565 - - uid: 22935 + pos: -99.5,22.5 + parent: 2 + - uid: 2515 components: - type: Transform - pos: -4.5,-5.5 - parent: 22565 - - uid: 22936 + pos: -99.5,23.5 + parent: 2 + - uid: 2516 components: - type: Transform - pos: -4.5,-3.5 - parent: 22565 - - uid: 22937 + pos: -99.5,19.5 + parent: 2 + - uid: 2517 components: - type: Transform - pos: -5.5,-3.5 - parent: 22565 - - uid: 22938 + pos: -100.5,18.5 + parent: 2 + - uid: 2518 components: - type: Transform - pos: -6.5,-3.5 - parent: 22565 - - uid: 22939 + pos: -99.5,21.5 + parent: 2 + - uid: 2519 components: - type: Transform - pos: -6.5,-4.5 - parent: 22565 - - uid: 22940 + pos: -99.5,27.5 + parent: 2 + - uid: 2520 components: - type: Transform - pos: -3.5,-6.5 - parent: 22565 - - uid: 22941 + pos: -101.5,18.5 + parent: 2 + - uid: 2521 components: - type: Transform - pos: -3.5,-5.5 - parent: 22565 - - uid: 22942 + pos: -102.5,18.5 + parent: 2 + - uid: 2522 components: - type: Transform - pos: -2.5,-6.5 - parent: 22565 - - uid: 22943 + pos: -103.5,18.5 + parent: 2 + - uid: 2523 components: - type: Transform - pos: 6.5,-4.5 - parent: 22565 - - uid: 22944 + pos: -104.5,18.5 + parent: 2 + - uid: 2524 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22945 + pos: -105.5,18.5 + parent: 2 + - uid: 2525 components: - type: Transform - pos: 6.5,-2.5 - parent: 22565 - - uid: 22946 + pos: -100.5,17.5 + parent: 2 + - uid: 2526 components: - type: Transform - pos: 5.5,-3.5 - parent: 22565 - - uid: 22947 + pos: -100.5,16.5 + parent: 2 + - uid: 2527 components: - type: Transform - pos: 5.5,-2.5 - parent: 22565 - - uid: 22948 + pos: -100.5,15.5 + parent: 2 + - uid: 2528 components: - type: Transform - pos: 4.5,-2.5 - parent: 22565 - - uid: 22949 + pos: -100.5,14.5 + parent: 2 + - uid: 2529 components: - type: Transform - pos: 4.5,-3.5 - parent: 22565 - - uid: 22950 + pos: -100.5,13.5 + parent: 2 + - uid: 2530 components: - type: Transform - pos: 4.5,-4.5 - parent: 22565 - - uid: 22951 + pos: -100.5,12.5 + parent: 2 + - uid: 2531 components: - type: Transform - pos: 3.5,-3.5 - parent: 22565 - - uid: 22952 + pos: -99.5,13.5 + parent: 2 + - uid: 2532 components: - type: Transform - pos: 2.5,-3.5 - parent: 22565 - - uid: 22953 + pos: -98.5,13.5 + parent: 2 + - uid: 2533 components: - type: Transform - pos: 2.5,-2.5 - parent: 22565 - - uid: 22954 + pos: -97.5,13.5 + parent: 2 + - uid: 2534 components: - type: Transform - pos: 1.5,-2.5 - parent: 22565 - - uid: 22955 + pos: -83.5,13.5 + parent: 2 + - uid: 2535 components: - type: Transform - pos: -0.5,-3.5 - parent: 22565 - - uid: 22956 + pos: -82.5,13.5 + parent: 2 + - uid: 2536 components: - type: Transform - pos: 0.5,-3.5 - parent: 22565 - - uid: 22957 + pos: -81.5,13.5 + parent: 2 + - uid: 2537 components: - type: Transform - pos: -0.5,-2.5 - parent: 22565 - - uid: 22958 + pos: -81.5,12.5 + parent: 2 + - uid: 2538 components: - type: Transform - pos: 0.5,-2.5 - parent: 22565 - - uid: 22959 + pos: -81.5,11.5 + parent: 2 + - uid: 2539 components: - type: Transform - pos: 8.5,-0.5 - parent: 22565 - - uid: 22960 + pos: -81.5,10.5 + parent: 2 + - uid: 2540 components: - type: Transform - pos: 9.5,-0.5 - parent: 22565 - - uid: 22961 + pos: -81.5,9.5 + parent: 2 + - uid: 2541 components: - type: Transform - pos: 10.5,-0.5 - parent: 22565 - - uid: 22962 + pos: -81.5,14.5 + parent: 2 + - uid: 2542 components: - type: Transform - pos: 11.5,-0.5 - parent: 22565 - - uid: 22963 + pos: -81.5,15.5 + parent: 2 + - uid: 2543 components: - type: Transform - pos: 12.5,0.5 - parent: 22565 - - uid: 22964 + pos: -81.5,16.5 + parent: 2 + - uid: 2544 components: - type: Transform - pos: 13.5,3.5 - parent: 22565 - - uid: 22965 + pos: -81.5,17.5 + parent: 2 + - uid: 2545 components: - type: Transform - pos: 13.5,4.5 - parent: 22565 - - uid: 22966 + pos: -81.5,18.5 + parent: 2 + - uid: 2546 components: - type: Transform - pos: 13.5,5.5 - parent: 22565 - - uid: 22967 + pos: -86.5,36.5 + parent: 2 + - uid: 2547 components: - type: Transform - pos: 13.5,9.5 - parent: 22565 - - uid: 22968 + pos: -86.5,35.5 + parent: 2 + - uid: 2548 components: - type: Transform - pos: 13.5,13.5 - parent: 22565 - - uid: 22969 + pos: -86.5,34.5 + parent: 2 + - uid: 2549 components: - type: Transform - pos: 13.5,12.5 - parent: 22565 - - uid: 22970 + pos: -86.5,33.5 + parent: 2 + - uid: 2550 components: - type: Transform - pos: 13.5,1.5 - parent: 22565 - - uid: 22971 + pos: -85.5,33.5 + parent: 2 + - uid: 2551 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22972 + pos: -84.5,33.5 + parent: 2 + - uid: 2552 components: - type: Transform - pos: -5.5,-10.5 - parent: 22565 - - uid: 22973 + pos: -84.5,32.5 + parent: 2 + - uid: 2553 components: - type: Transform - pos: 7.5,-0.5 - parent: 22565 - - uid: 22974 + pos: -84.5,31.5 + parent: 2 + - uid: 2554 components: - type: Transform - pos: 6.5,-2.5 - parent: 22565 - - uid: 22975 + pos: -84.5,30.5 + parent: 2 + - uid: 2555 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22976 + pos: -84.5,29.5 + parent: 2 + - uid: 2556 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22977 + pos: -84.5,28.5 + parent: 2 + - uid: 2557 components: - type: Transform - pos: 6.5,-3.5 - parent: 22565 - - uid: 22978 + pos: -84.5,27.5 + parent: 2 + - uid: 2558 components: - type: Transform - pos: 6.5,-2.5 - parent: 22565 - - uid: 22979 + pos: -84.5,26.5 + parent: 2 + - uid: 2559 components: - type: Transform - pos: 6.5,-3.5 - parent: 22565 - - uid: 22980 + pos: -84.5,25.5 + parent: 2 + - uid: 2560 components: - type: Transform - pos: 7.5,-0.5 - parent: 22565 - - uid: 22981 + pos: -84.5,34.5 + parent: 2 + - uid: 2561 components: - type: Transform - pos: 8.5,-0.5 - parent: 22565 - - uid: 22982 + pos: -84.5,35.5 + parent: 2 + - uid: 2562 components: - type: Transform - pos: 7.5,-0.5 - parent: 22565 - - uid: 22983 + pos: -84.5,36.5 + parent: 2 + - uid: 2563 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22984 + pos: -84.5,37.5 + parent: 2 + - uid: 2564 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22985 + pos: -84.5,38.5 + parent: 2 + - uid: 2565 components: - type: Transform - pos: 7.5,-1.5 - parent: 22565 - - uid: 22986 + pos: -84.5,39.5 + parent: 2 + - uid: 2566 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 22987 + pos: -84.5,40.5 + parent: 2 + - uid: 2567 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 22988 + pos: -84.5,41.5 + parent: 2 + - uid: 2568 components: - type: Transform - pos: -10.5,-17.5 - parent: 22565 - - uid: 22989 + pos: -84.5,42.5 + parent: 2 + - uid: 2569 components: - type: Transform - pos: -10.5,-17.5 - parent: 22565 - - uid: 22990 + pos: -84.5,43.5 + parent: 2 + - uid: 2570 components: - type: Transform - pos: -9.5,-17.5 - parent: 22565 - - uid: 22991 + pos: -84.5,44.5 + parent: 2 + - uid: 2571 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 22992 + pos: -84.5,45.5 + parent: 2 + - uid: 2572 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 22993 + pos: -84.5,24.5 + parent: 2 + - uid: 2573 components: - type: Transform - pos: -19.5,-8.5 - parent: 22565 - - uid: 22994 + pos: -84.5,23.5 + parent: 2 + - uid: 2574 components: - type: Transform - pos: -18.5,-6.5 - parent: 22565 - - uid: 22995 + pos: -84.5,22.5 + parent: 2 + - uid: 2575 components: - type: Transform - pos: -18.5,-4.5 - parent: 22565 - - uid: 22996 + pos: -84.5,21.5 + parent: 2 + - uid: 2576 components: - type: Transform - pos: -20.5,-3.5 - parent: 22565 - - uid: 22997 + pos: -84.5,20.5 + parent: 2 + - uid: 2577 components: - type: Transform - pos: -16.5,-5.5 - parent: 22565 - - uid: 22998 + pos: -84.5,19.5 + parent: 2 + - uid: 2578 components: - type: Transform - pos: -21.5,-3.5 - parent: 22565 - - uid: 22999 + pos: -83.5,20.5 + parent: 2 + - uid: 2579 components: - type: Transform - pos: -10.5,-17.5 - parent: 22565 - - uid: 23000 + pos: -82.5,20.5 + parent: 2 + - uid: 2580 components: - type: Transform - pos: -9.5,-17.5 - parent: 22565 - - uid: 23001 + pos: -81.5,20.5 + parent: 2 + - uid: 2581 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23002 + pos: -18.5,10.5 + parent: 2 + - uid: 2582 components: - type: Transform - pos: -17.5,-3.5 - parent: 22565 - - uid: 23003 + pos: -18.5,9.5 + parent: 2 + - uid: 2583 components: - type: Transform - pos: -22.5,-2.5 - parent: 22565 - - uid: 23004 + pos: -18.5,8.5 + parent: 2 + - uid: 2584 components: - type: Transform - pos: -37.5,10.5 - parent: 22565 - - uid: 23005 + pos: -18.5,7.5 + parent: 2 + - uid: 2585 components: - type: Transform - pos: -9.5,-17.5 - parent: 22565 - - uid: 23006 + pos: -18.5,6.5 + parent: 2 + - uid: 2586 components: - type: Transform - pos: -23.5,-2.5 - parent: 22565 - - uid: 23007 + pos: -17.5,7.5 + parent: 2 + - uid: 2587 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23008 + pos: -16.5,7.5 + parent: 2 + - uid: 2588 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23009 + pos: -19.5,7.5 + parent: 2 + - uid: 2589 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 23010 + pos: -20.5,7.5 + parent: 2 + - uid: 2590 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23011 + pos: -18.5,5.5 + parent: 2 + - uid: 2591 components: - type: Transform - pos: -9.5,-16.5 - parent: 22565 - - uid: 23012 + pos: -16.5,8.5 + parent: 2 + - uid: 2592 components: - type: Transform - pos: -9.5,-15.5 - parent: 22565 - - uid: 23013 + pos: -16.5,9.5 + parent: 2 + - uid: 2593 components: - type: Transform - pos: -19.5,-18.5 - parent: 22565 - - uid: 23014 + pos: -10.5,5.5 + parent: 2 + - uid: 2594 components: - type: Transform - pos: -19.5,-17.5 - parent: 22565 - - uid: 23015 + pos: -10.5,4.5 + parent: 2 + - uid: 2595 components: - type: Transform - pos: -18.5,-17.5 - parent: 22565 - - uid: 23016 + pos: -10.5,3.5 + parent: 2 + - uid: 2596 components: - type: Transform - pos: -19.5,-16.5 - parent: 22565 - - uid: 23017 + pos: -10.5,2.5 + parent: 2 + - uid: 2597 components: - type: Transform - pos: -19.5,-16.5 - parent: 22565 - - uid: 23018 + pos: -11.5,2.5 + parent: 2 + - uid: 2598 components: - type: Transform - pos: -19.5,-17.5 - parent: 22565 - - uid: 23019 + pos: -12.5,2.5 + parent: 2 + - uid: 2599 components: - type: Transform - pos: -18.5,-18.5 - parent: 22565 - - uid: 23020 + pos: -13.5,2.5 + parent: 2 + - uid: 2600 components: - type: Transform - pos: -19.5,-18.5 - parent: 22565 - - uid: 23021 + pos: -14.5,2.5 + parent: 2 + - uid: 2601 components: - type: Transform - pos: -4.5,-9.5 - parent: 22565 - - uid: 23022 + pos: -15.5,2.5 + parent: 2 + - uid: 2602 components: - type: Transform - pos: -4.5,-8.5 - parent: 22565 - - uid: 23023 + pos: -16.5,2.5 + parent: 2 + - uid: 2603 components: - type: Transform - pos: -4.5,-7.5 - parent: 22565 - - uid: 23024 + pos: -17.5,2.5 + parent: 2 + - uid: 2604 components: - type: Transform - pos: -4.5,-6.5 - parent: 22565 - - uid: 23025 + pos: -18.5,2.5 + parent: 2 + - uid: 2605 components: - type: Transform - pos: -3.5,-7.5 - parent: 22565 - - uid: 23026 + pos: -19.5,2.5 + parent: 2 + - uid: 2606 components: - type: Transform - pos: -6.5,-5.5 - parent: 22565 - - uid: 23027 + pos: -20.5,2.5 + parent: 2 + - uid: 2607 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23028 + pos: -9.5,2.5 + parent: 2 + - uid: 2608 components: - type: Transform - pos: -5.5,-5.5 - parent: 22565 - - uid: 23029 + pos: -8.5,2.5 + parent: 2 + - uid: 2609 components: - type: Transform - pos: -5.5,-4.5 - parent: 22565 - - uid: 23030 + pos: -7.5,2.5 + parent: 2 + - uid: 2610 components: - type: Transform - pos: -6.5,-7.5 - parent: 22565 - - uid: 23031 + pos: -6.5,2.5 + parent: 2 + - uid: 2611 components: - type: Transform - pos: -7.5,-6.5 - parent: 22565 - - uid: 23032 + pos: -5.5,2.5 + parent: 2 + - uid: 2612 components: - type: Transform - pos: -7.5,-5.5 - parent: 22565 - - uid: 23033 + pos: -10.5,6.5 + parent: 2 + - uid: 2613 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23034 + pos: -10.5,7.5 + parent: 2 + - uid: 2614 components: - type: Transform - pos: -5.5,-8.5 - parent: 22565 - - uid: 23035 + pos: -10.5,8.5 + parent: 2 + - uid: 2615 components: - type: Transform - pos: -4.5,-9.5 - parent: 22565 - - uid: 23036 + pos: -10.5,9.5 + parent: 2 + - uid: 2616 components: - type: Transform - pos: -5.5,-9.5 - parent: 22565 - - uid: 23037 + pos: -11.5,7.5 + parent: 2 + - uid: 2617 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23038 + pos: -12.5,7.5 + parent: 2 + - uid: 2618 components: - type: Transform - pos: -5.5,-6.5 - parent: 22565 - - uid: 23039 + pos: -13.5,7.5 + parent: 2 + - uid: 2619 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23040 + pos: -14.5,7.5 + parent: 2 + - uid: 2620 components: - type: Transform - pos: -6.5,-7.5 - parent: 22565 - - uid: 23041 + pos: -14.5,8.5 + parent: 2 + - uid: 2621 components: - type: Transform - pos: -6.5,-8.5 - parent: 22565 - - uid: 23042 + pos: -14.5,9.5 + parent: 2 + - uid: 2622 components: - type: Transform - pos: -6.5,-9.5 - parent: 22565 - - uid: 23043 + pos: -14.5,10.5 + parent: 2 + - uid: 2623 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23044 + pos: -14.5,11.5 + parent: 2 + - uid: 2624 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23045 + pos: -31.5,12.5 + parent: 2 + - uid: 2625 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23046 + pos: -31.5,11.5 + parent: 2 + - uid: 2626 components: - type: Transform - pos: -5.5,-7.5 - parent: 22565 - - uid: 23047 + pos: -31.5,8.5 + parent: 2 + - uid: 2627 components: - type: Transform - pos: -5.5,-8.5 - parent: 22565 - - uid: 23048 + pos: -28.5,0.5 + parent: 2 + - uid: 2628 components: - type: Transform - pos: -6.5,-8.5 - parent: 22565 - - uid: 23049 + pos: -28.5,-0.5 + parent: 2 + - uid: 2629 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23050 + pos: -28.5,-1.5 + parent: 2 + - uid: 2630 components: - type: Transform - pos: -11.5,-8.5 - parent: 22565 - - uid: 23051 + pos: -29.5,-0.5 + parent: 2 + - uid: 2631 components: - type: Transform - pos: -11.5,-7.5 - parent: 22565 - - uid: 23052 + pos: -30.5,-0.5 + parent: 2 + - uid: 2632 components: - type: Transform - pos: -10.5,-8.5 - parent: 22565 - - uid: 23053 + pos: -31.5,-0.5 + parent: 2 + - uid: 2633 components: - type: Transform - pos: -10.5,-8.5 - parent: 22565 - - uid: 23054 + pos: -32.5,-0.5 + parent: 2 + - uid: 2634 components: - type: Transform - pos: -10.5,-9.5 - parent: 22565 - - uid: 23055 + pos: -33.5,-0.5 + parent: 2 + - uid: 2635 components: - type: Transform - pos: -12.5,-6.5 - parent: 22565 - - uid: 23056 + pos: -34.5,-0.5 + parent: 2 + - uid: 2636 components: - type: Transform - pos: -13.5,-6.5 - parent: 22565 - - uid: 23057 + pos: -35.5,-0.5 + parent: 2 + - uid: 2637 components: - type: Transform - pos: -14.5,-6.5 - parent: 22565 - - uid: 23058 + pos: -36.5,-0.5 + parent: 2 + - uid: 2638 components: - type: Transform - pos: -20.5,-5.5 - parent: 22565 - - uid: 23059 + pos: -27.5,-1.5 + parent: 2 + - uid: 2639 components: - type: Transform - pos: -2.5,-11.5 - parent: 22565 - - uid: 23060 + pos: -26.5,-1.5 + parent: 2 + - uid: 2640 components: - type: Transform - pos: -3.5,-11.5 - parent: 22565 - - uid: 23061 + pos: -25.5,-1.5 + parent: 2 + - uid: 2641 components: - type: Transform - pos: -3.5,-12.5 - parent: 22565 - - uid: 23062 + pos: -24.5,-1.5 + parent: 2 + - uid: 2642 components: - type: Transform - pos: -2.5,-12.5 - parent: 22565 - - uid: 23063 + pos: -23.5,-1.5 + parent: 2 + - uid: 2643 components: - type: Transform - pos: -3.5,-13.5 - parent: 22565 - - uid: 23064 + pos: -22.5,-1.5 + parent: 2 + - uid: 2644 components: - type: Transform - pos: -2.5,-13.5 - parent: 22565 - - uid: 23065 + pos: -21.5,-1.5 + parent: 2 + - uid: 2645 components: - type: Transform - pos: -1.5,-14.5 - parent: 22565 - - uid: 23066 + pos: -20.5,-1.5 + parent: 2 + - uid: 2646 components: - type: Transform - pos: 0.5,-14.5 - parent: 22565 - - uid: 23067 + pos: -19.5,-1.5 + parent: 2 + - uid: 2647 components: - type: Transform - pos: -4.5,-10.5 - parent: 22565 - - uid: 23068 + pos: -18.5,-1.5 + parent: 2 + - uid: 2648 components: - type: Transform - pos: -19.5,-4.5 - parent: 22565 - - uid: 23069 + pos: -18.5,-2.5 + parent: 2 + - uid: 2649 components: - type: Transform - pos: -19.5,-6.5 - parent: 22565 - - uid: 23070 + pos: -18.5,-3.5 + parent: 2 + - uid: 2650 components: - type: Transform - pos: -19.5,-5.5 - parent: 22565 - - uid: 23071 + pos: -18.5,-4.5 + parent: 2 + - uid: 2651 components: - type: Transform - pos: -0.5,-5.5 - parent: 22565 - - uid: 23072 + pos: -18.5,-5.5 + parent: 2 + - uid: 2652 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 23073 + pos: -18.5,-6.5 + parent: 2 + - uid: 2653 components: - type: Transform - pos: 0.5,-5.5 - parent: 22565 - - uid: 23074 + pos: -18.5,-7.5 + parent: 2 + - uid: 2654 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 23075 + pos: -19.5,-7.5 + parent: 2 + - uid: 2655 components: - type: Transform - pos: 1.5,-5.5 - parent: 22565 - - uid: 23076 + pos: -20.5,-7.5 + parent: 2 + - uid: 2656 components: - type: Transform - pos: 2.5,-6.5 - parent: 22565 - - uid: 23077 + pos: -21.5,-7.5 + parent: 2 + - uid: 2657 components: - type: Transform - pos: 2.5,-5.5 - parent: 22565 - - uid: 23078 + pos: -22.5,-7.5 + parent: 2 + - uid: 2658 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 23079 + pos: -23.5,-7.5 + parent: 2 + - uid: 2659 components: - type: Transform - pos: 3.5,-5.5 - parent: 22565 - - uid: 23080 + pos: -24.5,-7.5 + parent: 2 + - uid: 2660 components: - type: Transform - pos: -0.5,-6.5 - parent: 22565 - - uid: 23081 + pos: -25.5,-7.5 + parent: 2 + - uid: 2661 components: - type: Transform - pos: -0.5,-7.5 - parent: 22565 - - uid: 23082 + pos: -26.5,-7.5 + parent: 2 + - uid: 2662 components: - type: Transform - pos: -0.5,-8.5 - parent: 22565 - - uid: 23083 + pos: -27.5,-7.5 + parent: 2 + - uid: 2663 components: - type: Transform - pos: -0.5,-9.5 - parent: 22565 - - uid: 23084 + pos: -28.5,-7.5 + parent: 2 + - uid: 2664 components: - type: Transform - pos: 0.5,-6.5 - parent: 22565 - - uid: 23085 + pos: -29.5,-7.5 + parent: 2 + - uid: 2665 components: - type: Transform - pos: 0.5,-7.5 - parent: 22565 - - uid: 23086 + pos: -30.5,-7.5 + parent: 2 + - uid: 2666 components: - type: Transform - pos: 0.5,-8.5 - parent: 22565 - - uid: 23087 + pos: -30.5,-8.5 + parent: 2 + - uid: 2667 components: - type: Transform - pos: 0.5,-9.5 - parent: 22565 - - uid: 23088 + pos: -30.5,-9.5 + parent: 2 + - uid: 2668 components: - type: Transform - pos: 1.5,-6.5 - parent: 22565 - - uid: 23089 + pos: -30.5,-6.5 + parent: 2 + - uid: 2669 components: - type: Transform - pos: 1.5,-7.5 - parent: 22565 - - uid: 23090 + pos: -30.5,-5.5 + parent: 2 + - uid: 2670 components: - type: Transform - pos: 1.5,-8.5 - parent: 22565 - - uid: 23091 + pos: -30.5,-4.5 + parent: 2 + - uid: 2671 components: - type: Transform - pos: 1.5,-9.5 - parent: 22565 - - uid: 23092 + pos: -37.5,-0.5 + parent: 2 + - uid: 2672 components: - type: Transform - pos: 2.5,-8.5 - parent: 22565 - - uid: 23093 + pos: -37.5,-1.5 + parent: 2 + - uid: 2673 components: - type: Transform - pos: 2.5,-9.5 - parent: 22565 - - uid: 23094 + pos: -37.5,-2.5 + parent: 2 + - uid: 2674 components: - type: Transform - pos: 3.5,-8.5 - parent: 22565 - - uid: 23095 + pos: -37.5,-4.5 + parent: 2 + - uid: 2675 components: - type: Transform - pos: 3.5,-9.5 - parent: 22565 - - uid: 23096 + pos: -37.5,-5.5 + parent: 2 + - uid: 2676 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 - - uid: 23097 + pos: -37.5,-6.5 + parent: 2 + - uid: 2677 components: - type: Transform - pos: 4.5,-9.5 - parent: 22565 - - uid: 23098 + pos: -37.5,-7.5 + parent: 2 + - uid: 2678 components: - type: Transform - pos: 4.5,-6.5 - parent: 22565 - - uid: 23099 + pos: -37.5,-8.5 + parent: 2 + - uid: 2679 components: - type: Transform - pos: 1.5,-5.5 - parent: 22565 - - uid: 23100 + pos: -35.5,-8.5 + parent: 2 + - uid: 2680 components: - type: Transform - pos: 1.5,-3.5 - parent: 22565 - - uid: 23101 + pos: -34.5,-8.5 + parent: 2 + - uid: 2681 components: - type: Transform - pos: 3.5,-3.5 - parent: 22565 - - uid: 23102 + pos: -36.5,-4.5 + parent: 2 + - uid: 2682 components: - type: Transform - pos: 3.5,-3.5 - parent: 22565 - - uid: 23103 + pos: -35.5,-4.5 + parent: 2 + - uid: 2683 components: - type: Transform - pos: -0.5,-2.5 - parent: 22565 - - uid: 23104 + pos: -34.5,-4.5 + parent: 2 + - uid: 2684 components: - type: Transform - pos: -0.5,-3.5 - parent: 22565 - - uid: 23105 + pos: -34.5,-5.5 + parent: 2 + - uid: 2685 components: - type: Transform - pos: 5.5,-3.5 - parent: 22565 - - uid: 23106 + pos: -34.5,-7.5 + parent: 2 + - uid: 2686 components: - type: Transform - pos: 7.5,-2.5 - parent: 22565 - - uid: 25646 + pos: -11.5,-7.5 + parent: 2 + - uid: 2687 components: - type: Transform - pos: -19.5,-3.5 - parent: 22565 - - uid: 25647 + pos: -12.5,-7.5 + parent: 2 + - uid: 2688 components: - type: Transform - pos: -19.5,-3.5 - parent: 22565 - - uid: 25648 + pos: -15.5,-7.5 + parent: 2 + - uid: 2689 components: - type: Transform - pos: -19.5,-3.5 - parent: 22565 - - uid: 25651 + pos: -14.5,-7.5 + parent: 2 + - uid: 2690 components: - type: Transform - pos: -30.5,-1.5 - parent: 22565 - - uid: 25652 + pos: -13.5,-7.5 + parent: 2 + - uid: 2691 components: - type: Transform - pos: -31.5,-0.5 - parent: 22565 - - uid: 25653 + pos: -17.5,-3.5 + parent: 2 + - uid: 2692 components: - type: Transform - pos: -31.5,-1.5 - parent: 22565 -- proto: AtmosDeviceFanTiny - entities: - - uid: 588 + pos: -15.5,-3.5 + parent: 2 + - uid: 2693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,21.5 - parent: 89 - - uid: 794 + pos: -14.5,-3.5 + parent: 2 + - uid: 2694 components: - type: Transform - pos: -103.5,-21.5 - parent: 89 - - uid: 3398 + pos: -13.5,-3.5 + parent: 2 + - uid: 2695 components: - type: Transform - pos: -84.5,48.5 - parent: 89 - - uid: 3512 + pos: -12.5,-3.5 + parent: 2 + - uid: 2696 components: - type: Transform - pos: -16.5,-7.5 - parent: 89 - - uid: 3514 + pos: -11.5,-3.5 + parent: 2 + - uid: 2697 components: - type: Transform - pos: -13.5,-6.5 - parent: 89 - - uid: 3572 + pos: -10.5,-3.5 + parent: 2 + - uid: 2698 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 6035 + pos: -9.5,-3.5 + parent: 2 + - uid: 2699 components: - type: Transform - pos: -70.5,30.5 - parent: 89 - - uid: 6426 + pos: -8.5,-3.5 + parent: 2 + - uid: 2700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,49.5 - parent: 89 - - uid: 9906 + pos: -7.5,-3.5 + parent: 2 + - uid: 2701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,49.5 - parent: 89 - - uid: 9907 + pos: -4.5,-3.5 + parent: 2 + - uid: 2702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,49.5 - parent: 89 - - uid: 9908 + pos: -5.5,-3.5 + parent: 2 + - uid: 2703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,49.5 - parent: 89 - - uid: 17160 + pos: -6.5,-1.5 + parent: 2 + - uid: 2704 components: - type: Transform - pos: -62.5,-21.5 - parent: 89 - - uid: 17162 + pos: -6.5,-0.5 + parent: 2 + - uid: 2705 components: - type: Transform - pos: -60.5,-21.5 - parent: 89 - - uid: 17163 + pos: -9.5,-2.5 + parent: 2 + - uid: 2706 components: - type: Transform - pos: -47.5,-18.5 - parent: 89 - - uid: 17181 + pos: -9.5,-1.5 + parent: 2 + - uid: 2707 components: - type: Transform - pos: -70.5,37.5 - parent: 89 - - uid: 17204 + pos: -12.5,-2.5 + parent: 2 + - uid: 2708 components: - type: Transform - pos: -80.5,37.5 - parent: 89 - - uid: 20307 + pos: -12.5,-1.5 + parent: 2 + - uid: 2709 components: - type: Transform - pos: -80.5,30.5 - parent: 89 - - uid: 20314 + pos: -9.5,-4.5 + parent: 2 + - uid: 2710 components: - type: Transform - pos: -89.5,37.5 - parent: 89 - - uid: 20356 + pos: -9.5,-5.5 + parent: 2 + - uid: 2711 components: - type: Transform - pos: -89.5,39.5 - parent: 89 - - uid: 20946 + pos: -6.5,-3.5 + parent: 2 + - uid: 2712 components: - type: Transform - pos: 49.5,20.5 - parent: 89 - - uid: 21310 + pos: -6.5,-5.5 + parent: 2 + - uid: 2713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,46.5 - parent: 89 - - uid: 21311 + pos: -79.5,2.5 + parent: 2 + - uid: 2714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,38.5 - parent: 89 - - uid: 21312 + pos: -79.5,1.5 + parent: 2 + - uid: 2715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,38.5 - parent: 89 - - uid: 21313 + pos: -79.5,0.5 + parent: 2 + - uid: 2716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,46.5 - parent: 89 - - uid: 21633 + pos: -78.5,0.5 + parent: 2 + - uid: 2717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-6.5 - parent: 21627 - - uid: 22545 + pos: -77.5,0.5 + parent: 2 + - uid: 2718 components: - type: Transform - pos: -3.5,-35.5 - parent: 89 - - uid: 23107 + pos: -76.5,0.5 + parent: 2 + - uid: 2719 components: - type: Transform - pos: -9.5,-27.5 - parent: 22565 - - uid: 23108 + pos: -76.5,-0.5 + parent: 2 + - uid: 2720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,15.5 - parent: 22565 - - uid: 23109 + pos: -76.5,-1.5 + parent: 2 + - uid: 2721 components: - type: Transform - pos: -11.5,-27.5 - parent: 22565 - - uid: 23110 + pos: -76.5,-2.5 + parent: 2 + - uid: 2722 components: - type: Transform - pos: -13.5,-27.5 - parent: 22565 - - uid: 23111 + pos: -76.5,-3.5 + parent: 2 + - uid: 2723 components: - type: Transform - pos: -15.5,-27.5 - parent: 22565 - - uid: 23112 + pos: -77.5,-3.5 + parent: 2 + - uid: 2724 components: - type: Transform - pos: -17.5,-27.5 - parent: 22565 - - uid: 23113 + pos: -78.5,-3.5 + parent: 2 + - uid: 2725 components: - type: Transform - pos: -11.5,-20.5 - parent: 22565 - - uid: 23114 + pos: -79.5,-3.5 + parent: 2 + - uid: 2726 components: - type: Transform - pos: -15.5,-20.5 - parent: 22565 - - uid: 23115 + pos: -75.5,-3.5 + parent: 2 + - uid: 2727 components: - type: Transform - pos: -12.5,-4.5 - parent: 22565 - - uid: 23116 + pos: -74.5,-3.5 + parent: 2 + - uid: 2728 components: - type: Transform - pos: -11.5,-4.5 - parent: 22565 - - uid: 23117 + pos: -74.5,-4.5 + parent: 2 + - uid: 2729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,17.5 - parent: 22565 - - uid: 23118 + pos: -74.5,-5.5 + parent: 2 + - uid: 2730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,21.5 - parent: 22565 - - uid: 23119 + pos: -74.5,-6.5 + parent: 2 + - uid: 2731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,23.5 - parent: 22565 - - uid: 23120 + pos: -74.5,-7.5 + parent: 2 + - uid: 2732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,23.5 - parent: 22565 - - uid: 23121 + pos: -82.5,9.5 + parent: 2 + - uid: 2733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,21.5 - parent: 22565 - - uid: 23122 + pos: -83.5,9.5 + parent: 2 + - uid: 2734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,17.5 - parent: 22565 - - uid: 23123 + pos: -84.5,9.5 + parent: 2 + - uid: 2735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,15.5 - parent: 22565 - - uid: 23124 + pos: -85.5,9.5 + parent: 2 + - uid: 2736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,15.5 - parent: 22565 - - uid: 23125 + pos: -86.5,9.5 + parent: 2 + - uid: 2737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,17.5 - parent: 22565 - - uid: 23126 + pos: -87.5,9.5 + parent: 2 + - uid: 2738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,21.5 - parent: 22565 - - uid: 23127 + pos: -86.5,8.5 + parent: 2 + - uid: 2739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,23.5 - parent: 22565 - - uid: 23128 + pos: -86.5,7.5 + parent: 2 + - uid: 2740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,23.5 - parent: 22565 - - uid: 23129 + pos: -86.5,6.5 + parent: 2 + - uid: 2741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,21.5 - parent: 22565 - - uid: 23130 + pos: -86.5,5.5 + parent: 2 + - uid: 2742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,17.5 - parent: 22565 - - uid: 23131 + pos: -86.5,4.5 + parent: 2 + - uid: 2743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,15.5 - parent: 22565 - - uid: 25365 + pos: -86.5,3.5 + parent: 2 + - uid: 2744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-23.5 - parent: 89 - - uid: 25366 + pos: -86.5,2.5 + parent: 2 + - uid: 2745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-25.5 - parent: 89 - - uid: 25428 + pos: -85.5,3.5 + parent: 2 + - uid: 2746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-6.5 - parent: 18153 - - uid: 25429 + pos: -87.5,3.5 + parent: 2 + - uid: 2747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-4.5 - parent: 18153 -- proto: AtmosFixBlockerMarker - entities: - - uid: 7571 + pos: -88.5,3.5 + parent: 2 + - uid: 2748 components: - type: Transform - pos: -88.5,-5.5 - parent: 89 - - uid: 7572 + pos: -88.5,9.5 + parent: 2 + - uid: 2749 components: - type: Transform - pos: -88.5,-4.5 - parent: 89 - - uid: 7573 + pos: -88.5,8.5 + parent: 2 + - uid: 2750 components: - type: Transform - pos: -87.5,-5.5 - parent: 89 - - uid: 7574 + pos: -84.5,3.5 + parent: 2 + - uid: 2751 components: - type: Transform - pos: -87.5,-4.5 - parent: 89 - - uid: 17763 + pos: -84.5,2.5 + parent: 2 + - uid: 2752 components: - type: Transform - pos: -81.5,-23.5 - parent: 89 - - uid: 17764 + pos: -67.5,15.5 + parent: 2 + - uid: 2753 components: - type: Transform - pos: -81.5,-24.5 - parent: 89 - - uid: 17765 + pos: -67.5,14.5 + parent: 2 + - uid: 2754 components: - type: Transform - pos: -81.5,-25.5 - parent: 89 - - uid: 17766 + pos: -67.5,13.5 + parent: 2 + - uid: 2755 components: - type: Transform - pos: -80.5,-23.5 - parent: 89 - - uid: 17767 + pos: -67.5,12.5 + parent: 2 + - uid: 2756 components: - type: Transform - pos: -80.5,-24.5 - parent: 89 - - uid: 17768 + pos: -67.5,11.5 + parent: 2 + - uid: 2757 components: - type: Transform - pos: -80.5,-25.5 - parent: 89 - - uid: 17769 + pos: -67.5,10.5 + parent: 2 + - uid: 2758 components: - type: Transform - pos: -79.5,-23.5 - parent: 89 - - uid: 17770 + pos: -67.5,9.5 + parent: 2 + - uid: 2759 components: - type: Transform - pos: -79.5,-24.5 - parent: 89 - - uid: 17771 + pos: -67.5,8.5 + parent: 2 + - uid: 2760 components: - type: Transform - pos: -79.5,-25.5 - parent: 89 - - uid: 18254 + pos: -66.5,9.5 + parent: 2 + - uid: 2761 components: - type: Transform - pos: -90.5,-23.5 - parent: 89 - - uid: 18255 + pos: -65.5,9.5 + parent: 2 + - uid: 2762 components: - type: Transform - pos: -90.5,-24.5 - parent: 89 - - uid: 18256 + pos: -64.5,9.5 + parent: 2 + - uid: 2763 components: - type: Transform - pos: -90.5,-25.5 - parent: 89 - - uid: 18257 + pos: -63.5,9.5 + parent: 2 + - uid: 2764 components: - type: Transform - pos: -88.5,-23.5 - parent: 89 - - uid: 18258 + pos: -66.5,13.5 + parent: 2 + - uid: 2765 components: - type: Transform - pos: -88.5,-24.5 - parent: 89 - - uid: 18259 + pos: -65.5,13.5 + parent: 2 + - uid: 2766 components: - type: Transform - pos: -88.5,-25.5 - parent: 89 - - uid: 18260 + pos: -64.5,13.5 + parent: 2 + - uid: 2767 components: - type: Transform - pos: -86.5,-25.5 - parent: 89 - - uid: 18261 + pos: -63.5,13.5 + parent: 2 + - uid: 2768 components: - type: Transform - pos: -86.5,-24.5 - parent: 89 - - uid: 18262 + pos: -62.5,13.5 + parent: 2 + - uid: 2769 components: - type: Transform - pos: -86.5,-23.5 - parent: 89 - - uid: 18263 + pos: -61.5,13.5 + parent: 2 + - uid: 2770 components: - type: Transform - pos: -94.5,-23.5 - parent: 89 - - uid: 18264 + pos: -60.5,13.5 + parent: 2 + - uid: 2771 components: - type: Transform - pos: -94.5,-24.5 - parent: 89 - - uid: 18265 + pos: -59.5,13.5 + parent: 2 + - uid: 2772 components: - type: Transform - pos: -94.5,-25.5 - parent: 89 - - uid: 18266 + pos: -58.5,13.5 + parent: 2 + - uid: 2773 components: - type: Transform - pos: -96.5,-25.5 - parent: 89 - - uid: 18267 + pos: -57.5,13.5 + parent: 2 + - uid: 2774 components: - type: Transform - pos: -96.5,-24.5 - parent: 89 - - uid: 18268 + pos: -56.5,13.5 + parent: 2 + - uid: 2775 components: - type: Transform - pos: -96.5,-23.5 - parent: 89 -- proto: AtmosFixFreezerMarker - entities: - - uid: 17632 + pos: -55.5,13.5 + parent: 2 + - uid: 2776 components: - type: Transform - pos: -15.5,-9.5 - parent: 89 - - uid: 17726 + pos: -54.5,13.5 + parent: 2 + - uid: 2777 components: - type: Transform - pos: -15.5,-8.5 - parent: 89 - - uid: 17727 + pos: -59.5,12.5 + parent: 2 + - uid: 2778 components: - type: Transform - pos: -14.5,-8.5 - parent: 89 - - uid: 17728 + pos: -59.5,11.5 + parent: 2 + - uid: 2779 components: - type: Transform - pos: -14.5,-9.5 - parent: 89 - - uid: 17729 + pos: -59.5,10.5 + parent: 2 + - uid: 2780 components: - type: Transform - pos: -14.5,-7.5 - parent: 89 - - uid: 17730 + pos: -59.5,9.5 + parent: 2 + - uid: 2781 components: - type: Transform - pos: -15.5,-7.5 - parent: 89 - - uid: 17734 + pos: -59.5,8.5 + parent: 2 + - uid: 2782 components: - type: Transform - pos: -12.5,-8.5 - parent: 89 - - uid: 17735 + pos: -68.5,9.5 + parent: 2 + - uid: 2783 components: - type: Transform - pos: -12.5,-7.5 - parent: 89 - - uid: 17736 + pos: -69.5,9.5 + parent: 2 + - uid: 2784 components: - type: Transform - pos: -13.5,-9.5 - parent: 89 - - uid: 17737 + pos: -70.5,9.5 + parent: 2 + - uid: 2785 components: - type: Transform - pos: -13.5,-7.5 - parent: 89 - - uid: 17738 + pos: -71.5,9.5 + parent: 2 + - uid: 2786 components: - type: Transform - pos: -13.5,-8.5 - parent: 89 - - uid: 17746 + pos: -72.5,9.5 + parent: 2 + - uid: 2787 components: - type: Transform - pos: -12.5,-9.5 - parent: 89 - - uid: 22547 + pos: -73.5,9.5 + parent: 2 + - uid: 2788 components: - type: Transform - pos: -7.5,-36.5 - parent: 89 - - uid: 22548 + pos: -74.5,9.5 + parent: 2 + - uid: 2789 components: - type: Transform - pos: -7.5,-35.5 - parent: 89 - - uid: 22549 + pos: -72.5,8.5 + parent: 2 + - uid: 2790 components: - type: Transform - pos: -7.5,-34.5 - parent: 89 - - uid: 22550 + pos: -80.5,9.5 + parent: 2 + - uid: 2791 components: - type: Transform - pos: -6.5,-34.5 - parent: 89 - - uid: 22551 + pos: -80.5,8.5 + parent: 2 + - uid: 2792 components: - type: Transform - pos: -6.5,-35.5 - parent: 89 - - uid: 22552 + pos: -79.5,8.5 + parent: 2 + - uid: 2793 components: - type: Transform - pos: -6.5,-36.5 - parent: 89 - - uid: 22553 + pos: -78.5,8.5 + parent: 2 + - uid: 2794 components: - type: Transform - pos: -5.5,-36.5 - parent: 89 - - uid: 22554 + pos: -78.5,9.5 + parent: 2 + - uid: 2795 components: - type: Transform - pos: -5.5,-35.5 - parent: 89 - - uid: 22555 + pos: -78.5,10.5 + parent: 2 + - uid: 2796 components: - type: Transform - pos: -5.5,-34.5 - parent: 89 - - uid: 22556 + pos: -72.5,10.5 + parent: 2 + - uid: 2797 components: - type: Transform - pos: -4.5,-34.5 - parent: 89 - - uid: 22557 + pos: -72.5,11.5 + parent: 2 + - uid: 2798 components: - type: Transform - pos: -4.5,-35.5 - parent: 89 - - uid: 22558 + pos: -72.5,12.5 + parent: 2 + - uid: 2799 components: - type: Transform - pos: -4.5,-36.5 - parent: 89 -- proto: AtmosFixNitrogenMarker - entities: - - uid: 17744 + pos: -72.5,13.5 + parent: 2 + - uid: 2800 components: - type: Transform - pos: -98.5,-25.5 - parent: 89 - - uid: 17745 + pos: -72.5,14.5 + parent: 2 + - uid: 2801 components: - type: Transform - pos: -98.5,-24.5 - parent: 89 - - uid: 17747 + pos: -72.5,15.5 + parent: 2 + - uid: 2802 components: - type: Transform - pos: -98.5,-23.5 - parent: 89 - - uid: 23132 + pos: -72.5,16.5 + parent: 2 + - uid: 2803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-10.5 - parent: 22565 - - uid: 23133 + pos: -72.5,17.5 + parent: 2 + - uid: 2804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 22565 - - uid: 23134 + pos: -71.5,17.5 + parent: 2 + - uid: 2805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 22565 -- proto: AtmosFixOxygenMarker - entities: - - uid: 17751 + pos: -70.5,17.5 + parent: 2 + - uid: 2806 components: - type: Transform - pos: -100.5,-23.5 - parent: 89 - - uid: 17752 + pos: -69.5,17.5 + parent: 2 + - uid: 2807 components: - type: Transform - pos: -100.5,-24.5 - parent: 89 - - uid: 17753 + pos: -68.5,17.5 + parent: 2 + - uid: 2808 components: - type: Transform - pos: -100.5,-25.5 - parent: 89 - - uid: 23135 + pos: -67.5,17.5 + parent: 2 + - uid: 2809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 22565 - - uid: 23136 + pos: -66.5,17.5 + parent: 2 + - uid: 2810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 22565 -- proto: AtmosFixPlasmaMarker - entities: - - uid: 17760 + pos: -65.5,17.5 + parent: 2 + - uid: 2811 components: - type: Transform - pos: -92.5,-23.5 - parent: 89 - - uid: 17761 + pos: -64.5,17.5 + parent: 2 + - uid: 2812 components: - type: Transform - pos: -92.5,-24.5 - parent: 89 - - uid: 17762 + pos: -63.5,17.5 + parent: 2 + - uid: 2813 components: - type: Transform - pos: -92.5,-25.5 - parent: 89 -- proto: Autolathe - entities: - - uid: 45 + pos: -62.5,17.5 + parent: 2 + - uid: 2814 components: - type: Transform - pos: -16.5,-18.5 - parent: 89 - - uid: 4239 + pos: -61.5,17.5 + parent: 2 + - uid: 2815 components: - type: Transform - pos: -64.5,-4.5 - parent: 89 - - uid: 6909 + pos: -60.5,17.5 + parent: 2 + - uid: 2816 components: - type: Transform - pos: -103.5,-5.5 - parent: 89 - - uid: 7076 + pos: -59.5,17.5 + parent: 2 + - uid: 2817 components: - type: Transform - pos: -90.5,14.5 - parent: 89 - - uid: 23137 + pos: -58.5,17.5 + parent: 2 + - uid: 2818 components: - type: Transform - pos: 3.5,2.5 - parent: 22565 - - uid: 23138 + pos: -57.5,17.5 + parent: 2 + - uid: 2819 components: - type: Transform - pos: -27.5,2.5 - parent: 22565 -- proto: BalloonCorgi - entities: - - uid: 18047 + pos: -56.5,17.5 + parent: 2 + - uid: 2820 components: - type: Transform - pos: 1.3953991,-34.48816 - parent: 89 -- proto: BalloonSyn - entities: - - uid: 10770 + pos: -55.5,17.5 + parent: 2 + - uid: 2821 components: - type: Transform - pos: 31.830946,31.551973 - parent: 89 - - uid: 10779 + pos: -54.5,17.5 + parent: 2 + - uid: 2822 components: - type: Transform - pos: 27.481878,40.471504 - parent: 89 - - uid: 20932 + pos: -52.5,29.5 + parent: 2 + - uid: 2823 components: - type: Transform - pos: -51.44482,29.548405 - parent: 89 -- proto: BananaSeeds - entities: - - uid: 5346 + pos: -51.5,29.5 + parent: 2 + - uid: 2824 components: - type: Transform - pos: 31.440456,-5.666168 - parent: 89 -- proto: BannerCargo - entities: - - uid: 5775 + pos: -51.5,30.5 + parent: 2 + - uid: 2825 components: - type: Transform - pos: -67.5,-4.5 - parent: 89 - - uid: 5818 + pos: -51.5,31.5 + parent: 2 + - uid: 2826 components: - type: Transform - pos: -70.5,-7.5 - parent: 89 - - uid: 5819 + pos: -58.5,31.5 + parent: 2 + - uid: 2827 components: - type: Transform - pos: -55.5,-10.5 - parent: 89 - - uid: 5820 + pos: -58.5,30.5 + parent: 2 + - uid: 2828 components: - type: Transform - pos: -67.5,-2.5 - parent: 89 - - uid: 5821 + pos: -58.5,29.5 + parent: 2 + - uid: 2829 components: - type: Transform - pos: -58.5,-2.5 - parent: 89 - - uid: 5822 + pos: -57.5,29.5 + parent: 2 + - uid: 2830 components: - type: Transform - pos: -58.5,-4.5 - parent: 89 - - uid: 5824 + pos: -56.5,29.5 + parent: 2 + - uid: 2831 components: - type: Transform - pos: -74.5,-17.5 - parent: 89 -- proto: BannerEngineering - entities: - - uid: 7177 + pos: -59.5,31.5 + parent: 2 + - uid: 2832 components: - type: Transform - pos: -105.5,-5.5 - parent: 89 - - uid: 7178 + pos: -60.5,31.5 + parent: 2 + - uid: 2833 components: - type: Transform - pos: -95.5,6.5 - parent: 89 - - uid: 7179 + pos: -61.5,31.5 + parent: 2 + - uid: 2834 components: - type: Transform - pos: -95.5,9.5 - parent: 89 - - uid: 9240 + pos: -62.5,31.5 + parent: 2 + - uid: 2835 components: - type: Transform - pos: -119.5,8.5 - parent: 89 - - uid: 9241 + pos: -63.5,31.5 + parent: 2 + - uid: 2836 components: - type: Transform - pos: -119.5,-0.5 - parent: 89 -- proto: BannerNanotrasen - entities: - - uid: 1974 + pos: -64.5,31.5 + parent: 2 + - uid: 2837 components: - type: Transform - pos: 30.5,16.5 - parent: 89 - - uid: 2130 + pos: -65.5,31.5 + parent: 2 + - uid: 2838 components: - type: Transform - pos: 38.5,16.5 - parent: 89 - - uid: 2135 + pos: -65.5,30.5 + parent: 2 + - uid: 2839 components: - type: Transform - pos: 44.5,2.5 - parent: 89 - - uid: 2139 + pos: -65.5,29.5 + parent: 2 + - uid: 2840 components: - type: Transform - pos: 38.5,11.5 - parent: 89 - - uid: 2142 + pos: -65.5,28.5 + parent: 2 + - uid: 2841 components: - type: Transform - pos: 62.5,9.5 - parent: 89 - - uid: 2145 + pos: -65.5,27.5 + parent: 2 + - uid: 2842 components: - type: Transform - pos: 52.5,12.5 - parent: 89 - - uid: 2168 + pos: -65.5,26.5 + parent: 2 + - uid: 2843 components: - type: Transform - pos: 30.5,11.5 - parent: 89 - - uid: 6162 + pos: -65.5,25.5 + parent: 2 + - uid: 2844 components: - type: Transform - pos: -16.5,5.5 - parent: 89 - - uid: 6817 + pos: -65.5,32.5 + parent: 2 + - uid: 2845 components: - type: Transform - pos: -45.5,-0.5 - parent: 89 - - uid: 8167 + pos: -65.5,33.5 + parent: 2 + - uid: 2846 components: - type: Transform - pos: -60.5,10.5 - parent: 89 - - uid: 8171 + pos: -65.5,34.5 + parent: 2 + - uid: 2847 components: - type: Transform - pos: -63.5,22.5 - parent: 89 - - uid: 10562 + pos: -65.5,35.5 + parent: 2 + - uid: 2848 components: - type: Transform - pos: -84.5,14.5 - parent: 89 -- proto: BannerScience - entities: - - uid: 2080 + pos: -65.5,36.5 + parent: 2 + - uid: 2849 components: - type: Transform - pos: 4.5,-29.5 - parent: 89 - - uid: 2081 + pos: -65.5,37.5 + parent: 2 + - uid: 2850 components: - type: Transform - pos: -3.5,-17.5 - parent: 89 - - uid: 2082 + pos: -65.5,38.5 + parent: 2 + - uid: 2851 components: - type: Transform - pos: 0.5,-17.5 - parent: 89 - - uid: 2084 + pos: -65.5,39.5 + parent: 2 + - uid: 2852 components: - type: Transform - pos: -9.5,-23.5 - parent: 89 - - uid: 2087 + pos: -65.5,40.5 + parent: 2 + - uid: 2853 components: - type: Transform - pos: -5.5,-38.5 - parent: 89 - - uid: 2088 + pos: -65.5,41.5 + parent: 2 + - uid: 2854 components: - type: Transform - pos: -4.5,-34.5 - parent: 89 - - uid: 8395 + pos: -65.5,42.5 + parent: 2 + - uid: 2855 components: - type: Transform - pos: -4.5,-36.5 - parent: 89 -- proto: BannerSecurity - entities: - - uid: 6177 + pos: -65.5,43.5 + parent: 2 + - uid: 2856 components: - type: Transform - pos: -16.5,9.5 - parent: 89 -- proto: BannerSyndicate - entities: - - uid: 3408 + pos: -65.5,44.5 + parent: 2 + - uid: 2857 components: - type: Transform - pos: -89.5,26.5 - parent: 89 -- proto: Barricade - entities: - - uid: 6228 + pos: -65.5,45.5 + parent: 2 + - uid: 2858 components: - type: Transform - pos: -128.5,-7.5 - parent: 89 - - uid: 8011 + pos: -65.5,46.5 + parent: 2 + - uid: 2859 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8012 + pos: -65.5,47.5 + parent: 2 + - uid: 2860 components: - type: Transform - pos: 1.5,39.5 - parent: 89 - - uid: 8032 + pos: -59.5,35.5 + parent: 2 + - uid: 2861 components: - type: Transform - pos: -1.5,35.5 - parent: 89 - - uid: 8053 + pos: -59.5,36.5 + parent: 2 + - uid: 2862 components: - type: Transform - pos: -7.5,34.5 - parent: 89 - - uid: 8175 + pos: -59.5,37.5 + parent: 2 + - uid: 2863 components: - type: Transform - pos: -3.5,27.5 - parent: 89 - - uid: 8908 + pos: -59.5,38.5 + parent: 2 + - uid: 2864 components: - type: Transform - pos: -133.5,-4.5 - parent: 89 - - uid: 8912 + pos: -59.5,39.5 + parent: 2 + - uid: 2865 components: - type: Transform - pos: -129.5,-5.5 - parent: 89 - - uid: 8927 + pos: -59.5,40.5 + parent: 2 + - uid: 2866 components: - type: Transform - pos: -128.5,-6.5 - parent: 89 - - uid: 9182 + pos: -59.5,41.5 + parent: 2 + - uid: 2867 components: - type: Transform - pos: 32.5,-16.5 - parent: 89 - - uid: 14546 + pos: -59.5,43.5 + parent: 2 + - uid: 2868 components: - type: Transform - pos: -125.5,20.5 - parent: 89 - - uid: 14591 + pos: -59.5,42.5 + parent: 2 + - uid: 2869 components: - type: Transform - pos: -125.5,21.5 - parent: 89 - - uid: 14785 + pos: -59.5,44.5 + parent: 2 + - uid: 2870 components: - type: Transform - pos: -53.5,32.5 - parent: 89 - - uid: 14811 + pos: -60.5,44.5 + parent: 2 + - uid: 2871 components: - type: Transform - pos: -46.5,21.5 - parent: 89 - - uid: 14815 + pos: -61.5,44.5 + parent: 2 + - uid: 2872 components: - type: Transform - pos: -47.5,21.5 - parent: 89 - - uid: 14816 + pos: -62.5,44.5 + parent: 2 + - uid: 2873 components: - type: Transform - pos: -48.5,21.5 - parent: 89 - - uid: 14860 + pos: -63.5,44.5 + parent: 2 + - uid: 2874 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 14861 + pos: -64.5,44.5 + parent: 2 + - uid: 2875 components: - type: Transform - pos: -77.5,14.5 - parent: 89 - - uid: 14863 + pos: -66.5,47.5 + parent: 2 + - uid: 2876 components: - type: Transform - pos: -78.5,11.5 - parent: 89 - - uid: 14864 + pos: -59.5,34.5 + parent: 2 + - uid: 2877 components: - type: Transform - pos: -11.5,-28.5 - parent: 89 - - uid: 14895 + pos: -58.5,35.5 + parent: 2 + - uid: 2878 components: - type: Transform - pos: -12.5,-33.5 - parent: 89 - - uid: 14896 + pos: -57.5,35.5 + parent: 2 + - uid: 2879 components: - type: Transform - pos: -11.5,-33.5 - parent: 89 - - uid: 14938 + pos: -56.5,35.5 + parent: 2 + - uid: 2880 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 21524 + pos: -56.5,36.5 + parent: 2 + - uid: 2881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,23.5 - parent: 89 - - uid: 23139 + pos: -56.5,37.5 + parent: 2 + - uid: 2882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,11.5 - parent: 22565 -- proto: BarricadeBlock - entities: - - uid: 10450 + pos: -56.5,38.5 + parent: 2 + - uid: 2883 components: - type: Transform - pos: -2.5,28.5 - parent: 89 - - uid: 23140 + pos: -56.5,39.5 + parent: 2 + - uid: 2884 components: - type: Transform - pos: 3.5,7.5 - parent: 22565 - - uid: 23141 + pos: -56.5,40.5 + parent: 2 + - uid: 2885 components: - type: Transform - pos: 0.5,11.5 - parent: 22565 - - uid: 25686 + pos: -56.5,41.5 + parent: 2 + - uid: 2886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-16.5 - parent: 89 -- proto: BarricadeDirectional - entities: - - uid: 3260 + pos: -56.5,42.5 + parent: 2 + - uid: 2887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,27.5 - parent: 89 - - uid: 3389 + pos: -56.5,43.5 + parent: 2 + - uid: 2888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,27.5 - parent: 89 - - uid: 8461 + pos: -56.5,44.5 + parent: 2 + - uid: 2889 components: - type: Transform - pos: -3.5,29.5 - parent: 89 - - uid: 23142 + pos: -56.5,45.5 + parent: 2 + - uid: 2890 components: - type: Transform - pos: 3.5,8.5 - parent: 22565 - - uid: 23143 + pos: -56.5,46.5 + parent: 2 + - uid: 2891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,6.5 - parent: 22565 - - uid: 23144 + pos: -56.5,47.5 + parent: 2 + - uid: 2892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,11.5 - parent: 22565 - - uid: 25685 + pos: -56.5,48.5 + parent: 2 + - uid: 2893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-16.5 - parent: 89 - - uid: 25687 + pos: -58.5,44.5 + parent: 2 + - uid: 2894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-16.5 - parent: 89 -- proto: BarSign - entities: - - uid: 82 + pos: -58.5,45.5 + parent: 2 + - uid: 2895 components: - type: Transform - pos: -25.5,0.5 - parent: 89 -- proto: BaseBallBat - entities: - - uid: 3254 + pos: -58.5,46.5 + parent: 2 + - uid: 2896 components: - type: Transform - pos: -34.46009,24.006712 - parent: 89 - - uid: 18211 + pos: -58.5,47.5 + parent: 2 + - uid: 2897 components: - type: Transform - pos: -29.434896,-19.43375 - parent: 89 - - uid: 23145 + pos: -58.5,48.5 + parent: 2 + - uid: 2898 components: - type: Transform - pos: 3.7139354,11.511048 - parent: 22565 - - uid: 23146 + pos: -55.5,44.5 + parent: 2 + - uid: 2899 components: - type: Transform - pos: 4.5576854,11.448548 - parent: 22565 -- proto: BassGuitarInstrument - entities: - - uid: 4884 + pos: -54.5,44.5 + parent: 2 + - uid: 2900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.462486,-1.5650146 - parent: 89 -- proto: Beaker - entities: - - uid: 19587 + pos: -53.5,44.5 + parent: 2 + - uid: 2901 components: - type: Transform - pos: -1.8334813,-41.39243 - parent: 89 - - uid: 20360 + pos: -52.5,44.5 + parent: 2 + - uid: 2902 components: - type: Transform - pos: 46.722706,-26.49298 - parent: 89 - - uid: 21771 + pos: -51.5,44.5 + parent: 2 + - uid: 2903 components: - type: Transform - pos: 46.410206,-26.508604 - parent: 89 -- proto: Bed - entities: - - uid: 2990 + pos: -55.5,40.5 + parent: 2 + - uid: 2904 components: - type: Transform - pos: 28.5,-14.5 - parent: 89 - - uid: 2991 + pos: -54.5,40.5 + parent: 2 + - uid: 2905 components: - type: Transform - pos: 25.5,-14.5 - parent: 89 - - uid: 2993 + pos: -53.5,40.5 + parent: 2 + - uid: 2906 components: - type: Transform - pos: 22.5,-14.5 - parent: 89 - - uid: 2994 + pos: -52.5,40.5 + parent: 2 + - uid: 2907 components: - type: Transform - pos: 19.5,-14.5 - parent: 89 - - uid: 3547 + pos: -51.5,40.5 + parent: 2 + - uid: 2908 components: - type: Transform - pos: -56.5,7.5 - parent: 89 - - uid: 4187 + pos: -55.5,35.5 + parent: 2 + - uid: 2909 components: - type: Transform - pos: -34.5,-3.5 - parent: 89 - - uid: 4188 + pos: -54.5,35.5 + parent: 2 + - uid: 2910 components: - type: Transform - pos: -34.5,-9.5 - parent: 89 - - uid: 4189 + pos: -53.5,35.5 + parent: 2 + - uid: 2911 components: - type: Transform - pos: -31.5,-2.5 - parent: 89 - - uid: 4253 + pos: -52.5,35.5 + parent: 2 + - uid: 2912 components: - type: Transform - pos: -35.5,-6.5 - parent: 89 - - uid: 5471 + pos: -52.5,36.5 + parent: 2 + - uid: 2913 components: - type: Transform - pos: -46.5,-7.5 - parent: 89 - - uid: 5793 + pos: -64.5,25.5 + parent: 2 + - uid: 2914 components: - type: Transform - pos: -70.5,-17.5 - parent: 89 - - uid: 6608 + pos: -63.5,25.5 + parent: 2 + - uid: 2915 components: - type: Transform - pos: 31.5,-3.5 - parent: 89 - - uid: 6895 + pos: -62.5,25.5 + parent: 2 + - uid: 2916 components: - type: Transform - pos: -101.5,10.5 - parent: 89 - - uid: 7098 + pos: -61.5,25.5 + parent: 2 + - uid: 2917 components: - type: Transform - pos: 1.5,-31.5 - parent: 89 - - uid: 7114 + pos: -60.5,25.5 + parent: 2 + - uid: 2918 components: - type: Transform - pos: 46.5,13.5 - parent: 89 - - uid: 7877 + pos: -59.5,25.5 + parent: 2 + - uid: 2919 components: - type: Transform - pos: 3.5,36.5 - parent: 89 - - uid: 9017 + pos: -58.5,25.5 + parent: 2 + - uid: 2920 components: - type: Transform - pos: 12.5,37.5 - parent: 89 - - uid: 10011 + pos: -57.5,25.5 + parent: 2 + - uid: 2921 components: - type: Transform - pos: -50.5,41.5 - parent: 89 - - uid: 10012 + pos: -56.5,25.5 + parent: 2 + - uid: 2922 components: - type: Transform - pos: -50.5,45.5 - parent: 89 - - uid: 10137 + pos: -55.5,48.5 + parent: 2 + - uid: 2923 components: - type: Transform - pos: -25.5,23.5 - parent: 89 - - uid: 10138 + pos: -120.5,-7.5 + parent: 2 + - uid: 2924 components: - type: Transform - pos: -25.5,27.5 - parent: 89 - - uid: 10139 + pos: -119.5,-7.5 + parent: 2 + - uid: 2925 components: - type: Transform - pos: -25.5,31.5 - parent: 89 - - uid: 10140 + pos: -118.5,-7.5 + parent: 2 + - uid: 2926 components: - type: Transform - pos: -32.5,33.5 - parent: 89 - - uid: 10141 + pos: -117.5,-7.5 + parent: 2 + - uid: 2927 components: - type: Transform - pos: -32.5,29.5 - parent: 89 - - uid: 10142 + pos: -116.5,-7.5 + parent: 2 + - uid: 2928 components: - type: Transform - pos: -32.5,25.5 - parent: 89 - - uid: 10289 + pos: -75.5,0.5 + parent: 2 + - uid: 2929 components: - type: Transform - pos: -39.5,32.5 - parent: 89 - - uid: 10293 + pos: -74.5,0.5 + parent: 2 + - uid: 2930 components: - type: Transform - pos: -40.5,32.5 - parent: 89 - - uid: 10362 + pos: -64.5,6.5 + parent: 2 + - uid: 2931 components: - type: Transform - pos: -19.5,32.5 - parent: 89 - - uid: 10363 + pos: -64.5,5.5 + parent: 2 + - uid: 2932 components: - type: Transform - pos: -20.5,32.5 - parent: 89 - - uid: 15069 + pos: -64.5,4.5 + parent: 2 + - uid: 2933 components: - type: Transform - pos: 21.5,17.5 - parent: 89 - - uid: 15505 + pos: -65.5,4.5 + parent: 2 + - uid: 2934 components: - type: Transform - pos: 14.5,37.5 - parent: 89 - - uid: 16164 + pos: -66.5,4.5 + parent: 2 + - uid: 2935 components: - type: Transform - pos: 21.5,23.5 - parent: 89 - - uid: 16279 + pos: -67.5,4.5 + parent: 2 + - uid: 2936 components: - type: Transform - pos: 7.5,37.5 - parent: 89 - - uid: 16280 + pos: -68.5,4.5 + parent: 2 + - uid: 2937 components: - type: Transform - pos: 5.5,37.5 - parent: 89 - - uid: 17877 + pos: -69.5,4.5 + parent: 2 + - uid: 2938 components: - type: Transform - pos: 41.5,14.5 - parent: 89 - - uid: 19913 + pos: -70.5,4.5 + parent: 2 + - uid: 2939 components: - type: Transform - pos: 25.5,43.5 - parent: 89 -- proto: BedsheetBlack - entities: - - uid: 5476 + pos: -71.5,4.5 + parent: 2 + - uid: 2940 components: - type: Transform - pos: -46.5,-7.5 - parent: 89 -- proto: BedsheetBlue - entities: - - uid: 3199 + pos: -72.5,4.5 + parent: 2 + - uid: 2941 components: - type: Transform - pos: 21.5,23.5 - parent: 89 -- proto: BedsheetCaptain - entities: - - uid: 6948 + pos: -73.5,4.5 + parent: 2 + - uid: 2942 components: - type: Transform - pos: 46.5,13.5 - parent: 89 -- proto: BedsheetCE - entities: - - uid: 6896 + pos: -74.5,4.5 + parent: 2 + - uid: 2943 components: - type: Transform - pos: -101.5,10.5 - parent: 89 -- proto: BedsheetCentcom - entities: - - uid: 10182 + pos: -75.5,4.5 + parent: 2 + - uid: 2944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,31.5 - parent: 89 -- proto: BedsheetClown - entities: - - uid: 4191 + pos: -76.5,4.5 + parent: 2 + - uid: 2945 components: - type: Transform - pos: -34.5,-3.5 - parent: 89 -- proto: BedsheetCMO - entities: - - uid: 19914 + pos: -77.5,4.5 + parent: 2 + - uid: 2946 components: - type: Transform - pos: 25.5,43.5 - parent: 89 -- proto: BedsheetCosmos - entities: - - uid: 10181 + pos: -78.5,4.5 + parent: 2 + - uid: 2947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,27.5 - parent: 89 -- proto: BedsheetGreen - entities: - - uid: 16180 + pos: -62.5,4.5 + parent: 2 + - uid: 2948 components: - type: Transform - pos: 5.5,37.5 - parent: 89 - - uid: 16186 + pos: -63.5,4.5 + parent: 2 + - uid: 2949 components: - type: Transform - pos: 7.5,37.5 - parent: 89 - - uid: 16277 + pos: -61.5,4.5 + parent: 2 + - uid: 2950 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,37.5 - parent: 89 - - uid: 16278 + pos: -60.5,4.5 + parent: 2 + - uid: 2951 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,37.5 - parent: 89 -- proto: BedsheetHOP - entities: - - uid: 17743 + pos: -59.5,4.5 + parent: 2 + - uid: 2952 components: - type: Transform - pos: 41.5,14.5 - parent: 89 -- proto: BedsheetHOS - entities: - - uid: 6077 + pos: -58.5,4.5 + parent: 2 + - uid: 2953 components: - type: Transform - pos: 31.5,-3.5 - parent: 89 -- proto: BedsheetIan - entities: - - uid: 4255 + pos: -57.5,4.5 + parent: 2 + - uid: 2954 components: - type: Transform - pos: -35.5,-6.5 - parent: 89 - - uid: 10196 + pos: -56.5,4.5 + parent: 2 + - uid: 2955 components: - type: Transform - pos: -32.5,29.5 - parent: 89 -- proto: BedsheetMedical - entities: - - uid: 16764 + pos: -55.5,4.5 + parent: 2 + - uid: 2956 components: - type: Transform - pos: 3.5,15.5 - parent: 89 - - uid: 16765 + pos: -54.5,4.5 + parent: 2 + - uid: 2957 components: - type: Transform - pos: 3.5,17.5 - parent: 89 - - uid: 16770 + pos: -53.5,4.5 + parent: 2 + - uid: 2958 components: - type: Transform - pos: 3.5,19.5 - parent: 89 - - uid: 16772 + pos: -55.5,3.5 + parent: 2 + - uid: 2959 components: - type: Transform - pos: 3.5,21.5 - parent: 89 -- proto: BedsheetMime - entities: - - uid: 4190 + pos: -55.5,2.5 + parent: 2 + - uid: 2960 components: - type: Transform - pos: -34.5,-9.5 - parent: 89 -- proto: BedsheetOrange - entities: - - uid: 6027 + pos: -55.5,1.5 + parent: 2 + - uid: 2961 components: - type: Transform - pos: 28.5,-14.5 - parent: 89 - - uid: 6028 + pos: -55.5,0.5 + parent: 2 + - uid: 2962 components: - type: Transform - pos: 25.5,-14.5 - parent: 89 - - uid: 6030 + pos: -55.5,-0.5 + parent: 2 + - uid: 2963 components: - type: Transform - pos: 22.5,-14.5 - parent: 89 -- proto: BedsheetPurple - entities: - - uid: 17598 + pos: -55.5,-1.5 + parent: 2 + - uid: 2964 components: - type: Transform - pos: 21.5,17.5 - parent: 89 -- proto: BedsheetQM - entities: - - uid: 2983 + pos: -55.5,-2.5 + parent: 2 + - uid: 2965 components: - type: Transform - pos: -70.5,-17.5 - parent: 89 -- proto: BedsheetRD - entities: - - uid: 7049 + pos: -56.5,-0.5 + parent: 2 + - uid: 2966 components: - type: Transform - pos: 1.5,-31.5 - parent: 89 -- proto: BedsheetSpawner - entities: - - uid: 5739 + pos: -57.5,-0.5 + parent: 2 + - uid: 2967 components: - type: Transform - pos: -31.5,-2.5 - parent: 89 - - uid: 6017 + pos: -58.5,-0.5 + parent: 2 + - uid: 2968 components: - type: Transform - pos: -56.5,7.5 - parent: 89 - - uid: 10013 + pos: -59.5,-0.5 + parent: 2 + - uid: 2969 components: - type: Transform - pos: -50.5,41.5 - parent: 89 - - uid: 10014 + pos: -60.5,-0.5 + parent: 2 + - uid: 2970 components: - type: Transform - pos: -50.5,45.5 - parent: 89 - - uid: 23147 + pos: -61.5,-0.5 + parent: 2 + - uid: 2971 components: - type: Transform - pos: -35.5,6.5 - parent: 22565 - - uid: 23148 + pos: -62.5,-0.5 + parent: 2 + - uid: 2972 components: - type: Transform - pos: -35.5,8.5 - parent: 22565 - - uid: 23149 + pos: -63.5,-0.5 + parent: 2 + - uid: 2973 components: - type: Transform - pos: -35.5,12.5 - parent: 22565 - - uid: 23150 + pos: -64.5,-0.5 + parent: 2 + - uid: 2974 components: - type: Transform - pos: 11.5,6.5 - parent: 22565 - - uid: 23151 + pos: -65.5,-0.5 + parent: 2 + - uid: 2975 components: - type: Transform - pos: 11.5,8.5 - parent: 22565 - - uid: 23152 + pos: -66.5,-0.5 + parent: 2 + - uid: 2976 components: - type: Transform - pos: 11.5,12.5 - parent: 22565 -- proto: BedsheetSyndie - entities: - - uid: 6038 + pos: -67.5,-0.5 + parent: 2 + - uid: 2977 components: - type: Transform - pos: 19.5,-14.5 - parent: 89 -- proto: BedsheetUSA - entities: - - uid: 10183 + pos: -68.5,-0.5 + parent: 2 + - uid: 2978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 89 -- proto: BedsheetWhite - entities: - - uid: 10364 + pos: -69.5,-0.5 + parent: 2 + - uid: 2979 components: - type: Transform - pos: -19.5,32.5 - parent: 89 - - uid: 10365 + pos: -70.5,-0.5 + parent: 2 + - uid: 2980 components: - type: Transform - pos: -20.5,32.5 - parent: 89 -- proto: BedsheetWiz - entities: - - uid: 10209 + pos: -70.5,-1.5 + parent: 2 + - uid: 2981 components: - type: Transform - pos: -32.5,25.5 - parent: 89 -- proto: BedsheetYellow - entities: - - uid: 10219 + pos: -70.5,0.5 + parent: 2 + - uid: 2982 components: - type: Transform - pos: -25.5,23.5 - parent: 89 -- proto: BigBox - entities: - - uid: 20805 + pos: -70.5,1.5 + parent: 2 + - uid: 2983 components: - type: Transform - pos: -27.541355,52.552795 - parent: 89 -- proto: BiomassReclaimer - entities: - - uid: 8510 + pos: -70.5,2.5 + parent: 2 + - uid: 2984 components: - type: Transform - pos: 6.5,18.5 - parent: 89 -- proto: BlastDoor - entities: - - uid: 246 + pos: -59.5,-1.5 + parent: 2 + - uid: 2985 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-42.5 - parent: 89 - - type: DeviceLinkSink - links: - - 5413 - - uid: 254 + pos: -66.5,-1.5 + parent: 2 + - uid: 2986 components: - type: Transform - pos: -6.5,-46.5 - parent: 89 - - type: DeviceLinkSink - links: - - 1284 - - uid: 259 + pos: -66.5,0.5 + parent: 2 + - uid: 2987 components: - type: Transform - pos: -120.5,-6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 260 + pos: -59.5,0.5 + parent: 2 + - uid: 2988 components: - type: Transform - pos: 1.5,-46.5 - parent: 89 - - type: DeviceLinkSink - links: - - 1283 - - uid: 2200 + pos: -41.5,3.5 + parent: 2 + - uid: 2989 components: - type: Transform - pos: 30.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9413 - - uid: 2295 + pos: -42.5,3.5 + parent: 2 + - uid: 2990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-24.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2627 - - 2626 - - uid: 4720 + pos: -43.5,3.5 + parent: 2 + - uid: 2991 components: - type: Transform - pos: -63.5,-21.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 9420 - - uid: 4735 + pos: -44.5,3.5 + parent: 2 + - uid: 2992 components: - type: Transform - pos: -56.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4799 - - uid: 4736 + pos: -45.5,3.5 + parent: 2 + - uid: 2993 components: - type: Transform - pos: -55.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4799 - - uid: 4794 + pos: -46.5,3.5 + parent: 2 + - uid: 2994 components: - type: Transform - pos: -63.5,-18.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 9420 - - uid: 4795 + pos: -47.5,3.5 + parent: 2 + - uid: 2995 components: - type: Transform - pos: -59.5,-18.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 4798 - - uid: 4797 + pos: -40.5,2.5 + parent: 2 + - uid: 2996 components: - type: Transform - pos: -59.5,-21.5 - parent: 89 - - type: Door - state: Open - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 4798 - - uid: 4856 + pos: -40.5,1.5 + parent: 2 + - uid: 2997 components: - type: Transform - pos: -54.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4799 - - uid: 5430 + pos: -40.5,0.5 + parent: 2 + - uid: 2998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-42.5 - parent: 89 - - type: DeviceLinkSink - links: - - 16804 - - uid: 6306 + pos: -40.5,-0.5 + parent: 2 + - uid: 2999 components: - type: Transform - pos: 25.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7159 - - uid: 8821 + pos: -41.5,-0.5 + parent: 2 + - uid: 3000 components: - type: Transform - pos: -120.5,-8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 8822 + pos: -42.5,-0.5 + parent: 2 + - uid: 3001 components: - type: Transform - pos: -120.5,-7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 8825 + pos: -43.5,-0.5 + parent: 2 + - uid: 3002 components: - type: Transform - pos: -120.5,-5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 8816 - - uid: 23153 + pos: -44.5,-0.5 + parent: 2 + - uid: 3003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23154 + pos: -44.5,0.5 + parent: 2 + - uid: 3004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23155 + pos: -46.5,-5.5 + parent: 2 + - uid: 3005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23156 + pos: -46.5,-6.5 + parent: 2 + - uid: 3006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24817 - - uid: 23157 + pos: -47.5,-5.5 + parent: 2 + - uid: 3007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 - - uid: 23158 + pos: -47.5,-4.5 + parent: 2 + - uid: 3008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 - - uid: 23159 + pos: -47.5,-3.5 + parent: 2 + - uid: 3009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 - - uid: 23160 + pos: -47.5,-2.5 + parent: 2 + - uid: 3010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,13.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24816 -- proto: BlastDoorOpen - entities: - - uid: 8506 + pos: -47.5,-1.5 + parent: 2 + - uid: 3011 components: - type: Transform - pos: -127.5,-0.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8507 + pos: -47.5,-0.5 + parent: 2 + - uid: 3012 components: - type: Transform - pos: -126.5,-0.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8508 + pos: -48.5,-1.5 + parent: 2 + - uid: 3013 components: - type: Transform - pos: -125.5,-0.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8538 + pos: -49.5,-1.5 + parent: 2 + - uid: 3014 components: - type: Transform - pos: -127.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8539 + pos: -50.5,-1.5 + parent: 2 + - uid: 3015 components: - type: Transform - pos: -126.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 8540 + pos: -51.5,-1.5 + parent: 2 + - uid: 3016 components: - type: Transform - pos: -125.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10560 - - uid: 23161 + pos: -51.5,-0.5 + parent: 2 + - uid: 3017 components: - type: Transform - pos: -8.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24814 - - uid: 23162 + pos: -51.5,0.5 + parent: 2 + - uid: 3018 components: - type: Transform - pos: -15.5,10.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24813 - - uid: 23163 + pos: -51.5,-7.5 + parent: 2 + - uid: 3019 components: - type: Transform - pos: -8.5,10.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24814 - - uid: 23164 + pos: -51.5,-6.5 + parent: 2 + - uid: 3020 components: - type: Transform - pos: -15.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24813 - - uid: 23165 + pos: -51.5,-5.5 + parent: 2 + - uid: 3021 components: - type: Transform - pos: -8.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24811 - - uid: 23166 + pos: -51.5,-4.5 + parent: 2 + - uid: 3022 components: - type: Transform - pos: -15.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24812 - - uid: 23167 + pos: -50.5,-4.5 + parent: 2 + - uid: 3023 components: - type: Transform - pos: -15.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24812 - - uid: 23168 + pos: -49.5,-4.5 + parent: 2 + - uid: 3024 components: - type: Transform - pos: -8.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24811 -- proto: BlockGameArcade - entities: - - uid: 14907 + pos: -48.5,-4.5 + parent: 2 + - uid: 3025 components: - type: Transform - pos: -9.5,-34.5 - parent: 89 - - uid: 19483 + pos: -47.5,-6.5 + parent: 2 + - uid: 3026 components: - type: Transform - pos: -58.5,26.5 - parent: 89 -- proto: Bloodpack - entities: - - uid: 20819 + pos: -47.5,-7.5 + parent: 2 + - uid: 3027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.3417411,15.598124 - parent: 89 -- proto: BodyBag_Container - entities: - - uid: 25845 + pos: -46.5,-2.5 + parent: 2 + - uid: 3028 components: - type: Transform - pos: 10.528219,9.687132 - parent: 89 -- proto: BookAtmosAirAlarms - entities: - - uid: 16448 + pos: -45.5,-2.5 + parent: 2 + - uid: 3029 components: - type: Transform - pos: -113.607376,-4.7557926 - parent: 89 -- proto: BookAtmosDistro - entities: - - uid: 16450 + pos: -34.5,17.5 + parent: 2 + - uid: 3030 components: - type: Transform - pos: -113.326126,-4.8182926 - parent: 89 -- proto: BookAtmosVentsMore - entities: - - uid: 16447 + pos: -35.5,17.5 + parent: 2 + - uid: 3031 components: - type: Transform - pos: -113.61827,-4.3182926 - parent: 89 -- proto: BookAtmosWaste - entities: - - uid: 16449 + pos: -36.5,17.5 + parent: 2 + - uid: 3032 components: - type: Transform - pos: -113.290146,-4.3339176 - parent: 89 -- proto: BookBase - entities: - - uid: 15887 + pos: -37.5,17.5 + parent: 2 + - uid: 3033 components: - - type: MetaData - name: Анатомия для чайников - type: Transform - pos: 9.534124,9.582435 - parent: 89 -- proto: BookDetective - entities: - - uid: 12845 + pos: -38.5,17.5 + parent: 2 + - uid: 3034 components: - type: Transform - pos: 18.493877,8.552801 - parent: 89 - - uid: 15458 + pos: -39.5,17.5 + parent: 2 + - uid: 3035 components: - type: Transform - pos: -36.530155,28.398226 - parent: 89 -- proto: BookEscalationSecurity - entities: - - uid: 8358 + pos: -40.5,17.5 + parent: 2 + - uid: 3036 components: - type: Transform - pos: -19.895487,5.6136208 - parent: 89 -- proto: BookRandom - entities: - - uid: 6104 + pos: -41.5,17.5 + parent: 2 + - uid: 3037 components: - type: Transform - pos: -52.542038,8.649527 - parent: 89 - - uid: 6105 + pos: -42.5,17.5 + parent: 2 + - uid: 3038 components: - type: Transform - pos: -52.526413,7.8995266 - parent: 89 - - uid: 6106 + pos: -43.5,17.5 + parent: 2 + - uid: 3039 components: - type: Transform - pos: -56.714577,10.714533 - parent: 89 - - uid: 6107 + pos: -44.5,17.5 + parent: 2 + - uid: 3040 components: - type: Transform - pos: -56.32395,10.714533 - parent: 89 - - uid: 15497 + pos: -45.5,17.5 + parent: 2 + - uid: 3041 components: - type: Transform - pos: -91.549774,5.6631217 - parent: 89 -- proto: BooksBag - entities: - - uid: 2569 + pos: -46.5,17.5 + parent: 2 + - uid: 3042 components: - type: Transform - pos: -55.479183,7.443512 - parent: 89 -- proto: Bookshelf - entities: - - uid: 6031 + pos: -47.5,17.5 + parent: 2 + - uid: 3043 components: - type: Transform - pos: -56.5,10.5 - parent: 89 - - uid: 10377 + pos: -48.5,17.5 + parent: 2 + - uid: 3044 components: - type: Transform - pos: -19.5,26.5 - parent: 89 - - uid: 18358 + pos: -48.5,16.5 + parent: 2 + - uid: 3045 components: - type: Transform - pos: 58.5,-27.5 - parent: 89 -- proto: BookshelfFilled - entities: - - uid: 630 + pos: -48.5,15.5 + parent: 2 + - uid: 3046 components: - type: Transform - pos: -47.5,11.5 - parent: 89 - - uid: 723 + pos: -48.5,14.5 + parent: 2 + - uid: 3047 components: - type: Transform - pos: -50.5,11.5 - parent: 89 - - uid: 725 + pos: -48.5,18.5 + parent: 2 + - uid: 3048 components: - type: Transform - pos: -47.5,9.5 - parent: 89 - - uid: 7147 + pos: -49.5,17.5 + parent: 2 + - uid: 3049 components: - type: Transform - pos: -47.5,8.5 - parent: 89 - - uid: 17074 + pos: -50.5,17.5 + parent: 2 + - uid: 3050 components: - type: Transform - pos: 58.5,-28.5 - parent: 89 - - uid: 17092 + pos: -51.5,17.5 + parent: 2 + - uid: 3051 components: - type: Transform - pos: 58.5,-25.5 - parent: 89 - - uid: 17095 + pos: -21.5,2.5 + parent: 2 + - uid: 3052 components: - type: Transform - pos: 58.5,-26.5 - parent: 89 - - uid: 17935 + pos: -22.5,2.5 + parent: 2 + - uid: 3053 components: - type: Transform - pos: 58.5,-30.5 - parent: 89 - - uid: 18329 + pos: -23.5,2.5 + parent: 2 + - uid: 3054 components: - type: Transform - pos: 58.5,-29.5 - parent: 89 - - uid: 19903 + pos: -24.5,2.5 + parent: 2 + - uid: 3055 components: - type: Transform - pos: 21.5,21.5 - parent: 89 -- proto: BoozeDispenser - entities: - - uid: 57 + pos: -25.5,2.5 + parent: 2 + - uid: 3056 components: - type: Transform - pos: -25.5,-0.5 - parent: 89 - - uid: 7744 + pos: -25.5,3.5 + parent: 2 + - uid: 3057 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,45.5 - parent: 89 - - uid: 7752 + pos: -25.5,4.5 + parent: 2 + - uid: 3058 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,45.5 - parent: 89 -- proto: BoozeDispenserEmpty - entities: - - uid: 3093 + pos: -25.5,5.5 + parent: 2 + - uid: 3059 components: - type: Transform - pos: -104.5,0.5 - parent: 89 -- proto: BorgCharger - entities: - - uid: 14226 + pos: -25.5,6.5 + parent: 2 + - uid: 3060 components: - type: Transform - pos: -20.5,-20.5 - parent: 89 -- proto: BowImprovised - entities: - - uid: 25644 + pos: -25.5,7.5 + parent: 2 + - uid: 3061 components: - type: Transform - pos: -30.526886,-0.51148224 - parent: 22565 -- proto: BoxBeaker - entities: - - uid: 10415 + pos: -25.5,8.5 + parent: 2 + - uid: 3062 components: - type: Transform - parent: 9799 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17610 + pos: -24.5,8.5 + parent: 2 + - uid: 3063 components: - type: Transform - pos: 9.0787525,20.674503 - parent: 89 - - uid: 21552 + pos: -23.5,8.5 + parent: 2 + - uid: 3064 components: - type: Transform - pos: -1.4276239,5.5878706 - parent: 89 -- proto: BoxBeanbag - entities: - - uid: 3046 + pos: -26.5,4.5 + parent: 2 + - uid: 3065 components: - type: Transform - pos: 42.70259,-9.505611 - parent: 89 - - uid: 4033 + pos: -26.5,8.5 + parent: 2 + - uid: 3066 components: - type: Transform - pos: 42.69796,-9.325056 - parent: 89 - - uid: 4222 + pos: -62.5,-4.5 + parent: 2 + - uid: 3067 components: - type: Transform - pos: -28.49978,-2.404027 - parent: 89 - - uid: 7092 + pos: 35.5,-9.5 + parent: 2 + - uid: 3068 components: - type: Transform - pos: 42.70259,-9.445426 - parent: 89 - - uid: 22643 + pos: 36.5,-9.5 + parent: 2 + - uid: 3069 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxBodyBag - entities: - - uid: 8710 + pos: 38.5,-9.5 + parent: 2 + - uid: 3070 components: - type: Transform - pos: 10.347248,5.518587 - parent: 89 - - uid: 10398 + pos: 39.5,-9.5 + parent: 2 + - uid: 3071 components: - type: Transform - pos: 10.847248,5.690462 - parent: 89 - - uid: 12669 + pos: 38.5,-11.5 + parent: 2 + - uid: 3072 components: - type: Transform - pos: 8.513576,18.630486 - parent: 89 - - uid: 14062 + pos: 38.5,-12.5 + parent: 2 + - uid: 3073 components: - type: Transform - pos: 22.512924,11.537976 - parent: 89 - - uid: 16043 + pos: 58.5,-1.5 + parent: 2 + - uid: 3074 components: - type: Transform - pos: 17.453873,23.65856 - parent: 89 - - uid: 23169 + pos: 36.5,-9.5 + parent: 2 + - uid: 3075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.358505,7.6814413 - parent: 22565 -- proto: BoxCardboard - entities: - - uid: 127 + pos: 38.5,-5.5 + parent: 2 + - uid: 3076 components: - type: Transform - pos: -44.606075,-17.155802 - parent: 89 - - uid: 128 + pos: 47.5,-5.5 + parent: 2 + - uid: 3077 components: - type: Transform - pos: -44.418575,-17.390177 - parent: 89 -- proto: BoxCartridgeCap - entities: - - uid: 10586 + pos: 36.5,-5.5 + parent: 2 + - uid: 3078 components: - type: Transform - pos: -34.500256,33.591328 - parent: 89 -- proto: BoxDonkSoftBox - entities: - - uid: 21792 + pos: 36.5,-4.5 + parent: 2 + - uid: 3079 components: - type: Transform - pos: 51.50729,-18.488604 - parent: 89 -- proto: BoxFolderBlack - entities: - - uid: 2259 + pos: 36.5,-3.5 + parent: 2 + - uid: 3080 components: - type: Transform - pos: -103.35947,21.741177 - parent: 89 - - uid: 2636 + pos: 36.5,-2.5 + parent: 2 + - uid: 3081 components: - - type: MetaData - name: папка с грифом секретности - type: Transform - pos: 47.511196,-5.408685 - parent: 89 - - uid: 15280 + pos: 36.5,-1.5 + parent: 2 + - uid: 3082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.848522,16.598705 - parent: 89 -- proto: BoxFolderBlue - entities: - - uid: 2019 + pos: 35.5,-1.5 + parent: 2 + - uid: 3083 components: - type: Transform - pos: 44.351154,4.7485046 - parent: 89 - - uid: 14520 + pos: 34.5,-1.5 + parent: 2 + - uid: 3084 components: - type: Transform - pos: -74.33679,-1.436574 - parent: 89 -- proto: BoxFolderClipboard - entities: - - uid: 25803 + pos: 33.5,-1.5 + parent: 2 + - uid: 3085 components: - type: Transform - pos: -76.62917,-2.4311993 - parent: 89 -- proto: BoxFolderGreen - entities: - - uid: 1360 + pos: 32.5,-1.5 + parent: 2 + - uid: 3086 components: - type: Transform - pos: -75.51346,-5.5499306 - parent: 89 -- proto: BoxFolderGrey - entities: - - uid: 2646 + pos: 31.5,-1.5 + parent: 2 + - uid: 3087 components: - type: Transform - pos: -103.23447,21.506802 - parent: 89 - - uid: 7368 + pos: 35.5,-7.5 + parent: 2 + - uid: 3088 components: - type: Transform - pos: -25.305325,9.497218 - parent: 89 -- proto: BoxFolderRed - entities: - - uid: 10434 + pos: 34.5,-7.5 + parent: 2 + - uid: 3089 components: - type: Transform - pos: 20.624432,6.395512 - parent: 89 - - uid: 14518 + pos: 33.5,-7.5 + parent: 2 + - uid: 3090 components: - type: Transform - pos: -78.613785,-1.420949 - parent: 89 -- proto: BoxFolderWhite - entities: - - uid: 3285 + pos: 32.5,-7.5 + parent: 2 + - uid: 3091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.542812,17.657099 - parent: 89 - - uid: 10962 + pos: 31.5,-7.5 + parent: 2 + - uid: 3092 components: - type: Transform - pos: 25.482803,29.552721 - parent: 89 - - uid: 10985 + pos: 30.5,-7.5 + parent: 2 + - uid: 3093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.550704,32.649754 - parent: 89 - - uid: 11223 + pos: 34.5,-8.5 + parent: 2 + - uid: 3094 components: - type: Transform - pos: 24.664398,13.078537 - parent: 89 - - uid: 15420 + pos: 34.5,-9.5 + parent: 2 + - uid: 3095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.503829,32.63413 - parent: 89 - - uid: 15533 + pos: 34.5,-12.5 + parent: 2 + - uid: 3096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.550704,32.63413 - parent: 89 - - uid: 15758 + pos: 34.5,-13.5 + parent: 2 + - uid: 3097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.477533,12.397864 - parent: 89 - - uid: 15895 + pos: 33.5,-9.5 + parent: 2 + - uid: 3098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.354307,5.5851474 - parent: 89 - - uid: 16868 + pos: 32.5,-9.5 + parent: 2 + - uid: 3099 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.890072,36.674587 - parent: 89 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 16879 - - 16880 - - 16882 - - uid: 17600 + pos: 31.5,-9.5 + parent: 2 + - uid: 3100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.574062,17.672724 - parent: 89 -- proto: BoxFolderYellow - entities: - - uid: 2075 + pos: 30.5,-9.5 + parent: 2 + - uid: 3101 components: - type: Transform - pos: -101.9492,-2.3743103 - parent: 89 - - uid: 7369 + pos: 29.5,-9.5 + parent: 2 + - uid: 3102 components: - type: Transform - pos: -25.69595,9.497218 - parent: 89 -- proto: BoxHandcuff - entities: - - uid: 23170 + pos: 28.5,-9.5 + parent: 2 + - uid: 3103 components: - type: Transform - pos: -11.794121,7.5770445 - parent: 22565 -- proto: BoxLatexGloves - entities: - - uid: 3904 + pos: 27.5,-9.5 + parent: 2 + - uid: 3104 components: - type: Transform - pos: 12.33461,-1.4402026 - parent: 89 - - uid: 15364 + pos: 27.5,-8.5 + parent: 2 + - uid: 3105 components: - type: Transform - pos: 5.604253,33.525932 - parent: 89 - - uid: 15440 + pos: 27.5,-7.5 + parent: 2 + - uid: 3106 components: - type: Transform - pos: 33.688656,20.37791 - parent: 89 -- proto: BoxLethalshot - entities: - - uid: 17111 + pos: 27.5,-6.5 + parent: 2 + - uid: 3107 components: - type: Transform - pos: 40.39422,-9.286816 - parent: 89 - - uid: 17117 + pos: 27.5,-5.5 + parent: 2 + - uid: 3108 components: - type: Transform - pos: 41.08172,-9.614941 - parent: 89 - - uid: 17119 + pos: 27.5,-4.5 + parent: 2 + - uid: 3109 components: - type: Transform - pos: 40.39422,-9.599316 - parent: 89 - - uid: 17125 + pos: 27.5,-3.5 + parent: 2 + - uid: 3110 components: - type: Transform - pos: 41.066093,-9.302441 - parent: 89 - - uid: 22644 + pos: 27.5,-2.5 + parent: 2 + - uid: 3111 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxLightMixed - entities: - - uid: 9510 + pos: 27.5,-1.5 + parent: 2 + - uid: 3112 components: - type: Transform - pos: -36.14434,9.678255 - parent: 89 - - uid: 9513 + pos: 26.5,-2.5 + parent: 2 + - uid: 3113 components: - type: Transform - pos: -36.14434,9.428255 - parent: 89 -- proto: BoxMagazinePistolHighCapacityPractice - entities: - - uid: 22459 + pos: 25.5,-2.5 + parent: 2 + - uid: 3114 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRiflePractice - entities: - - uid: 533 + pos: 24.5,-2.5 + parent: 2 + - uid: 3115 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMagazineRifleRubber - entities: - - uid: 530 + pos: 23.5,-2.5 + parent: 2 + - uid: 3116 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 713 + pos: 23.5,-3.5 + parent: 2 + - uid: 3117 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxMousetrap - entities: - - uid: 9509 + pos: 23.5,-4.5 + parent: 2 + - uid: 3118 components: - type: Transform - pos: -36.61309,9.647005 - parent: 89 -- proto: BoxMouthSwab - entities: - - uid: 15360 + pos: 23.5,-5.5 + parent: 2 + - uid: 3119 components: - type: Transform - pos: 5.317952,30.635622 - parent: 89 - - uid: 15407 + pos: 28.5,-10.5 + parent: 2 + - uid: 3120 components: - type: Transform - pos: 5.7715664,30.619997 - parent: 89 -- proto: BoxMRE - entities: - - uid: 23171 + pos: 28.5,-11.5 + parent: 2 + - uid: 3121 components: - type: Transform - pos: 11.59539,5.523186 - parent: 22565 - - uid: 23172 + pos: 28.5,-12.5 + parent: 2 + - uid: 3122 components: - type: Transform - pos: 11.611015,9.488903 - parent: 22565 - - uid: 23173 + pos: 28.5,-13.5 + parent: 2 + - uid: 3123 components: - type: Transform - pos: 11.548515,11.535778 - parent: 22565 - - uid: 23174 + pos: 31.5,-10.5 + parent: 2 + - uid: 3124 components: - type: Transform - pos: -35.65962,9.535778 - parent: 22565 - - uid: 23175 + pos: 31.5,-11.5 + parent: 2 + - uid: 3125 components: - type: Transform - pos: -35.65962,11.535778 - parent: 22565 - - uid: 23176 + pos: 31.5,-12.5 + parent: 2 + - uid: 3126 components: - type: Transform - pos: -35.62837,5.4420276 - parent: 22565 -- proto: BoxNitrileGloves - entities: - - uid: 19253 + pos: 31.5,-13.5 + parent: 2 + - uid: 3127 components: - type: Transform - pos: -10.460536,17.614714 - parent: 89 -- proto: BoxShotgunPractice - entities: - - uid: 22457 + pos: 10.5,-6.5 + parent: 2 + - uid: 3128 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22461 + pos: 10.5,-3.5 + parent: 2 + - uid: 3129 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BoxSterileMask - entities: - - uid: 3873 + pos: 10.5,-2.5 + parent: 2 + - uid: 3130 components: - type: Transform - pos: 12.70961,-1.4714526 - parent: 89 - - uid: 15108 + pos: 10.5,-1.5 + parent: 2 + - uid: 3131 components: - type: Transform - pos: -12.570879,13.642749 - parent: 89 - - uid: 15363 + pos: 11.5,-1.5 + parent: 2 + - uid: 3132 components: - type: Transform - pos: 5.479253,33.229057 - parent: 89 - - uid: 15408 + pos: 12.5,-1.5 + parent: 2 + - uid: 3133 components: - type: Transform - pos: 5.5059414,30.260622 - parent: 89 - - uid: 17026 + pos: 13.5,-1.5 + parent: 2 + - uid: 3134 components: - type: Transform - pos: 33.262108,20.3741 - parent: 89 -- proto: BrbSign - entities: - - uid: 2225 + pos: 14.5,-1.5 + parent: 2 + - uid: 3135 components: - type: Transform - pos: 41.54235,9.564385 - parent: 89 - - uid: 3261 + pos: 14.5,-2.5 + parent: 2 + - uid: 3136 components: - type: Transform - pos: 40.5,14.5 - parent: 89 -- proto: BriefcaseBrown - entities: - - uid: 15197 + pos: 15.5,-2.5 + parent: 2 + - uid: 3137 components: - type: Transform - pos: 20.488884,12.603939 - parent: 89 -- proto: BrigTimer - entities: - - uid: 7134 + pos: 18.5,0.5 + parent: 2 + - uid: 3138 components: - type: Transform - pos: 20.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3682: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 7137 + pos: 18.5,-0.5 + parent: 2 + - uid: 3139 components: - type: Transform - pos: 29.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3694: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 7363 + pos: 18.5,1.5 + parent: 2 + - uid: 3140 components: - type: Transform - pos: 26.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3693: - - Start: Close - - Timer: AutoClose - - Timer: Open - - uid: 7364 + pos: 11.5,-6.5 + parent: 2 + - uid: 3141 components: - type: Transform - pos: 23.5,-11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 3686: - - Start: Close - - Timer: AutoClose - - Timer: Open -- proto: BrokenBottle - entities: - - uid: 10318 + pos: 12.5,-6.5 + parent: 2 + - uid: 3142 components: - type: Transform - pos: -39.725395,28.237118 - parent: 89 -- proto: BruteAutoInjector - entities: - - uid: 22645 + pos: 13.5,-6.5 + parent: 2 + - uid: 3143 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Brutepack - entities: - - uid: 5474 + pos: 13.5,-7.5 + parent: 2 + - uid: 3144 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 7113 + pos: 13.5,-8.5 + parent: 2 + - uid: 3145 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 10609 + pos: 13.5,-9.5 + parent: 2 + - uid: 3146 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21635 + pos: 14.5,-9.5 + parent: 2 + - uid: 3147 components: - type: Transform - parent: 21634 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23178 + pos: 15.5,-9.5 + parent: 2 + - uid: 3148 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23186 + pos: 16.5,-9.5 + parent: 2 + - uid: 3149 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23193 + pos: 17.5,-9.5 + parent: 2 + - uid: 3150 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23200 + pos: 18.5,-9.5 + parent: 2 + - uid: 3151 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23208 + pos: 19.5,-9.5 + parent: 2 + - uid: 3152 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23215 + pos: 20.5,-9.5 + parent: 2 + - uid: 3153 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: BrutepackAdvanced1 - entities: - - uid: 15059 + pos: 21.5,-9.5 + parent: 2 + - uid: 3154 components: - type: Transform - pos: -10.536647,19.594604 - parent: 89 -- proto: Bucket - entities: - - uid: 328 + pos: 22.5,-9.5 + parent: 2 + - uid: 3155 components: - type: Transform - pos: -8.91569,-1.1623886 - parent: 89 - - uid: 8065 + pos: 23.5,-9.5 + parent: 2 + - uid: 3156 components: - type: Transform - pos: -6.1851063,35.372414 - parent: 89 - - uid: 17712 + pos: 24.5,-9.5 + parent: 2 + - uid: 3157 components: - type: Transform - pos: 28.68244,25.837227 - parent: 89 - - uid: 21786 + pos: 25.5,-9.5 + parent: 2 + - uid: 3158 components: - type: Transform - pos: 35.65477,-19.538193 - parent: 89 - - uid: 21836 + pos: 25.5,-10.5 + parent: 2 + - uid: 3159 components: - type: Transform - pos: 42.445152,-28.240416 - parent: 89 - - uid: 21877 + pos: 25.5,-11.5 + parent: 2 + - uid: 3160 components: - type: Transform - pos: 53.45202,-26.642078 - parent: 89 - - uid: 21880 + pos: 25.5,-12.5 + parent: 2 + - uid: 3161 components: - type: Transform - pos: 53.436394,-23.626453 - parent: 89 - - uid: 21881 + pos: 25.5,-13.5 + parent: 2 + - uid: 3162 components: - type: Transform - pos: 53.405144,-19.517078 - parent: 89 -- proto: BulletFoam - entities: - - uid: 21353 + pos: 22.5,-10.5 + parent: 2 + - uid: 3163 components: - type: Transform - pos: 48.772915,-21.37861 - parent: 89 - - uid: 21816 + pos: 22.5,-11.5 + parent: 2 + - uid: 3164 components: - type: Transform - pos: 48.897915,-21.47236 - parent: 89 - - uid: 21819 + pos: 22.5,-12.5 + parent: 2 + - uid: 3165 components: - type: Transform - pos: 49.63229,-21.394236 - parent: 89 - - uid: 21822 + pos: 22.5,-13.5 + parent: 2 + - uid: 3166 components: - type: Transform - pos: 49.741665,-21.50361 - parent: 89 -- proto: BurnAutoInjector - entities: - - uid: 22646 + pos: 19.5,-10.5 + parent: 2 + - uid: 3167 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CableApcExtension - entities: - - uid: 1 + pos: 19.5,-11.5 + parent: 2 + - uid: 3168 components: - type: Transform - pos: 1.5,-41.5 - parent: 89 - - uid: 3 + pos: 19.5,-12.5 + parent: 2 + - uid: 3169 components: - type: Transform - pos: -126.5,-8.5 - parent: 89 - - uid: 7 + pos: 19.5,-13.5 + parent: 2 + - uid: 3170 components: - type: Transform - pos: -3.5,-41.5 - parent: 89 - - uid: 10 + pos: 12.5,-9.5 + parent: 2 + - uid: 3171 components: - type: Transform - pos: 2.5,-30.5 - parent: 89 - - uid: 11 + pos: 11.5,-9.5 + parent: 2 + - uid: 3172 components: - type: Transform - pos: 2.5,-27.5 - parent: 89 - - uid: 12 + pos: 10.5,-9.5 + parent: 2 + - uid: 3173 components: - type: Transform - pos: 2.5,-28.5 - parent: 89 - - uid: 18 + pos: 9.5,-9.5 + parent: 2 + - uid: 3174 components: - type: Transform - pos: -34.5,-6.5 - parent: 89 - - uid: 169 + pos: 8.5,-9.5 + parent: 2 + - uid: 3175 components: - type: Transform - pos: -86.5,-9.5 - parent: 89 - - uid: 272 + pos: 8.5,-10.5 + parent: 2 + - uid: 3176 components: - type: Transform - pos: -5.5,-31.5 - parent: 89 - - uid: 273 + pos: 8.5,-11.5 + parent: 2 + - uid: 3177 components: - type: Transform - pos: -5.5,-32.5 - parent: 89 - - uid: 274 + pos: 9.5,-6.5 + parent: 2 + - uid: 3178 components: - type: Transform - pos: -10.5,-18.5 - parent: 89 - - uid: 276 + pos: 8.5,-6.5 + parent: 2 + - uid: 3179 components: - type: Transform - pos: -10.5,-17.5 - parent: 89 - - uid: 290 + pos: 7.5,-6.5 + parent: 2 + - uid: 3180 components: - type: Transform - pos: -5.5,-28.5 - parent: 89 - - uid: 291 + pos: 6.5,-6.5 + parent: 2 + - uid: 3181 components: - type: Transform - pos: -8.5,-31.5 - parent: 89 - - uid: 292 + pos: 5.5,-6.5 + parent: 2 + - uid: 3182 components: - type: Transform - pos: -8.5,-28.5 - parent: 89 - - uid: 293 + pos: 4.5,-6.5 + parent: 2 + - uid: 3183 components: - type: Transform - pos: -8.5,-29.5 - parent: 89 - - uid: 294 + pos: 4.5,-7.5 + parent: 2 + - uid: 3184 components: - type: Transform - pos: -7.5,-24.5 - parent: 89 - - uid: 298 + pos: 4.5,-8.5 + parent: 2 + - uid: 3185 components: - type: Transform - pos: -1.5,-40.5 - parent: 89 - - uid: 302 + pos: 3.5,-8.5 + parent: 2 + - uid: 3186 components: - type: Transform - pos: -1.5,-38.5 - parent: 89 - - uid: 303 + pos: 3.5,-9.5 + parent: 2 + - uid: 3187 components: - type: Transform - pos: -0.5,-24.5 - parent: 89 - - uid: 340 + pos: 3.5,-10.5 + parent: 2 + - uid: 3188 components: - type: Transform - pos: 50.5,4.5 - parent: 89 - - uid: 342 + pos: 3.5,-11.5 + parent: 2 + - uid: 3189 components: - type: Transform - pos: 51.5,5.5 - parent: 89 - - uid: 343 + pos: 3.5,-12.5 + parent: 2 + - uid: 3190 components: - type: Transform - pos: 50.5,5.5 - parent: 89 - - uid: 375 + pos: 4.5,-12.5 + parent: 2 + - uid: 3191 components: - type: Transform - pos: -81.5,37.5 - parent: 89 - - uid: 516 + pos: 5.5,-5.5 + parent: 2 + - uid: 3192 components: - type: Transform - pos: 51.5,-25.5 - parent: 89 - - uid: 673 + pos: 5.5,-4.5 + parent: 2 + - uid: 3193 components: - type: Transform - pos: 47.5,14.5 - parent: 89 - - uid: 802 + pos: 5.5,-3.5 + parent: 2 + - uid: 3194 components: - type: Transform - pos: 49.5,12.5 - parent: 89 - - uid: 803 + pos: 5.5,-2.5 + parent: 2 + - uid: 3195 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 804 + pos: 5.5,-1.5 + parent: 2 + - uid: 3196 components: - type: Transform - pos: 47.5,12.5 - parent: 89 - - uid: 805 + pos: 2.5,-10.5 + parent: 2 + - uid: 3197 components: - type: Transform - pos: 47.5,13.5 - parent: 89 - - uid: 806 + pos: -62.5,18.5 + parent: 2 + - uid: 3198 components: - type: Transform - pos: 47.5,11.5 - parent: 89 - - uid: 807 + pos: -62.5,19.5 + parent: 2 + - uid: 3199 components: - type: Transform - pos: 47.5,10.5 - parent: 89 - - uid: 809 + pos: -62.5,20.5 + parent: 2 + - uid: 3200 components: - type: Transform - pos: 50.5,13.5 - parent: 89 - - uid: 810 + pos: -62.5,21.5 + parent: 2 + - uid: 3201 components: - type: Transform - pos: 49.5,13.5 - parent: 89 - - uid: 830 + pos: -61.5,21.5 + parent: 2 + - uid: 3202 components: - type: Transform - pos: 1.5,-24.5 - parent: 89 - - uid: 853 + pos: -60.5,21.5 + parent: 2 + - uid: 3203 components: - type: Transform - pos: 61.5,10.5 - parent: 89 - - uid: 977 + pos: -40.5,-1.5 + parent: 2 + - uid: 3204 components: - type: Transform - pos: 60.5,11.5 - parent: 89 - - uid: 996 + pos: -40.5,-2.5 + parent: 2 + - uid: 3205 components: - type: Transform - pos: 49.5,4.5 - parent: 89 - - uid: 997 + pos: -40.5,-3.5 + parent: 2 + - uid: 3206 components: - type: Transform - pos: 48.5,4.5 - parent: 89 - - uid: 998 + pos: -40.5,-4.5 + parent: 2 + - uid: 3207 components: - type: Transform - pos: 52.5,4.5 - parent: 89 - - uid: 999 + pos: -40.5,-5.5 + parent: 2 + - uid: 3208 components: - type: Transform - pos: 52.5,3.5 - parent: 89 - - uid: 1000 + pos: -40.5,-6.5 + parent: 2 + - uid: 3209 components: - type: Transform - pos: 52.5,2.5 - parent: 89 - - uid: 1001 + pos: -40.5,-7.5 + parent: 2 + - uid: 3210 components: - type: Transform - pos: 52.5,1.5 - parent: 89 - - uid: 1002 + pos: -40.5,-8.5 + parent: 2 + - uid: 3211 components: - type: Transform - pos: 52.5,0.5 - parent: 89 - - uid: 1006 + pos: -40.5,-9.5 + parent: 2 + - uid: 3212 components: - type: Transform - pos: 52.5,5.5 - parent: 89 - - uid: 1007 + pos: -40.5,-10.5 + parent: 2 + - uid: 3213 components: - type: Transform - pos: 52.5,6.5 - parent: 89 - - uid: 1008 + pos: -40.5,-11.5 + parent: 2 + - uid: 3214 components: - type: Transform - pos: 52.5,7.5 - parent: 89 - - uid: 1009 + pos: -40.5,-12.5 + parent: 2 + - uid: 3215 components: - type: Transform - pos: 52.5,8.5 - parent: 89 - - uid: 1010 + pos: -39.5,-12.5 + parent: 2 + - uid: 3216 components: - type: Transform - pos: 52.5,9.5 - parent: 89 - - uid: 1011 + pos: -38.5,-12.5 + parent: 2 + - uid: 3217 components: - type: Transform - pos: 52.5,10.5 - parent: 89 - - uid: 1012 + pos: -37.5,-12.5 + parent: 2 + - uid: 3218 components: - type: Transform - pos: 52.5,11.5 - parent: 89 - - uid: 1013 + pos: -36.5,-12.5 + parent: 2 + - uid: 3219 components: - type: Transform - pos: 53.5,11.5 - parent: 89 - - uid: 1014 + pos: -35.5,-12.5 + parent: 2 + - uid: 3220 components: - type: Transform - pos: 53.5,12.5 - parent: 89 - - uid: 1015 + pos: -34.5,-12.5 + parent: 2 + - uid: 3221 components: - type: Transform - pos: 53.5,13.5 - parent: 89 - - uid: 1016 + pos: -33.5,-12.5 + parent: 2 + - uid: 3222 components: - type: Transform - pos: 53.5,14.5 - parent: 89 - - uid: 1017 + pos: -32.5,-12.5 + parent: 2 + - uid: 3223 components: - type: Transform - pos: 54.5,11.5 - parent: 89 - - uid: 1018 + pos: -31.5,-12.5 + parent: 2 + - uid: 3224 components: - type: Transform - pos: 55.5,11.5 - parent: 89 - - uid: 1019 + pos: -30.5,-12.5 + parent: 2 + - uid: 3225 components: - type: Transform - pos: 56.5,11.5 - parent: 89 - - uid: 1020 + pos: -29.5,-12.5 + parent: 2 + - uid: 3226 components: - type: Transform - pos: 57.5,11.5 - parent: 89 - - uid: 1021 + pos: -22.5,-8.5 + parent: 2 + - uid: 3227 components: - type: Transform - pos: 58.5,11.5 - parent: 89 - - uid: 1022 + pos: -22.5,-9.5 + parent: 2 + - uid: 3228 components: - type: Transform - pos: 59.5,11.5 - parent: 89 - - uid: 1023 + pos: -22.5,-10.5 + parent: 2 + - uid: 3229 components: - type: Transform - pos: 58.5,12.5 - parent: 89 - - uid: 1024 + pos: -22.5,-11.5 + parent: 2 + - uid: 3230 components: - type: Transform - pos: 58.5,13.5 - parent: 89 - - uid: 1025 + pos: -20.5,-11.5 + parent: 2 + - uid: 3231 components: - type: Transform - pos: 58.5,14.5 - parent: 89 - - uid: 1026 + pos: -20.5,-10.5 + parent: 2 + - uid: 3232 components: - type: Transform - pos: 54.5,14.5 - parent: 89 - - uid: 1027 + pos: -20.5,-9.5 + parent: 2 + - uid: 3233 components: - type: Transform - pos: 55.5,14.5 - parent: 89 - - uid: 1028 + pos: -20.5,-8.5 + parent: 2 + - uid: 3234 components: - type: Transform - pos: 56.5,14.5 - parent: 89 - - uid: 1029 + pos: 1.5,-3.5 + parent: 2 + - uid: 3235 components: - type: Transform - pos: 57.5,14.5 - parent: 89 - - uid: 1030 + pos: 0.5,-3.5 + parent: 2 + - uid: 3236 components: - type: Transform - pos: 61.5,11.5 - parent: 89 - - uid: 1031 + pos: -0.5,-3.5 + parent: 2 + - uid: 3237 components: - type: Transform - pos: 62.5,11.5 - parent: 89 - - uid: 1032 + pos: -1.5,-12.5 + parent: 2 + - uid: 3238 components: - type: Transform - pos: 63.5,11.5 - parent: 89 - - uid: 1033 + pos: -1.5,-13.5 + parent: 2 + - uid: 3239 components: - type: Transform - pos: 64.5,11.5 - parent: 89 - - uid: 1034 + pos: -1.5,-14.5 + parent: 2 + - uid: 3240 components: - type: Transform - pos: 65.5,11.5 - parent: 89 - - uid: 1035 + pos: -1.5,-15.5 + parent: 2 + - uid: 3241 components: - type: Transform - pos: 64.5,12.5 - parent: 89 - - uid: 1036 + pos: -1.5,-16.5 + parent: 2 + - uid: 3242 components: - type: Transform - pos: 61.5,9.5 - parent: 89 - - uid: 1037 + pos: -0.5,-15.5 + parent: 2 + - uid: 3243 components: - type: Transform - pos: 61.5,8.5 - parent: 89 - - uid: 1038 + pos: -2.5,-12.5 + parent: 2 + - uid: 3244 components: - type: Transform - pos: 61.5,7.5 - parent: 89 - - uid: 1039 + pos: -3.5,-12.5 + parent: 2 + - uid: 3245 components: - type: Transform - pos: 61.5,6.5 - parent: 89 - - uid: 1040 + pos: -1.5,2.5 + parent: 2 + - uid: 3246 components: - type: Transform - pos: 61.5,5.5 - parent: 89 - - uid: 1041 + pos: -0.5,2.5 + parent: 2 + - uid: 3247 components: - type: Transform - pos: 61.5,4.5 - parent: 89 - - uid: 1042 + pos: 0.5,2.5 + parent: 2 + - uid: 3248 components: - type: Transform - pos: 61.5,3.5 - parent: 89 - - uid: 1043 + pos: 1.5,2.5 + parent: 2 + - uid: 3249 components: - type: Transform - pos: 61.5,2.5 - parent: 89 - - uid: 1044 + pos: 2.5,2.5 + parent: 2 + - uid: 3250 components: - type: Transform - pos: 61.5,1.5 - parent: 89 - - uid: 1045 + pos: 3.5,2.5 + parent: 2 + - uid: 3251 components: - type: Transform - pos: 61.5,0.5 - parent: 89 - - uid: 1049 + pos: 4.5,2.5 + parent: 2 + - uid: 3252 components: - type: Transform - pos: 58.5,1.5 - parent: 89 - - uid: 1066 + pos: 5.5,2.5 + parent: 2 + - uid: 3253 components: - type: Transform - pos: 53.5,8.5 - parent: 89 - - uid: 1074 + pos: 6.5,2.5 + parent: 2 + - uid: 3254 components: - type: Transform - pos: 54.5,8.5 - parent: 89 - - uid: 1075 + pos: 7.5,2.5 + parent: 2 + - uid: 3255 components: - type: Transform - pos: 55.5,8.5 - parent: 89 - - uid: 1076 + pos: 8.5,2.5 + parent: 2 + - uid: 3256 components: - type: Transform - pos: 56.5,8.5 - parent: 89 - - uid: 1077 + pos: 9.5,2.5 + parent: 2 + - uid: 3257 components: - type: Transform - pos: 57.5,8.5 - parent: 89 - - uid: 1078 + pos: 10.5,2.5 + parent: 2 + - uid: 3258 components: - type: Transform - pos: 58.5,8.5 - parent: 89 - - uid: 1079 + pos: 11.5,2.5 + parent: 2 + - uid: 3259 components: - type: Transform - pos: 59.5,8.5 - parent: 89 - - uid: 1080 + pos: 12.5,2.5 + parent: 2 + - uid: 3260 components: - type: Transform - pos: 60.5,8.5 - parent: 89 - - uid: 1082 + pos: 13.5,2.5 + parent: 2 + - uid: 3261 components: - type: Transform - pos: 60.5,0.5 - parent: 89 - - uid: 1083 + pos: 14.5,2.5 + parent: 2 + - uid: 3262 components: - type: Transform - pos: 59.5,0.5 - parent: 89 - - uid: 1084 + pos: 15.5,2.5 + parent: 2 + - uid: 3263 components: - type: Transform - pos: 58.5,0.5 - parent: 89 - - uid: 1085 + pos: 16.5,2.5 + parent: 2 + - uid: 3264 components: - type: Transform - pos: 57.5,0.5 - parent: 89 - - uid: 1086 + pos: 17.5,2.5 + parent: 2 + - uid: 3265 components: - type: Transform - pos: 56.5,0.5 - parent: 89 - - uid: 1087 + pos: 18.5,2.5 + parent: 2 + - uid: 3266 components: - type: Transform - pos: 55.5,0.5 - parent: 89 - - uid: 1088 + pos: 19.5,2.5 + parent: 2 + - uid: 3267 components: - type: Transform - pos: 54.5,0.5 - parent: 89 - - uid: 1089 + pos: 20.5,2.5 + parent: 2 + - uid: 3268 components: - type: Transform - pos: 53.5,0.5 - parent: 89 - - uid: 1090 + pos: 21.5,2.5 + parent: 2 + - uid: 3269 components: - type: Transform - pos: 58.5,2.5 - parent: 89 - - uid: 1091 + pos: 22.5,2.5 + parent: 2 + - uid: 3270 components: - type: Transform - pos: 58.5,3.5 - parent: 89 - - uid: 1092 + pos: 23.5,2.5 + parent: 2 + - uid: 3271 components: - type: Transform - pos: 58.5,4.5 - parent: 89 - - uid: 1093 + pos: 24.5,2.5 + parent: 2 + - uid: 3272 components: - type: Transform - pos: 57.5,4.5 - parent: 89 - - uid: 1094 + pos: 25.5,2.5 + parent: 2 + - uid: 3273 components: - type: Transform - pos: 56.5,4.5 - parent: 89 - - uid: 1095 + pos: 26.5,2.5 + parent: 2 + - uid: 3274 components: - type: Transform - pos: 55.5,4.5 - parent: 89 - - uid: 1096 + pos: 27.5,2.5 + parent: 2 + - uid: 3275 components: - type: Transform - pos: 55.5,5.5 - parent: 89 - - uid: 1098 + pos: 28.5,2.5 + parent: 2 + - uid: 3276 components: - type: Transform - pos: 55.5,3.5 - parent: 89 - - uid: 1099 + pos: 29.5,2.5 + parent: 2 + - uid: 3277 components: - type: Transform - pos: 58.5,5.5 - parent: 89 - - uid: 1100 + pos: 30.5,2.5 + parent: 2 + - uid: 3278 components: - type: Transform - pos: 58.5,6.5 - parent: 89 - - uid: 1101 + pos: 31.5,2.5 + parent: 2 + - uid: 3279 components: - type: Transform - pos: 58.5,7.5 - parent: 89 - - uid: 1102 + pos: -2.5,2.5 + parent: 2 + - uid: 3280 components: - type: Transform - pos: 51.5,7.5 - parent: 89 - - uid: 1103 + pos: -27.5,16.5 + parent: 2 + - uid: 3281 components: - type: Transform - pos: 50.5,7.5 - parent: 89 - - uid: 1104 + pos: -14.5,21.5 + parent: 2 + - uid: 3282 components: - type: Transform - pos: 48.5,7.5 - parent: 89 - - uid: 1105 + pos: 11.5,-3.5 + parent: 2 + - uid: 3283 components: - type: Transform - pos: 49.5,7.5 - parent: 89 - - uid: 1106 + pos: -12.5,-37.5 + parent: 2 + - uid: 3284 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - uid: 1107 + pos: -12.5,-36.5 + parent: 2 + - uid: 3285 components: - type: Transform - pos: 49.5,1.5 - parent: 89 - - uid: 1108 + pos: -12.5,-35.5 + parent: 2 + - uid: 3286 components: - type: Transform - pos: 50.5,1.5 - parent: 89 - - uid: 1109 + pos: -11.5,-35.5 + parent: 2 + - uid: 3287 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 1169 + pos: -10.5,-35.5 + parent: 2 + - uid: 3288 components: - type: Transform - pos: 2.5,-24.5 - parent: 89 - - uid: 1172 + pos: -9.5,-35.5 + parent: 2 + - uid: 3289 components: - type: Transform - pos: 2.5,-25.5 - parent: 89 - - uid: 1198 + pos: 11.5,-4.5 + parent: 2 + - uid: 3290 components: - type: Transform - pos: 2.5,-20.5 - parent: 89 - - uid: 1204 + pos: 11.5,-5.5 + parent: 2 + - uid: 3291 components: - type: Transform - pos: -9.5,-16.5 - parent: 89 - - uid: 1205 + pos: -63.5,-7.5 + parent: 2 + - uid: 3292 components: - type: Transform - pos: -8.5,-16.5 - parent: 89 - - uid: 1206 + pos: 18.5,26.5 + parent: 2 + - uid: 3293 components: - type: Transform - pos: -7.5,-16.5 - parent: 89 - - uid: 1208 + pos: 23.5,24.5 + parent: 2 + - uid: 3294 components: - type: Transform - pos: -1.5,-39.5 - parent: 89 - - uid: 1209 + pos: 19.5,30.5 + parent: 2 + - uid: 3295 components: - type: Transform - pos: -1.5,-36.5 - parent: 89 - - uid: 1211 + pos: 25.5,30.5 + parent: 2 + - uid: 3296 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 1212 + pos: 26.5,30.5 + parent: 2 + - uid: 3297 components: - type: Transform - pos: -2.5,-30.5 - parent: 89 - - uid: 1213 + pos: 27.5,30.5 + parent: 2 + - uid: 3298 components: - type: Transform - pos: -3.5,-30.5 - parent: 89 - - uid: 1214 + pos: 23.5,30.5 + parent: 2 + - uid: 3299 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 1236 + pos: 22.5,30.5 + parent: 2 + - uid: 3300 components: - type: Transform - pos: -14.5,-16.5 - parent: 89 - - uid: 1237 + pos: 21.5,30.5 + parent: 2 + - uid: 3301 components: - type: Transform - pos: 14.5,29.5 - parent: 89 - - uid: 1238 + pos: 23.5,31.5 + parent: 2 + - uid: 3302 components: - type: Transform - pos: -5.5,-16.5 - parent: 89 - - uid: 1239 + pos: 20.5,30.5 + parent: 2 + - uid: 3303 components: - type: Transform - pos: -2.5,-35.5 - parent: 89 - - uid: 1240 + pos: -31.5,38.5 + parent: 2 + - uid: 3304 components: - type: Transform - pos: -6.5,-16.5 - parent: 89 - - uid: 1241 + pos: -31.5,37.5 + parent: 2 + - uid: 3305 components: - type: Transform - pos: -19.5,10.5 - parent: 89 - - uid: 1242 + pos: -31.5,36.5 + parent: 2 + - uid: 3306 components: - type: Transform - pos: -83.5,30.5 - parent: 89 - - uid: 1365 + pos: -31.5,35.5 + parent: 2 + - uid: 3307 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - uid: 1366 + pos: -30.5,35.5 + parent: 2 + - uid: 3308 components: - type: Transform - pos: 2.5,-21.5 - parent: 89 - - uid: 1385 + pos: -29.5,35.5 + parent: 2 + - uid: 3309 components: - type: Transform - pos: -5.5,-22.5 - parent: 89 - - uid: 1388 + pos: -28.5,35.5 + parent: 2 + - uid: 3310 components: - type: Transform - pos: -9.5,-22.5 - parent: 89 - - uid: 1391 + pos: -28.5,36.5 + parent: 2 + - uid: 3311 components: - type: Transform - pos: -15.5,-22.5 - parent: 89 - - uid: 1393 + pos: -28.5,37.5 + parent: 2 + - uid: 3312 components: - type: Transform - pos: -16.5,-22.5 - parent: 89 - - uid: 1395 + pos: 10.5,32.5 + parent: 2 + - uid: 3313 components: - type: Transform - pos: -19.5,-22.5 - parent: 89 - - uid: 1398 + pos: 12.5,32.5 + parent: 2 + - uid: 3314 components: - type: Transform - pos: -20.5,-20.5 - parent: 89 - - uid: 1407 + pos: 11.5,32.5 + parent: 2 + - uid: 3315 components: - type: Transform - pos: -22.5,-17.5 - parent: 89 - - uid: 1409 + pos: 13.5,29.5 + parent: 2 + - uid: 3316 components: - type: Transform - pos: -22.5,-16.5 - parent: 89 - - uid: 1412 + pos: -30.5,37.5 + parent: 2 + - uid: 3317 components: - type: Transform - pos: -20.5,-16.5 - parent: 89 - - uid: 1421 + pos: 13.5,35.5 + parent: 2 + - uid: 3318 components: - type: Transform - pos: -16.5,-18.5 - parent: 89 - - uid: 1433 + pos: 13.5,36.5 + parent: 2 + - uid: 3319 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 1437 + pos: 12.5,29.5 + parent: 2 + - uid: 3320 components: - type: Transform - pos: -16.5,-17.5 - parent: 89 - - uid: 1646 + pos: 8.5,30.5 + parent: 2 + - uid: 3321 components: - type: Transform - pos: -4.5,-35.5 - parent: 89 - - uid: 1647 + pos: 13.5,30.5 + parent: 2 + - uid: 3322 components: - type: Transform - pos: -3.5,-35.5 - parent: 89 - - uid: 1653 + pos: 22.5,31.5 + parent: 2 + - uid: 3323 components: - type: Transform - pos: -2.5,-35.5 - parent: 89 - - uid: 1659 + pos: 22.5,25.5 + parent: 2 + - uid: 3324 components: - type: Transform - pos: -1.5,-24.5 - parent: 89 - - uid: 1686 + pos: 6.5,36.5 + parent: 2 + - uid: 3325 components: - type: Transform - pos: -6.5,-35.5 - parent: 89 - - uid: 1690 + pos: 10.5,33.5 + parent: 2 + - uid: 3326 components: - type: Transform - pos: -11.5,-16.5 - parent: 89 - - uid: 1692 + pos: -29.5,37.5 + parent: 2 + - uid: 3327 components: - type: Transform - pos: -12.5,-16.5 - parent: 89 - - uid: 1693 + pos: 19.5,26.5 + parent: 2 + - uid: 3328 components: - type: Transform - pos: -13.5,-16.5 - parent: 89 - - uid: 1694 + pos: 20.5,26.5 + parent: 2 + - uid: 3329 components: - type: Transform - pos: -5.5,-30.5 - parent: 89 - - uid: 1695 + pos: 11.5,29.5 + parent: 2 + - uid: 3330 components: - type: Transform - pos: -6.5,-30.5 - parent: 89 - - uid: 1696 + pos: 13.5,33.5 + parent: 2 + - uid: 3331 components: - type: Transform - pos: -7.5,-30.5 - parent: 89 - - uid: 1697 + pos: 6.5,35.5 + parent: 2 + - uid: 3332 components: - type: Transform - pos: -8.5,-30.5 - parent: 89 - - uid: 1698 + pos: 9.5,32.5 + parent: 2 + - uid: 3333 components: - type: Transform - pos: -9.5,-30.5 - parent: 89 - - uid: 1699 + pos: 10.5,37.5 + parent: 2 + - uid: 3334 components: - type: Transform - pos: -4.5,-30.5 - parent: 89 - - uid: 1700 + pos: 13.5,34.5 + parent: 2 + - uid: 3335 components: - type: Transform - pos: -1.5,-31.5 - parent: 89 - - uid: 1701 + pos: 6.5,34.5 + parent: 2 + - uid: 3336 components: - type: Transform - pos: -1.5,-30.5 - parent: 89 - - uid: 1702 + pos: 26.5,21.5 + parent: 2 + - uid: 3337 components: - type: Transform - pos: -1.5,-35.5 - parent: 89 - - uid: 1703 + pos: 26.5,20.5 + parent: 2 + - uid: 3338 components: - type: Transform - pos: -1.5,-33.5 - parent: 89 - - uid: 1704 + pos: 26.5,19.5 + parent: 2 + - uid: 3339 components: - type: Transform - pos: -5.5,-41.5 - parent: 89 - - uid: 1710 + pos: 26.5,18.5 + parent: 2 + - uid: 3340 components: - type: Transform - pos: 0.5,-24.5 - parent: 89 - - uid: 1716 + pos: 27.5,18.5 + parent: 2 + - uid: 3341 components: - type: Transform - pos: -82.5,30.5 - parent: 89 - - uid: 1733 + pos: 27.5,17.5 + parent: 2 + - uid: 3342 components: - type: Transform - pos: -7.5,-35.5 - parent: 89 - - uid: 1735 + pos: 27.5,16.5 + parent: 2 + - uid: 3343 components: - type: Transform - pos: -5.5,-35.5 - parent: 89 - - uid: 1762 + pos: 27.5,15.5 + parent: 2 + - uid: 3344 components: - type: Transform - pos: -4.5,-18.5 - parent: 89 - - uid: 1763 + pos: 27.5,14.5 + parent: 2 + - uid: 3345 components: - type: Transform - pos: -4.5,-17.5 - parent: 89 - - uid: 1764 + pos: 26.5,13.5 + parent: 2 + - uid: 3346 components: - type: Transform - pos: -4.5,-16.5 - parent: 89 - - uid: 1765 + pos: 28.5,18.5 + parent: 2 + - uid: 3347 components: - type: Transform - pos: -4.5,-15.5 - parent: 89 - - uid: 1766 + pos: 29.5,18.5 + parent: 2 + - uid: 3348 components: - type: Transform - pos: -4.5,-14.5 - parent: 89 - - uid: 1767 + pos: 30.5,18.5 + parent: 2 + - uid: 3349 components: - type: Transform - pos: -5.5,-14.5 - parent: 89 - - uid: 1768 + pos: 31.5,18.5 + parent: 2 + - uid: 3350 components: - type: Transform - pos: -6.5,-14.5 - parent: 89 - - uid: 1769 + pos: 31.5,19.5 + parent: 2 + - uid: 3351 components: - type: Transform - pos: -7.5,-14.5 - parent: 89 - - uid: 1770 + pos: 32.5,19.5 + parent: 2 + - uid: 3352 components: - type: Transform - pos: -7.5,-14.5 - parent: 89 - - uid: 1771 + pos: 33.5,19.5 + parent: 2 + - uid: 3353 components: - type: Transform - pos: -8.5,-14.5 - parent: 89 - - uid: 1772 + pos: 26.5,12.5 + parent: 2 + - uid: 3354 components: - type: Transform - pos: -9.5,-14.5 - parent: 89 - - uid: 1773 + pos: 26.5,14.5 + parent: 2 + - uid: 3355 components: - type: Transform - pos: -10.5,-14.5 - parent: 89 - - uid: 1774 + pos: 25.5,14.5 + parent: 2 + - uid: 3356 components: - type: Transform - pos: -11.5,-14.5 - parent: 89 - - uid: 1775 + pos: 24.5,14.5 + parent: 2 + - uid: 3357 components: - type: Transform - pos: -12.5,-14.5 - parent: 89 - - uid: 1776 + pos: 23.5,14.5 + parent: 2 + - uid: 3358 components: - type: Transform - pos: -13.5,-14.5 - parent: 89 - - uid: 1777 + pos: 22.5,14.5 + parent: 2 + - uid: 3359 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1778 + pos: 21.5,14.5 + parent: 2 + - uid: 3360 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1780 + pos: 20.5,14.5 + parent: 2 + - uid: 3361 components: - type: Transform - pos: 2.5,-31.5 - parent: 89 - - uid: 1781 + pos: 21.5,17.5 + parent: 2 + - uid: 3362 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1782 + pos: 21.5,18.5 + parent: 2 + - uid: 3363 components: - type: Transform - pos: -14.5,-14.5 - parent: 89 - - uid: 1783 + pos: 20.5,17.5 + parent: 2 + - uid: 3364 components: - type: Transform - pos: -13.5,-14.5 - parent: 89 - - uid: 1784 + pos: 19.5,17.5 + parent: 2 + - uid: 3365 + components: + - type: Transform + pos: 18.5,17.5 + parent: 2 + - uid: 3366 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1785 + pos: 17.5,17.5 + parent: 2 + - uid: 3367 components: - type: Transform - pos: -10.5,-18.5 - parent: 89 - - uid: 1786 + pos: 17.5,18.5 + parent: 2 + - uid: 3368 components: - type: Transform - pos: 4.5,-29.5 - parent: 89 - - uid: 1787 + pos: 24.5,15.5 + parent: 2 + - uid: 3369 components: - type: Transform - pos: 2.5,-23.5 - parent: 89 - - uid: 1788 + pos: 24.5,16.5 + parent: 2 + - uid: 3370 components: - type: Transform - pos: 2.5,-22.5 - parent: 89 - - uid: 1789 + pos: 24.5,17.5 + parent: 2 + - uid: 3371 components: - type: Transform - pos: 2.5,-19.5 - parent: 89 - - uid: 1790 + pos: 24.5,18.5 + parent: 2 + - uid: 3372 components: - type: Transform - pos: 2.5,-41.5 - parent: 89 - - uid: 1791 + pos: 24.5,19.5 + parent: 2 + - uid: 3373 components: - type: Transform - pos: -10.5,-22.5 - parent: 89 - - uid: 1793 + pos: 24.5,20.5 + parent: 2 + - uid: 3374 components: - type: Transform - pos: -18.5,-16.5 - parent: 89 - - uid: 1795 + pos: 24.5,28.5 + parent: 2 + - uid: 3375 components: - type: Transform - pos: -17.5,-16.5 - parent: 89 - - uid: 1796 + pos: 24.5,27.5 + parent: 2 + - uid: 3376 components: - type: Transform - pos: 0.5,23.5 - parent: 89 - - uid: 1800 + pos: 24.5,26.5 + parent: 2 + - uid: 3377 components: - type: Transform - pos: -15.5,-19.5 - parent: 89 - - uid: 1801 + pos: 25.5,27.5 + parent: 2 + - uid: 3378 components: - type: Transform - pos: -16.5,-16.5 - parent: 89 - - uid: 1802 + pos: 10.5,40.5 + parent: 2 + - uid: 3379 components: - type: Transform - pos: 5.5,-29.5 - parent: 89 - - uid: 1803 + pos: 23.5,27.5 + parent: 2 + - uid: 3380 components: - type: Transform - pos: 2.5,-29.5 - parent: 89 - - uid: 1804 + pos: 10.5,38.5 + parent: 2 + - uid: 3381 components: - type: Transform - pos: 3.5,-29.5 - parent: 89 - - uid: 1805 + pos: 10.5,39.5 + parent: 2 + - uid: 3382 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 1806 + pos: 7.5,32.5 + parent: 2 + - uid: 3383 components: - type: Transform - pos: -7.5,-21.5 - parent: 89 - - uid: 1808 + pos: 8.5,32.5 + parent: 2 + - uid: 3384 components: - type: Transform - pos: -6.5,-22.5 - parent: 89 - - uid: 1809 + pos: 6.5,32.5 + parent: 2 + - uid: 3385 components: - type: Transform - pos: -14.5,-22.5 - parent: 89 - - uid: 1811 + pos: 6.5,33.5 + parent: 2 + - uid: 3386 components: - type: Transform - pos: -8.5,-22.5 - parent: 89 - - uid: 1812 + pos: -7.5,15.5 + parent: 2 + - uid: 3387 components: - type: Transform - pos: -13.5,-22.5 - parent: 89 - - uid: 1814 + pos: -7.5,13.5 + parent: 2 + - uid: 3388 components: - type: Transform - pos: -18.5,-22.5 - parent: 89 - - uid: 1815 + pos: -7.5,12.5 + parent: 2 + - uid: 3389 components: - type: Transform - pos: -22.5,-20.5 - parent: 89 - - uid: 1816 + pos: -8.5,15.5 + parent: 2 + - uid: 3390 components: - type: Transform - pos: -19.5,-21.5 - parent: 89 - - uid: 1817 + pos: -9.5,15.5 + parent: 2 + - uid: 3391 components: - type: Transform - pos: -22.5,-19.5 - parent: 89 - - uid: 1818 + pos: -10.5,15.5 + parent: 2 + - uid: 3392 components: - type: Transform - pos: -21.5,-20.5 - parent: 89 - - uid: 1819 + pos: -10.5,14.5 + parent: 2 + - uid: 3393 components: - type: Transform - pos: -22.5,-18.5 - parent: 89 - - uid: 1820 + pos: -10.5,13.5 + parent: 2 + - uid: 3394 components: - type: Transform - pos: -21.5,-16.5 - parent: 89 - - uid: 1822 + pos: -10.5,12.5 + parent: 2 + - uid: 3395 components: - type: Transform - pos: -19.5,-16.5 - parent: 89 - - uid: 1823 + pos: -10.5,11.5 + parent: 2 + - uid: 3396 components: - type: Transform - pos: -19.5,-20.5 - parent: 89 - - uid: 1824 + pos: -6.5,12.5 + parent: 2 + - uid: 3397 components: - type: Transform - pos: 2.5,-26.5 - parent: 89 - - uid: 1827 + pos: -5.5,12.5 + parent: 2 + - uid: 3398 components: - type: Transform - pos: -1.5,-34.5 - parent: 89 - - uid: 1828 + pos: -4.5,12.5 + parent: 2 + - uid: 3399 components: - type: Transform - pos: -4.5,-41.5 - parent: 89 - - uid: 1832 + pos: -3.5,12.5 + parent: 2 + - uid: 3400 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 - - uid: 1833 + pos: -2.5,12.5 + parent: 2 + - uid: 3401 components: - type: Transform - pos: -7.5,-41.5 - parent: 89 - - uid: 1838 + pos: -1.5,12.5 + parent: 2 + - uid: 3402 components: - type: Transform - pos: -0.5,-41.5 - parent: 89 - - uid: 1841 + pos: -0.5,12.5 + parent: 2 + - uid: 3403 components: - type: Transform - pos: 0.5,-26.5 - parent: 89 - - uid: 1845 + pos: 0.5,12.5 + parent: 2 + - uid: 3404 components: - type: Transform - pos: 3.5,-41.5 - parent: 89 - - uid: 1846 + pos: 1.5,12.5 + parent: 2 + - uid: 3405 components: - type: Transform - pos: -14.5,-19.5 - parent: 89 - - uid: 1847 + pos: 2.5,12.5 + parent: 2 + - uid: 3406 components: - type: Transform - pos: -1.5,-22.5 - parent: 89 - - uid: 1848 + pos: 2.5,13.5 + parent: 2 + - uid: 3407 components: - type: Transform - pos: -1.5,-21.5 - parent: 89 - - uid: 1849 + pos: 3.5,13.5 + parent: 2 + - uid: 3408 components: - type: Transform - pos: -1.5,-20.5 - parent: 89 - - uid: 1850 + pos: 4.5,13.5 + parent: 2 + - uid: 3409 components: - type: Transform - pos: -1.5,-19.5 - parent: 89 - - uid: 1874 + pos: 5.5,13.5 + parent: 2 + - uid: 3410 components: - type: Transform - pos: -1.5,-41.5 - parent: 89 - - uid: 1878 + pos: 6.5,13.5 + parent: 2 + - uid: 3411 components: - type: Transform - pos: -13.5,-19.5 - parent: 89 - - uid: 1880 + pos: 7.5,13.5 + parent: 2 + - uid: 3412 components: - type: Transform - pos: -16.5,-19.5 - parent: 89 - - uid: 1884 + pos: 8.5,13.5 + parent: 2 + - uid: 3413 components: - type: Transform - pos: -2.5,-41.5 - parent: 89 - - uid: 1897 + pos: 19.5,14.5 + parent: 2 + - uid: 3414 components: - type: Transform - pos: -1.5,-37.5 - parent: 89 - - uid: 1902 + pos: 18.5,14.5 + parent: 2 + - uid: 3415 components: - type: Transform - pos: -11.5,-19.5 - parent: 89 - - uid: 1908 + pos: 17.5,14.5 + parent: 2 + - uid: 3416 components: - type: Transform - pos: -12.5,-22.5 - parent: 89 - - uid: 1923 + pos: 16.5,14.5 + parent: 2 + - uid: 3417 components: - type: Transform - pos: -8.5,-32.5 - parent: 89 - - uid: 1942 + pos: 15.5,14.5 + parent: 2 + - uid: 3418 components: - type: Transform - pos: 39.5,5.5 - parent: 89 - - uid: 1947 + pos: 15.5,13.5 + parent: 2 + - uid: 3419 components: - type: Transform - pos: 44.5,11.5 - parent: 89 - - uid: 1948 + pos: 14.5,13.5 + parent: 2 + - uid: 3420 components: - type: Transform - pos: 44.5,12.5 - parent: 89 - - uid: 1950 + pos: 7.5,14.5 + parent: 2 + - uid: 3421 components: - type: Transform - pos: 43.5,12.5 - parent: 89 - - uid: 1951 + pos: 7.5,15.5 + parent: 2 + - uid: 3422 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 1953 + pos: 7.5,16.5 + parent: 2 + - uid: 3423 components: - type: Transform - pos: 41.5,12.5 - parent: 89 - - uid: 1957 + pos: 7.5,17.5 + parent: 2 + - uid: 3424 components: - type: Transform - pos: 44.5,10.5 - parent: 89 - - uid: 1958 + pos: 6.5,17.5 + parent: 2 + - uid: 3425 components: - type: Transform - pos: 44.5,9.5 - parent: 89 - - uid: 1959 + pos: 9.5,13.5 + parent: 2 + - uid: 3426 components: - type: Transform - pos: 44.5,8.5 - parent: 89 - - uid: 1960 + pos: 9.5,14.5 + parent: 2 + - uid: 3427 components: - type: Transform - pos: 44.5,7.5 - parent: 89 - - uid: 1961 + pos: 9.5,15.5 + parent: 2 + - uid: 3428 components: - type: Transform - pos: 44.5,6.5 - parent: 89 - - uid: 1962 + pos: 9.5,16.5 + parent: 2 + - uid: 3429 components: - type: Transform - pos: 44.5,5.5 - parent: 89 - - uid: 1963 + pos: 9.5,17.5 + parent: 2 + - uid: 3430 components: - type: Transform - pos: 44.5,4.5 - parent: 89 - - uid: 1967 + pos: 10.5,17.5 + parent: 2 + - uid: 3431 components: - type: Transform - pos: 43.5,6.5 - parent: 89 - - uid: 1968 + pos: 7.5,12.5 + parent: 2 + - uid: 3432 components: - type: Transform - pos: 42.5,6.5 - parent: 89 - - uid: 1969 + pos: 7.5,11.5 + parent: 2 + - uid: 3433 components: - type: Transform - pos: 43.5,9.5 - parent: 89 - - uid: 1970 + pos: 6.5,11.5 + parent: 2 + - uid: 3434 components: - type: Transform - pos: 42.5,9.5 - parent: 89 - - uid: 1971 + pos: 6.5,10.5 + parent: 2 + - uid: 3435 components: - type: Transform - pos: 45.5,9.5 - parent: 89 - - uid: 1972 + pos: 6.5,9.5 + parent: 2 + - uid: 3436 components: - type: Transform - pos: 45.5,6.5 - parent: 89 - - uid: 2113 + pos: 6.5,8.5 + parent: 2 + - uid: 3437 components: - type: Transform - pos: 1.5,23.5 - parent: 89 - - uid: 2369 + pos: 6.5,7.5 + parent: 2 + - uid: 3438 components: - type: Transform - pos: 31.5,9.5 - parent: 89 - - uid: 2375 + pos: 7.5,7.5 + parent: 2 + - uid: 3439 components: - type: Transform - pos: 33.5,8.5 - parent: 89 - - uid: 2376 + pos: 8.5,7.5 + parent: 2 + - uid: 3440 components: - type: Transform - pos: 32.5,5.5 - parent: 89 - - uid: 2384 + pos: 9.5,7.5 + parent: 2 + - uid: 3441 components: - type: Transform - pos: 39.5,6.5 - parent: 89 - - uid: 2427 + pos: 10.5,7.5 + parent: 2 + - uid: 3442 components: - type: Transform - pos: 31.5,8.5 - parent: 89 - - uid: 2428 + pos: 11.5,7.5 + parent: 2 + - uid: 3443 components: - type: Transform - pos: 32.5,8.5 - parent: 89 - - uid: 2440 + pos: 12.5,7.5 + parent: 2 + - uid: 3444 components: - type: Transform - pos: 30.5,8.5 - parent: 89 - - uid: 2441 + pos: 13.5,7.5 + parent: 2 + - uid: 3445 components: - type: Transform - pos: 31.5,7.5 - parent: 89 - - uid: 2442 + pos: 9.5,12.5 + parent: 2 + - uid: 3446 components: - type: Transform - pos: 31.5,6.5 - parent: 89 - - uid: 2444 + pos: 10.5,12.5 + parent: 2 + - uid: 3447 components: - type: Transform - pos: 30.5,6.5 - parent: 89 - - uid: 2445 + pos: 0.5,13.5 + parent: 2 + - uid: 3448 components: - type: Transform - pos: 30.5,5.5 - parent: 89 - - uid: 2447 + pos: 33.5,23.5 + parent: 2 + - uid: 3449 components: - type: Transform - pos: 32.5,6.5 - parent: 89 - - uid: 2449 + pos: 0.5,11.5 + parent: 2 + - uid: 3450 components: - type: Transform - pos: 39.5,14.5 - parent: 89 - - uid: 2450 + pos: 0.5,10.5 + parent: 2 + - uid: 3451 components: - type: Transform - pos: 38.5,14.5 - parent: 89 - - uid: 2451 + pos: 0.5,9.5 + parent: 2 + - uid: 3452 components: - type: Transform - pos: 37.5,14.5 - parent: 89 - - uid: 2452 + pos: 0.5,8.5 + parent: 2 + - uid: 3453 components: - type: Transform - pos: 37.5,15.5 - parent: 89 - - uid: 2453 + pos: 0.5,7.5 + parent: 2 + - uid: 3454 components: - type: Transform - pos: 36.5,15.5 - parent: 89 - - uid: 2454 + pos: -2.5,11.5 + parent: 2 + - uid: 3455 components: - type: Transform - pos: 35.5,15.5 - parent: 89 - - uid: 2455 + pos: -2.5,10.5 + parent: 2 + - uid: 3456 components: - type: Transform - pos: 34.5,15.5 - parent: 89 - - uid: 2456 + pos: -2.5,9.5 + parent: 2 + - uid: 3457 components: - type: Transform - pos: 33.5,15.5 - parent: 89 - - uid: 2457 + pos: -2.5,8.5 + parent: 2 + - uid: 3458 components: - type: Transform - pos: 32.5,15.5 - parent: 89 - - uid: 2458 + pos: -2.5,7.5 + parent: 2 + - uid: 3459 components: - type: Transform - pos: 31.5,15.5 - parent: 89 - - uid: 2459 + pos: -2.5,6.5 + parent: 2 + - uid: 3460 components: - type: Transform - pos: 31.5,14.5 - parent: 89 - - uid: 2460 + pos: -6.5,11.5 + parent: 2 + - uid: 3461 components: - type: Transform - pos: 31.5,13.5 - parent: 89 - - uid: 2461 + pos: -6.5,10.5 + parent: 2 + - uid: 3462 components: - type: Transform - pos: 31.5,12.5 - parent: 89 - - uid: 2462 + pos: -6.5,9.5 + parent: 2 + - uid: 3463 components: - type: Transform - pos: 32.5,12.5 - parent: 89 - - uid: 2463 + pos: -6.5,8.5 + parent: 2 + - uid: 3464 components: - type: Transform - pos: 33.5,12.5 - parent: 89 - - uid: 2464 + pos: -6.5,7.5 + parent: 2 + - uid: 3465 components: - type: Transform - pos: 34.5,12.5 - parent: 89 - - uid: 2465 + pos: 13.5,27.5 + parent: 2 + - uid: 3466 components: - type: Transform - pos: 35.5,12.5 - parent: 89 - - uid: 2466 + pos: 10.5,34.5 + parent: 2 + - uid: 3467 components: - type: Transform - pos: 36.5,12.5 - parent: 89 - - uid: 2467 + pos: 10.5,35.5 + parent: 2 + - uid: 3468 components: - type: Transform - pos: 37.5,12.5 - parent: 89 - - uid: 2468 + pos: 10.5,36.5 + parent: 2 + - uid: 3469 components: - type: Transform - pos: 37.5,13.5 - parent: 89 - - uid: 2469 + pos: 9.5,36.5 + parent: 2 + - uid: 3470 components: - type: Transform - pos: 35.5,11.5 - parent: 89 - - uid: 2470 + pos: 13.5,26.5 + parent: 2 + - uid: 3471 components: - type: Transform - pos: 35.5,10.5 - parent: 89 - - uid: 2482 + pos: 13.5,25.5 + parent: 2 + - uid: 3472 components: - type: Transform - pos: 41.5,4.5 - parent: 89 - - uid: 2483 + pos: 13.5,24.5 + parent: 2 + - uid: 3473 components: - type: Transform - pos: 40.5,4.5 - parent: 89 - - uid: 2484 + pos: 13.5,14.5 + parent: 2 + - uid: 3474 components: - type: Transform - pos: 39.5,4.5 - parent: 89 - - uid: 2485 + pos: 13.5,14.5 + parent: 2 + - uid: 3475 components: - type: Transform - pos: 38.5,4.5 - parent: 89 - - uid: 2486 + pos: 13.5,15.5 + parent: 2 + - uid: 3476 components: - type: Transform - pos: 36.5,2.5 - parent: 89 - - uid: 2488 + pos: 13.5,16.5 + parent: 2 + - uid: 3477 components: - type: Transform - pos: 35.5,4.5 - parent: 89 - - uid: 2489 + pos: 13.5,17.5 + parent: 2 + - uid: 3478 components: - type: Transform - pos: 34.5,4.5 - parent: 89 - - uid: 2490 + pos: 40.5,1.5 + parent: 2 + - uid: 3479 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 2491 + pos: -10.5,-6.5 + parent: 2 + - uid: 3480 components: - type: Transform - pos: 35.5,6.5 - parent: 89 - - uid: 2492 + pos: 34.5,26.5 + parent: 2 + - uid: 3481 components: - type: Transform - pos: 35.5,7.5 - parent: 89 - - uid: 2493 + pos: 34.5,25.5 + parent: 2 + - uid: 3482 components: - type: Transform - pos: 39.5,7.5 - parent: 89 - - uid: 2494 + pos: 34.5,24.5 + parent: 2 + - uid: 3483 components: - type: Transform - pos: 39.5,8.5 - parent: 89 - - uid: 2495 + pos: 34.5,23.5 + parent: 2 + - uid: 3484 components: - type: Transform - pos: 39.5,3.5 - parent: 89 - - uid: 2496 + pos: 34.5,22.5 + parent: 2 + - uid: 3485 components: - type: Transform - pos: 39.5,2.5 - parent: 89 - - uid: 2497 + pos: 35.5,22.5 + parent: 2 + - uid: 3486 components: - type: Transform - pos: 39.5,1.5 - parent: 89 - - uid: 2499 + pos: 36.5,22.5 + parent: 2 + - uid: 3487 components: - type: Transform - pos: 35.5,3.5 - parent: 89 - - uid: 2500 + pos: 33.5,22.5 + parent: 2 + - uid: 3488 components: - type: Transform - pos: 35.5,2.5 - parent: 89 - - uid: 2501 + pos: 32.5,22.5 + parent: 2 + - uid: 3489 components: - type: Transform - pos: 35.5,1.5 - parent: 89 - - uid: 2568 + pos: 31.5,22.5 + parent: 2 + - uid: 3490 components: - type: Transform - pos: 56.5,-5.5 - parent: 89 - - uid: 2574 + pos: 30.5,22.5 + parent: 2 + - uid: 3491 components: - type: Transform - pos: 57.5,-5.5 - parent: 89 - - uid: 2576 + pos: 29.5,22.5 + parent: 2 + - uid: 3492 components: - type: Transform - pos: 58.5,-5.5 - parent: 89 - - uid: 2612 + pos: 28.5,22.5 + parent: 2 + - uid: 3493 components: - type: Transform - pos: -5.5,-29.5 - parent: 89 - - uid: 2783 + pos: 27.5,22.5 + parent: 2 + - uid: 3494 components: - type: Transform - pos: 49.5,-3.5 - parent: 89 - - uid: 2784 + pos: 26.5,22.5 + parent: 2 + - uid: 3495 components: - type: Transform - pos: 48.5,-3.5 - parent: 89 - - uid: 2785 + pos: 25.5,22.5 + parent: 2 + - uid: 3496 components: - type: Transform - pos: 47.5,-3.5 - parent: 89 - - uid: 2786 + pos: 24.5,22.5 + parent: 2 + - uid: 3497 components: - type: Transform - pos: 48.5,-2.5 - parent: 89 - - uid: 2841 + pos: 23.5,22.5 + parent: 2 + - uid: 3498 components: - type: Transform - pos: 37.5,7.5 - parent: 89 - - uid: 2942 + pos: 13.5,13.5 + parent: 2 + - uid: 3499 components: - type: Transform - pos: 58.5,-4.5 - parent: 89 - - uid: 2953 + pos: 20.5,9.5 + parent: 2 + - uid: 3500 components: - type: Transform - pos: 38.5,2.5 - parent: 89 - - uid: 2954 + pos: 20.5,8.5 + parent: 2 + - uid: 3501 components: - type: Transform - pos: 36.5,7.5 - parent: 89 - - uid: 2956 + pos: 20.5,7.5 + parent: 2 + - uid: 3502 components: - type: Transform - pos: 37.5,2.5 - parent: 89 - - uid: 2958 + pos: 19.5,7.5 + parent: 2 + - uid: 3503 components: - type: Transform - pos: 22.5,-5.5 - parent: 89 - - uid: 2962 + pos: 18.5,7.5 + parent: 2 + - uid: 3504 components: - type: Transform - pos: 38.5,7.5 - parent: 89 - - uid: 2987 + pos: 17.5,7.5 + parent: 2 + - uid: 3505 components: - type: Transform - pos: 20.5,-5.5 - parent: 89 - - uid: 2988 + pos: 19.5,6.5 + parent: 2 + - uid: 3506 components: - type: Transform - pos: 19.5,-5.5 - parent: 89 - - uid: 3082 + pos: 21.5,9.5 + parent: 2 + - uid: 3507 components: - type: Transform - pos: -11.5,-22.5 - parent: 89 - - uid: 3083 + pos: 21.5,10.5 + parent: 2 + - uid: 3508 components: - type: Transform - pos: -1.5,-23.5 - parent: 89 - - uid: 3102 + pos: 21.5,11.5 + parent: 2 + - uid: 3509 components: - type: Transform - pos: 58.5,-3.5 - parent: 89 - - uid: 3107 + pos: 20.5,11.5 + parent: 2 + - uid: 3510 components: - type: Transform - pos: 53.5,-2.5 - parent: 89 - - uid: 3109 + pos: 19.5,11.5 + parent: 2 + - uid: 3511 components: - type: Transform - pos: 53.5,-4.5 - parent: 89 - - uid: 3110 + pos: 21.5,7.5 + parent: 2 + - uid: 3512 components: - type: Transform - pos: 50.5,-2.5 - parent: 89 - - uid: 3111 + pos: 21.5,6.5 + parent: 2 + - uid: 3513 components: - type: Transform - pos: 53.5,-1.5 - parent: 89 - - uid: 3112 + pos: -117.5,-11.5 + parent: 2 + - uid: 3514 components: - type: Transform - pos: 51.5,-2.5 - parent: 89 - - uid: 3113 + pos: -117.5,-12.5 + parent: 2 + - uid: 3515 components: - type: Transform - pos: 52.5,-2.5 - parent: 89 - - uid: 3114 + pos: -117.5,-13.5 + parent: 2 + - uid: 3516 components: - type: Transform - pos: 53.5,-0.5 - parent: 89 - - uid: 3246 + pos: -118.5,-13.5 + parent: 2 + - uid: 3517 components: - type: Transform - pos: 53.5,-3.5 - parent: 89 - - uid: 3291 + pos: -119.5,-13.5 + parent: 2 + - uid: 3518 components: - type: Transform - pos: -73.5,-16.5 - parent: 89 - - uid: 3293 + pos: -120.5,-13.5 + parent: 2 + - uid: 3519 components: - type: Transform - pos: -74.5,-16.5 - parent: 89 - - uid: 3299 + pos: -120.5,-12.5 + parent: 2 + - uid: 3520 components: - type: Transform - pos: 47.5,15.5 - parent: 89 - - uid: 3373 + pos: -122.5,-12.5 + parent: 2 + - uid: 3521 components: - type: Transform - pos: 48.5,-4.5 - parent: 89 - - uid: 3399 + pos: -121.5,-12.5 + parent: 2 + - uid: 3522 components: - type: Transform - pos: 58.5,-2.5 - parent: 89 - - uid: 4037 + pos: -57.5,8.5 + parent: 2 + - uid: 3523 components: - type: Transform - pos: 18.5,-1.5 - parent: 89 - - uid: 4518 + pos: -56.5,8.5 + parent: 2 + - uid: 3524 components: - type: Transform - pos: 14.5,18.5 - parent: 89 - - uid: 4916 + pos: -55.5,8.5 + parent: 2 + - uid: 3525 components: - type: Transform - pos: 62.5,-3.5 - parent: 89 - - uid: 5040 + pos: -55.5,9.5 + parent: 2 + - uid: 3526 components: - type: Transform - pos: 58.5,-0.5 - parent: 89 - - uid: 5061 + pos: -55.5,10.5 + parent: 2 + - uid: 3527 components: - type: Transform - pos: 54.5,-5.5 - parent: 89 - - uid: 5402 + pos: -54.5,10.5 + parent: 2 + - uid: 3528 components: - type: Transform - pos: 53.5,-5.5 - parent: 89 - - uid: 5403 + pos: -53.5,10.5 + parent: 2 + - uid: 3529 components: - type: Transform - pos: 55.5,-5.5 - parent: 89 - - uid: 5404 + pos: -52.5,10.5 + parent: 2 + - uid: 3530 components: - type: Transform - pos: 64.5,-3.5 - parent: 89 - - uid: 5406 + pos: -51.5,10.5 + parent: 2 + - uid: 3531 components: - type: Transform - pos: 63.5,-3.5 - parent: 89 - - uid: 5444 + pos: -50.5,10.5 + parent: 2 + - uid: 3532 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 5449 + pos: -49.5,10.5 + parent: 2 + - uid: 3533 components: - type: Transform - pos: 61.5,-3.5 - parent: 89 - - uid: 5450 + pos: -48.5,10.5 + parent: 2 + - uid: 3534 components: - type: Transform - pos: -72.5,-15.5 - parent: 89 - - uid: 5477 + pos: -47.5,10.5 + parent: 2 + - uid: 3535 components: - type: Transform - pos: -18.5,13.5 - parent: 89 - - uid: 5862 + pos: -46.5,10.5 + parent: 2 + - uid: 3536 components: - type: Transform - pos: -73.5,-15.5 - parent: 89 - - uid: 5863 + pos: -45.5,10.5 + parent: 2 + - uid: 3537 components: - type: Transform - pos: -73.5,-14.5 - parent: 89 - - uid: 5864 + pos: -44.5,10.5 + parent: 2 + - uid: 3538 components: - type: Transform - pos: -73.5,-13.5 - parent: 89 - - uid: 5865 + pos: -44.5,9.5 + parent: 2 + - uid: 3539 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 5866 + pos: -44.5,8.5 + parent: 2 + - uid: 3540 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 5867 + pos: -44.5,7.5 + parent: 2 + - uid: 3541 components: - type: Transform - pos: -70.5,-16.5 - parent: 89 - - uid: 5868 + pos: -50.5,9.5 + parent: 2 + - uid: 3542 components: - type: Transform - pos: -69.5,-16.5 - parent: 89 - - uid: 5869 + pos: -50.5,8.5 + parent: 2 + - uid: 3543 components: - type: Transform - pos: -70.5,-7.5 - parent: 89 - - uid: 5870 + pos: -50.5,7.5 + parent: 2 + - uid: 3544 components: - type: Transform - pos: -65.5,-8.5 - parent: 89 - - uid: 5871 + pos: -63.5,-6.5 + parent: 2 + - uid: 3545 components: - type: Transform - pos: -66.5,-8.5 - parent: 89 - - uid: 5872 + pos: -21.5,28.5 + parent: 2 + - uid: 3546 components: - type: Transform - pos: -67.5,-8.5 - parent: 89 - - uid: 5873 + pos: -21.5,29.5 + parent: 2 + - uid: 3547 components: - type: Transform - pos: -68.5,-8.5 - parent: 89 - - uid: 5874 + pos: -20.5,29.5 + parent: 2 + - uid: 3548 components: - type: Transform - pos: -70.5,-10.5 - parent: 89 - - uid: 5875 + pos: -20.5,30.5 + parent: 2 + - uid: 3549 components: - type: Transform - pos: -70.5,-9.5 - parent: 89 - - uid: 5876 + pos: -38.5,28.5 + parent: 2 + - uid: 3550 components: - type: Transform - pos: -64.5,-8.5 - parent: 89 - - uid: 5877 + pos: -38.5,29.5 + parent: 2 + - uid: 3551 components: - type: Transform - pos: -63.5,-8.5 - parent: 89 - - uid: 5878 + pos: -39.5,29.5 + parent: 2 + - uid: 3552 components: - type: Transform - pos: -62.5,-8.5 - parent: 89 - - uid: 5879 + pos: -39.5,30.5 + parent: 2 + - uid: 3553 components: - type: Transform - pos: -63.5,-9.5 - parent: 89 - - uid: 5880 + pos: -39.5,31.5 + parent: 2 + - uid: 3554 components: - type: Transform - pos: -63.5,-10.5 - parent: 89 - - uid: 5881 + pos: -38.5,31.5 + parent: 2 + - uid: 3555 components: - type: Transform - pos: -63.5,-11.5 - parent: 89 - - uid: 5882 + pos: 37.5,22.5 + parent: 2 + - uid: 3556 components: - type: Transform - pos: -63.5,-12.5 - parent: 89 - - uid: 5883 + pos: -12.5,-34.5 + parent: 2 + - uid: 3557 components: - type: Transform - pos: -63.5,-13.5 - parent: 89 - - uid: 5884 + pos: -12.5,-33.5 + parent: 2 + - uid: 3558 components: - type: Transform - pos: -63.5,-14.5 - parent: 89 - - uid: 5885 + pos: -12.5,-32.5 + parent: 2 + - uid: 3559 components: - type: Transform - pos: -63.5,-15.5 - parent: 89 - - uid: 5886 + pos: -12.5,-31.5 + parent: 2 + - uid: 3560 components: - type: Transform - pos: -63.5,-16.5 - parent: 89 - - uid: 5887 + pos: -12.5,-30.5 + parent: 2 + - uid: 3561 components: - type: Transform - pos: -63.5,-17.5 - parent: 89 - - uid: 5889 + pos: -12.5,-29.5 + parent: 2 + - uid: 3562 components: - type: Transform - pos: -62.5,-17.5 - parent: 89 - - uid: 5890 + pos: -12.5,-28.5 + parent: 2 + - uid: 3563 components: - type: Transform - pos: -62.5,-18.5 - parent: 89 - - uid: 5891 + pos: -11.5,-27.5 + parent: 2 + - uid: 3564 components: - type: Transform - pos: -62.5,-19.5 - parent: 89 - - uid: 5892 + pos: -14.5,-26.5 + parent: 2 + - uid: 3565 components: - type: Transform - pos: -60.5,-17.5 - parent: 89 - - uid: 5893 + pos: -15.5,-26.5 + parent: 2 + - uid: 3566 components: - type: Transform - pos: -60.5,-18.5 - parent: 89 - - uid: 5894 + pos: -16.5,-26.5 + parent: 2 + - uid: 3567 components: - type: Transform - pos: -60.5,-19.5 - parent: 89 - - uid: 5895 + pos: -17.5,-26.5 + parent: 2 + - uid: 3568 components: - type: Transform - pos: -61.5,-17.5 - parent: 89 - - uid: 5896 + pos: -18.5,-26.5 + parent: 2 + - uid: 3569 components: - type: Transform - pos: -59.5,-17.5 - parent: 89 - - uid: 5897 + pos: -19.5,-26.5 + parent: 2 + - uid: 3570 components: - type: Transform - pos: -59.5,-16.5 - parent: 89 - - uid: 5898 + pos: -20.5,-26.5 + parent: 2 + - uid: 3571 components: - type: Transform - pos: -59.5,-15.5 - parent: 89 - - uid: 5899 + pos: -20.5,-25.5 + parent: 2 + - uid: 3572 components: - type: Transform - pos: -59.5,-14.5 - parent: 89 - - uid: 5900 + pos: -21.5,-25.5 + parent: 2 + - uid: 3573 components: - type: Transform - pos: -59.5,-13.5 - parent: 89 - - uid: 5901 + pos: -22.5,-25.5 + parent: 2 + - uid: 3574 components: - type: Transform - pos: -59.5,-12.5 - parent: 89 - - uid: 5902 + pos: -23.5,-25.5 + parent: 2 + - uid: 3575 components: - type: Transform - pos: -59.5,-11.5 - parent: 89 - - uid: 5903 + pos: -24.5,-25.5 + parent: 2 + - uid: 3576 components: - type: Transform - pos: -59.5,-10.5 - parent: 89 - - uid: 5904 + pos: -25.5,-25.5 + parent: 2 + - uid: 3577 components: - type: Transform - pos: -59.5,-9.5 - parent: 89 - - uid: 5905 + pos: -25.5,-24.5 + parent: 2 + - uid: 3578 components: - type: Transform - pos: -59.5,-8.5 - parent: 89 - - uid: 5906 + pos: -25.5,-23.5 + parent: 2 + - uid: 3579 components: - type: Transform - pos: -60.5,-8.5 - parent: 89 - - uid: 5907 + pos: -25.5,-22.5 + parent: 2 + - uid: 3580 components: - type: Transform - pos: -61.5,-8.5 - parent: 89 - - uid: 5908 + pos: -25.5,-21.5 + parent: 2 + - uid: 3581 components: - type: Transform - pos: -59.5,-7.5 - parent: 89 - - uid: 5909 + pos: -25.5,-20.5 + parent: 2 + - uid: 3582 components: - type: Transform - pos: -59.5,-6.5 - parent: 89 - - uid: 5910 + pos: -25.5,-19.5 + parent: 2 + - uid: 3583 components: - type: Transform - pos: -58.5,-6.5 - parent: 89 - - uid: 5911 + pos: -25.5,-18.5 + parent: 2 + - uid: 3584 components: - type: Transform - pos: -57.5,-6.5 - parent: 89 - - uid: 5912 + pos: -25.5,-17.5 + parent: 2 + - uid: 3585 components: - type: Transform - pos: -56.5,-6.5 - parent: 89 - - uid: 5913 + pos: -25.5,-16.5 + parent: 2 + - uid: 3586 components: - type: Transform - pos: -55.5,-6.5 - parent: 89 - - uid: 5914 + pos: -26.5,-16.5 + parent: 2 + - uid: 3587 components: - type: Transform - pos: -55.5,-7.5 - parent: 89 - - uid: 5915 + pos: -27.5,-16.5 + parent: 2 + - uid: 3588 components: - type: Transform - pos: -55.5,-8.5 - parent: 89 - - uid: 5916 + pos: -28.5,-16.5 + parent: 2 + - uid: 3589 components: - type: Transform - pos: -55.5,-9.5 - parent: 89 - - uid: 5917 + pos: -29.5,-16.5 + parent: 2 + - uid: 3590 components: - type: Transform - pos: -53.5,-11.5 - parent: 89 - - uid: 5918 + pos: -30.5,-16.5 + parent: 2 + - uid: 3591 components: - type: Transform - pos: -55.5,-5.5 - parent: 89 - - uid: 5919 + pos: -31.5,-16.5 + parent: 2 + - uid: 3592 components: - type: Transform - pos: -66.5,-7.5 - parent: 89 - - uid: 5920 + pos: -32.5,-16.5 + parent: 2 + - uid: 3593 components: - type: Transform - pos: -66.5,-6.5 - parent: 89 - - uid: 5926 + pos: -35.5,-16.5 + parent: 2 + - uid: 3594 components: - type: Transform - pos: -67.5,-6.5 - parent: 89 - - uid: 5927 + pos: -37.5,-15.5 + parent: 2 + - uid: 3595 components: - type: Transform - pos: -68.5,-6.5 - parent: 89 - - uid: 5928 + pos: -38.5,-15.5 + parent: 2 + - uid: 3596 components: - type: Transform - pos: -69.5,-6.5 - parent: 89 - - uid: 5929 + pos: -39.5,-15.5 + parent: 2 + - uid: 3597 components: - type: Transform - pos: -70.5,-6.5 - parent: 89 - - uid: 5930 + pos: -40.5,-15.5 + parent: 2 + - uid: 3598 components: - type: Transform - pos: -70.5,-5.5 - parent: 89 - - uid: 5931 + pos: -41.5,-15.5 + parent: 2 + - uid: 3599 components: - type: Transform - pos: -52.5,-11.5 - parent: 89 - - uid: 5932 + pos: -42.5,-15.5 + parent: 2 + - uid: 3600 components: - type: Transform - pos: -51.5,-11.5 - parent: 89 - - uid: 5933 + pos: -43.5,-15.5 + parent: 2 + - uid: 3601 components: - type: Transform - pos: -50.5,-11.5 - parent: 89 - - uid: 5934 + pos: -43.5,-14.5 + parent: 2 + - uid: 3602 components: - type: Transform - pos: -49.5,-11.5 - parent: 89 - - uid: 5935 + pos: -43.5,-13.5 + parent: 2 + - uid: 3603 components: - type: Transform - pos: -48.5,-11.5 - parent: 89 - - uid: 5936 + pos: -43.5,-12.5 + parent: 2 + - uid: 3604 components: - type: Transform - pos: -47.5,-11.5 - parent: 89 - - uid: 5937 + pos: -43.5,-11.5 + parent: 2 + - uid: 3605 components: - type: Transform - pos: -51.5,-10.5 - parent: 89 - - uid: 5938 + pos: -43.5,-10.5 + parent: 2 + - uid: 3606 components: - type: Transform - pos: -51.5,-9.5 - parent: 89 - - uid: 5939 + pos: -43.5,-9.5 + parent: 2 + - uid: 3607 components: - type: Transform - pos: -51.5,-12.5 - parent: 89 - - uid: 5940 + pos: -43.5,-8.5 + parent: 2 + - uid: 3608 components: - type: Transform - pos: -51.5,-13.5 - parent: 89 - - uid: 5941 + pos: -43.5,-7.5 + parent: 2 + - uid: 3609 components: - type: Transform - pos: -51.5,-14.5 - parent: 89 - - uid: 5942 + pos: -43.5,-6.5 + parent: 2 + - uid: 3610 components: - type: Transform - pos: -51.5,-15.5 - parent: 89 - - uid: 5943 + pos: 6.5,-16.5 + parent: 2 + - uid: 3611 components: - type: Transform - pos: -51.5,-16.5 - parent: 89 - - uid: 5944 + pos: -10.5,-24.5 + parent: 2 + - uid: 3612 components: - type: Transform - pos: -51.5,-17.5 - parent: 89 - - uid: 5961 + pos: -10.5,-25.5 + parent: 2 + - uid: 3613 components: - type: Transform - pos: -47.5,-12.5 - parent: 89 - - uid: 5962 + pos: -11.5,-25.5 + parent: 2 + - uid: 3614 components: - type: Transform - pos: -47.5,-13.5 - parent: 89 - - uid: 5963 + pos: 15.5,-10.5 + parent: 2 + - uid: 3615 components: - type: Transform - pos: -47.5,-14.5 - parent: 89 - - uid: 5964 + pos: 15.5,-11.5 + parent: 2 + - uid: 3616 components: - type: Transform - pos: -47.5,-15.5 - parent: 89 - - uid: 5965 + pos: 15.5,-12.5 + parent: 2 + - uid: 3617 components: - type: Transform - pos: -47.5,-16.5 - parent: 89 - - uid: 5966 + pos: 12.5,-15.5 + parent: 2 + - uid: 3618 components: - type: Transform - pos: -47.5,-17.5 - parent: 89 - - uid: 5967 + pos: 11.5,-15.5 + parent: 2 + - uid: 3619 components: - type: Transform - pos: -47.5,-18.5 - parent: 89 - - uid: 5968 + pos: 10.5,-15.5 + parent: 2 + - uid: 3620 components: - type: Transform - pos: -47.5,-19.5 - parent: 89 - - uid: 5970 + pos: 9.5,-15.5 + parent: 2 + - uid: 3621 components: - type: Transform - pos: -46.5,-19.5 - parent: 89 - - uid: 5972 + pos: 8.5,-15.5 + parent: 2 + - uid: 3622 components: - type: Transform - pos: -48.5,-19.5 - parent: 89 - - uid: 5973 + pos: 7.5,-15.5 + parent: 2 + - uid: 3623 components: - type: Transform - pos: -49.5,-19.5 - parent: 89 - - uid: 5974 + pos: 6.5,-15.5 + parent: 2 + - uid: 3624 components: - type: Transform - pos: -45.5,-19.5 - parent: 89 - - uid: 5975 + pos: 6.5,-17.5 + parent: 2 + - uid: 3625 components: - type: Transform - pos: -52.5,-13.5 - parent: 89 - - uid: 5977 + pos: 6.5,-18.5 + parent: 2 + - uid: 3626 components: - type: Transform - pos: -53.5,-13.5 - parent: 89 - - uid: 5978 + pos: 6.5,-19.5 + parent: 2 + - uid: 3627 components: - type: Transform - pos: -54.5,-13.5 - parent: 89 - - uid: 5980 + pos: 6.5,-20.5 + parent: 2 + - uid: 3628 components: - type: Transform - pos: -55.5,-13.5 - parent: 89 - - uid: 5981 + pos: 6.5,-21.5 + parent: 2 + - uid: 3629 components: - type: Transform - pos: -52.5,-16.5 - parent: 89 - - uid: 5982 + pos: 6.5,-22.5 + parent: 2 + - uid: 3630 components: - type: Transform - pos: -53.5,-16.5 - parent: 89 - - uid: 5983 + pos: 6.5,-23.5 + parent: 2 + - uid: 3631 components: - type: Transform - pos: -54.5,-16.5 - parent: 89 - - uid: 5984 + pos: 6.5,-24.5 + parent: 2 + - uid: 3632 components: - type: Transform - pos: -55.5,-16.5 - parent: 89 - - uid: 5985 + pos: 5.5,-24.5 + parent: 2 + - uid: 3633 components: - type: Transform - pos: -64.5,-16.5 - parent: 89 - - uid: 5986 + pos: 5.5,-15.5 + parent: 2 + - uid: 3634 components: - type: Transform - pos: -65.5,-16.5 - parent: 89 - - uid: 5987 + pos: 4.5,-15.5 + parent: 2 + - uid: 3635 components: - type: Transform - pos: -66.5,-16.5 - parent: 89 - - uid: 5991 + pos: 3.5,-15.5 + parent: 2 + - uid: 3636 components: - type: Transform - pos: -66.5,-14.5 - parent: 89 - - uid: 5992 + pos: 24.5,28.5 + parent: 2 + - uid: 3637 components: - type: Transform - pos: -66.5,-13.5 - parent: 89 - - uid: 5993 + pos: -91.5,28.5 + parent: 2 + - uid: 3638 components: - type: Transform - pos: -66.5,-12.5 - parent: 89 - - uid: 5994 + pos: -54.5,48.5 + parent: 2 + - uid: 3639 components: - type: Transform - pos: -66.5,-11.5 - parent: 89 - - uid: 5995 + pos: -51.5,47.5 + parent: 2 + - uid: 3640 components: - type: Transform - pos: -66.5,-10.5 - parent: 89 - - uid: 5996 + pos: -52.5,48.5 + parent: 2 + - uid: 3641 components: - type: Transform - pos: -66.5,-9.5 - parent: 89 - - uid: 5998 + pos: -52.5,47.5 + parent: 2 + - uid: 3642 components: - type: Transform - pos: -66.5,-15.5 - parent: 89 - - uid: 5999 + pos: 33.5,26.5 + parent: 2 + - uid: 3643 components: - type: Transform - pos: -70.5,-11.5 - parent: 89 - - uid: 6000 + pos: 1.5,7.5 + parent: 2 + - uid: 3644 components: - type: Transform - pos: -70.5,-12.5 - parent: 89 - - uid: 6001 + pos: 2.5,7.5 + parent: 2 + - uid: 3645 components: - type: Transform - pos: -69.5,-10.5 - parent: 89 - - uid: 6002 + pos: 3.5,7.5 + parent: 2 + - uid: 3646 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 - - uid: 6003 + pos: 2.5,6.5 + parent: 2 + - uid: 3647 components: - type: Transform - pos: -67.5,-10.5 - parent: 89 - - uid: 6023 + pos: 2.5,8.5 + parent: 2 + - uid: 3648 components: - type: Transform - pos: -36.5,22.5 - parent: 89 - - uid: 6140 + pos: -66.5,30.5 + parent: 2 + - uid: 3649 components: - type: Transform - pos: 34.5,-12.5 - parent: 89 - - uid: 6227 + pos: 21.5,-5.5 + parent: 2 + - uid: 3650 components: - type: Transform - pos: 34.5,-10.5 - parent: 89 - - uid: 6231 + pos: -83.5,-12.5 + parent: 2 + - uid: 3651 components: - type: Transform - pos: -130.5,-7.5 - parent: 89 - - uid: 6315 + pos: -86.5,-20.5 + parent: 2 + - uid: 3652 components: - type: Transform - pos: -94.5,-8.5 - parent: 89 - - uid: 6317 + pos: -87.5,-20.5 + parent: 2 + - uid: 3653 components: - type: Transform - pos: -93.5,-8.5 - parent: 89 - - uid: 6332 + pos: -88.5,-20.5 + parent: 2 + - uid: 3654 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 6335 + pos: -89.5,-20.5 + parent: 2 + - uid: 3655 components: - type: Transform - pos: -10.5,23.5 - parent: 89 - - uid: 6336 + pos: -90.5,-20.5 + parent: 2 + - uid: 3656 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 6337 + pos: -91.5,-20.5 + parent: 2 + - uid: 3657 components: - type: Transform - pos: -5.5,23.5 - parent: 89 - - uid: 6340 + pos: -92.5,-20.5 + parent: 2 + - uid: 3658 components: - type: Transform - pos: -63.5,-5.5 - parent: 89 - - uid: 6373 + pos: -93.5,-20.5 + parent: 2 + - uid: 3659 components: - type: Transform - pos: -3.5,23.5 - parent: 89 - - uid: 6378 + pos: -94.5,-20.5 + parent: 2 + - uid: 3660 components: - type: Transform - pos: -2.5,23.5 - parent: 89 - - uid: 6379 + pos: -95.5,-20.5 + parent: 2 + - uid: 3661 components: - type: Transform - pos: -0.5,23.5 - parent: 89 - - uid: 6460 + pos: -96.5,-20.5 + parent: 2 + - uid: 3662 components: - type: Transform - pos: -83.5,37.5 - parent: 89 - - uid: 6463 + pos: -97.5,-20.5 + parent: 2 + - uid: 3663 components: - type: Transform - pos: -67.5,30.5 - parent: 89 - - uid: 6465 + pos: -98.5,-20.5 + parent: 2 + - uid: 3664 components: - type: Transform - pos: -82.5,37.5 - parent: 89 - - uid: 6466 + pos: -99.5,-20.5 + parent: 2 + - uid: 3665 components: - type: Transform - pos: -68.5,30.5 - parent: 89 - - uid: 6477 + pos: -100.5,-20.5 + parent: 2 + - uid: 3666 components: - type: Transform - pos: -69.5,30.5 - parent: 89 - - uid: 6481 + pos: -101.5,-20.5 + parent: 2 + - uid: 3667 components: - type: Transform - pos: -66.5,37.5 - parent: 89 - - uid: 6482 + pos: 40.5,-5.5 + parent: 2 + - uid: 3668 components: - type: Transform - pos: -69.5,37.5 - parent: 89 - - uid: 6483 + pos: 40.5,-4.5 + parent: 2 + - uid: 3669 components: - type: Transform - pos: -68.5,37.5 - parent: 89 - - uid: 6484 + pos: 40.5,-3.5 + parent: 2 + - uid: 3670 components: - type: Transform - pos: -67.5,37.5 - parent: 89 - - uid: 6520 + pos: 41.5,-3.5 + parent: 2 + - uid: 3671 components: - type: Transform - pos: -130.5,-6.5 - parent: 89 - - uid: 6522 + pos: 42.5,-3.5 + parent: 2 + - uid: 3672 components: - type: Transform - pos: -81.5,30.5 - parent: 89 - - uid: 6718 + pos: 43.5,-3.5 + parent: 2 + - uid: 3673 components: - type: Transform - pos: -36.5,-16.5 - parent: 89 - - uid: 6719 + pos: 43.5,-4.5 + parent: 2 + - uid: 3674 components: - type: Transform - pos: -33.5,-16.5 - parent: 89 - - uid: 6942 + pos: 43.5,-5.5 + parent: 2 + - uid: 3675 components: - type: Transform - pos: -132.5,-7.5 - parent: 89 - - uid: 6955 + pos: 43.5,-6.5 + parent: 2 + - uid: 3676 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 6956 + pos: 43.5,-7.5 + parent: 2 + - uid: 3677 components: - type: Transform - pos: -130.5,-5.5 - parent: 89 - - uid: 6957 + pos: 43.5,-8.5 + parent: 2 + - uid: 3678 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 6981 + pos: 42.5,-8.5 + parent: 2 + - uid: 3679 components: - type: Transform - pos: 34.5,-11.5 - parent: 89 - - uid: 7139 + pos: 41.5,-8.5 + parent: 2 + - uid: 3680 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 7301 + pos: 42.5,-10.5 + parent: 2 + - uid: 3681 components: - type: Transform - pos: -87.5,-11.5 - parent: 89 - - uid: 7327 + pos: 42.5,-11.5 + parent: 2 + - uid: 3682 components: - type: Transform - pos: -83.5,-12.5 - parent: 89 - - uid: 7466 + pos: 42.5,-12.5 + parent: 2 + - uid: 3683 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 7475 + pos: 42.5,-13.5 + parent: 2 + - uid: 3684 components: - type: Transform - pos: -89.5,22.5 - parent: 89 - - uid: 7476 + pos: 42.5,-14.5 + parent: 2 + - uid: 3685 components: - type: Transform - pos: -86.5,-10.5 - parent: 89 - - uid: 7488 + pos: 42.5,-15.5 + parent: 2 + - uid: 3686 components: - type: Transform - pos: -83.5,-11.5 - parent: 89 - - uid: 7498 + pos: 43.5,-12.5 + parent: 2 + - uid: 3687 components: - type: Transform - pos: -86.5,-11.5 - parent: 89 - - uid: 7504 + pos: 44.5,-12.5 + parent: 2 + - uid: 3688 components: - type: Transform - pos: -85.5,-11.5 - parent: 89 - - uid: 7508 + pos: 45.5,-12.5 + parent: 2 + - uid: 3689 components: - type: Transform - pos: -84.5,-11.5 - parent: 89 - - uid: 7509 + pos: 46.5,-12.5 + parent: 2 + - uid: 3690 components: - type: Transform - pos: -86.5,-8.5 - parent: 89 - - uid: 7533 + pos: 47.5,-12.5 + parent: 2 + - uid: 3691 components: - type: Transform - pos: -86.5,-7.5 - parent: 89 - - uid: 7614 + pos: 48.5,-12.5 + parent: 2 + - uid: 3692 components: - type: Transform - pos: -34.5,-17.5 - parent: 89 - - uid: 7615 + pos: 49.5,-12.5 + parent: 2 + - uid: 3693 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 8139 + pos: 38.5,-13.5 + parent: 2 + - uid: 3694 components: - type: Transform - pos: -4.5,23.5 - parent: 89 - - uid: 8148 + pos: 50.5,-12.5 + parent: 2 + - uid: 3695 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 8166 + pos: 51.5,-12.5 + parent: 2 + - uid: 3696 components: - type: Transform - pos: -1.5,23.5 - parent: 89 - - uid: 8219 + pos: 43.5,-15.5 + parent: 2 + - uid: 3697 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8244 + pos: 44.5,-15.5 + parent: 2 + - uid: 3698 components: - type: Transform - pos: -2.5,30.5 - parent: 89 - - uid: 8247 + pos: 45.5,-15.5 + parent: 2 + - uid: 3699 components: - type: Transform - pos: -3.5,37.5 - parent: 89 - - uid: 8260 + pos: 46.5,-15.5 + parent: 2 + - uid: 3700 components: - type: Transform - pos: -2.5,38.5 - parent: 89 - - uid: 8261 + pos: 47.5,-15.5 + parent: 2 + - uid: 3701 components: - type: Transform - pos: -2.5,39.5 - parent: 89 - - uid: 8262 + pos: 48.5,-15.5 + parent: 2 + - uid: 3702 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8263 + pos: 49.5,-15.5 + parent: 2 + - uid: 3703 components: - type: Transform - pos: -3.5,39.5 - parent: 89 - - uid: 8264 + pos: 50.5,-15.5 + parent: 2 + - uid: 3704 components: - type: Transform - pos: -3.5,36.5 - parent: 89 - - uid: 8265 + pos: 51.5,-15.5 + parent: 2 + - uid: 3705 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 8266 + pos: 42.5,-16.5 + parent: 2 + - uid: 3706 components: - type: Transform - pos: -3.5,34.5 - parent: 89 - - uid: 8267 + pos: 0.5,14.5 + parent: 2 + - uid: 3707 components: - type: Transform - pos: -3.5,33.5 - parent: 89 - - uid: 8269 + pos: 55.5,9.5 + parent: 2 + - uid: 3708 components: - type: Transform - pos: -3.5,31.5 - parent: 89 - - uid: 8270 + pos: 55.5,10.5 + parent: 2 + - uid: 3709 components: - type: Transform - pos: -3.5,30.5 - parent: 89 - - uid: 8271 + pos: 62.5,8.5 + parent: 2 + - uid: 3710 components: - type: Transform - pos: -3.5,29.5 - parent: 89 - - uid: 8272 + pos: 63.5,8.5 + parent: 2 + - uid: 3711 components: - type: Transform - pos: -3.5,28.5 - parent: 89 - - uid: 8273 + pos: -44.5,11.5 + parent: 2 + - uid: 3712 components: - type: Transform - pos: -3.5,27.5 - parent: 89 - - uid: 8274 + pos: 31.5,23.5 + parent: 2 + - uid: 3713 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8275 + pos: 31.5,24.5 + parent: 2 + - uid: 3714 components: - type: Transform - pos: -3.5,41.5 - parent: 89 - - uid: 8276 + pos: 12.5,26.5 + parent: 2 + - uid: 3715 components: - type: Transform - pos: -4.5,36.5 - parent: 89 - - uid: 8277 + pos: 11.5,26.5 + parent: 2 + - uid: 3716 components: - type: Transform - pos: -5.5,36.5 - parent: 89 - - uid: 8278 + pos: -85.5,37.5 + parent: 2 + - uid: 3717 components: - type: Transform - pos: -6.5,36.5 - parent: 89 - - uid: 8279 + pos: -86.5,37.5 + parent: 2 + - uid: 3718 components: - type: Transform - pos: -7.5,36.5 - parent: 89 - - uid: 8280 + pos: -85.5,39.5 + parent: 2 + - uid: 3719 components: - type: Transform - pos: -7.5,35.5 - parent: 89 - - uid: 8281 + pos: -86.5,39.5 + parent: 2 + - uid: 3720 components: - type: Transform - pos: -7.5,34.5 - parent: 89 - - uid: 8282 + pos: -87.5,39.5 + parent: 2 + - uid: 3721 components: - type: Transform - pos: -7.5,33.5 - parent: 89 - - uid: 8285 + pos: -87.5,37.5 + parent: 2 + - uid: 3722 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 8286 + pos: -84.5,46.5 + parent: 2 + - uid: 3723 components: - type: Transform - pos: -2.5,35.5 - parent: 89 - - uid: 8287 + pos: -84.5,47.5 + parent: 2 + - uid: 3724 components: - type: Transform - pos: -1.5,35.5 - parent: 89 - - uid: 8289 + pos: -128.5,-11.5 + parent: 2 + - uid: 3725 components: - type: Transform - pos: 0.5,35.5 - parent: 89 - - uid: 8290 + pos: 10.5,26.5 + parent: 2 + - uid: 3726 components: - type: Transform - pos: 1.5,35.5 - parent: 89 - - uid: 8291 + pos: -128.5,-12.5 + parent: 2 + - uid: 3727 components: - type: Transform - pos: 1.5,36.5 - parent: 89 - - uid: 8296 + pos: 9.5,26.5 + parent: 2 + - uid: 3728 components: - type: Transform - pos: 0.5,30.5 - parent: 89 - - uid: 8297 + pos: 8.5,26.5 + parent: 2 + - uid: 3729 components: - type: Transform - pos: 1.5,30.5 - parent: 89 - - uid: 8298 + pos: -15.5,23.5 + parent: 2 + - uid: 3730 components: - type: Transform - pos: 2.5,30.5 - parent: 89 - - uid: 8300 + pos: 24.5,29.5 + parent: 2 + - uid: 3731 components: - type: Transform - pos: -4.5,30.5 - parent: 89 - - uid: 8301 + pos: 24.5,30.5 + parent: 2 + - uid: 3732 components: - type: Transform - pos: -5.5,30.5 - parent: 89 - - uid: 8303 + pos: 24.5,31.5 + parent: 2 + - uid: 3733 components: - type: Transform - pos: -7.5,30.5 - parent: 89 - - uid: 8304 + pos: 24.5,32.5 + parent: 2 + - uid: 3734 components: - type: Transform - pos: -8.5,30.5 - parent: 89 - - uid: 8306 + pos: 24.5,33.5 + parent: 2 + - uid: 3735 components: - type: Transform - pos: -2.5,26.5 - parent: 89 - - uid: 8307 + pos: 24.5,34.5 + parent: 2 + - uid: 3736 components: - type: Transform - pos: -1.5,26.5 - parent: 89 - - uid: 8308 + pos: 24.5,35.5 + parent: 2 + - uid: 3737 components: - type: Transform - pos: -0.5,26.5 - parent: 89 - - uid: 8309 + pos: 24.5,36.5 + parent: 2 + - uid: 3738 components: - type: Transform - pos: 0.5,26.5 - parent: 89 - - uid: 8311 + pos: 24.5,37.5 + parent: 2 + - uid: 3739 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8312 + pos: 24.5,38.5 + parent: 2 + - uid: 3740 components: - type: Transform - pos: -3.5,42.5 - parent: 89 - - uid: 8314 + pos: 24.5,39.5 + parent: 2 + - uid: 3741 components: - type: Transform - pos: -3.5,44.5 - parent: 89 - - uid: 8315 + pos: 24.5,40.5 + parent: 2 + - uid: 3742 components: - type: Transform - pos: -3.5,45.5 - parent: 89 - - uid: 8317 + pos: 23.5,40.5 + parent: 2 + - uid: 3743 components: - type: Transform - pos: -5.5,45.5 - parent: 89 - - uid: 8318 + pos: 23.5,41.5 + parent: 2 + - uid: 3744 components: - type: Transform - pos: -6.5,45.5 - parent: 89 - - uid: 8319 + pos: 23.5,42.5 + parent: 2 + - uid: 3745 components: - type: Transform - pos: -7.5,45.5 - parent: 89 - - uid: 8321 + pos: 24.5,42.5 + parent: 2 + - uid: 3746 components: - type: Transform - pos: -1.5,45.5 - parent: 89 - - uid: 8322 + pos: 23.5,35.5 + parent: 2 + - uid: 3747 components: - type: Transform - pos: -0.5,45.5 - parent: 89 - - uid: 8323 + pos: 25.5,35.5 + parent: 2 + - uid: 3748 components: - type: Transform - pos: 0.5,45.5 - parent: 89 - - uid: 8324 + pos: 26.5,35.5 + parent: 2 + - uid: 3749 components: - type: Transform - pos: -4.5,41.5 - parent: 89 - - uid: 8325 + pos: 35.5,26.5 + parent: 2 + - uid: 3750 components: - type: Transform - pos: -5.5,41.5 - parent: 89 - - uid: 8326 + pos: 36.5,26.5 + parent: 2 + - uid: 3751 components: - type: Transform - pos: -6.5,41.5 - parent: 89 - - uid: 8327 + pos: 37.5,26.5 + parent: 2 + - uid: 3752 components: - type: Transform - pos: -7.5,41.5 - parent: 89 - - uid: 8329 + pos: 38.5,26.5 + parent: 2 + - uid: 3753 components: - type: Transform - pos: -1.5,41.5 - parent: 89 - - uid: 8331 + pos: -128.5,-13.5 + parent: 2 + - uid: 3754 components: - type: Transform - pos: 0.5,41.5 - parent: 89 - - uid: 8332 + pos: -128.5,-14.5 + parent: 2 + - uid: 3755 components: - type: Transform - pos: 1.5,41.5 - parent: 89 - - uid: 8333 + pos: -128.5,-15.5 + parent: 2 + - uid: 3756 components: - type: Transform - pos: 2.5,41.5 - parent: 89 - - uid: 8334 + pos: -129.5,-15.5 + parent: 2 + - uid: 3757 components: - type: Transform - pos: -6.5,33.5 - parent: 89 - - uid: 8367 + pos: -127.5,-15.5 + parent: 2 + - uid: 3758 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 8368 + pos: 18.5,15.5 + parent: 2 + - uid: 3759 components: - type: Transform - pos: -6.5,23.5 - parent: 89 - - uid: 8449 + pos: -7.5,16.5 + parent: 2 + - uid: 3760 components: - type: Transform - pos: -15.5,22.5 - parent: 89 - - uid: 8769 + pos: -6.5,16.5 + parent: 2 + - uid: 3761 components: - type: Transform - pos: -128.5,-9.5 - parent: 89 - - uid: 8837 + pos: -5.5,16.5 + parent: 2 + - uid: 3762 components: - type: Transform - pos: -129.5,-9.5 - parent: 89 - - uid: 8842 + pos: -5.5,17.5 + parent: 2 + - uid: 3763 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 8855 + pos: -5.5,18.5 + parent: 2 + - uid: 3764 components: - type: Transform - pos: -129.5,-8.5 - parent: 89 - - uid: 8911 + pos: -6.5,18.5 + parent: 2 + - uid: 3765 components: - type: Transform - pos: -129.5,-7.5 - parent: 89 - - uid: 9019 + pos: -7.5,18.5 + parent: 2 + - uid: 3766 components: - type: Transform - pos: -9.5,23.5 - parent: 89 - - uid: 9020 + pos: -8.5,18.5 + parent: 2 + - uid: 3767 components: - type: Transform - pos: -11.5,23.5 - parent: 89 - - uid: 9043 + pos: -9.5,18.5 + parent: 2 + - uid: 3768 components: - type: Transform - pos: -10.5,-19.5 - parent: 89 - - uid: 9069 + pos: -10.5,18.5 + parent: 2 + - uid: 3769 components: - type: Transform - pos: -12.5,-19.5 - parent: 89 - - uid: 9180 + pos: -4.5,18.5 + parent: 2 + - uid: 3770 components: - type: Transform - pos: -6.5,-41.5 - parent: 89 - - uid: 9268 + pos: -3.5,18.5 + parent: 2 + - uid: 3771 components: - type: Transform - pos: 29.5,8.5 - parent: 89 - - uid: 9269 + pos: -2.5,18.5 + parent: 2 + - uid: 3772 components: - type: Transform - pos: 28.5,8.5 - parent: 89 - - uid: 9270 + pos: -1.5,18.5 + parent: 2 + - uid: 3773 components: - type: Transform - pos: 27.5,8.5 - parent: 89 - - uid: 9271 + pos: -0.5,18.5 + parent: 2 + - uid: 3774 components: - type: Transform - pos: 26.5,8.5 - parent: 89 - - uid: 9272 + pos: -0.5,17.5 + parent: 2 + - uid: 3775 components: - type: Transform - pos: 25.5,8.5 - parent: 89 - - uid: 9273 + pos: -0.5,16.5 + parent: 2 + - uid: 3776 components: - type: Transform - pos: 28.5,6.5 - parent: 89 - - uid: 9274 + pos: -46.5,24.5 + parent: 2 + - uid: 3777 components: - type: Transform - pos: 29.5,6.5 - parent: 89 - - uid: 9275 + pos: 37.5,19.5 + parent: 2 + - uid: 3778 components: - type: Transform - pos: 27.5,6.5 - parent: 89 - - uid: 9276 + pos: 38.5,19.5 + parent: 2 + - uid: 3779 components: - type: Transform - pos: 26.5,6.5 - parent: 89 - - uid: 9277 + pos: 39.5,19.5 + parent: 2 + - uid: 3780 components: - type: Transform - pos: 25.5,6.5 - parent: 89 - - uid: 9318 + pos: 40.5,19.5 + parent: 2 + - uid: 3781 components: - type: Transform - pos: -63.5,-4.5 - parent: 89 - - uid: 9340 + pos: 0.5,16.5 + parent: 2 + - uid: 3782 components: - type: Transform - pos: -90.5,22.5 - parent: 89 - - uid: 9646 + pos: 41.5,19.5 + parent: 2 + - uid: 3783 components: - type: Transform - pos: -88.5,22.5 - parent: 89 - - uid: 9647 + pos: 42.5,19.5 + parent: 2 + - uid: 3784 components: - type: Transform - pos: -91.5,22.5 - parent: 89 - - uid: 9665 + pos: 1.5,16.5 + parent: 2 + - uid: 3785 components: - type: Transform - pos: -53.5,48.5 - parent: 89 - - uid: 9881 + pos: 2.5,16.5 + parent: 2 + - uid: 3786 components: - type: Transform - pos: 22.5,-2.5 - parent: 89 - - uid: 9884 + pos: -0.5,19.5 + parent: 2 + - uid: 3787 components: - type: Transform - pos: 18.5,-5.5 - parent: 89 - - uid: 10229 + pos: -0.5,20.5 + parent: 2 + - uid: 3788 components: - type: Transform - pos: 61.5,-0.5 - parent: 89 - - uid: 10418 + pos: 0.5,20.5 + parent: 2 + - uid: 3789 components: - type: Transform - pos: 61.5,-1.5 - parent: 89 - - uid: 10419 + pos: 1.5,20.5 + parent: 2 + - uid: 3790 components: - type: Transform - pos: 61.5,-2.5 - parent: 89 - - uid: 10508 + pos: 47.5,16.5 + parent: 2 + - uid: 3791 components: - type: Transform - pos: -17.5,-22.5 - parent: 89 - - uid: 10617 + pos: 47.5,17.5 + parent: 2 + - uid: 3792 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 10625 + pos: 47.5,18.5 + parent: 2 + - uid: 3793 components: - type: Transform - pos: -1.5,-31.5 - parent: 89 - - uid: 10680 + pos: 47.5,19.5 + parent: 2 + - uid: 3794 components: - type: Transform - pos: 10.5,41.5 - parent: 89 - - uid: 10726 + pos: 47.5,20.5 + parent: 2 + - uid: 3795 components: - type: Transform - pos: 7.5,30.5 - parent: 89 - - uid: 10736 + pos: 48.5,20.5 + parent: 2 + - uid: 3796 components: - type: Transform - pos: -3.5,-42.5 - parent: 89 - - uid: 10737 + pos: 2.5,20.5 + parent: 2 + - uid: 3797 components: - type: Transform - pos: -3.5,-43.5 - parent: 89 - - uid: 10738 + pos: -1.5,16.5 + parent: 2 + - uid: 3798 components: - type: Transform - pos: -3.5,-44.5 - parent: 89 - - uid: 10740 + pos: -1.5,20.5 + parent: 2 + - uid: 3799 components: - type: Transform - pos: -7.5,-44.5 - parent: 89 - - uid: 10741 + pos: -5.5,19.5 + parent: 2 + - uid: 3800 components: - type: Transform - pos: -7.5,-43.5 - parent: 89 - - uid: 10742 + pos: -5.5,20.5 + parent: 2 + - uid: 3801 components: - type: Transform - pos: -7.5,-42.5 - parent: 89 - - uid: 10743 + pos: 50.5,-30.5 + parent: 2 + - uid: 3802 components: - type: Transform - pos: 0.5,-44.5 - parent: 89 - - uid: 10744 + pos: 14.5,19.5 + parent: 2 + - uid: 3803 components: - type: Transform - pos: 0.5,-43.5 - parent: 89 - - uid: 10745 + pos: 15.5,19.5 + parent: 2 + - uid: 3804 components: - type: Transform - pos: 0.5,-42.5 - parent: 89 - - uid: 10776 + pos: 14.5,20.5 + parent: 2 + - uid: 3805 components: - type: Transform - pos: -129.5,-2.5 - parent: 89 - - uid: 10786 + pos: 37.5,21.5 + parent: 2 + - uid: 3806 components: - type: Transform - pos: -129.5,-1.5 - parent: 89 - - uid: 10801 + pos: 37.5,20.5 + parent: 2 + - uid: 3807 components: - type: Transform - pos: 8.5,31.5 - parent: 89 - - uid: 10845 + pos: 14.5,21.5 + parent: 2 + - uid: 3808 components: - type: Transform - pos: -121.5,17.5 - parent: 89 - - uid: 10860 + pos: 14.5,22.5 + parent: 2 + - uid: 3809 components: - type: Transform - pos: 20.5,25.5 - parent: 89 - - uid: 10861 + pos: 15.5,22.5 + parent: 2 + - uid: 3810 components: - type: Transform - pos: 21.5,25.5 - parent: 89 - - uid: 10874 + pos: 16.5,22.5 + parent: 2 + - uid: 3811 components: - type: Transform - pos: 15.5,32.5 - parent: 89 - - uid: 10910 + pos: 17.5,22.5 + parent: 2 + - uid: 3812 components: - type: Transform - pos: -27.5,15.5 - parent: 89 - - uid: 10968 + pos: 18.5,22.5 + parent: 2 + - uid: 3813 components: - type: Transform - pos: 0.5,6.5 - parent: 89 - - uid: 10977 + pos: -45.5,24.5 + parent: 2 + - uid: 3814 components: - type: Transform - pos: 13.5,32.5 - parent: 89 - - uid: 10981 + pos: -44.5,24.5 + parent: 2 + - uid: 3815 components: - type: Transform - pos: 14.5,32.5 - parent: 89 - - uid: 10987 + pos: -43.5,24.5 + parent: 2 + - uid: 3816 components: - type: Transform - pos: -120.5,17.5 - parent: 89 - - uid: 11106 + pos: -42.5,24.5 + parent: 2 + - uid: 3817 components: - type: Transform - pos: -27.5,21.5 - parent: 89 - - uid: 11107 + pos: 19.5,22.5 + parent: 2 + - uid: 3818 components: - type: Transform - pos: -28.5,21.5 - parent: 89 - - uid: 11108 + pos: 13.5,22.5 + parent: 2 + - uid: 3819 components: - type: Transform - pos: -29.5,21.5 - parent: 89 - - uid: 11109 + pos: 12.5,22.5 + parent: 2 + - uid: 3820 components: - type: Transform - pos: -27.5,22.5 - parent: 89 - - uid: 11110 + pos: 11.5,22.5 + parent: 2 + - uid: 3821 components: - type: Transform - pos: -29.5,22.5 - parent: 89 - - uid: 11111 + pos: 10.5,22.5 + parent: 2 + - uid: 3822 components: - type: Transform - pos: -29.5,23.5 - parent: 89 - - uid: 11112 + pos: 9.5,22.5 + parent: 2 + - uid: 3823 components: - type: Transform - pos: -29.5,24.5 - parent: 89 - - uid: 11113 + pos: 8.5,22.5 + parent: 2 + - uid: 3824 components: - type: Transform - pos: -29.5,25.5 - parent: 89 - - uid: 11114 + pos: 7.5,22.5 + parent: 2 + - uid: 3825 components: - type: Transform - pos: -29.5,26.5 - parent: 89 - - uid: 11115 + pos: 6.5,22.5 + parent: 2 + - uid: 3826 components: - type: Transform - pos: -29.5,27.5 - parent: 89 - - uid: 11116 + pos: 6.5,23.5 + parent: 2 + - uid: 3827 components: - type: Transform - pos: -29.5,28.5 - parent: 89 - - uid: 11117 + pos: 11.5,23.5 + parent: 2 + - uid: 3828 components: - type: Transform - pos: -29.5,29.5 - parent: 89 - - uid: 11118 + pos: 6.5,21.5 + parent: 2 + - uid: 3829 components: - type: Transform - pos: -29.5,30.5 - parent: 89 - - uid: 11119 + pos: 18.5,16.5 + parent: 2 + - uid: 3830 components: - type: Transform - pos: -29.5,31.5 - parent: 89 - - uid: 11120 + pos: 13.5,23.5 + parent: 2 + - uid: 3831 components: - type: Transform - pos: -29.5,32.5 - parent: 89 - - uid: 11121 + pos: 51.5,-26.5 + parent: 2 + - uid: 3832 components: - type: Transform - pos: -29.5,33.5 - parent: 89 - - uid: 11122 + pos: -132.5,-8.5 + parent: 2 + - uid: 3833 components: - type: Transform - pos: -30.5,31.5 - parent: 89 - - uid: 11123 + pos: -132.5,-9.5 + parent: 2 + - uid: 3834 components: - type: Transform - pos: -31.5,31.5 - parent: 89 - - uid: 11124 + pos: -132.5,-10.5 + parent: 2 + - uid: 3835 components: - type: Transform - pos: -32.5,31.5 - parent: 89 - - uid: 11125 + pos: -134.5,-11.5 + parent: 2 + - uid: 3836 components: - type: Transform - pos: -28.5,33.5 - parent: 89 - - uid: 11126 + pos: -133.5,-7.5 + parent: 2 + - uid: 3837 components: - type: Transform - pos: -27.5,33.5 - parent: 89 - - uid: 11127 + pos: -131.5,-7.5 + parent: 2 + - uid: 3838 components: - type: Transform - pos: -28.5,29.5 - parent: 89 - - uid: 11128 + pos: 45.5,-27.5 + parent: 2 + - uid: 3839 components: - type: Transform - pos: -27.5,29.5 - parent: 89 - - uid: 11129 + pos: 37.5,-18.5 + parent: 2 + - uid: 3840 components: - type: Transform - pos: -30.5,27.5 - parent: 89 - - uid: 11130 + pos: 38.5,-18.5 + parent: 2 + - uid: 3841 components: - type: Transform - pos: -31.5,27.5 - parent: 89 - - uid: 11131 + pos: 38.5,-18.5 + parent: 2 + - uid: 3842 components: - type: Transform - pos: -32.5,27.5 - parent: 89 - - uid: 11132 + pos: 38.5,-19.5 + parent: 2 + - uid: 3843 components: - type: Transform - pos: -30.5,23.5 - parent: 89 - - uid: 11133 + pos: 38.5,-20.5 + parent: 2 + - uid: 3844 components: - type: Transform - pos: -31.5,23.5 - parent: 89 - - uid: 11134 + pos: 38.5,-20.5 + parent: 2 + - uid: 3845 components: - type: Transform - pos: -32.5,23.5 - parent: 89 - - uid: 11135 + pos: 37.5,-20.5 + parent: 2 + - uid: 3846 components: - type: Transform - pos: -28.5,25.5 - parent: 89 - - uid: 11136 + pos: 36.5,-20.5 + parent: 2 + - uid: 3847 components: - type: Transform - pos: -27.5,25.5 - parent: 89 - - uid: 11137 + pos: 35.5,-20.5 + parent: 2 + - uid: 3848 components: - type: Transform - pos: -29.5,20.5 - parent: 89 - - uid: 11138 + pos: 39.5,-20.5 + parent: 2 + - uid: 3849 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 11139 + pos: 39.5,-21.5 + parent: 2 + - uid: 3850 components: - type: Transform - pos: -29.5,18.5 - parent: 89 - - uid: 11141 + pos: 39.5,-22.5 + parent: 2 + - uid: 3851 components: - type: Transform - pos: -30.5,20.5 - parent: 89 - - uid: 11142 + pos: 39.5,-23.5 + parent: 2 + - uid: 3852 components: - type: Transform - pos: -31.5,20.5 - parent: 89 - - uid: 11143 + pos: 39.5,-24.5 + parent: 2 + - uid: 3853 components: - type: Transform - pos: -32.5,20.5 - parent: 89 - - uid: 11144 + pos: 39.5,-25.5 + parent: 2 + - uid: 3854 components: - type: Transform - pos: -33.5,20.5 - parent: 89 - - uid: 11145 + pos: 39.5,-26.5 + parent: 2 + - uid: 3855 components: - type: Transform - pos: -34.5,20.5 - parent: 89 - - uid: 11146 + pos: 40.5,-20.5 + parent: 2 + - uid: 3856 components: - type: Transform - pos: -35.5,20.5 - parent: 89 - - uid: 11147 + pos: 41.5,-20.5 + parent: 2 + - uid: 3857 components: - type: Transform - pos: -27.5,20.5 - parent: 89 - - uid: 11148 + pos: 42.5,-20.5 + parent: 2 + - uid: 3858 components: - type: Transform - pos: -26.5,20.5 - parent: 89 - - uid: 11149 + pos: 43.5,-20.5 + parent: 2 + - uid: 3859 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 11150 + pos: 44.5,-20.5 + parent: 2 + - uid: 3860 components: - type: Transform - pos: -24.5,20.5 - parent: 89 - - uid: 11182 + pos: 45.5,-20.5 + parent: 2 + - uid: 3861 components: - type: Transform - pos: -27.5,14.5 - parent: 89 - - uid: 11183 + pos: 42.5,-19.5 + parent: 2 + - uid: 3862 components: - type: Transform - pos: -27.5,13.5 - parent: 89 - - uid: 11184 + pos: 42.5,-18.5 + parent: 2 + - uid: 3863 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 11185 + pos: 39.5,-18.5 + parent: 2 + - uid: 3864 components: - type: Transform - pos: -29.5,13.5 - parent: 89 - - uid: 11186 + pos: 39.5,-17.5 + parent: 2 + - uid: 3865 components: - type: Transform - pos: -26.5,13.5 - parent: 89 - - uid: 11187 + pos: 39.5,-16.5 + parent: 2 + - uid: 3866 components: - type: Transform - pos: -25.5,13.5 - parent: 89 - - uid: 11188 + pos: 39.5,-15.5 + parent: 2 + - uid: 3867 components: - type: Transform - pos: -24.5,13.5 - parent: 89 - - uid: 11189 + pos: 45.5,-21.5 + parent: 2 + - uid: 3868 components: - type: Transform - pos: -23.5,13.5 - parent: 89 - - uid: 11190 + pos: 45.5,-22.5 + parent: 2 + - uid: 3869 components: - type: Transform - pos: -22.5,13.5 - parent: 89 - - uid: 11191 + pos: 45.5,-23.5 + parent: 2 + - uid: 3870 components: - type: Transform - pos: -21.5,13.5 - parent: 89 - - uid: 11228 + pos: 45.5,-24.5 + parent: 2 + - uid: 3871 components: - type: Transform - pos: -39.5,23.5 - parent: 89 - - uid: 11229 + pos: 45.5,-25.5 + parent: 2 + - uid: 3872 components: - type: Transform - pos: -40.5,23.5 - parent: 89 - - uid: 11230 + pos: 45.5,-26.5 + parent: 2 + - uid: 3873 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 11231 + pos: 49.5,-30.5 + parent: 2 + - uid: 3874 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 11232 + pos: 45.5,-28.5 + parent: 2 + - uid: 3875 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 11234 + pos: 45.5,-29.5 + parent: 2 + - uid: 3876 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 11235 + pos: 45.5,-29.5 + parent: 2 + - uid: 3877 components: - type: Transform - pos: -43.5,20.5 - parent: 89 - - uid: 11236 + pos: 44.5,-29.5 + parent: 2 + - uid: 3878 components: - type: Transform - pos: -44.5,20.5 - parent: 89 - - uid: 11237 + pos: 43.5,-29.5 + parent: 2 + - uid: 3879 components: - type: Transform - pos: -45.5,20.5 - parent: 89 - - uid: 11238 + pos: 42.5,-29.5 + parent: 2 + - uid: 3880 components: - type: Transform - pos: -46.5,20.5 - parent: 89 - - uid: 11239 + pos: 41.5,-29.5 + parent: 2 + - uid: 3881 components: - type: Transform - pos: -47.5,20.5 - parent: 89 - - uid: 11240 + pos: 40.5,-29.5 + parent: 2 + - uid: 3882 components: - type: Transform - pos: -48.5,20.5 - parent: 89 - - uid: 11241 + pos: 44.5,-25.5 + parent: 2 + - uid: 3883 components: - type: Transform - pos: -49.5,20.5 - parent: 89 - - uid: 11242 + pos: 43.5,-25.5 + parent: 2 + - uid: 3884 components: - type: Transform - pos: -50.5,20.5 - parent: 89 - - uid: 11243 + pos: 42.5,-25.5 + parent: 2 + - uid: 3885 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 11244 + pos: 44.5,-22.5 + parent: 2 + - uid: 3886 components: - type: Transform - pos: -52.5,20.5 - parent: 89 - - uid: 11245 + pos: 43.5,-22.5 + parent: 2 + - uid: 3887 components: - type: Transform - pos: -53.5,20.5 - parent: 89 - - uid: 11247 + pos: 42.5,-22.5 + parent: 2 + - uid: 3888 components: - type: Transform - pos: -53.5,21.5 - parent: 89 - - uid: 11248 + pos: 45.5,-30.5 + parent: 2 + - uid: 3889 components: - type: Transform - pos: -53.5,22.5 - parent: 89 - - uid: 11249 + pos: 45.5,-31.5 + parent: 2 + - uid: 3890 components: - type: Transform - pos: -53.5,23.5 - parent: 89 - - uid: 11250 + pos: 45.5,-32.5 + parent: 2 + - uid: 3891 components: - type: Transform - pos: -53.5,24.5 - parent: 89 - - uid: 11251 + pos: 45.5,-33.5 + parent: 2 + - uid: 3892 components: - type: Transform - pos: -53.5,25.5 - parent: 89 - - uid: 11252 + pos: 44.5,-32.5 + parent: 2 + - uid: 3893 components: - type: Transform - pos: -53.5,26.5 - parent: 89 - - uid: 11253 + pos: 43.5,-32.5 + parent: 2 + - uid: 3894 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 11254 + pos: 42.5,-32.5 + parent: 2 + - uid: 3895 components: - type: Transform - pos: -53.5,28.5 - parent: 89 - - uid: 11255 + pos: 41.5,-32.5 + parent: 2 + - uid: 3896 components: - type: Transform - pos: -53.5,29.5 - parent: 89 - - uid: 11256 + pos: 40.5,-32.5 + parent: 2 + - uid: 3897 components: - type: Transform - pos: -53.5,30.5 - parent: 89 - - uid: 11257 + pos: 52.5,-23.5 + parent: 2 + - uid: 3898 components: - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 11258 + pos: 51.5,-23.5 + parent: 2 + - uid: 3899 components: - type: Transform - pos: -53.5,32.5 - parent: 89 - - uid: 11259 + pos: 50.5,-23.5 + parent: 2 + - uid: 3900 components: - type: Transform - pos: -52.5,32.5 - parent: 89 - - uid: 11260 + pos: 49.5,-23.5 + parent: 2 + - uid: 3901 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 11261 + pos: 48.5,-23.5 + parent: 2 + - uid: 3902 components: - type: Transform - pos: -31.5,10.5 - parent: 89 - - uid: 11264 + pos: 47.5,-23.5 + parent: 2 + - uid: 3903 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 11265 + pos: 48.5,-23.5 + parent: 2 + - uid: 3904 components: - type: Transform - pos: -38.5,20.5 - parent: 89 - - uid: 11266 + pos: 48.5,-22.5 + parent: 2 + - uid: 3905 components: - type: Transform - pos: -37.5,20.5 - parent: 89 - - uid: 11267 + pos: 48.5,-21.5 + parent: 2 + - uid: 3906 components: - type: Transform - pos: -37.5,21.5 - parent: 89 - - uid: 11268 + pos: 48.5,-20.5 + parent: 2 + - uid: 3907 components: - type: Transform - pos: -37.5,22.5 - parent: 89 - - uid: 11269 + pos: 48.5,-19.5 + parent: 2 + - uid: 3908 components: - type: Transform - pos: -37.5,23.5 - parent: 89 - - uid: 11270 + pos: 48.5,-18.5 + parent: 2 + - uid: 3909 components: - type: Transform - pos: -37.5,24.5 - parent: 89 - - uid: 11271 + pos: 51.5,-22.5 + parent: 2 + - uid: 3910 components: - type: Transform - pos: -37.5,25.5 - parent: 89 - - uid: 11272 + pos: 51.5,-21.5 + parent: 2 + - uid: 3911 components: - type: Transform - pos: -37.5,26.5 - parent: 89 - - uid: 11273 + pos: 51.5,-20.5 + parent: 2 + - uid: 3912 components: - type: Transform - pos: -37.5,27.5 - parent: 89 - - uid: 11274 + pos: 51.5,-19.5 + parent: 2 + - uid: 3913 components: - type: Transform - pos: -37.5,28.5 - parent: 89 - - uid: 11283 + pos: 51.5,-18.5 + parent: 2 + - uid: 3914 components: - type: Transform - pos: -21.5,19.5 - parent: 89 - - uid: 11284 + pos: 52.5,-20.5 + parent: 2 + - uid: 3915 components: - type: Transform - pos: -21.5,20.5 - parent: 89 - - uid: 11285 + pos: 53.5,-20.5 + parent: 2 + - uid: 3916 components: - type: Transform - pos: -21.5,21.5 - parent: 89 - - uid: 11286 + pos: 53.5,-23.5 + parent: 2 + - uid: 3917 components: - type: Transform - pos: -22.5,21.5 - parent: 89 - - uid: 11287 + pos: 52.5,-25.5 + parent: 2 + - uid: 3918 components: - type: Transform - pos: -22.5,22.5 - parent: 89 - - uid: 11288 + pos: 52.5,-23.5 + parent: 2 + - uid: 3919 components: - type: Transform - pos: -22.5,23.5 - parent: 89 - - uid: 11289 + pos: 52.5,-22.5 + parent: 2 + - uid: 3920 components: - type: Transform - pos: -22.5,24.5 - parent: 89 - - uid: 11290 + pos: 53.5,-25.5 + parent: 2 + - uid: 3921 components: - type: Transform - pos: -22.5,25.5 - parent: 89 - - uid: 11291 + pos: 53.5,-23.5 + parent: 2 + - uid: 3922 components: - type: Transform - pos: -22.5,26.5 - parent: 89 - - uid: 11292 + pos: 51.5,-29.5 + parent: 2 + - uid: 3923 components: - type: Transform - pos: -22.5,27.5 - parent: 89 - - uid: 11293 + pos: 54.5,-25.5 + parent: 2 + - uid: 3924 components: - type: Transform - pos: -22.5,28.5 - parent: 89 - - uid: 11294 + pos: 51.5,-27.5 + parent: 2 + - uid: 3925 components: - type: Transform - pos: -20.5,20.5 - parent: 89 - - uid: 11295 + pos: 51.5,-28.5 + parent: 2 + - uid: 3926 components: - type: Transform - pos: -19.5,20.5 - parent: 89 - - uid: 11296 + pos: 55.5,-25.5 + parent: 2 + - uid: 3927 components: - type: Transform - pos: -18.5,20.5 - parent: 89 - - uid: 11297 + pos: 51.5,-24.5 + parent: 2 + - uid: 3928 components: - type: Transform - pos: -17.5,20.5 - parent: 89 - - uid: 11298 + pos: 51.5,-30.5 + parent: 2 + - uid: 3929 components: - type: Transform - pos: -16.5,20.5 - parent: 89 - - uid: 11299 + pos: 50.5,-25.5 + parent: 2 + - uid: 3930 components: - type: Transform - pos: -15.5,20.5 - parent: 89 - - uid: 11300 + pos: 49.5,-25.5 + parent: 2 + - uid: 3931 components: - type: Transform - pos: -14.5,20.5 - parent: 89 - - uid: 11315 + pos: 48.5,-25.5 + parent: 2 + - uid: 3932 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 11316 + pos: 47.5,-25.5 + parent: 2 + - uid: 3933 components: - type: Transform - pos: -14.5,14.5 - parent: 89 - - uid: 11317 + pos: 48.5,-26.5 + parent: 2 + - uid: 3934 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 11318 + pos: 48.5,-27.5 + parent: 2 + - uid: 3935 components: - type: Transform - pos: -14.5,16.5 - parent: 89 - - uid: 11319 + pos: 48.5,-28.5 + parent: 2 + - uid: 3936 components: - type: Transform - pos: -14.5,17.5 - parent: 89 - - uid: 11320 + pos: 47.5,-27.5 + parent: 2 + - uid: 3937 components: - type: Transform - pos: -19.5,11.5 - parent: 89 - - uid: 11321 + pos: 46.5,-25.5 + parent: 2 + - uid: 3938 components: - type: Transform - pos: -19.5,12.5 - parent: 89 - - uid: 11322 + pos: 48.5,-30.5 + parent: 2 + - uid: 3939 components: - type: Transform - pos: -19.5,13.5 - parent: 89 - - uid: 11323 + pos: 47.5,-30.5 + parent: 2 + - uid: 3940 components: - type: Transform - pos: -19.5,14.5 - parent: 89 - - uid: 11324 + pos: 49.5,-31.5 + parent: 2 + - uid: 3941 components: - type: Transform - pos: 2.5,23.5 - parent: 89 - - uid: 11325 + pos: 49.5,-32.5 + parent: 2 + - uid: 3942 components: - type: Transform - pos: -18.5,14.5 - parent: 89 - - uid: 11326 + pos: 49.5,-33.5 + parent: 2 + - uid: 3943 components: - type: Transform - pos: -17.5,14.5 - parent: 89 - - uid: 11327 + pos: 47.5,-31.5 + parent: 2 + - uid: 3944 components: - type: Transform - pos: -16.5,14.5 - parent: 89 - - uid: 11328 + pos: 47.5,-32.5 + parent: 2 + - uid: 3945 components: - type: Transform - pos: -15.5,14.5 - parent: 89 - - uid: 11331 + pos: 47.5,-33.5 + parent: 2 + - uid: 3946 components: - type: Transform - pos: -36.5,6.5 - parent: 89 - - uid: 11332 + pos: 51.5,-31.5 + parent: 2 + - uid: 3947 components: - type: Transform - pos: -36.5,5.5 - parent: 89 - - uid: 11333 + pos: 51.5,-32.5 + parent: 2 + - uid: 3948 components: - type: Transform - pos: -36.5,4.5 - parent: 89 - - uid: 11334 + pos: 51.5,-33.5 + parent: 2 + - uid: 3949 components: - type: Transform - pos: -36.5,3.5 - parent: 89 - - uid: 11335 + pos: 53.5,-30.5 + parent: 2 + - uid: 3950 components: - type: Transform - pos: -37.5,3.5 - parent: 89 - - uid: 11336 + pos: 53.5,-31.5 + parent: 2 + - uid: 3951 components: - type: Transform - pos: -38.5,3.5 - parent: 89 - - uid: 11337 + pos: 53.5,-32.5 + parent: 2 + - uid: 3952 components: - type: Transform - pos: -39.5,3.5 - parent: 89 - - uid: 11338 + pos: 53.5,-33.5 + parent: 2 + - uid: 3953 components: - type: Transform - pos: -40.5,3.5 - parent: 89 - - uid: 11342 + pos: 52.5,-30.5 + parent: 2 + - uid: 3954 components: - type: Transform - pos: -40.5,4.5 - parent: 89 - - uid: 11343 + pos: 54.5,-30.5 + parent: 2 + - uid: 3955 components: - type: Transform - pos: -40.5,5.5 - parent: 89 - - uid: 11344 + pos: 55.5,-30.5 + parent: 2 + - uid: 3956 components: - type: Transform - pos: -40.5,6.5 - parent: 89 - - uid: 11345 + pos: 56.5,-30.5 + parent: 2 + - uid: 3957 components: - type: Transform - pos: -40.5,7.5 - parent: 89 - - uid: 11346 + pos: 56.5,-31.5 + parent: 2 + - uid: 3958 components: - type: Transform - pos: -40.5,8.5 - parent: 89 - - uid: 11347 + pos: 56.5,-32.5 + parent: 2 + - uid: 3959 components: - type: Transform - pos: -39.5,8.5 - parent: 89 - - uid: 11348 + pos: 56.5,-33.5 + parent: 2 + - uid: 3960 components: - type: Transform - pos: -38.5,8.5 - parent: 89 - - uid: 11349 + pos: 56.5,-29.5 + parent: 2 + - uid: 3961 components: - type: Transform - pos: -37.5,8.5 - parent: 89 - - uid: 11351 + pos: 56.5,-28.5 + parent: 2 + - uid: 3962 components: - type: Transform - pos: -37.5,9.5 - parent: 89 - - uid: 11353 + pos: 56.5,-27.5 + parent: 2 + - uid: 3963 components: - type: Transform - pos: -36.5,8.5 - parent: 89 - - uid: 11354 + pos: 57.5,-27.5 + parent: 2 + - uid: 3964 components: - type: Transform - pos: -35.5,4.5 - parent: 89 - - uid: 11355 + pos: 57.5,-26.5 + parent: 2 + - uid: 3965 components: - type: Transform - pos: -34.5,4.5 - parent: 89 - - uid: 11356 + pos: 57.5,-25.5 + parent: 2 + - uid: 3966 components: - type: Transform - pos: -33.5,4.5 - parent: 89 - - uid: 11357 + pos: 57.5,-24.5 + parent: 2 + - uid: 3967 components: - type: Transform - pos: -32.5,4.5 - parent: 89 - - uid: 11358 + pos: 57.5,-29.5 + parent: 2 + - uid: 3968 components: - type: Transform - pos: -31.5,4.5 - parent: 89 - - uid: 11359 + pos: 58.5,-29.5 + parent: 2 + - uid: 3969 components: - type: Transform - pos: -30.5,4.5 - parent: 89 - - uid: 11360 + pos: 57.5,-23.5 + parent: 2 + - uid: 3970 components: - type: Transform - pos: -29.5,4.5 - parent: 89 - - uid: 11363 + pos: 57.5,-22.5 + parent: 2 + - uid: 3971 components: - type: Transform - pos: -31.5,5.5 - parent: 89 - - uid: 11364 + pos: 57.5,-21.5 + parent: 2 + - uid: 3972 components: - type: Transform - pos: -30.5,13.5 - parent: 89 - - uid: 11365 + pos: 57.5,-20.5 + parent: 2 + - uid: 3973 components: - type: Transform - pos: -31.5,13.5 - parent: 89 - - uid: 11366 + pos: 57.5,-19.5 + parent: 2 + - uid: 3974 components: - type: Transform - pos: -32.5,13.5 - parent: 89 - - uid: 11367 + pos: -133.5,-6.5 + parent: 2 + - uid: 3975 components: - type: Transform - pos: -33.5,13.5 - parent: 89 - - uid: 11368 + pos: -133.5,-5.5 + parent: 2 + - uid: 3976 components: - type: Transform - pos: -33.5,14.5 - parent: 89 - - uid: 11369 + pos: -133.5,-4.5 + parent: 2 + - uid: 3977 components: - type: Transform - pos: -33.5,15.5 - parent: 89 - - uid: 11370 + pos: -133.5,-3.5 + parent: 2 + - uid: 3978 components: - type: Transform - pos: -33.5,16.5 - parent: 89 - - uid: 11371 + pos: -134.5,-10.5 + parent: 2 + - uid: 3979 components: - type: Transform - pos: -33.5,17.5 - parent: 89 - - uid: 11372 + pos: -133.5,-10.5 + parent: 2 + - uid: 3980 components: - type: Transform - pos: -33.5,18.5 - parent: 89 - - uid: 11389 + pos: 52.5,-28.5 + parent: 2 + - uid: 3981 components: - type: Transform - pos: -14.5,22.5 - parent: 89 - - uid: 11762 + pos: 53.5,-28.5 + parent: 2 + - uid: 3982 components: - type: Transform - pos: -34.5,-16.5 - parent: 89 - - uid: 11763 + pos: 26.5,-17.5 + parent: 2 + - uid: 3983 components: - type: Transform - pos: -37.5,-16.5 - parent: 89 - - uid: 11999 + pos: 26.5,-16.5 + parent: 2 + - uid: 3984 components: - type: Transform - pos: -101.5,-1.5 - parent: 89 - - uid: 12000 + pos: 26.5,-16.5 + parent: 2 + - uid: 3985 components: - type: Transform - pos: -105.5,-2.5 - parent: 89 - - uid: 12009 + pos: 25.5,-16.5 + parent: 2 + - uid: 3986 components: - type: Transform - pos: -105.5,-3.5 - parent: 89 - - uid: 12010 + pos: 24.5,-16.5 + parent: 2 + - uid: 3987 components: - type: Transform - pos: -105.5,-4.5 - parent: 89 - - uid: 12013 + pos: 23.5,-16.5 + parent: 2 + - uid: 3988 components: - type: Transform - pos: -104.5,-2.5 - parent: 89 - - uid: 12014 + pos: 22.5,-16.5 + parent: 2 + - uid: 3989 components: - type: Transform - pos: -103.5,-2.5 - parent: 89 - - uid: 12015 + pos: 21.5,-16.5 + parent: 2 + - uid: 3990 components: - type: Transform - pos: -102.5,-2.5 - parent: 89 - - uid: 12016 + pos: 20.5,-16.5 + parent: 2 + - uid: 3991 components: - type: Transform - pos: -101.5,-2.5 - parent: 89 - - uid: 12017 + pos: 19.5,-16.5 + parent: 2 + - uid: 3992 components: - type: Transform - pos: -100.5,-2.5 - parent: 89 - - uid: 12018 + pos: 18.5,-16.5 + parent: 2 + - uid: 3993 components: - type: Transform - pos: -99.5,-2.5 - parent: 89 - - uid: 12019 + pos: 17.5,-16.5 + parent: 2 + - uid: 3994 components: - type: Transform - pos: -106.5,-2.5 - parent: 89 - - uid: 12020 + pos: 17.5,-16.5 + parent: 2 + - uid: 3995 components: - type: Transform - pos: -101.5,-0.5 - parent: 89 - - uid: 12022 + pos: 17.5,-17.5 + parent: 2 + - uid: 3996 components: - type: Transform - pos: -102.5,-3.5 - parent: 89 - - uid: 12023 + pos: 17.5,-18.5 + parent: 2 + - uid: 3997 components: - type: Transform - pos: -102.5,-4.5 - parent: 89 - - uid: 12024 + pos: 17.5,-18.5 + parent: 2 + - uid: 3998 components: - type: Transform - pos: -99.5,-3.5 - parent: 89 - - uid: 12025 + pos: 16.5,-18.5 + parent: 2 + - uid: 3999 components: - type: Transform - pos: -99.5,-4.5 - parent: 89 - - uid: 12026 + pos: 15.5,-18.5 + parent: 2 + - uid: 4000 components: - type: Transform - pos: -99.5,-5.5 - parent: 89 - - uid: 12027 + pos: 15.5,-19.5 + parent: 2 + - uid: 4001 components: - type: Transform - pos: -99.5,-6.5 - parent: 89 - - uid: 12028 + pos: 14.5,-19.5 + parent: 2 + - uid: 4002 components: - type: Transform - pos: -99.5,-7.5 - parent: 89 - - uid: 12029 + pos: 13.5,-19.5 + parent: 2 + - uid: 4003 components: - type: Transform - pos: -99.5,-8.5 - parent: 89 - - uid: 12030 + pos: 12.5,-19.5 + parent: 2 + - uid: 4004 components: - type: Transform - pos: -99.5,-9.5 - parent: 89 - - uid: 12031 + pos: 11.5,-19.5 + parent: 2 + - uid: 4005 components: - type: Transform - pos: -100.5,-9.5 - parent: 89 - - uid: 12032 + pos: 10.5,-19.5 + parent: 2 + - uid: 4006 components: - type: Transform - pos: -101.5,-9.5 - parent: 89 - - uid: 12033 + pos: 38.5,-22.5 + parent: 2 + - uid: 4007 components: - type: Transform - pos: -102.5,-9.5 - parent: 89 - - uid: 12034 + pos: 37.5,-22.5 + parent: 2 + - uid: 4008 components: - type: Transform - pos: -103.5,-9.5 - parent: 89 - - uid: 12035 + pos: 36.5,-22.5 + parent: 2 + - uid: 4009 components: - type: Transform - pos: -104.5,-9.5 - parent: 89 - - uid: 12036 + pos: 35.5,-22.5 + parent: 2 + - uid: 4010 components: - type: Transform - pos: -104.5,-8.5 - parent: 89 - - uid: 12050 + pos: 34.5,-22.5 + parent: 2 + - uid: 4011 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 12051 + pos: 35.5,-23.5 + parent: 2 + - uid: 4012 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 - - uid: 12052 + pos: 35.5,-24.5 + parent: 2 + - uid: 4013 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 - - uid: 12053 + pos: 35.5,-25.5 + parent: 2 + - uid: 4014 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 - - uid: 12054 + pos: 35.5,-26.5 + parent: 2 + - uid: 4015 components: - type: Transform - pos: -105.5,-15.5 - parent: 89 - - uid: 12055 + pos: 35.5,-27.5 + parent: 2 + - uid: 4016 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 - - uid: 12056 + pos: 10.5,-18.5 + parent: 2 + - uid: 4017 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 - - uid: 12057 + pos: 9.5,-18.5 + parent: 2 + - uid: 4018 components: - type: Transform - pos: -105.5,-18.5 - parent: 89 - - uid: 12058 + pos: 27.5,-16.5 + parent: 2 + - uid: 4019 components: - type: Transform - pos: -105.5,-19.5 - parent: 89 - - uid: 12059 + pos: 28.5,-16.5 + parent: 2 + - uid: 4020 components: - type: Transform - pos: -104.5,-12.5 - parent: 89 - - uid: 12060 + pos: 29.5,-16.5 + parent: 2 + - uid: 4021 components: - type: Transform - pos: -103.5,-12.5 - parent: 89 - - uid: 12061 + pos: 30.5,-16.5 + parent: 2 + - uid: 4022 components: - type: Transform - pos: -102.5,-12.5 - parent: 89 - - uid: 12062 + pos: 31.5,-16.5 + parent: 2 + - uid: 4023 components: - type: Transform - pos: -101.5,-12.5 - parent: 89 - - uid: 12063 + pos: 32.5,-16.5 + parent: 2 + - uid: 4024 components: - type: Transform - pos: -100.5,-12.5 - parent: 89 - - uid: 12064 + pos: 33.5,-16.5 + parent: 2 + - uid: 4025 components: - type: Transform - pos: -99.5,-12.5 - parent: 89 - - uid: 12065 + pos: 34.5,-16.5 + parent: 2 + - uid: 4026 components: - type: Transform - pos: -98.5,-12.5 - parent: 89 - - uid: 12066 + pos: 35.5,-16.5 + parent: 2 + - uid: 4027 components: - type: Transform - pos: -98.5,-13.5 - parent: 89 - - uid: 12067 + pos: 36.5,-16.5 + parent: 2 + - uid: 4028 components: - type: Transform - pos: -97.5,-13.5 - parent: 89 - - uid: 12068 + pos: 36.5,-17.5 + parent: 2 + - uid: 4029 components: - type: Transform - pos: -96.5,-13.5 - parent: 89 - - uid: 12069 + pos: -26.5,16.5 + parent: 2 + - uid: 4030 components: - type: Transform - pos: -96.5,-12.5 - parent: 89 - - uid: 12070 + pos: -26.5,17.5 + parent: 2 + - uid: 4031 components: - type: Transform - pos: -96.5,-11.5 - parent: 89 - - uid: 12071 + pos: -14.5,-25.5 + parent: 2 + - uid: 4032 components: - type: Transform - pos: -96.5,-10.5 - parent: 89 - - uid: 12072 + pos: 37.5,-9.5 + parent: 2 + - uid: 4033 components: - type: Transform - pos: -96.5,-9.5 - parent: 89 - - uid: 12073 + pos: 35.5,-6.5 + parent: 2 + - uid: 4034 components: - type: Transform - pos: -96.5,-8.5 - parent: 89 - - uid: 12074 + pos: -0.5,-0.5 + parent: 2 + - uid: 4035 components: - type: Transform - pos: -95.5,-8.5 - parent: 89 - - uid: 12075 + pos: -0.5,-2.5 + parent: 2 + - uid: 4036 components: - type: Transform - pos: -95.5,-7.5 - parent: 89 - - uid: 12076 + pos: -0.5,-1.5 + parent: 2 + - uid: 4037 components: - type: Transform - pos: -92.5,-8.5 - parent: 89 - - uid: 12077 + pos: 45.5,-5.5 + parent: 2 + - uid: 4038 components: - type: Transform - pos: -91.5,-8.5 - parent: 89 - - uid: 12078 + pos: 47.5,-9.5 + parent: 2 + - uid: 4039 components: - type: Transform - pos: -91.5,-10.5 - parent: 89 - - uid: 12079 + pos: 48.5,-9.5 + parent: 2 + - uid: 4040 components: - type: Transform - pos: -91.5,-9.5 - parent: 89 - - uid: 12080 + pos: 46.5,-9.5 + parent: 2 + - uid: 4041 components: - type: Transform - pos: -95.5,-13.5 - parent: 89 - - uid: 12081 + pos: 44.5,-5.5 + parent: 2 + - uid: 4042 components: - type: Transform - pos: -94.5,-13.5 - parent: 89 - - uid: 12082 + pos: -0.5,1.5 + parent: 2 + - uid: 4043 components: - type: Transform - pos: -93.5,-13.5 - parent: 89 - - uid: 12083 + pos: 35.5,-5.5 + parent: 2 + - uid: 4044 components: - type: Transform - pos: -92.5,-13.5 - parent: 89 - - uid: 12084 + pos: 45.5,-9.5 + parent: 2 + - uid: 4045 components: - type: Transform - pos: -91.5,-13.5 - parent: 89 - - uid: 12085 + pos: 44.5,-9.5 + parent: 2 + - uid: 4046 components: - type: Transform - pos: -90.5,-13.5 - parent: 89 - - uid: 12086 + pos: 43.5,-9.5 + parent: 2 + - uid: 4047 components: - type: Transform - pos: -89.5,-13.5 - parent: 89 - - uid: 12087 + pos: 48.5,-5.5 + parent: 2 + - uid: 4048 components: - type: Transform - pos: -88.5,-13.5 - parent: 89 - - uid: 12088 + pos: -0.5,-4.5 + parent: 2 + - uid: 4049 components: - type: Transform - pos: -87.5,-13.5 - parent: 89 - - uid: 12089 + pos: -0.5,-5.5 + parent: 2 + - uid: 4050 components: - type: Transform - pos: -86.5,-13.5 - parent: 89 - - uid: 12090 + pos: -0.5,-6.5 + parent: 2 + - uid: 4051 components: - type: Transform - pos: -85.5,-13.5 - parent: 89 - - uid: 12091 + pos: -0.5,-7.5 + parent: 2 + - uid: 4052 components: - type: Transform - pos: -84.5,-13.5 - parent: 89 - - uid: 12092 + pos: -0.5,-8.5 + parent: 2 + - uid: 4053 components: - type: Transform - pos: -83.5,-13.5 - parent: 89 - - uid: 12093 + pos: -0.5,-9.5 + parent: 2 + - uid: 4054 components: - type: Transform - pos: -82.5,-13.5 - parent: 89 - - uid: 12094 + pos: -0.5,-10.5 + parent: 2 + - uid: 4055 components: - type: Transform - pos: -81.5,-13.5 - parent: 89 - - uid: 12095 + pos: -0.5,-11.5 + parent: 2 + - uid: 4056 components: - type: Transform - pos: -80.5,-13.5 - parent: 89 - - uid: 12096 + pos: -0.5,-12.5 + parent: 2 + - uid: 4057 components: - type: Transform - pos: -79.5,-13.5 - parent: 89 - - uid: 12097 + pos: 13.5,-14.5 + parent: 2 + - uid: 4058 components: - type: Transform - pos: -78.5,-13.5 - parent: 89 - - uid: 12098 + pos: 13.5,-15.5 + parent: 2 + - uid: 4059 components: - type: Transform - pos: -78.5,-14.5 - parent: 89 - - uid: 12099 + pos: 14.5,-15.5 + parent: 2 + - uid: 4060 components: - type: Transform - pos: -78.5,-15.5 - parent: 89 - - uid: 12100 + pos: -12.5,-27.5 + parent: 2 + - uid: 4061 components: - type: Transform - pos: -78.5,-16.5 - parent: 89 - - uid: 12101 + pos: -13.5,-27.5 + parent: 2 + - uid: 4062 components: - type: Transform - pos: -78.5,-17.5 - parent: 89 - - uid: 12102 + pos: -14.5,-27.5 + parent: 2 + - uid: 4063 components: - type: Transform - pos: -78.5,-18.5 - parent: 89 - - uid: 12103 + pos: -11.5,-26.5 + parent: 2 + - uid: 4064 components: - type: Transform - pos: -78.5,-19.5 - parent: 89 - - uid: 12104 + pos: -5.5,-5.5 + parent: 2 + - uid: 4065 components: - type: Transform - pos: -79.5,-19.5 - parent: 89 - - uid: 12105 + pos: -4.5,-5.5 + parent: 2 + - uid: 4066 components: - type: Transform - pos: -80.5,-19.5 - parent: 89 - - uid: 12106 + pos: -3.5,-5.5 + parent: 2 + - uid: 4067 components: - type: Transform - pos: -81.5,-19.5 - parent: 89 - - uid: 12107 + pos: -3.5,-3.5 + parent: 2 + - uid: 4068 components: - type: Transform - pos: -82.5,-19.5 - parent: 89 - - uid: 12108 + pos: -3.5,-4.5 + parent: 2 + - uid: 4069 components: - type: Transform - pos: -83.5,-19.5 - parent: 89 - - uid: 12109 + pos: -3.5,-2.5 + parent: 2 + - uid: 4070 components: - type: Transform - pos: -84.5,-19.5 - parent: 89 - - uid: 12110 + pos: -3.5,-1.5 + parent: 2 + - uid: 4071 components: - type: Transform - pos: -78.5,-21.5 - parent: 89 - - uid: 12111 + pos: -4.5,-1.5 + parent: 2 + - uid: 4072 components: - type: Transform - pos: -77.5,-21.5 - parent: 89 - - uid: 12112 + pos: -5.5,-1.5 + parent: 2 + - uid: 4073 components: - type: Transform - pos: -77.5,-19.5 - parent: 89 - - uid: 12113 + pos: -7.5,-1.5 + parent: 2 + - uid: 4074 components: - type: Transform - pos: -76.5,-19.5 - parent: 89 - - uid: 12114 + pos: -8.5,-1.5 + parent: 2 + - uid: 4075 components: - type: Transform - pos: -76.5,-21.5 - parent: 89 - - uid: 12115 + pos: -9.5,-1.5 + parent: 2 + - uid: 4076 components: - type: Transform - pos: -76.5,-20.5 - parent: 89 - - uid: 12116 + pos: -4.5,-6.5 + parent: 2 + - uid: 4077 components: - type: Transform - pos: -79.5,-21.5 - parent: 89 - - uid: 12117 + pos: -4.5,-7.5 + parent: 2 + - uid: 4078 components: - type: Transform - pos: -80.5,-21.5 - parent: 89 - - uid: 12118 + pos: -4.5,-8.5 + parent: 2 + - uid: 4079 components: - type: Transform - pos: -81.5,-21.5 - parent: 89 - - uid: 12119 + pos: -4.5,-9.5 + parent: 2 + - uid: 4080 components: - type: Transform - pos: -82.5,-21.5 - parent: 89 - - uid: 12120 + pos: -5.5,-9.5 + parent: 2 + - uid: 4081 components: - type: Transform - pos: -83.5,-21.5 - parent: 89 - - uid: 12122 + pos: -8.5,-5.5 + parent: 2 + - uid: 4082 components: - type: Transform - pos: -83.5,-22.5 - parent: 89 - - uid: 12123 + pos: -7.5,-5.5 + parent: 2 + - uid: 4083 components: - type: Transform - pos: -83.5,-23.5 - parent: 89 - - uid: 12124 + pos: -130.5,12.5 + parent: 2 + - uid: 4084 components: - type: Transform - pos: -83.5,-24.5 - parent: 89 - - uid: 12125 + pos: -24.5,16.5 + parent: 2 + - uid: 4085 components: - type: Transform - pos: -82.5,-24.5 - parent: 89 - - uid: 12126 + pos: -23.5,16.5 + parent: 2 + - uid: 4086 components: - type: Transform - pos: -81.5,-24.5 - parent: 89 - - uid: 12127 + pos: -23.5,17.5 + parent: 2 + - uid: 4087 components: - type: Transform - pos: -80.5,-24.5 - parent: 89 - - uid: 12130 + pos: -25.5,16.5 + parent: 2 + - uid: 4088 components: - type: Transform - pos: -104.5,-19.5 - parent: 89 - - uid: 12144 + pos: -23.5,18.5 + parent: 2 + - uid: 4089 components: - type: Transform - pos: -95.5,3.5 - parent: 89 - - uid: 12145 + pos: -117.5,24.5 + parent: 2 + - uid: 4090 components: - type: Transform - pos: -94.5,3.5 - parent: 89 - - uid: 12146 + pos: -116.5,23.5 + parent: 2 + - uid: 4091 components: - type: Transform - pos: -93.5,3.5 - parent: 89 - - uid: 12147 + pos: -114.5,24.5 + parent: 2 + - uid: 4092 components: - type: Transform - pos: -96.5,3.5 - parent: 89 - - uid: 12149 + pos: -116.5,23.5 + parent: 2 + - uid: 4093 components: - type: Transform - pos: -93.5,4.5 - parent: 89 - - uid: 12150 + pos: -115.5,25.5 + parent: 2 + - uid: 4094 components: - type: Transform - pos: -93.5,5.5 - parent: 89 - - uid: 12151 + pos: -115.5,25.5 + parent: 2 + - uid: 4095 components: - type: Transform - pos: -93.5,6.5 - parent: 89 - - uid: 12152 + pos: -117.5,25.5 + parent: 2 + - uid: 4096 components: - type: Transform - pos: -93.5,7.5 - parent: 89 - - uid: 12153 + pos: -115.5,23.5 + parent: 2 + - uid: 4097 components: - type: Transform - pos: -93.5,8.5 - parent: 89 - - uid: 12154 + pos: -116.5,25.5 + parent: 2 + - uid: 4098 components: - type: Transform - pos: -93.5,9.5 - parent: 89 - - uid: 12155 + pos: -114.5,23.5 + parent: 2 + - uid: 4099 components: - type: Transform - pos: -93.5,10.5 - parent: 89 - - uid: 12156 + pos: -117.5,23.5 + parent: 2 + - uid: 4100 components: - type: Transform - pos: -93.5,11.5 - parent: 89 - - uid: 12157 + pos: -113.5,24.5 + parent: 2 + - uid: 4101 components: - type: Transform - pos: -93.5,12.5 - parent: 89 - - uid: 12158 + pos: -114.5,25.5 + parent: 2 + - uid: 4102 components: - type: Transform - pos: -93.5,13.5 - parent: 89 - - uid: 12159 + pos: -26.5,18.5 + parent: 2 + - uid: 4103 components: - type: Transform - pos: -93.5,14.5 - parent: 89 - - uid: 12160 + pos: -134.5,-13.5 + parent: 2 + - uid: 4104 components: - type: Transform - pos: -93.5,15.5 - parent: 89 - - uid: 12161 + pos: -102.5,-20.5 + parent: 2 + - uid: 4105 components: - type: Transform - pos: -93.5,16.5 - parent: 89 - - uid: 12162 + pos: -134.5,-14.5 + parent: 2 + - uid: 4106 components: - type: Transform - pos: -92.5,16.5 - parent: 89 - - uid: 12163 + pos: -134.5,-11.5 + parent: 2 + - uid: 4107 components: - type: Transform - pos: -91.5,16.5 - parent: 89 - - uid: 12164 + pos: -134.5,-12.5 + parent: 2 + - uid: 4108 components: - type: Transform - pos: -92.5,14.5 - parent: 89 - - uid: 12165 + pos: -136.5,-14.5 + parent: 2 + - uid: 4109 components: - type: Transform - pos: -91.5,14.5 - parent: 89 - - uid: 12166 + pos: -137.5,-14.5 + parent: 2 + - uid: 4110 components: - type: Transform - pos: -94.5,16.5 - parent: 89 - - uid: 12167 + pos: -138.5,-14.5 + parent: 2 + - uid: 4111 components: - type: Transform - pos: -95.5,16.5 - parent: 89 - - uid: 12168 + pos: -139.5,-14.5 + parent: 2 + - uid: 4112 components: - type: Transform - pos: -92.5,12.5 - parent: 89 - - uid: 12169 + pos: -140.5,-14.5 + parent: 2 + - uid: 4113 components: - type: Transform - pos: -91.5,12.5 - parent: 89 - - uid: 12170 + pos: -141.5,-14.5 + parent: 2 + - uid: 4114 components: - type: Transform - pos: -93.5,2.5 - parent: 89 - - uid: 12171 + pos: -142.5,-14.5 + parent: 2 + - uid: 4115 components: - type: Transform - pos: -93.5,1.5 - parent: 89 - - uid: 12172 + pos: -143.5,-14.5 + parent: 2 + - uid: 4116 components: - type: Transform - pos: -93.5,0.5 - parent: 89 - - uid: 12173 + pos: -144.5,-14.5 + parent: 2 + - uid: 4117 components: - type: Transform - pos: -93.5,-0.5 - parent: 89 - - uid: 12174 + pos: -145.5,-14.5 + parent: 2 + - uid: 4118 components: - type: Transform - pos: -93.5,-1.5 - parent: 89 - - uid: 12175 + pos: -146.5,-14.5 + parent: 2 + - uid: 4119 components: - type: Transform - pos: -93.5,-2.5 - parent: 89 - - uid: 12176 + pos: -147.5,-14.5 + parent: 2 + - uid: 4120 components: - type: Transform - pos: -93.5,-3.5 - parent: 89 - - uid: 12177 + pos: -148.5,-14.5 + parent: 2 + - uid: 4121 components: - type: Transform - pos: -93.5,-4.5 - parent: 89 - - uid: 12178 + pos: -149.5,-14.5 + parent: 2 + - uid: 4122 components: - type: Transform - pos: -94.5,-4.5 - parent: 89 - - uid: 12179 + pos: -149.5,-13.5 + parent: 2 + - uid: 4123 components: - type: Transform - pos: -95.5,-4.5 - parent: 89 - - uid: 12180 + pos: -150.5,-13.5 + parent: 2 + - uid: 4124 components: - type: Transform - pos: -95.5,-5.5 - parent: 89 - - uid: 12181 + pos: -150.5,-12.5 + parent: 2 + - uid: 4125 components: - type: Transform - pos: -92.5,-4.5 - parent: 89 - - uid: 12183 + pos: -150.5,-11.5 + parent: 2 + - uid: 4126 components: - type: Transform - pos: -92.5,-5.5 - parent: 89 - - uid: 12184 + pos: -150.5,-10.5 + parent: 2 + - uid: 4127 components: - type: Transform - pos: -92.5,-1.5 - parent: 89 - - uid: 12185 + pos: -150.5,-9.5 + parent: 2 + - uid: 4128 components: - type: Transform - pos: -91.5,-1.5 - parent: 89 - - uid: 12186 + pos: -150.5,-8.5 + parent: 2 + - uid: 4129 components: - type: Transform - pos: -90.5,-1.5 - parent: 89 - - uid: 12187 + pos: -150.5,-7.5 + parent: 2 + - uid: 4130 components: - type: Transform - pos: -89.5,-1.5 - parent: 89 - - uid: 12188 + pos: -150.5,-6.5 + parent: 2 + - uid: 4131 components: - type: Transform - pos: -88.5,-1.5 - parent: 89 - - uid: 12189 + pos: -150.5,-5.5 + parent: 2 + - uid: 4132 components: - type: Transform - pos: -87.5,-1.5 - parent: 89 - - uid: 12191 + pos: -150.5,-4.5 + parent: 2 + - uid: 4133 components: - type: Transform - pos: -88.5,-0.5 - parent: 89 - - uid: 12192 + pos: -150.5,-3.5 + parent: 2 + - uid: 4134 components: - type: Transform - pos: -94.5,7.5 - parent: 89 - - uid: 12202 + pos: -150.5,-2.5 + parent: 2 + - uid: 4135 components: - type: Transform - pos: -103.5,10.5 - parent: 89 - - uid: 12204 + pos: -150.5,-1.5 + parent: 2 + - uid: 4136 components: - type: Transform - pos: -100.5,9.5 - parent: 89 - - uid: 12205 + pos: -149.5,-1.5 + parent: 2 + - uid: 4137 components: - type: Transform - pos: -101.5,9.5 - parent: 89 - - uid: 12206 + pos: -149.5,-0.5 + parent: 2 + - uid: 4138 components: - type: Transform - pos: -102.5,9.5 - parent: 89 - - uid: 12207 + pos: -148.5,-0.5 + parent: 2 + - uid: 4139 components: - type: Transform - pos: -102.5,8.5 - parent: 89 - - uid: 12208 + pos: -147.5,-0.5 + parent: 2 + - uid: 4140 components: - type: Transform - pos: -102.5,7.5 - parent: 89 - - uid: 12210 + pos: -146.5,-0.5 + parent: 2 + - uid: 4141 components: - type: Transform - pos: -102.5,10.5 - parent: 89 - - uid: 12211 + pos: -145.5,-0.5 + parent: 2 + - uid: 4142 components: - type: Transform - pos: -104.5,10.5 - parent: 89 - - uid: 12212 + pos: -144.5,-0.5 + parent: 2 + - uid: 4143 components: - type: Transform - pos: -104.5,11.5 - parent: 89 - - uid: 12213 + pos: -143.5,-0.5 + parent: 2 + - uid: 4144 components: - type: Transform - pos: -103.5,7.5 - parent: 89 - - uid: 12214 + pos: -142.5,-0.5 + parent: 2 + - uid: 4145 components: - type: Transform - pos: -105.5,7.5 - parent: 89 - - uid: 12216 + pos: -141.5,-0.5 + parent: 2 + - uid: 4146 components: - type: Transform - pos: -104.5,7.5 - parent: 89 - - uid: 12224 + pos: -140.5,-0.5 + parent: 2 + - uid: 4147 components: - type: Transform - pos: -111.5,1.5 - parent: 89 - - uid: 12225 + pos: -139.5,-0.5 + parent: 2 + - uid: 4148 components: - type: Transform - pos: -110.5,1.5 - parent: 89 - - uid: 12226 + pos: -138.5,-0.5 + parent: 2 + - uid: 4149 components: - type: Transform - pos: -109.5,1.5 - parent: 89 - - uid: 12227 + pos: -137.5,-0.5 + parent: 2 + - uid: 4150 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 12228 + pos: -136.5,-0.5 + parent: 2 + - uid: 4151 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 12229 + pos: -136.5,-1.5 + parent: 2 + - uid: 4152 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 12230 + pos: -136.5,-2.5 + parent: 2 + - uid: 4153 components: - type: Transform - pos: -108.5,-1.5 - parent: 89 - - uid: 12231 + pos: -136.5,-3.5 + parent: 2 + - uid: 4154 components: - type: Transform - pos: -109.5,-1.5 - parent: 89 - - uid: 12232 + pos: -136.5,-4.5 + parent: 2 + - uid: 4155 components: - type: Transform - pos: -110.5,-1.5 - parent: 89 - - uid: 12233 + pos: -136.5,-5.5 + parent: 2 + - uid: 4156 components: - type: Transform - pos: -111.5,-1.5 - parent: 89 - - uid: 12234 + pos: -136.5,-6.5 + parent: 2 + - uid: 4157 components: - type: Transform - pos: -112.5,-1.5 - parent: 89 - - uid: 12235 + pos: -136.5,-7.5 + parent: 2 + - uid: 4158 components: - type: Transform - pos: -111.5,-2.5 - parent: 89 - - uid: 12236 + pos: -136.5,-8.5 + parent: 2 + - uid: 4159 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 12237 + pos: -136.5,-9.5 + parent: 2 + - uid: 4160 components: - type: Transform - pos: -108.5,-3.5 - parent: 89 - - uid: 12238 + pos: -136.5,-10.5 + parent: 2 + - uid: 4161 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 12240 + pos: -136.5,-11.5 + parent: 2 + - uid: 4162 components: - type: Transform - pos: -107.5,-3.5 - parent: 89 - - uid: 12241 + pos: -136.5,-12.5 + parent: 2 + - uid: 4163 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 12242 + pos: -136.5,-13.5 + parent: 2 + - uid: 4164 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 12243 + pos: -135.5,-2.5 + parent: 2 + - uid: 4165 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 12244 + pos: -134.5,-2.5 + parent: 2 + - uid: 4166 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 12245 + pos: -133.5,-2.5 + parent: 2 + - uid: 4167 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 12246 + pos: -90.5,-10.5 + parent: 2 + - uid: 4168 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 12247 + pos: -89.5,-7.5 + parent: 2 + - uid: 4169 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 12248 + pos: -89.5,-8.5 + parent: 2 + - uid: 4170 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 12249 + pos: -89.5,-9.5 + parent: 2 + - uid: 4171 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 12250 + pos: -94.5,-11.5 + parent: 2 + - uid: 4172 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 12251 + pos: -95.5,-11.5 + parent: 2 + - uid: 4173 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 12252 + pos: -101.5,-14.5 + parent: 2 + - uid: 4174 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 12253 + pos: -100.5,-11.5 + parent: 2 + - uid: 4175 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 12254 + pos: -103.5,-14.5 + parent: 2 + - uid: 4176 components: - type: Transform - pos: -107.5,-17.5 - parent: 89 - - uid: 12256 + pos: -103.5,-15.5 + parent: 2 + - uid: 4177 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 12257 + pos: -103.5,-16.5 + parent: 2 + - uid: 4178 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 12258 + pos: -103.5,-17.5 + parent: 2 + - uid: 4179 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 12259 + pos: -103.5,-18.5 + parent: 2 + - uid: 4180 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 12260 + pos: -103.5,-19.5 + parent: 2 + - uid: 4181 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 12261 + pos: -103.5,-20.5 + parent: 2 + - uid: 4182 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 12262 + pos: -83.5,-14.5 + parent: 2 + - uid: 4183 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 12263 + pos: -83.5,-15.5 + parent: 2 + - uid: 4184 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 12264 + pos: -84.5,-15.5 + parent: 2 + - uid: 4185 components: - type: Transform - pos: -108.5,10.5 - parent: 89 - - uid: 12265 + pos: -85.5,-15.5 + parent: 2 + - uid: 4186 components: - type: Transform - pos: -108.5,11.5 - parent: 89 - - uid: 12266 + pos: -86.5,-15.5 + parent: 2 + - uid: 4187 components: - type: Transform - pos: -108.5,12.5 - parent: 89 - - uid: 12267 + pos: -87.5,-15.5 + parent: 2 + - uid: 4188 components: - type: Transform - pos: -108.5,13.5 - parent: 89 - - uid: 12268 + pos: -88.5,-15.5 + parent: 2 + - uid: 4189 components: - type: Transform - pos: -108.5,14.5 - parent: 89 - - uid: 12269 + pos: -89.5,-15.5 + parent: 2 + - uid: 4190 components: - type: Transform - pos: -107.5,14.5 - parent: 89 - - uid: 12270 + pos: -90.5,-15.5 + parent: 2 + - uid: 4191 components: - type: Transform - pos: -106.5,14.5 - parent: 89 - - uid: 12271 + pos: -91.5,-15.5 + parent: 2 + - uid: 4192 components: - type: Transform - pos: -105.5,14.5 - parent: 89 - - uid: 12272 + pos: -92.5,-15.5 + parent: 2 + - uid: 4193 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 12273 + pos: -86.5,-16.5 + parent: 2 + - uid: 4194 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 12274 + pos: 51.5,-1.5 + parent: 2 + - uid: 4195 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 12275 + pos: 39.5,-6.5 + parent: 2 + - uid: 4196 components: - type: Transform - pos: -112.5,9.5 - parent: 89 - - uid: 12276 + pos: 40.5,-6.5 + parent: 2 + - uid: 4197 components: - type: Transform - pos: -113.5,9.5 - parent: 89 - - uid: 12277 + pos: 38.5,-6.5 + parent: 2 + - uid: 4198 components: - type: Transform - pos: -114.5,9.5 - parent: 89 - - uid: 12278 + pos: -4.5,-10.5 + parent: 2 + - uid: 4199 components: - type: Transform - pos: -115.5,9.5 - parent: 89 - - uid: 12279 + pos: 10.5,-7.5 + parent: 2 + - uid: 4200 components: - type: Transform - pos: -116.5,9.5 - parent: 89 - - uid: 12280 + pos: -84.5,-11.5 + parent: 2 + - uid: 4201 components: - type: Transform - pos: -117.5,9.5 - parent: 89 - - uid: 12281 + pos: -85.5,-11.5 + parent: 2 + - uid: 4202 components: - type: Transform - pos: -113.5,-1.5 - parent: 89 - - uid: 12282 + pos: -86.5,-11.5 + parent: 2 + - uid: 4203 components: - type: Transform - pos: -114.5,-1.5 - parent: 89 - - uid: 12283 + pos: -87.5,-11.5 + parent: 2 + - uid: 4204 components: - type: Transform - pos: -115.5,-1.5 - parent: 89 - - uid: 12284 + pos: -87.5,-10.5 + parent: 2 + - uid: 4205 components: - type: Transform - pos: -116.5,-1.5 - parent: 89 - - uid: 12285 + pos: -87.5,-9.5 + parent: 2 + - uid: 4206 components: - type: Transform - pos: -117.5,-1.5 - parent: 89 - - uid: 12286 + pos: -87.5,-8.5 + parent: 2 + - uid: 4207 components: - type: Transform - pos: -111.5,-3.5 - parent: 89 - - uid: 12287 + pos: -87.5,-7.5 + parent: 2 + - uid: 4208 components: - type: Transform - pos: -111.5,-4.5 - parent: 89 - - uid: 12288 + pos: -87.5,-6.5 + parent: 2 + - uid: 4209 components: - type: Transform - pos: -111.5,-5.5 - parent: 89 - - uid: 12289 + pos: -87.5,-5.5 + parent: 2 + - uid: 4210 components: - type: Transform - pos: -111.5,-6.5 - parent: 89 - - uid: 12290 + pos: -87.5,-4.5 + parent: 2 + - uid: 4211 components: - type: Transform - pos: -111.5,-7.5 - parent: 89 - - uid: 12291 + pos: -86.5,-7.5 + parent: 2 + - uid: 4212 components: - type: Transform - pos: -111.5,-8.5 - parent: 89 - - uid: 12292 + pos: -85.5,-7.5 + parent: 2 + - uid: 4213 components: - type: Transform - pos: -111.5,-9.5 - parent: 89 - - uid: 12293 + pos: -84.5,-7.5 + parent: 2 + - uid: 4214 components: - type: Transform - pos: -111.5,-10.5 - parent: 89 - - uid: 12294 + pos: 41.5,-6.5 + parent: 2 + - uid: 4215 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 12295 + pos: 41.5,-7.5 + parent: 2 + - uid: 4216 components: - type: Transform - pos: -112.5,-10.5 - parent: 89 - - uid: 12296 + pos: 38.5,-5.5 + parent: 2 + - uid: 4217 components: - type: Transform - pos: -113.5,-10.5 - parent: 89 - - uid: 12297 + pos: 2.5,-18.5 + parent: 2 + - uid: 4218 components: - type: Transform - pos: -111.5,10.5 - parent: 89 - - uid: 12298 + pos: -4.5,-38.5 + parent: 2 + - uid: 4219 components: - type: Transform - pos: -111.5,11.5 - parent: 89 - - uid: 12299 + pos: -3.5,-38.5 + parent: 2 + - uid: 4220 components: - type: Transform - pos: -111.5,12.5 - parent: 89 - - uid: 12300 + pos: -4.5,-37.5 + parent: 2 + - uid: 4221 components: - type: Transform - pos: -111.5,13.5 - parent: 89 - - uid: 12301 + pos: -23.5,-17.5 + parent: 2 + - uid: 4222 components: - type: Transform - pos: -111.5,14.5 - parent: 89 - - uid: 12302 + pos: 1.5,-18.5 + parent: 2 + - uid: 4223 components: - type: Transform - pos: -111.5,15.5 - parent: 89 - - uid: 12303 + pos: -36.5,-5.5 + parent: 2 + - uid: 4224 components: - type: Transform - pos: -111.5,16.5 - parent: 89 - - uid: 12304 + pos: -19.5,-18.5 + parent: 2 + - uid: 4225 components: - type: Transform - pos: -111.5,17.5 - parent: 89 - - uid: 12305 + pos: -21.5,-18.5 + parent: 2 + - uid: 4226 components: - type: Transform - pos: -112.5,17.5 - parent: 89 - - uid: 12306 + pos: -93.5,-4.5 + parent: 2 + - uid: 4227 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 12307 + pos: -93.5,-5.5 + parent: 2 + - uid: 4228 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 12308 + pos: -93.5,-6.5 + parent: 2 + - uid: 4229 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 12309 + pos: -93.5,-7.5 + parent: 2 + - uid: 4230 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 12310 + pos: -95.5,-6.5 + parent: 2 + - uid: 4231 components: - type: Transform - pos: -117.5,17.5 - parent: 89 - - uid: 12311 + pos: -95.5,-5.5 + parent: 2 + - uid: 4232 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 12312 + pos: -91.5,-4.5 + parent: 2 + - uid: 4233 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 12313 + pos: -92.5,-4.5 + parent: 2 + - uid: 4234 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 12314 + pos: -91.5,-6.5 + parent: 2 + - uid: 4235 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 12315 + pos: -91.5,-5.5 + parent: 2 + - uid: 4236 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 12316 + pos: -90.5,-6.5 + parent: 2 + - uid: 23726 components: - type: Transform - pos: -102.5,5.5 - parent: 89 - - uid: 12318 + pos: 1.5,-12.5 + parent: 23711 + - uid: 23727 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 12319 + pos: 0.5,-7.5 + parent: 23711 + - uid: 23728 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 12320 + pos: 1.5,-7.5 + parent: 23711 + - uid: 23729 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 12321 + pos: 5.5,-4.5 + parent: 23711 + - uid: 23730 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 12322 + pos: 5.5,-6.5 + parent: 23711 + - uid: 23731 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 12323 + pos: 0.5,-8.5 + parent: 23711 + - uid: 23732 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 12324 + pos: 3.5,-11.5 + parent: 23711 + - uid: 23733 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 12325 + pos: 2.5,-11.5 + parent: 23711 + - uid: 23734 components: - type: Transform - pos: -98.5,8.5 - parent: 89 - - uid: 12326 + pos: 2.5,-7.5 + parent: 23711 + - uid: 23735 components: - type: Transform - pos: -97.5,8.5 - parent: 89 - - uid: 12327 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23736 components: - type: Transform - pos: -97.5,7.5 - parent: 89 - - uid: 12329 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23737 components: - type: Transform - pos: -104.5,14.5 - parent: 89 - - uid: 12330 + pos: 3.5,-5.5 + parent: 23711 + - uid: 23738 components: - type: Transform - pos: -108.5,15.5 - parent: 89 - - uid: 12351 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23739 components: - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 12352 + pos: 3.5,-3.5 + parent: 23711 + - uid: 23740 components: - type: Transform - pos: -107.5,21.5 - parent: 89 - - uid: 12353 + pos: 3.5,-2.5 + parent: 23711 + - uid: 23741 components: - type: Transform - pos: -108.5,21.5 - parent: 89 - - uid: 12354 + pos: 3.5,-1.5 + parent: 23711 + - uid: 23742 components: - type: Transform - pos: -108.5,20.5 - parent: 89 - - uid: 12355 + pos: 4.5,-4.5 + parent: 23711 + - uid: 23743 components: - type: Transform - pos: -108.5,19.5 - parent: 89 - - uid: 12356 + pos: 4.5,-6.5 + parent: 23711 + - uid: 23744 components: - type: Transform - pos: -108.5,18.5 - parent: 89 - - uid: 12357 + pos: 0.5,-5.5 + parent: 23711 + - uid: 23745 components: - type: Transform - pos: -108.5,17.5 - parent: 89 - - uid: 12358 + pos: 0.5,-6.5 + parent: 23711 + - uid: 23746 components: - type: Transform - pos: -109.5,17.5 - parent: 89 - - uid: 12359 + pos: 3.5,-10.5 + parent: 23711 + - uid: 23747 components: - type: Transform - pos: -107.5,17.5 - parent: 89 - - uid: 12360 + pos: 4.5,-10.5 + parent: 23711 + - uid: 23748 components: - type: Transform - pos: -108.5,22.5 - parent: 89 - - uid: 12361 + pos: 3.5,-9.5 + parent: 23711 + - uid: 23749 components: - type: Transform - pos: -108.5,23.5 - parent: 89 - - uid: 12362 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23750 components: - type: Transform - pos: -109.5,23.5 - parent: 89 - - uid: 12363 + pos: 4.5,-11.5 + parent: 23711 + - uid: 23751 components: - type: Transform - pos: -110.5,23.5 - parent: 89 - - uid: 12364 + pos: 3.5,-8.5 + parent: 23711 + - uid: 23752 components: - type: Transform - pos: -111.5,23.5 - parent: 89 - - uid: 12365 + pos: 4.5,-2.5 + parent: 23711 + - uid: 23753 components: - type: Transform - pos: -112.5,23.5 - parent: 89 - - uid: 12366 + pos: 5.5,-2.5 + parent: 23711 + - uid: 23754 components: - type: Transform - pos: -107.5,23.5 - parent: 89 - - uid: 12367 + pos: 2.5,-2.5 + parent: 23711 + - uid: 23755 components: - type: Transform - pos: -106.5,23.5 - parent: 89 - - uid: 12368 + pos: 1.5,-2.5 + parent: 23711 + - uid: 23756 components: - type: Transform - pos: -105.5,23.5 - parent: 89 - - uid: 12369 + pos: 5.5,-10.5 + parent: 23711 + - uid: 23757 components: - type: Transform - pos: -104.5,23.5 - parent: 89 - - uid: 12370 + pos: 1.5,-12.5 + parent: 23711 + - uid: 23758 components: - type: Transform - pos: -103.5,23.5 - parent: 89 - - uid: 12371 + pos: 5.5,-12.5 + parent: 23711 + - uid: 23759 components: - type: Transform - pos: -102.5,23.5 - parent: 89 - - uid: 12372 + pos: 1.5,-11.5 + parent: 23711 + - uid: 23760 components: - type: Transform - pos: -108.5,24.5 - parent: 89 - - uid: 12373 + pos: 5.5,-11.5 + parent: 23711 + - uid: 23761 components: - type: Transform - pos: -108.5,25.5 - parent: 89 - - uid: 12374 + pos: 1.5,-13.5 + parent: 23711 + - uid: 23762 components: - type: Transform - pos: -107.5,25.5 - parent: 89 - - uid: 12375 + pos: 1.5,-2.5 + parent: 23711 + - uid: 23763 components: - type: Transform - pos: -106.5,25.5 - parent: 89 - - uid: 12376 + pos: 1.5,-3.5 + parent: 23711 + - uid: 23764 components: - type: Transform - pos: -105.5,25.5 - parent: 89 - - uid: 12377 + pos: 2.5,-3.5 + parent: 23711 + - uid: 23765 components: - type: Transform - pos: -104.5,25.5 - parent: 89 - - uid: 12378 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23766 components: - type: Transform - pos: -103.5,25.5 - parent: 89 - - uid: 12379 + pos: 5.5,-12.5 + parent: 23711 + - uid: 23767 components: - type: Transform - pos: -102.5,25.5 - parent: 89 - - uid: 12380 + pos: 5.5,-13.5 + parent: 23711 + - uid: 23768 components: - type: Transform - pos: -109.5,25.5 - parent: 89 - - uid: 12381 + pos: 3.5,-5.5 + parent: 23711 + - uid: 23769 components: - type: Transform - pos: -110.5,25.5 - parent: 89 - - uid: 12382 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23770 components: - type: Transform - pos: -111.5,25.5 - parent: 89 - - uid: 12383 + pos: 5.5,-3.5 + parent: 23711 + - uid: 23771 components: - type: Transform - pos: -112.5,25.5 - parent: 89 - - uid: 12384 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23772 components: - type: Transform - pos: -108.5,26.5 - parent: 89 - - uid: 12385 + pos: 3.5,-3.5 + parent: 23711 + - uid: 23773 components: - type: Transform - pos: -108.5,27.5 - parent: 89 - - uid: 12386 + pos: 1.5,-3.5 + parent: 23711 + - uid: 23774 components: - type: Transform - pos: -109.5,27.5 - parent: 89 - - uid: 12387 + pos: 0.5,-4.5 + parent: 23711 + - uid: 23775 components: - type: Transform - pos: -110.5,27.5 - parent: 89 - - uid: 12388 + pos: 0.5,-5.5 + parent: 23711 + - uid: 23982 components: - type: Transform - pos: -111.5,27.5 - parent: 89 - - uid: 12389 + pos: 4.5,4.5 + parent: 23919 + - uid: 23983 components: - type: Transform - pos: -107.5,27.5 - parent: 89 - - uid: 12390 + pos: 4.5,3.5 + parent: 23919 + - uid: 23984 components: - type: Transform - pos: -106.5,27.5 - parent: 89 - - uid: 12391 + pos: 4.5,2.5 + parent: 23919 + - uid: 23985 components: - type: Transform - pos: -105.5,27.5 - parent: 89 - - uid: 12392 + pos: 6.5,0.5 + parent: 23919 + - uid: 23986 components: - type: Transform - pos: -104.5,27.5 - parent: 89 - - uid: 12393 + pos: 4.5,-0.5 + parent: 23919 + - uid: 23987 components: - type: Transform - pos: -103.5,27.5 - parent: 89 - - uid: 12394 + pos: 4.5,-1.5 + parent: 23919 + - uid: 23988 components: - type: Transform - pos: -102.5,27.5 - parent: 89 - - uid: 12415 + pos: 4.5,5.5 + parent: 23919 + - uid: 23989 components: - type: Transform - pos: -101.5,25.5 - parent: 89 - - uid: 12416 + pos: 5.5,5.5 + parent: 23919 + - uid: 23990 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 12417 + pos: 3.5,5.5 + parent: 23919 + - uid: 23991 components: - type: Transform - pos: -99.5,25.5 - parent: 89 - - uid: 12418 + pos: 5.5,-1.5 + parent: 23919 + - uid: 23992 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 12419 + pos: 6.5,-1.5 + parent: 23919 + - uid: 23993 components: - type: Transform - pos: -99.5,26.5 - parent: 89 - - uid: 12420 + pos: 6.5,-0.5 + parent: 23919 + - uid: 23994 components: - type: Transform - pos: -98.5,25.5 - parent: 89 - - uid: 12421 + pos: 3.5,-1.5 + parent: 23919 + - uid: 23995 components: - type: Transform - pos: -97.5,25.5 - parent: 89 - - uid: 12422 + pos: 2.5,-1.5 + parent: 23919 + - uid: 23996 components: - type: Transform - pos: -97.5,26.5 - parent: 89 - - uid: 12423 + pos: 2.5,-2.5 + parent: 23919 + - uid: 23997 components: - type: Transform - pos: -97.5,27.5 - parent: 89 - - uid: 12424 + pos: 2.5,-3.5 + parent: 23919 + - uid: 23998 components: - type: Transform - pos: -97.5,28.5 - parent: 89 - - uid: 12425 + pos: 2.5,-4.5 + parent: 23919 + - uid: 23999 components: - type: Transform - pos: -98.5,28.5 - parent: 89 - - uid: 12426 + pos: 1.5,-8.5 + parent: 23919 + - uid: 24000 components: - type: Transform - pos: -98.5,29.5 - parent: 89 - - uid: 12427 + pos: 2.5,-8.5 + parent: 23919 + - uid: 24001 components: - type: Transform - pos: -99.5,29.5 - parent: 89 - - uid: 12428 + pos: 3.5,-8.5 + parent: 23919 + - uid: 24002 components: - type: Transform - pos: -100.5,29.5 - parent: 89 - - uid: 12429 + pos: 4.5,-8.5 + parent: 23919 + - uid: 24003 components: - type: Transform - pos: -101.5,29.5 - parent: 89 - - uid: 12432 + pos: 5.5,-8.5 + parent: 23919 + - uid: 24004 components: - type: Transform - pos: -118.5,14.5 - parent: 89 - - uid: 12433 + pos: 6.5,-8.5 + parent: 23919 + - uid: 24005 components: - type: Transform - pos: -119.5,14.5 - parent: 89 - - uid: 12434 + pos: 7.5,-8.5 + parent: 23919 + - uid: 24006 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - uid: 12435 + pos: 4.5,-9.5 + parent: 23919 + - uid: 24007 components: - type: Transform - pos: -119.5,16.5 - parent: 89 - - uid: 12436 + pos: 4.5,-10.5 + parent: 23919 + - uid: 24008 components: - type: Transform - pos: -119.5,17.5 - parent: 89 - - uid: 12437 + pos: 4.5,-11.5 + parent: 23919 + - uid: 24009 components: - type: Transform - pos: -119.5,13.5 - parent: 89 - - uid: 12438 + pos: 3.5,-7.5 + parent: 23919 + - uid: 24010 components: - type: Transform - pos: -119.5,12.5 - parent: 89 - - uid: 12439 + pos: 3.5,-6.5 + parent: 23919 + - uid: 24011 components: - type: Transform - pos: -119.5,11.5 - parent: 89 - - uid: 12440 + pos: 3.5,-4.5 + parent: 23919 + - uid: 24012 components: - type: Transform - pos: -119.5,10.5 - parent: 89 - - uid: 12441 + pos: 4.5,-4.5 + parent: 23919 + - uid: 24013 components: - type: Transform - pos: -119.5,9.5 - parent: 89 - - uid: 12442 + pos: 5.5,-4.5 + parent: 23919 + - uid: 24014 components: - type: Transform - pos: -120.5,11.5 - parent: 89 - - uid: 12443 + pos: 7.5,-9.5 + parent: 23919 + - uid: 24015 components: - type: Transform - pos: -121.5,11.5 - parent: 89 - - uid: 12444 + pos: 1.5,-9.5 + parent: 23919 + - uid: 24016 components: - type: Transform - pos: -122.5,11.5 - parent: 89 - - uid: 12445 + pos: 6.5,-4.5 + parent: 23919 + - uid: 24017 components: - type: Transform - pos: -123.5,11.5 - parent: 89 - - uid: 12446 + pos: 4.5,0.5 + parent: 23919 + - uid: 24018 components: - type: Transform - pos: -124.5,11.5 - parent: 89 - - uid: 12447 + pos: 6.5,1.5 + parent: 23919 + - uid: 24019 components: - type: Transform - pos: -125.5,11.5 - parent: 89 - - uid: 12448 + pos: 7.5,0.5 + parent: 23919 + - uid: 24020 components: - type: Transform - pos: -124.5,12.5 - parent: 89 - - uid: 12449 + pos: 4.5,1.5 + parent: 23919 + - uid: 24021 components: - type: Transform - pos: -124.5,13.5 - parent: 89 - - uid: 12450 + pos: 3.5,1.5 + parent: 23919 + - uid: 24351 components: - type: Transform - pos: -125.5,13.5 - parent: 89 - - uid: 12451 + pos: 1.5,-3.5 + parent: 24340 + - uid: 24352 components: - type: Transform - pos: -126.5,11.5 - parent: 89 - - uid: 12452 + pos: 1.5,-2.5 + parent: 24340 + - uid: 24353 components: - type: Transform - pos: -127.5,11.5 - parent: 89 - - uid: 12453 + pos: 0.5,-2.5 + parent: 24340 + - uid: 24354 components: - type: Transform - pos: -127.5,12.5 - parent: 89 - - uid: 12454 + pos: -0.5,-2.5 + parent: 24340 + - uid: 24355 components: - type: Transform - pos: -128.5,12.5 - parent: 89 - - uid: 12455 + pos: 0.5,-1.5 + parent: 24340 + - uid: 24356 components: - type: Transform - pos: -129.5,12.5 - parent: 89 - - uid: 12456 + pos: 0.5,-0.5 + parent: 24340 + - uid: 24357 components: - type: Transform - pos: -130.5,12.5 - parent: 89 - - uid: 12457 + pos: -0.5,-0.5 + parent: 24340 + - uid: 24358 components: - type: Transform - pos: -130.5,13.5 - parent: 89 - - uid: 12458 + pos: 1.5,-0.5 + parent: 24340 + - uid: 24359 components: - type: Transform - pos: -130.5,14.5 - parent: 89 - - uid: 12459 + pos: 0.5,-3.5 + parent: 24340 + - uid: 24360 components: - type: Transform - pos: -130.5,15.5 - parent: 89 - - uid: 12460 + pos: 0.5,-4.5 + parent: 24340 + - uid: 24361 components: - type: Transform - pos: -130.5,16.5 - parent: 89 - - uid: 12461 + pos: 0.5,-5.5 + parent: 24340 + - uid: 24362 components: - type: Transform - pos: -131.5,15.5 - parent: 89 - - uid: 12462 + pos: 0.5,-6.5 + parent: 24340 + - uid: 24363 components: - type: Transform - pos: -129.5,15.5 - parent: 89 - - uid: 12463 + pos: -0.5,-4.5 + parent: 24340 + - uid: 24364 components: - type: Transform - pos: -120.5,9.5 - parent: 89 - - uid: 12464 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24365 components: - type: Transform - pos: -120.5,8.5 - parent: 89 - - uid: 12465 + pos: -0.5,-6.5 + parent: 24340 + - uid: 24366 components: - type: Transform - pos: -120.5,7.5 - parent: 89 - - uid: 12466 + pos: 1.5,-6.5 + parent: 24340 + - uid: 25115 components: - type: Transform - pos: -120.5,6.5 - parent: 89 - - uid: 12467 + pos: -14.5,-22.5 + parent: 24450 + - uid: 25116 components: - type: Transform - pos: -120.5,5.5 - parent: 89 - - uid: 12468 + pos: -8.5,-24.5 + parent: 24450 + - uid: 25117 components: - type: Transform - pos: -120.5,4.5 - parent: 89 - - uid: 12469 + pos: -8.5,-2.5 + parent: 24450 + - uid: 25118 components: - type: Transform - pos: -120.5,3.5 - parent: 89 - - uid: 12470 + pos: -10.5,-24.5 + parent: 24450 + - uid: 25119 components: - type: Transform - pos: -120.5,2.5 - parent: 89 - - uid: 12471 + pos: -8.5,-25.5 + parent: 24450 + - uid: 25120 components: - type: Transform - pos: -120.5,1.5 - parent: 89 - - uid: 12472 + pos: -15.5,-22.5 + parent: 24450 + - uid: 25121 components: - type: Transform - pos: -120.5,0.5 - parent: 89 - - uid: 12473 + pos: -13.5,-18.5 + parent: 24450 + - uid: 25122 components: - type: Transform - pos: -120.5,-0.5 - parent: 89 - - uid: 12474 + pos: -10.5,-23.5 + parent: 24450 + - uid: 25123 components: - type: Transform - pos: -120.5,-1.5 - parent: 89 - - uid: 12475 + pos: -10.5,-22.5 + parent: 24450 + - uid: 25124 components: - type: Transform - pos: -119.5,-1.5 - parent: 89 - - uid: 12476 + pos: -10.5,-20.5 + parent: 24450 + - uid: 25125 components: - type: Transform - pos: -120.5,-2.5 - parent: 89 - - uid: 12477 + pos: -16.5,-20.5 + parent: 24450 + - uid: 25126 components: - type: Transform - pos: -120.5,-3.5 - parent: 89 - - uid: 12478 + pos: -12.5,-22.5 + parent: 24450 + - uid: 25127 components: - type: Transform - pos: -121.5,-3.5 - parent: 89 - - uid: 12479 + pos: -13.5,-19.5 + parent: 24450 + - uid: 25128 components: - type: Transform - pos: -121.5,-4.5 - parent: 89 - - uid: 12480 + pos: -9.5,-22.5 + parent: 24450 + - uid: 25129 components: - type: Transform - pos: -121.5,-5.5 - parent: 89 - - uid: 12481 + pos: -16.5,-19.5 + parent: 24450 + - uid: 25130 components: - type: Transform - pos: -121.5,-6.5 - parent: 89 - - uid: 12482 + pos: -15.5,-2.5 + parent: 24450 + - uid: 25131 components: - type: Transform - pos: -121.5,-7.5 - parent: 89 - - uid: 12483 + pos: -17.5,-22.5 + parent: 24450 + - uid: 25132 components: - type: Transform - pos: -121.5,-8.5 - parent: 89 - - uid: 12484 + pos: -11.5,-22.5 + parent: 24450 + - uid: 25133 components: - type: Transform - pos: -121.5,-9.5 - parent: 89 - - uid: 12485 + pos: -10.5,-19.5 + parent: 24450 + - uid: 25134 components: - type: Transform - pos: -121.5,-10.5 - parent: 89 - - uid: 12486 + pos: -10.5,-21.5 + parent: 24450 + - uid: 25135 components: - type: Transform - pos: -120.5,-10.5 - parent: 89 - - uid: 12487 + pos: -9.5,-25.5 + parent: 24450 + - uid: 25136 components: - type: Transform - pos: -119.5,-10.5 - parent: 89 - - uid: 12488 + pos: -10.5,-25.5 + parent: 24450 + - uid: 25137 components: - type: Transform - pos: -118.5,-10.5 - parent: 89 - - uid: 12489 + pos: -11.5,-25.5 + parent: 24450 + - uid: 25138 components: - type: Transform - pos: -117.5,-10.5 - parent: 89 - - uid: 12490 + pos: -12.5,-25.5 + parent: 24450 + - uid: 25139 components: - type: Transform - pos: -116.5,-10.5 - parent: 89 - - uid: 12491 + pos: -13.5,-25.5 + parent: 24450 + - uid: 25140 components: - type: Transform - pos: -115.5,-10.5 - parent: 89 - - uid: 12492 + pos: -14.5,-25.5 + parent: 24450 + - uid: 25141 components: - type: Transform - pos: -122.5,-7.5 - parent: 89 - - uid: 12493 + pos: -15.5,-25.5 + parent: 24450 + - uid: 25142 components: - type: Transform - pos: -123.5,-7.5 - parent: 89 - - uid: 12494 + pos: -16.5,-25.5 + parent: 24450 + - uid: 25143 components: - type: Transform - pos: -124.5,-7.5 - parent: 89 - - uid: 12495 + pos: -17.5,-25.5 + parent: 24450 + - uid: 25144 components: - type: Transform - pos: -125.5,-7.5 - parent: 89 - - uid: 12496 + pos: -16.5,-24.5 + parent: 24450 + - uid: 25145 components: - type: Transform - pos: -126.5,-7.5 - parent: 89 - - uid: 12497 + pos: -16.5,-23.5 + parent: 24450 + - uid: 25146 components: - type: Transform - pos: -126.5,-6.5 - parent: 89 - - uid: 12498 + pos: -16.5,-22.5 + parent: 24450 + - uid: 25147 components: - type: Transform - pos: -122.5,-3.5 - parent: 89 - - uid: 12499 + pos: -16.5,-21.5 + parent: 24450 + - uid: 25148 components: - type: Transform - pos: -123.5,-3.5 - parent: 89 - - uid: 12500 + pos: -13.5,-24.5 + parent: 24450 + - uid: 25149 components: - type: Transform - pos: -124.5,-3.5 - parent: 89 - - uid: 12501 + pos: -13.5,-23.5 + parent: 24450 + - uid: 25150 components: - type: Transform - pos: -125.5,-3.5 - parent: 89 - - uid: 12502 + pos: -13.5,-22.5 + parent: 24450 + - uid: 25151 components: - type: Transform - pos: -126.5,-3.5 - parent: 89 - - uid: 12503 + pos: -13.5,-21.5 + parent: 24450 + - uid: 25152 components: - type: Transform - pos: -127.5,-3.5 - parent: 89 - - uid: 12504 + pos: -13.5,-20.5 + parent: 24450 + - uid: 25153 components: - type: Transform - pos: -128.5,-3.5 - parent: 89 - - uid: 12505 + pos: -8.5,-23.5 + parent: 24450 + - uid: 25154 components: - type: Transform - pos: -129.5,-3.5 - parent: 89 - - uid: 12506 + pos: -8.5,-22.5 + parent: 24450 + - uid: 25155 components: - type: Transform - pos: -129.5,-0.5 - parent: 89 - - uid: 12507 + pos: -8.5,-21.5 + parent: 24450 + - uid: 25156 components: - type: Transform - pos: -129.5,0.5 - parent: 89 - - uid: 12508 + pos: -8.5,-20.5 + parent: 24450 + - uid: 25157 components: - type: Transform - pos: -129.5,1.5 - parent: 89 - - uid: 12509 + pos: -8.5,-19.5 + parent: 24450 + - uid: 25158 components: - type: Transform - pos: -129.5,2.5 - parent: 89 - - uid: 12510 + pos: -8.5,-18.5 + parent: 24450 + - uid: 25159 components: - type: Transform - pos: -129.5,3.5 - parent: 89 - - uid: 12511 + pos: -8.5,-17.5 + parent: 24450 + - uid: 25160 components: - type: Transform - pos: -129.5,4.5 - parent: 89 - - uid: 12512 + pos: -7.5,-17.5 + parent: 24450 + - uid: 25161 components: - type: Transform - pos: -129.5,5.5 - parent: 89 - - uid: 12513 + pos: -6.5,-17.5 + parent: 24450 + - uid: 25162 components: - type: Transform - pos: -129.5,6.5 - parent: 89 - - uid: 12514 + pos: -5.5,-17.5 + parent: 24450 + - uid: 25163 components: - type: Transform - pos: -129.5,7.5 - parent: 89 - - uid: 12515 + pos: -4.5,-17.5 + parent: 24450 + - uid: 25164 components: - type: Transform - pos: -129.5,8.5 - parent: 89 - - uid: 12516 + pos: -3.5,-17.5 + parent: 24450 + - uid: 25165 components: - type: Transform - pos: -129.5,9.5 - parent: 89 - - uid: 12517 + pos: -2.5,-17.5 + parent: 24450 + - uid: 25166 components: - type: Transform - pos: -128.5,9.5 - parent: 89 - - uid: 12518 + pos: -12.5,-12.5 + parent: 24450 + - uid: 25167 components: - type: Transform - pos: -127.5,9.5 - parent: 89 - - uid: 12519 + pos: -15.5,-13.5 + parent: 24450 + - uid: 25168 components: - type: Transform - pos: -126.5,9.5 - parent: 89 - - uid: 12520 + pos: -14.5,-13.5 + parent: 24450 + - uid: 25169 components: - type: Transform - pos: -125.5,9.5 - parent: 89 - - uid: 12521 + pos: -13.5,-13.5 + parent: 24450 + - uid: 25170 components: - type: Transform - pos: -124.5,9.5 - parent: 89 - - uid: 12522 + pos: -12.5,-13.5 + parent: 24450 + - uid: 25171 components: - type: Transform - pos: -123.5,9.5 - parent: 89 - - uid: 12523 + pos: -12.5,-11.5 + parent: 24450 + - uid: 25172 components: - type: Transform - pos: -122.5,9.5 - parent: 89 - - uid: 12524 + pos: -12.5,-10.5 + parent: 24450 + - uid: 25173 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 12525 + pos: -12.5,-9.5 + parent: 24450 + - uid: 25174 components: - type: Transform - pos: -126.5,-9.5 - parent: 89 - - uid: 12526 + pos: -16.5,-7.5 + parent: 24450 + - uid: 25175 components: - type: Transform - pos: -126.5,-10.5 - parent: 89 - - uid: 12527 + pos: -16.5,-8.5 + parent: 24450 + - uid: 25176 components: - type: Transform - pos: -125.5,-10.5 - parent: 89 - - uid: 12528 + pos: -16.5,-9.5 + parent: 24450 + - uid: 25177 components: - type: Transform - pos: -124.5,-10.5 - parent: 89 - - uid: 12529 + pos: -16.5,-10.5 + parent: 24450 + - uid: 25178 components: - type: Transform - pos: -123.5,-10.5 - parent: 89 - - uid: 12533 + pos: -16.5,-11.5 + parent: 24450 + - uid: 25179 components: - type: Transform - pos: -122.5,17.5 - parent: 89 - - uid: 12534 + pos: -16.5,-12.5 + parent: 24450 + - uid: 25180 components: - type: Transform - pos: -123.5,17.5 - parent: 89 - - uid: 12535 + pos: -16.5,-13.5 + parent: 24450 + - uid: 25181 components: - type: Transform - pos: -124.5,17.5 - parent: 89 - - uid: 12536 + pos: -16.5,-14.5 + parent: 24450 + - uid: 25182 components: - type: Transform - pos: -125.5,17.5 - parent: 89 - - uid: 12537 + pos: -16.5,-15.5 + parent: 24450 + - uid: 25183 components: - type: Transform - pos: -125.5,16.5 - parent: 89 - - uid: 12538 + pos: -16.5,-16.5 + parent: 24450 + - uid: 25184 components: - type: Transform - pos: -125.5,15.5 - parent: 89 - - uid: 12539 + pos: -16.5,-17.5 + parent: 24450 + - uid: 25185 components: - type: Transform - pos: -121.5,4.5 - parent: 89 - - uid: 12540 + pos: -16.5,-18.5 + parent: 24450 + - uid: 25186 components: - type: Transform - pos: -122.5,4.5 - parent: 89 - - uid: 12541 + pos: -13.5,1.5 + parent: 24450 + - uid: 25187 components: - type: Transform - pos: -123.5,4.5 - parent: 89 - - uid: 12542 + pos: -13.5,-1.5 + parent: 24450 + - uid: 25188 components: - type: Transform - pos: -123.5,3.5 - parent: 89 - - uid: 12624 + pos: -20.5,11.5 + parent: 24450 + - uid: 25189 components: - type: Transform - pos: 28.5,30.5 - parent: 89 - - uid: 12649 + pos: -10.5,3.5 + parent: 24450 + - uid: 25190 components: - type: Transform - pos: -31.5,9.5 - parent: 89 - - uid: 12816 + pos: -7.5,-2.5 + parent: 24450 + - uid: 25191 components: - type: Transform - pos: 29.5,30.5 - parent: 89 - - uid: 12823 + pos: -13.5,0.5 + parent: 24450 + - uid: 25192 components: - type: Transform - pos: 23.5,23.5 - parent: 89 - - uid: 12824 + pos: -23.5,9.5 + parent: 24450 + - uid: 25193 components: - type: Transform - pos: 23.5,25.5 - parent: 89 - - uid: 12944 + pos: -20.5,9.5 + parent: 24450 + - uid: 25194 components: - type: Transform - pos: -109.5,4.5 - parent: 89 - - uid: 12945 + pos: -13.5,-2.5 + parent: 24450 + - uid: 25195 components: - type: Transform - pos: -110.5,4.5 - parent: 89 - - uid: 12946 + pos: -10.5,1.5 + parent: 24450 + - uid: 25196 components: - type: Transform - pos: -111.5,4.5 - parent: 89 - - uid: 12947 + pos: -16.5,-2.5 + parent: 24450 + - uid: 25197 components: - type: Transform - pos: -112.5,4.5 - parent: 89 - - uid: 12948 + pos: -13.5,2.5 + parent: 24450 + - uid: 25198 components: - type: Transform - pos: -113.5,4.5 - parent: 89 - - uid: 12949 + pos: -10.5,-2.5 + parent: 24450 + - uid: 25199 components: - type: Transform - pos: -114.5,4.5 - parent: 89 - - uid: 12950 + pos: -9.5,-2.5 + parent: 24450 + - uid: 25200 components: - type: Transform - pos: -115.5,4.5 - parent: 89 - - uid: 12951 + pos: -14.5,-2.5 + parent: 24450 + - uid: 25201 components: - type: Transform - pos: -116.5,4.5 - parent: 89 - - uid: 12952 + pos: -13.5,-0.5 + parent: 24450 + - uid: 25202 components: - type: Transform - pos: -116.5,3.5 - parent: 89 - - uid: 12953 + pos: -10.5,0.5 + parent: 24450 + - uid: 25203 components: - type: Transform - pos: -116.5,2.5 - parent: 89 - - uid: 12954 + pos: -10.5,-1.5 + parent: 24450 + - uid: 25204 components: - type: Transform - pos: -116.5,1.5 - parent: 89 - - uid: 12955 + pos: -10.5,-0.5 + parent: 24450 + - uid: 25205 components: - type: Transform - pos: -116.5,5.5 - parent: 89 - - uid: 12956 + pos: -10.5,2.5 + parent: 24450 + - uid: 25206 components: - type: Transform - pos: -116.5,6.5 - parent: 89 - - uid: 12991 + pos: -10.5,4.5 + parent: 24450 + - uid: 25207 components: - type: Transform - pos: -86.5,15.5 - parent: 89 - - uid: 12992 + pos: -10.5,5.5 + parent: 24450 + - uid: 25208 components: - type: Transform - pos: -85.5,15.5 - parent: 89 - - uid: 12993 + pos: -10.5,6.5 + parent: 24450 + - uid: 25209 components: - type: Transform - pos: -85.5,16.5 - parent: 89 - - uid: 12994 + pos: -10.5,7.5 + parent: 24450 + - uid: 25210 components: - type: Transform - pos: -85.5,17.5 - parent: 89 - - uid: 12995 + pos: -10.5,8.5 + parent: 24450 + - uid: 25211 components: - type: Transform - pos: -85.5,14.5 - parent: 89 - - uid: 12996 + pos: -10.5,9.5 + parent: 24450 + - uid: 25212 components: - type: Transform - pos: -85.5,13.5 - parent: 89 - - uid: 12997 + pos: -10.5,10.5 + parent: 24450 + - uid: 25213 components: - type: Transform - pos: -85.5,12.5 - parent: 89 - - uid: 12998 + pos: -13.5,3.5 + parent: 24450 + - uid: 25214 components: - type: Transform - pos: -86.5,13.5 - parent: 89 - - uid: 12999 + pos: -13.5,4.5 + parent: 24450 + - uid: 25215 components: - type: Transform - pos: -87.5,13.5 - parent: 89 - - uid: 13000 + pos: -13.5,5.5 + parent: 24450 + - uid: 25216 components: - type: Transform - pos: -88.5,13.5 - parent: 89 - - uid: 13001 + pos: -13.5,6.5 + parent: 24450 + - uid: 25217 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 13002 + pos: -13.5,7.5 + parent: 24450 + - uid: 25218 components: - type: Transform - pos: -87.5,16.5 - parent: 89 - - uid: 13003 + pos: -13.5,8.5 + parent: 24450 + - uid: 25219 components: - type: Transform - pos: -87.5,17.5 - parent: 89 - - uid: 13004 + pos: -13.5,9.5 + parent: 24450 + - uid: 25220 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 13005 + pos: -13.5,10.5 + parent: 24450 + - uid: 25221 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 13006 + pos: -9.5,10.5 + parent: 24450 + - uid: 25222 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 13007 + pos: -8.5,10.5 + parent: 24450 + - uid: 25223 components: - type: Transform - pos: -87.5,21.5 - parent: 89 - - uid: 13008 + pos: -7.5,10.5 + parent: 24450 + - uid: 25224 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 13009 + pos: -6.5,10.5 + parent: 24450 + - uid: 25225 components: - type: Transform - pos: -87.5,23.5 - parent: 89 - - uid: 13010 + pos: -5.5,10.5 + parent: 24450 + - uid: 25226 components: - type: Transform - pos: -87.5,24.5 - parent: 89 - - uid: 13012 + pos: -4.5,10.5 + parent: 24450 + - uid: 25227 components: - type: Transform - pos: -87.5,26.5 - parent: 89 - - uid: 13013 + pos: -3.5,10.5 + parent: 24450 + - uid: 25228 components: - type: Transform - pos: -87.5,27.5 - parent: 89 - - uid: 13014 + pos: -2.5,10.5 + parent: 24450 + - uid: 25229 components: - type: Transform - pos: -87.5,28.5 - parent: 89 - - uid: 13015 + pos: -1.5,10.5 + parent: 24450 + - uid: 25230 components: - type: Transform - pos: -88.5,28.5 - parent: 89 - - uid: 13016 + pos: -0.5,10.5 + parent: 24450 + - uid: 25231 components: - type: Transform - pos: -89.5,28.5 - parent: 89 - - uid: 13017 + pos: -3.5,11.5 + parent: 24450 + - uid: 25232 components: - type: Transform - pos: -90.5,28.5 - parent: 89 - - uid: 13019 + pos: -3.5,12.5 + parent: 24450 + - uid: 25233 components: - type: Transform - pos: -92.5,28.5 - parent: 89 - - uid: 13020 + pos: -3.5,13.5 + parent: 24450 + - uid: 25234 components: - type: Transform - pos: -92.5,27.5 - parent: 89 - - uid: 13021 + pos: -3.5,14.5 + parent: 24450 + - uid: 25235 components: - type: Transform - pos: -92.5,26.5 - parent: 89 - - uid: 13022 + pos: -3.5,15.5 + parent: 24450 + - uid: 25236 components: - type: Transform - pos: -92.5,25.5 - parent: 89 - - uid: 13023 + pos: -3.5,16.5 + parent: 24450 + - uid: 25237 components: - type: Transform - pos: -92.5,24.5 - parent: 89 - - uid: 13024 + pos: -3.5,17.5 + parent: 24450 + - uid: 25238 components: - type: Transform - pos: -92.5,23.5 - parent: 89 - - uid: 13025 + pos: -3.5,18.5 + parent: 24450 + - uid: 25239 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 13026 + pos: -3.5,19.5 + parent: 24450 + - uid: 25240 components: - type: Transform - pos: -93.5,22.5 - parent: 89 - - uid: 13027 + pos: -3.5,20.5 + parent: 24450 + - uid: 25241 components: - type: Transform - pos: -94.5,22.5 - parent: 89 - - uid: 13028 + pos: -3.5,21.5 + parent: 24450 + - uid: 25242 components: - type: Transform - pos: -95.5,22.5 - parent: 89 - - uid: 13029 + pos: -3.5,22.5 + parent: 24450 + - uid: 25243 components: - type: Transform - pos: -96.5,22.5 - parent: 89 - - uid: 13030 + pos: -3.5,23.5 + parent: 24450 + - uid: 25244 components: - type: Transform - pos: -84.5,13.5 - parent: 89 - - uid: 13031 + pos: -3.5,24.5 + parent: 24450 + - uid: 25245 components: - type: Transform - pos: -93.5,21.5 - parent: 89 - - uid: 13032 + pos: -3.5,25.5 + parent: 24450 + - uid: 25246 components: - type: Transform - pos: -93.5,20.5 - parent: 89 - - uid: 13033 + pos: -0.5,11.5 + parent: 24450 + - uid: 25247 components: - type: Transform - pos: -93.5,19.5 - parent: 89 - - uid: 13034 + pos: -0.5,12.5 + parent: 24450 + - uid: 25248 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 13035 + pos: -0.5,13.5 + parent: 24450 + - uid: 25249 components: - type: Transform - pos: -98.5,21.5 - parent: 89 - - uid: 13036 + pos: -0.5,14.5 + parent: 24450 + - uid: 25250 components: - type: Transform - pos: -98.5,20.5 - parent: 89 - - uid: 13037 + pos: -0.5,15.5 + parent: 24450 + - uid: 25251 components: - type: Transform - pos: -98.5,19.5 - parent: 89 - - uid: 13038 + pos: -0.5,16.5 + parent: 24450 + - uid: 25252 components: - type: Transform - pos: -98.5,18.5 - parent: 89 - - uid: 13039 + pos: -0.5,17.5 + parent: 24450 + - uid: 25253 components: - type: Transform - pos: -99.5,22.5 - parent: 89 - - uid: 13040 + pos: -0.5,18.5 + parent: 24450 + - uid: 25254 components: - type: Transform - pos: -99.5,23.5 - parent: 89 - - uid: 13041 + pos: -0.5,19.5 + parent: 24450 + - uid: 25255 components: - type: Transform - pos: -99.5,19.5 - parent: 89 - - uid: 13042 + pos: -0.5,20.5 + parent: 24450 + - uid: 25256 components: - type: Transform - pos: -100.5,18.5 - parent: 89 - - uid: 13043 + pos: -0.5,21.5 + parent: 24450 + - uid: 25257 components: - type: Transform - pos: -99.5,21.5 - parent: 89 - - uid: 13044 + pos: -0.5,22.5 + parent: 24450 + - uid: 25258 components: - type: Transform - pos: -99.5,27.5 - parent: 89 - - uid: 13045 + pos: -0.5,23.5 + parent: 24450 + - uid: 25259 components: - type: Transform - pos: -101.5,18.5 - parent: 89 - - uid: 13046 + pos: -0.5,24.5 + parent: 24450 + - uid: 25260 components: - type: Transform - pos: -102.5,18.5 - parent: 89 - - uid: 13047 + pos: -0.5,25.5 + parent: 24450 + - uid: 25261 components: - type: Transform - pos: -103.5,18.5 - parent: 89 - - uid: 13048 + pos: -1.5,25.5 + parent: 24450 + - uid: 25262 components: - type: Transform - pos: -104.5,18.5 - parent: 89 - - uid: 13049 + pos: -2.5,25.5 + parent: 24450 + - uid: 25263 components: - type: Transform - pos: -105.5,18.5 - parent: 89 - - uid: 13050 + pos: -1.5,1.5 + parent: 24450 + - uid: 25264 components: - type: Transform - pos: -100.5,17.5 - parent: 89 - - uid: 13051 + pos: -2.5,1.5 + parent: 24450 + - uid: 25265 components: - type: Transform - pos: -100.5,16.5 - parent: 89 - - uid: 13052 + pos: -3.5,1.5 + parent: 24450 + - uid: 25266 components: - type: Transform - pos: -100.5,15.5 - parent: 89 - - uid: 13053 + pos: -4.5,1.5 + parent: 24450 + - uid: 25267 components: - type: Transform - pos: -100.5,14.5 - parent: 89 - - uid: 13054 + pos: -5.5,1.5 + parent: 24450 + - uid: 25268 components: - type: Transform - pos: -100.5,13.5 - parent: 89 - - uid: 13055 + pos: -6.5,1.5 + parent: 24450 + - uid: 25269 components: - type: Transform - pos: -100.5,12.5 - parent: 89 - - uid: 13056 + pos: -7.5,1.5 + parent: 24450 + - uid: 25270 components: - type: Transform - pos: -99.5,13.5 - parent: 89 - - uid: 13057 + pos: -8.5,1.5 + parent: 24450 + - uid: 25271 components: - type: Transform - pos: -98.5,13.5 - parent: 89 - - uid: 13058 + pos: -9.5,1.5 + parent: 24450 + - uid: 25272 components: - type: Transform - pos: -97.5,13.5 - parent: 89 - - uid: 13059 + pos: 0.5,5.5 + parent: 24450 + - uid: 25273 components: - type: Transform - pos: -83.5,13.5 - parent: 89 - - uid: 13060 + pos: -2.5,5.5 + parent: 24450 + - uid: 25274 components: - type: Transform - pos: -82.5,13.5 - parent: 89 - - uid: 13061 + pos: -3.5,9.5 + parent: 24450 + - uid: 25275 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 13062 + pos: -14.5,10.5 + parent: 24450 + - uid: 25276 components: - type: Transform - pos: -81.5,12.5 - parent: 89 - - uid: 13063 + pos: -15.5,10.5 + parent: 24450 + - uid: 25277 components: - type: Transform - pos: -81.5,11.5 - parent: 89 - - uid: 13064 + pos: -16.5,10.5 + parent: 24450 + - uid: 25278 components: - type: Transform - pos: -81.5,10.5 - parent: 89 - - uid: 13065 + pos: -17.5,10.5 + parent: 24450 + - uid: 25279 components: - type: Transform - pos: -81.5,9.5 - parent: 89 - - uid: 13066 + pos: -18.5,10.5 + parent: 24450 + - uid: 25280 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - uid: 13067 + pos: -19.5,10.5 + parent: 24450 + - uid: 25281 components: - type: Transform - pos: -81.5,15.5 - parent: 89 - - uid: 13068 + pos: -20.5,10.5 + parent: 24450 + - uid: 25282 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 13069 + pos: -20.5,12.5 + parent: 24450 + - uid: 25283 components: - type: Transform - pos: -81.5,17.5 - parent: 89 - - uid: 13070 + pos: -20.5,13.5 + parent: 24450 + - uid: 25284 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - uid: 13071 + pos: -20.5,14.5 + parent: 24450 + - uid: 25285 components: - type: Transform - pos: -86.5,36.5 - parent: 89 - - uid: 13072 + pos: -20.5,15.5 + parent: 24450 + - uid: 25286 components: - type: Transform - pos: -86.5,35.5 - parent: 89 - - uid: 13073 + pos: -20.5,16.5 + parent: 24450 + - uid: 25287 components: - type: Transform - pos: -86.5,34.5 - parent: 89 - - uid: 13074 + pos: -20.5,17.5 + parent: 24450 + - uid: 25288 components: - type: Transform - pos: -86.5,33.5 - parent: 89 - - uid: 13075 + pos: -20.5,18.5 + parent: 24450 + - uid: 25289 components: - type: Transform - pos: -85.5,33.5 - parent: 89 - - uid: 13076 + pos: -20.5,19.5 + parent: 24450 + - uid: 25290 components: - type: Transform - pos: -84.5,33.5 - parent: 89 - - uid: 13077 + pos: -20.5,20.5 + parent: 24450 + - uid: 25291 components: - type: Transform - pos: -84.5,32.5 - parent: 89 - - uid: 13078 + pos: -20.5,21.5 + parent: 24450 + - uid: 25292 components: - type: Transform - pos: -84.5,31.5 - parent: 89 - - uid: 13079 + pos: -20.5,22.5 + parent: 24450 + - uid: 25293 components: - type: Transform - pos: -84.5,30.5 - parent: 89 - - uid: 13080 + pos: -20.5,23.5 + parent: 24450 + - uid: 25294 components: - type: Transform - pos: -84.5,29.5 - parent: 89 - - uid: 13081 + pos: -20.5,24.5 + parent: 24450 + - uid: 25295 components: - type: Transform - pos: -84.5,28.5 - parent: 89 - - uid: 13082 + pos: -20.5,25.5 + parent: 24450 + - uid: 25296 components: - type: Transform - pos: -84.5,27.5 - parent: 89 - - uid: 13083 + pos: -21.5,25.5 + parent: 24450 + - uid: 25297 components: - type: Transform - pos: -84.5,26.5 - parent: 89 - - uid: 13084 + pos: -22.5,25.5 + parent: 24450 + - uid: 25298 components: - type: Transform - pos: -84.5,25.5 - parent: 89 - - uid: 13085 + pos: -23.5,25.5 + parent: 24450 + - uid: 25299 components: - type: Transform - pos: -84.5,34.5 - parent: 89 - - uid: 13086 + pos: -23.5,24.5 + parent: 24450 + - uid: 25300 components: - type: Transform - pos: -84.5,35.5 - parent: 89 - - uid: 13087 + pos: -23.5,23.5 + parent: 24450 + - uid: 25301 components: - type: Transform - pos: -84.5,36.5 - parent: 89 - - uid: 13088 + pos: -23.5,22.5 + parent: 24450 + - uid: 25302 components: - type: Transform - pos: -84.5,37.5 - parent: 89 - - uid: 13089 + pos: -23.5,21.5 + parent: 24450 + - uid: 25303 components: - type: Transform - pos: -84.5,38.5 - parent: 89 - - uid: 13090 + pos: -23.5,20.5 + parent: 24450 + - uid: 25304 components: - type: Transform - pos: -84.5,39.5 - parent: 89 - - uid: 13091 + pos: -23.5,19.5 + parent: 24450 + - uid: 25305 components: - type: Transform - pos: -84.5,40.5 - parent: 89 - - uid: 13092 + pos: -23.5,18.5 + parent: 24450 + - uid: 25306 components: - type: Transform - pos: -84.5,41.5 - parent: 89 - - uid: 13093 + pos: -23.5,17.5 + parent: 24450 + - uid: 25307 components: - type: Transform - pos: -84.5,42.5 - parent: 89 - - uid: 13094 + pos: -23.5,16.5 + parent: 24450 + - uid: 25308 components: - type: Transform - pos: -84.5,43.5 - parent: 89 - - uid: 13095 + pos: -23.5,15.5 + parent: 24450 + - uid: 25309 components: - type: Transform - pos: -84.5,44.5 - parent: 89 - - uid: 13096 + pos: -23.5,14.5 + parent: 24450 + - uid: 25310 components: - type: Transform - pos: -84.5,45.5 - parent: 89 - - uid: 13097 + pos: -23.5,13.5 + parent: 24450 + - uid: 25311 components: - type: Transform - pos: -84.5,24.5 - parent: 89 - - uid: 13098 + pos: -23.5,12.5 + parent: 24450 + - uid: 25312 components: - type: Transform - pos: -84.5,23.5 - parent: 89 - - uid: 13099 + pos: -23.5,11.5 + parent: 24450 + - uid: 25313 components: - type: Transform - pos: -84.5,22.5 - parent: 89 - - uid: 13100 + pos: -23.5,10.5 + parent: 24450 + - uid: 25314 components: - type: Transform - pos: -84.5,21.5 - parent: 89 - - uid: 13101 + pos: -22.5,10.5 + parent: 24450 + - uid: 25315 components: - type: Transform - pos: -84.5,20.5 - parent: 89 - - uid: 13102 + pos: -21.5,10.5 + parent: 24450 + - uid: 25316 components: - type: Transform - pos: -84.5,19.5 - parent: 89 - - uid: 13103 + pos: -0.5,1.5 + parent: 24450 + - uid: 25317 components: - type: Transform - pos: -83.5,20.5 - parent: 89 - - uid: 13104 + pos: 0.5,1.5 + parent: 24450 + - uid: 25318 components: - type: Transform - pos: -82.5,20.5 - parent: 89 - - uid: 13105 + pos: 1.5,1.5 + parent: 24450 + - uid: 25319 components: - type: Transform - pos: -81.5,20.5 - parent: 89 - - uid: 13117 + pos: 2.5,1.5 + parent: 24450 + - uid: 25320 components: - type: Transform - pos: -18.5,10.5 - parent: 89 - - uid: 13128 + pos: 3.5,1.5 + parent: 24450 + - uid: 25321 components: - type: Transform - pos: -18.5,9.5 - parent: 89 - - uid: 13129 + pos: -3.5,8.5 + parent: 24450 + - uid: 25322 components: - type: Transform - pos: -18.5,8.5 - parent: 89 - - uid: 13130 + pos: -3.5,7.5 + parent: 24450 + - uid: 25323 components: - type: Transform - pos: -18.5,7.5 - parent: 89 - - uid: 13131 + pos: -3.5,6.5 + parent: 24450 + - uid: 25324 components: - type: Transform - pos: -18.5,6.5 - parent: 89 - - uid: 13132 + pos: -3.5,5.5 + parent: 24450 + - uid: 25325 components: - type: Transform - pos: -17.5,7.5 - parent: 89 - - uid: 13133 + pos: -3.5,4.5 + parent: 24450 + - uid: 25326 components: - type: Transform - pos: -16.5,7.5 - parent: 89 - - uid: 13134 + pos: -3.5,3.5 + parent: 24450 + - uid: 25327 components: - type: Transform - pos: -19.5,7.5 - parent: 89 - - uid: 13135 + pos: -3.5,2.5 + parent: 24450 + - uid: 25328 components: - type: Transform - pos: -20.5,7.5 - parent: 89 - - uid: 13136 + pos: -0.5,2.5 + parent: 24450 + - uid: 25329 components: - type: Transform - pos: -18.5,5.5 - parent: 89 - - uid: 13137 + pos: -0.5,3.5 + parent: 24450 + - uid: 25330 components: - type: Transform - pos: -16.5,8.5 - parent: 89 - - uid: 13138 + pos: -0.5,4.5 + parent: 24450 + - uid: 25331 components: - type: Transform - pos: -16.5,9.5 - parent: 89 - - uid: 13151 + pos: -0.5,5.5 + parent: 24450 + - uid: 25332 components: - type: Transform - pos: -10.5,5.5 - parent: 89 - - uid: 13152 + pos: -0.5,6.5 + parent: 24450 + - uid: 25333 components: - type: Transform - pos: -10.5,4.5 - parent: 89 - - uid: 13153 + pos: -0.5,7.5 + parent: 24450 + - uid: 25334 components: - type: Transform - pos: -10.5,3.5 - parent: 89 - - uid: 13154 + pos: -0.5,8.5 + parent: 24450 + - uid: 25335 components: - type: Transform - pos: -10.5,2.5 - parent: 89 - - uid: 13155 + pos: -0.5,9.5 + parent: 24450 + - uid: 25336 components: - type: Transform - pos: -11.5,2.5 - parent: 89 - - uid: 13156 + pos: -1.5,5.5 + parent: 24450 + - uid: 25337 components: - type: Transform - pos: -12.5,2.5 - parent: 89 - - uid: 13157 + pos: 1.5,5.5 + parent: 24450 + - uid: 25338 components: - type: Transform - pos: -13.5,2.5 - parent: 89 - - uid: 13158 + pos: 2.5,5.5 + parent: 24450 + - uid: 25339 components: - type: Transform - pos: -14.5,2.5 - parent: 89 - - uid: 13159 + pos: 3.5,5.5 + parent: 24450 + - uid: 25340 components: - type: Transform - pos: -15.5,2.5 - parent: 89 - - uid: 13160 + pos: 4.5,5.5 + parent: 24450 + - uid: 25341 components: - type: Transform - pos: -16.5,2.5 - parent: 89 - - uid: 13161 + pos: 5.5,5.5 + parent: 24450 + - uid: 25342 components: - type: Transform - pos: -17.5,2.5 - parent: 89 - - uid: 13162 + pos: 6.5,5.5 + parent: 24450 + - uid: 25343 components: - type: Transform - pos: -18.5,2.5 - parent: 89 - - uid: 13163 + pos: 7.5,5.5 + parent: 24450 + - uid: 25344 components: - type: Transform - pos: -19.5,2.5 - parent: 89 - - uid: 13164 + pos: 7.5,6.5 + parent: 24450 + - uid: 25345 components: - type: Transform - pos: -20.5,2.5 - parent: 89 - - uid: 13165 + pos: 7.5,7.5 + parent: 24450 + - uid: 25346 components: - type: Transform - pos: -9.5,2.5 - parent: 89 - - uid: 13166 + pos: 7.5,8.5 + parent: 24450 + - uid: 25347 components: - type: Transform - pos: -8.5,2.5 - parent: 89 - - uid: 13167 + pos: 7.5,9.5 + parent: 24450 + - uid: 25348 components: - type: Transform - pos: -7.5,2.5 - parent: 89 - - uid: 13168 + pos: 7.5,10.5 + parent: 24450 + - uid: 25349 components: - type: Transform - pos: -6.5,2.5 - parent: 89 - - uid: 13169 + pos: 7.5,11.5 + parent: 24450 + - uid: 25350 components: - type: Transform - pos: -5.5,2.5 - parent: 89 - - uid: 13170 + pos: 7.5,12.5 + parent: 24450 + - uid: 25351 components: - type: Transform - pos: -10.5,6.5 - parent: 89 - - uid: 13171 + pos: 7.5,4.5 + parent: 24450 + - uid: 25352 components: - type: Transform - pos: -10.5,7.5 - parent: 89 - - uid: 13172 + pos: 7.5,3.5 + parent: 24450 + - uid: 25353 components: - type: Transform - pos: -10.5,8.5 - parent: 89 - - uid: 13173 + pos: 7.5,2.5 + parent: 24450 + - uid: 25354 components: - type: Transform - pos: -10.5,9.5 - parent: 89 - - uid: 13174 + pos: 7.5,1.5 + parent: 24450 + - uid: 25355 components: - type: Transform - pos: -11.5,7.5 - parent: 89 - - uid: 13175 + pos: 6.5,3.5 + parent: 24450 + - uid: 25356 components: - type: Transform - pos: -12.5,7.5 - parent: 89 - - uid: 13176 + pos: 5.5,3.5 + parent: 24450 + - uid: 25357 components: - type: Transform - pos: -13.5,7.5 - parent: 89 - - uid: 13177 + pos: 8.5,3.5 + parent: 24450 + - uid: 25358 components: - type: Transform - pos: -14.5,7.5 - parent: 89 - - uid: 13178 + pos: 9.5,3.5 + parent: 24450 + - uid: 25359 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 13179 + pos: 10.5,3.5 + parent: 24450 + - uid: 25360 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 13180 + pos: 8.5,5.5 + parent: 24450 + - uid: 25361 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 13181 + pos: 9.5,5.5 + parent: 24450 + - uid: 25362 components: - type: Transform - pos: -14.5,11.5 - parent: 89 - - uid: 13183 + pos: 10.5,5.5 + parent: 24450 + - uid: 25363 components: - type: Transform - pos: -31.5,12.5 - parent: 89 - - uid: 13184 + pos: 8.5,9.5 + parent: 24450 + - uid: 25364 components: - type: Transform - pos: -31.5,11.5 - parent: 89 - - uid: 13187 + pos: 9.5,9.5 + parent: 24450 + - uid: 25365 components: - type: Transform - pos: -31.5,8.5 - parent: 89 - - uid: 13214 + pos: 10.5,9.5 + parent: 24450 + - uid: 25366 components: - type: Transform - pos: -28.5,0.5 - parent: 89 - - uid: 13215 + pos: 8.5,11.5 + parent: 24450 + - uid: 25367 components: - type: Transform - pos: -28.5,-0.5 - parent: 89 - - uid: 13216 + pos: 9.5,11.5 + parent: 24450 + - uid: 25368 components: - type: Transform - pos: -28.5,-1.5 - parent: 89 - - uid: 13217 + pos: 10.5,11.5 + parent: 24450 + - uid: 25369 components: - type: Transform - pos: -29.5,-0.5 - parent: 89 - - uid: 13218 + pos: 3.5,6.5 + parent: 24450 + - uid: 25370 components: - type: Transform - pos: -30.5,-0.5 - parent: 89 - - uid: 13219 + pos: 3.5,7.5 + parent: 24450 + - uid: 25371 components: - type: Transform - pos: -31.5,-0.5 - parent: 89 - - uid: 13220 + pos: 3.5,8.5 + parent: 24450 + - uid: 25372 components: - type: Transform - pos: -32.5,-0.5 - parent: 89 - - uid: 13221 + pos: 3.5,9.5 + parent: 24450 + - uid: 25373 components: - type: Transform - pos: -33.5,-0.5 - parent: 89 - - uid: 13222 + pos: 3.5,10.5 + parent: 24450 + - uid: 25374 components: - type: Transform - pos: -34.5,-0.5 - parent: 89 - - uid: 13223 + pos: -14.5,1.5 + parent: 24450 + - uid: 25375 components: - type: Transform - pos: -35.5,-0.5 - parent: 89 - - uid: 13224 + pos: -15.5,1.5 + parent: 24450 + - uid: 25376 components: - type: Transform - pos: -36.5,-0.5 - parent: 89 - - uid: 13225 + pos: -16.5,1.5 + parent: 24450 + - uid: 25377 components: - type: Transform - pos: -27.5,-1.5 - parent: 89 - - uid: 13226 + pos: -17.5,1.5 + parent: 24450 + - uid: 25378 components: - type: Transform - pos: -26.5,-1.5 - parent: 89 - - uid: 13227 + pos: -18.5,1.5 + parent: 24450 + - uid: 25379 components: - type: Transform - pos: -25.5,-1.5 - parent: 89 - - uid: 13228 + pos: -19.5,1.5 + parent: 24450 + - uid: 25380 components: - type: Transform - pos: -24.5,-1.5 - parent: 89 - - uid: 13229 + pos: -20.5,1.5 + parent: 24450 + - uid: 25381 components: - type: Transform - pos: -23.5,-1.5 - parent: 89 - - uid: 13230 + pos: -21.5,1.5 + parent: 24450 + - uid: 25382 components: - type: Transform - pos: -22.5,-1.5 - parent: 89 - - uid: 13231 + pos: -22.5,1.5 + parent: 24450 + - uid: 25383 components: - type: Transform - pos: -21.5,-1.5 - parent: 89 - - uid: 13232 + pos: -23.5,1.5 + parent: 24450 + - uid: 25384 components: - type: Transform - pos: -20.5,-1.5 - parent: 89 - - uid: 13233 + pos: -24.5,1.5 + parent: 24450 + - uid: 25385 components: - type: Transform - pos: -19.5,-1.5 - parent: 89 - - uid: 13234 + pos: -25.5,1.5 + parent: 24450 + - uid: 25386 components: - type: Transform - pos: -18.5,-1.5 - parent: 89 - - uid: 13235 + pos: -26.5,1.5 + parent: 24450 + - uid: 25387 components: - type: Transform - pos: -18.5,-2.5 - parent: 89 - - uid: 13236 + pos: -26.5,2.5 + parent: 24450 + - uid: 25388 components: - type: Transform - pos: -18.5,-3.5 - parent: 89 - - uid: 13237 + pos: -26.5,3.5 + parent: 24450 + - uid: 25389 components: - type: Transform - pos: -18.5,-4.5 - parent: 89 - - uid: 13238 + pos: -26.5,4.5 + parent: 24450 + - uid: 25390 components: - type: Transform - pos: -18.5,-5.5 - parent: 89 - - uid: 13239 + pos: -26.5,5.5 + parent: 24450 + - uid: 25391 components: - type: Transform - pos: -18.5,-6.5 - parent: 89 - - uid: 13240 + pos: -27.5,5.5 + parent: 24450 + - uid: 25392 components: - type: Transform - pos: -18.5,-7.5 - parent: 89 - - uid: 13241 + pos: -27.5,5.5 + parent: 24450 + - uid: 25393 components: - type: Transform - pos: -19.5,-7.5 - parent: 89 - - uid: 13242 + pos: -27.5,6.5 + parent: 24450 + - uid: 25394 components: - type: Transform - pos: -20.5,-7.5 - parent: 89 - - uid: 13243 + pos: -27.5,7.5 + parent: 24450 + - uid: 25395 components: - type: Transform - pos: -21.5,-7.5 - parent: 89 - - uid: 13244 + pos: -27.5,8.5 + parent: 24450 + - uid: 25396 components: - type: Transform - pos: -22.5,-7.5 - parent: 89 - - uid: 13245 + pos: -27.5,9.5 + parent: 24450 + - uid: 25397 components: - type: Transform - pos: -23.5,-7.5 - parent: 89 - - uid: 13246 + pos: -27.5,10.5 + parent: 24450 + - uid: 25398 components: - type: Transform - pos: -24.5,-7.5 - parent: 89 - - uid: 13247 + pos: -27.5,11.5 + parent: 24450 + - uid: 25399 components: - type: Transform - pos: -25.5,-7.5 - parent: 89 - - uid: 13248 + pos: -27.5,5.5 + parent: 24450 + - uid: 25400 components: - type: Transform - pos: -26.5,-7.5 - parent: 89 - - uid: 13249 + pos: -28.5,5.5 + parent: 24450 + - uid: 25401 components: - type: Transform - pos: -27.5,-7.5 - parent: 89 - - uid: 13250 + pos: -29.5,5.5 + parent: 24450 + - uid: 25402 components: - type: Transform - pos: -28.5,-7.5 - parent: 89 - - uid: 13251 + pos: -30.5,5.5 + parent: 24450 + - uid: 25403 components: - type: Transform - pos: -29.5,-7.5 - parent: 89 - - uid: 13252 + pos: -30.5,5.5 + parent: 24450 + - uid: 25404 components: - type: Transform - pos: -30.5,-7.5 - parent: 89 - - uid: 13253 + pos: -30.5,4.5 + parent: 24450 + - uid: 25405 components: - type: Transform - pos: -30.5,-8.5 - parent: 89 - - uid: 13254 + pos: -30.5,3.5 + parent: 24450 + - uid: 25406 components: - type: Transform - pos: -30.5,-9.5 - parent: 89 - - uid: 13255 + pos: -30.5,2.5 + parent: 24450 + - uid: 25407 components: - type: Transform - pos: -30.5,-6.5 - parent: 89 - - uid: 13256 + pos: -30.5,5.5 + parent: 24450 + - uid: 25408 components: - type: Transform - pos: -30.5,-5.5 - parent: 89 - - uid: 13257 + pos: -31.5,5.5 + parent: 24450 + - uid: 25409 components: - type: Transform - pos: -30.5,-4.5 - parent: 89 - - uid: 13258 + pos: -32.5,5.5 + parent: 24450 + - uid: 25410 components: - type: Transform - pos: -37.5,-0.5 - parent: 89 - - uid: 13259 + pos: -33.5,5.5 + parent: 24450 + - uid: 25411 components: - type: Transform - pos: -37.5,-1.5 - parent: 89 - - uid: 13260 + pos: -34.5,5.5 + parent: 24450 + - uid: 25412 components: - type: Transform - pos: -37.5,-2.5 - parent: 89 - - uid: 13261 + pos: -30.5,6.5 + parent: 24450 + - uid: 25413 components: - type: Transform - pos: -37.5,-3.5 - parent: 89 - - uid: 13262 + pos: -30.5,7.5 + parent: 24450 + - uid: 25414 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 13263 + pos: -30.5,8.5 + parent: 24450 + - uid: 25415 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 13264 + pos: -30.5,9.5 + parent: 24450 + - uid: 25416 components: - type: Transform - pos: -37.5,-6.5 - parent: 89 - - uid: 13265 + pos: -30.5,10.5 + parent: 24450 + - uid: 25417 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 13266 + pos: -30.5,11.5 + parent: 24450 + - uid: 25418 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 13268 + pos: -30.5,11.5 + parent: 24450 + - uid: 25419 components: - type: Transform - pos: -35.5,-8.5 - parent: 89 - - uid: 13269 + pos: -31.5,11.5 + parent: 24450 + - uid: 25420 components: - type: Transform - pos: -34.5,-8.5 - parent: 89 - - uid: 13270 + pos: -32.5,11.5 + parent: 24450 + - uid: 25421 components: - type: Transform - pos: -36.5,-4.5 - parent: 89 - - uid: 13271 + pos: -33.5,11.5 + parent: 24450 + - uid: 25422 components: - type: Transform - pos: -35.5,-4.5 - parent: 89 - - uid: 13272 + pos: -30.5,9.5 + parent: 24450 + - uid: 25423 components: - type: Transform - pos: -34.5,-4.5 - parent: 89 - - uid: 13273 + pos: -31.5,9.5 + parent: 24450 + - uid: 25424 components: - type: Transform - pos: -34.5,-5.5 - parent: 89 - - uid: 13274 + pos: -32.5,9.5 + parent: 24450 + - uid: 25425 components: - type: Transform - pos: -34.5,-7.5 - parent: 89 - - uid: 13275 + pos: -33.5,9.5 + parent: 24450 + - uid: 25426 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 13276 + pos: -34.5,9.5 + parent: 24450 + - uid: 25427 components: - type: Transform - pos: -12.5,-7.5 - parent: 89 - - uid: 13277 + pos: -34.5,11.5 + parent: 24450 + - uid: 25428 components: - type: Transform - pos: -15.5,-7.5 - parent: 89 - - uid: 13278 + pos: -34.5,4.5 + parent: 24450 + - uid: 25429 components: - type: Transform - pos: -14.5,-7.5 - parent: 89 - - uid: 13279 + pos: -34.5,3.5 + parent: 24450 + - uid: 25430 components: - type: Transform - pos: -13.5,-7.5 - parent: 89 - - uid: 13280 + pos: -14.5,7.5 + parent: 24450 + - uid: 25431 components: - type: Transform - pos: -17.5,-3.5 - parent: 89 - - uid: 13281 + pos: -14.5,4.5 + parent: 24450 + - uid: 25432 components: - type: Transform - pos: -10.5,-7.5 - parent: 89 - - uid: 13282 + pos: -9.5,4.5 + parent: 24450 + - uid: 25433 components: - - type: Transform - pos: -15.5,-3.5 - parent: 89 - - uid: 13283 + - type: Transform + pos: -9.5,7.5 + parent: 24450 + - uid: 25434 components: - type: Transform - pos: -14.5,-3.5 - parent: 89 - - uid: 13284 + pos: -22.5,12.5 + parent: 24450 + - uid: 25435 components: - type: Transform - pos: -13.5,-3.5 - parent: 89 - - uid: 13285 + pos: -21.5,12.5 + parent: 24450 + - uid: 25436 components: - type: Transform - pos: -12.5,-3.5 - parent: 89 - - uid: 13286 + pos: -2.5,12.5 + parent: 24450 + - uid: 25437 components: - type: Transform - pos: -11.5,-3.5 - parent: 89 - - uid: 13287 + pos: -1.5,12.5 + parent: 24450 + - uid: 25438 components: - type: Transform - pos: -10.5,-3.5 - parent: 89 - - uid: 13288 + pos: -6.5,2.5 + parent: 24450 + - uid: 25439 components: - type: Transform - pos: -9.5,-3.5 - parent: 89 - - uid: 13289 + pos: -6.5,3.5 + parent: 24450 + - uid: 25440 components: - type: Transform - pos: -8.5,-3.5 - parent: 89 - - uid: 13290 + pos: -6.5,4.5 + parent: 24450 + - uid: 25441 components: - type: Transform - pos: -7.5,-3.5 - parent: 89 - - uid: 13291 + pos: -6.5,5.5 + parent: 24450 + - uid: 25442 components: - type: Transform - pos: -6.5,-3.5 - parent: 89 - - uid: 13292 + pos: -6.5,6.5 + parent: 24450 + - uid: 25443 components: - type: Transform - pos: -6.5,-2.5 - parent: 89 - - uid: 13293 + pos: -6.5,7.5 + parent: 24450 + - uid: 25444 components: - type: Transform - pos: -6.5,-1.5 - parent: 89 - - uid: 13294 + pos: -6.5,8.5 + parent: 24450 + - uid: 25445 components: - type: Transform - pos: -6.5,-0.5 - parent: 89 - - uid: 13295 + pos: -6.5,9.5 + parent: 24450 + - uid: 25446 components: - type: Transform - pos: -9.5,-2.5 - parent: 89 - - uid: 13296 + pos: -4.5,5.5 + parent: 24450 + - uid: 25447 components: - type: Transform - pos: -9.5,-1.5 - parent: 89 - - uid: 13297 + pos: -5.5,5.5 + parent: 24450 + - uid: 25448 components: - type: Transform - pos: -12.5,-2.5 - parent: 89 - - uid: 13298 + pos: -23.5,8.5 + parent: 24450 + - uid: 25449 components: - type: Transform - pos: -12.5,-1.5 - parent: 89 - - uid: 13299 + pos: -23.5,7.5 + parent: 24450 + - uid: 25450 components: - type: Transform - pos: -9.5,-4.5 - parent: 89 - - uid: 13300 + pos: -23.5,6.5 + parent: 24450 + - uid: 25451 components: - type: Transform - pos: -9.5,-5.5 - parent: 89 - - uid: 13301 + pos: -23.5,5.5 + parent: 24450 + - uid: 25452 components: - type: Transform - pos: -9.5,-6.5 - parent: 89 - - uid: 13302 + pos: -23.5,4.5 + parent: 24450 + - uid: 25453 components: - type: Transform - pos: -10.5,-8.5 - parent: 89 - - uid: 13303 + pos: -23.5,3.5 + parent: 24450 + - uid: 25454 components: - type: Transform - pos: -9.5,-8.5 - parent: 89 - - uid: 13304 + pos: -23.5,2.5 + parent: 24450 + - uid: 25455 components: - type: Transform - pos: -9.5,-9.5 - parent: 89 - - uid: 13305 + pos: -20.5,8.5 + parent: 24450 + - uid: 25456 components: - type: Transform - pos: -6.5,-4.5 - parent: 89 - - uid: 13306 + pos: -20.5,7.5 + parent: 24450 + - uid: 25457 components: - type: Transform - pos: -6.5,-5.5 - parent: 89 - - uid: 13331 + pos: -20.5,6.5 + parent: 24450 + - uid: 25458 components: - type: Transform - pos: -79.5,2.5 - parent: 89 - - uid: 13332 + pos: -20.5,5.5 + parent: 24450 + - uid: 25459 components: - type: Transform - pos: -79.5,1.5 - parent: 89 - - uid: 13333 + pos: -20.5,4.5 + parent: 24450 + - uid: 25460 components: - type: Transform - pos: -79.5,0.5 - parent: 89 - - uid: 13334 + pos: -20.5,3.5 + parent: 24450 + - uid: 25461 components: - type: Transform - pos: -78.5,0.5 - parent: 89 - - uid: 13335 + pos: -20.5,2.5 + parent: 24450 + - uid: 25462 components: - type: Transform - pos: -77.5,0.5 - parent: 89 - - uid: 13336 + pos: -25.5,5.5 + parent: 24450 + - uid: 25463 components: - type: Transform - pos: -76.5,0.5 - parent: 89 - - uid: 13337 + pos: -24.5,5.5 + parent: 24450 + - uid: 25464 components: - type: Transform - pos: -76.5,-0.5 - parent: 89 - - uid: 13338 + pos: -22.5,5.5 + parent: 24450 + - uid: 25465 components: - type: Transform - pos: -76.5,-1.5 - parent: 89 - - uid: 13339 + pos: -21.5,5.5 + parent: 24450 + - uid: 25466 components: - type: Transform - pos: -76.5,-2.5 - parent: 89 - - uid: 13340 + pos: -19.5,5.5 + parent: 24450 + - uid: 25467 components: - type: Transform - pos: -76.5,-3.5 - parent: 89 - - uid: 13341 + pos: -18.5,5.5 + parent: 24450 + - uid: 25468 components: - type: Transform - pos: -77.5,-3.5 - parent: 89 - - uid: 13342 + pos: -17.5,5.5 + parent: 24450 + - uid: 25469 components: - type: Transform - pos: -78.5,-3.5 - parent: 89 - - uid: 13343 + pos: -16.5,5.5 + parent: 24450 + - uid: 25470 components: - type: Transform - pos: -79.5,-3.5 - parent: 89 - - uid: 13344 + pos: -16.5,6.5 + parent: 24450 + - uid: 25471 components: - type: Transform - pos: -75.5,-3.5 - parent: 89 - - uid: 13345 + pos: -16.5,7.5 + parent: 24450 + - uid: 25472 components: - type: Transform - pos: -74.5,-3.5 - parent: 89 - - uid: 13346 + pos: -16.5,8.5 + parent: 24450 + - uid: 25473 components: - type: Transform - pos: -74.5,-4.5 - parent: 89 - - uid: 13347 + pos: -16.5,9.5 + parent: 24450 + - uid: 25474 components: - type: Transform - pos: -74.5,-5.5 - parent: 89 - - uid: 13348 + pos: -16.5,4.5 + parent: 24450 + - uid: 25475 components: - type: Transform - pos: -74.5,-6.5 - parent: 89 - - uid: 13349 + pos: -16.5,3.5 + parent: 24450 + - uid: 25476 components: - type: Transform - pos: -74.5,-7.5 - parent: 89 - - uid: 13350 + pos: -16.5,2.5 + parent: 24450 + - uid: 25477 components: - type: Transform - pos: -82.5,9.5 - parent: 89 - - uid: 13351 + pos: -31.5,2.5 + parent: 24450 + - uid: 25478 components: - type: Transform - pos: -83.5,9.5 - parent: 89 - - uid: 13352 + pos: -32.5,2.5 + parent: 24450 + - uid: 25479 components: - type: Transform - pos: -84.5,9.5 - parent: 89 - - uid: 13353 + pos: -33.5,2.5 + parent: 24450 + - uid: 25480 components: - type: Transform - pos: -85.5,9.5 - parent: 89 - - uid: 13354 + pos: -18.5,-25.5 + parent: 24450 + - uid: 27328 components: - type: Transform - pos: -86.5,9.5 - parent: 89 - - uid: 13355 + pos: -5.5,-5.5 + parent: 27260 + - uid: 27329 components: - type: Transform - pos: -87.5,9.5 - parent: 89 - - uid: 13356 + pos: -4.5,-5.5 + parent: 27260 + - uid: 27330 components: - type: Transform - pos: -86.5,8.5 - parent: 89 - - uid: 13357 + pos: -3.5,-5.5 + parent: 27260 + - uid: 27331 components: - type: Transform - pos: -86.5,7.5 - parent: 89 - - uid: 13358 + pos: -2.5,-5.5 + parent: 27260 + - uid: 27332 components: - type: Transform - pos: -86.5,6.5 - parent: 89 - - uid: 13359 + pos: -1.5,-5.5 + parent: 27260 + - uid: 27333 components: - type: Transform - pos: -86.5,5.5 - parent: 89 - - uid: 13360 + pos: -0.5,-5.5 + parent: 27260 + - uid: 27334 components: - type: Transform - pos: -86.5,4.5 - parent: 89 - - uid: 13361 + pos: -0.5,-4.5 + parent: 27260 + - uid: 27335 components: - type: Transform - pos: -86.5,3.5 - parent: 89 - - uid: 13362 + pos: -0.5,-3.5 + parent: 27260 + - uid: 27336 components: - type: Transform - pos: -86.5,2.5 - parent: 89 - - uid: 13363 + pos: -0.5,-2.5 + parent: 27260 + - uid: 27337 components: - type: Transform - pos: -85.5,3.5 - parent: 89 - - uid: 13364 + pos: -0.5,-1.5 + parent: 27260 + - uid: 27338 components: - type: Transform - pos: -87.5,3.5 - parent: 89 - - uid: 13365 + pos: -0.5,-0.5 + parent: 27260 + - uid: 27339 components: - type: Transform - pos: -88.5,3.5 - parent: 89 - - uid: 13366 + pos: -1.5,-1.5 + parent: 27260 + - uid: 27340 components: - type: Transform - pos: -88.5,9.5 - parent: 89 - - uid: 13367 + pos: -2.5,-1.5 + parent: 27260 + - uid: 27341 components: - type: Transform - pos: -88.5,8.5 - parent: 89 - - uid: 13368 + pos: 1.5,-0.5 + parent: 27260 + - uid: 27342 components: - type: Transform - pos: -84.5,3.5 - parent: 89 - - uid: 13369 + pos: 1.5,-1.5 + parent: 27260 + - uid: 27343 components: - type: Transform - pos: -84.5,2.5 - parent: 89 - - uid: 13377 + pos: 1.5,-2.5 + parent: 27260 + - uid: 27344 components: - type: Transform - pos: -67.5,15.5 - parent: 89 - - uid: 13378 + pos: 1.5,-3.5 + parent: 27260 + - uid: 27345 components: - type: Transform - pos: -67.5,14.5 - parent: 89 - - uid: 13379 + pos: 1.5,-4.5 + parent: 27260 + - uid: 27346 components: - type: Transform - pos: -67.5,13.5 - parent: 89 - - uid: 13380 + pos: 1.5,-5.5 + parent: 27260 + - uid: 27347 components: - type: Transform - pos: -67.5,12.5 - parent: 89 - - uid: 13381 + pos: 2.5,-1.5 + parent: 27260 + - uid: 27348 components: - type: Transform - pos: -67.5,11.5 - parent: 89 - - uid: 13382 + pos: 3.5,-1.5 + parent: 27260 + - uid: 27349 components: - type: Transform - pos: -67.5,10.5 - parent: 89 - - uid: 13383 + pos: 2.5,-5.5 + parent: 27260 + - uid: 27350 components: - type: Transform - pos: -67.5,9.5 - parent: 89 - - uid: 13384 + pos: 3.5,-5.5 + parent: 27260 + - uid: 27351 components: - type: Transform - pos: -67.5,8.5 - parent: 89 - - uid: 13385 + pos: 4.5,-5.5 + parent: 27260 + - uid: 27352 components: - type: Transform - pos: -66.5,9.5 - parent: 89 - - uid: 13386 + pos: 5.5,-5.5 + parent: 27260 + - uid: 27353 components: - type: Transform - pos: -65.5,9.5 - parent: 89 - - uid: 13387 + pos: 5.5,-4.5 + parent: 27260 + - uid: 27354 components: - type: Transform - pos: -64.5,9.5 - parent: 89 - - uid: 13388 + pos: 1.5,-6.5 + parent: 27260 + - uid: 27355 components: - type: Transform - pos: -63.5,9.5 - parent: 89 - - uid: 13389 + pos: 1.5,-7.5 + parent: 27260 + - uid: 27356 components: - type: Transform - pos: -66.5,13.5 - parent: 89 - - uid: 13390 + pos: 1.5,-8.5 + parent: 27260 + - uid: 27357 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - uid: 13391 + pos: 1.5,-9.5 + parent: 27260 + - uid: 27358 components: - type: Transform - pos: -64.5,13.5 - parent: 89 - - uid: 13392 + pos: 2.5,-7.5 + parent: 27260 + - uid: 27359 components: - type: Transform - pos: -63.5,13.5 - parent: 89 - - uid: 13393 + pos: 3.5,-7.5 + parent: 27260 + - uid: 27360 components: - type: Transform - pos: -62.5,13.5 - parent: 89 - - uid: 13394 + pos: 2.5,-9.5 + parent: 27260 + - uid: 27361 components: - type: Transform - pos: -61.5,13.5 - parent: 89 - - uid: 13395 + pos: 3.5,-9.5 + parent: 27260 + - uid: 27362 components: - type: Transform - pos: -60.5,13.5 - parent: 89 - - uid: 13396 + pos: 4.5,-9.5 + parent: 27260 + - uid: 27363 components: - type: Transform - pos: -59.5,13.5 - parent: 89 - - uid: 13397 + pos: 5.5,-9.5 + parent: 27260 + - uid: 27364 components: - type: Transform - pos: -58.5,13.5 - parent: 89 - - uid: 13398 + pos: 6.5,-9.5 + parent: 27260 + - uid: 27365 components: - type: Transform - pos: -57.5,13.5 - parent: 89 - - uid: 13399 + pos: 4.5,-10.5 + parent: 27260 + - uid: 27366 components: - type: Transform - pos: -56.5,13.5 - parent: 89 - - uid: 13400 + pos: 4.5,-11.5 + parent: 27260 + - uid: 27367 components: - type: Transform - pos: -55.5,13.5 - parent: 89 - - uid: 13401 + pos: 4.5,-12.5 + parent: 27260 + - uid: 27368 components: - type: Transform - pos: -54.5,13.5 - parent: 89 - - uid: 13402 + pos: 5.5,-12.5 + parent: 27260 + - uid: 27369 components: - type: Transform - pos: -59.5,12.5 - parent: 89 - - uid: 13403 + pos: -0.5,-6.5 + parent: 27260 + - uid: 27370 components: - type: Transform - pos: -59.5,11.5 - parent: 89 - - uid: 13404 + pos: -0.5,-7.5 + parent: 27260 + - uid: 27371 components: - type: Transform - pos: -59.5,10.5 - parent: 89 - - uid: 13405 + pos: -0.5,-8.5 + parent: 27260 + - uid: 27372 components: - type: Transform - pos: -59.5,9.5 - parent: 89 - - uid: 13406 + pos: -0.5,-9.5 + parent: 27260 + - uid: 27373 components: - type: Transform - pos: -59.5,8.5 - parent: 89 - - uid: 13407 + pos: -1.5,-7.5 + parent: 27260 + - uid: 27374 components: - type: Transform - pos: -68.5,9.5 - parent: 89 - - uid: 13408 + pos: -2.5,-7.5 + parent: 27260 + - uid: 27375 components: - type: Transform - pos: -69.5,9.5 - parent: 89 - - uid: 13409 + pos: -1.5,-9.5 + parent: 27260 + - uid: 27376 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 13410 + pos: -2.5,-9.5 + parent: 27260 + - uid: 27377 components: - type: Transform - pos: -71.5,9.5 - parent: 89 - - uid: 13411 + pos: -3.5,-9.5 + parent: 27260 + - uid: 27378 components: - type: Transform - pos: -72.5,9.5 - parent: 89 - - uid: 13412 + pos: -4.5,-9.5 + parent: 27260 + - uid: 27379 components: - type: Transform - pos: -73.5,9.5 - parent: 89 - - uid: 13413 + pos: -5.5,-9.5 + parent: 27260 + - uid: 27380 components: - type: Transform - pos: -74.5,9.5 - parent: 89 - - uid: 13414 + pos: -3.5,-10.5 + parent: 27260 + - uid: 27381 components: - type: Transform - pos: -72.5,8.5 - parent: 89 - - uid: 13415 + pos: -3.5,-11.5 + parent: 27260 + - uid: 27382 components: - type: Transform - pos: -80.5,9.5 - parent: 89 - - uid: 13416 + pos: -3.5,-12.5 + parent: 27260 + - uid: 27383 components: - type: Transform - pos: -80.5,8.5 - parent: 89 - - uid: 13417 + pos: -4.5,-12.5 + parent: 27260 + - uid: 27384 components: - type: Transform - pos: -79.5,8.5 - parent: 89 - - uid: 13418 + pos: 1.5,-10.5 + parent: 27260 + - uid: 27385 components: - type: Transform - pos: -78.5,8.5 - parent: 89 - - uid: 13419 + pos: 1.5,-11.5 + parent: 27260 + - uid: 27386 components: - type: Transform - pos: -78.5,9.5 - parent: 89 - - uid: 13420 + pos: -0.5,-10.5 + parent: 27260 + - uid: 27387 components: - type: Transform - pos: -78.5,10.5 - parent: 89 - - uid: 13421 + pos: -0.5,-11.5 + parent: 27260 + - uid: 27388 components: - type: Transform - pos: -72.5,10.5 - parent: 89 - - uid: 13422 + pos: -5.5,-4.5 + parent: 27260 +- proto: CableApcStack + entities: + - uid: 4237 components: - type: Transform - pos: -72.5,11.5 - parent: 89 - - uid: 13423 + pos: -13.491456,-15.321603 + parent: 2 + - uid: 4238 components: - type: Transform - pos: -72.5,12.5 - parent: 89 - - uid: 13424 + pos: -13.335206,-15.446603 + parent: 2 + - uid: 4239 components: - type: Transform - pos: -72.5,13.5 - parent: 89 - - uid: 13425 + pos: -131.43742,-2.5232015 + parent: 2 + - uid: 4240 components: - type: Transform - pos: -72.5,14.5 - parent: 89 - - uid: 13426 + pos: -115.45264,15.019241 + parent: 2 + - uid: 4241 components: - type: Transform - pos: -72.5,15.5 - parent: 89 - - uid: 13427 + pos: 17.273815,-1.3573475 + parent: 2 + - uid: 4242 components: - type: Transform - pos: -72.5,16.5 - parent: 89 - - uid: 13428 + pos: 17.273815,-1.3573475 + parent: 2 + - uid: 4243 components: - type: Transform - pos: -72.5,17.5 - parent: 89 - - uid: 13429 + pos: 17.273815,-1.3573475 + parent: 2 + - uid: 4244 components: - type: Transform - pos: -71.5,17.5 - parent: 89 - - uid: 13430 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4245 components: - type: Transform - pos: -70.5,17.5 - parent: 89 - - uid: 13431 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4246 components: - type: Transform - pos: -69.5,17.5 - parent: 89 - - uid: 13432 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4247 components: - type: Transform - pos: -68.5,17.5 - parent: 89 - - uid: 13433 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4248 components: - type: Transform - pos: -67.5,17.5 - parent: 89 - - uid: 13434 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4249 components: - type: Transform - pos: -66.5,17.5 - parent: 89 - - uid: 13435 + pos: -119.4907,12.690424 + parent: 2 + - uid: 4250 components: - type: Transform - pos: -65.5,17.5 - parent: 89 - - uid: 13436 + pos: -115.48235,5.7165937 + parent: 2 + - uid: 4251 components: - type: Transform - pos: -64.5,17.5 - parent: 89 - - uid: 13437 + pos: -103.706276,-2.3275843 + parent: 2 + - uid: 4252 components: - type: Transform - pos: -63.5,17.5 - parent: 89 - - uid: 13438 + pos: -103.50315,-2.2338343 + parent: 2 + - uid: 4253 components: - type: Transform - pos: -62.5,17.5 - parent: 89 - - uid: 13439 + pos: 32.477047,6.447131 + parent: 2 + - uid: 27389 components: - type: Transform - pos: -61.5,17.5 - parent: 89 - - uid: 13440 + pos: -1.4512177,-7.4963074 + parent: 27260 +- proto: CableApcStack1 + entities: + - uid: 4254 components: - type: Transform - pos: -60.5,17.5 - parent: 89 - - uid: 13441 + rot: 3.141592653589793 rad + pos: -1.5947638,30.561302 + parent: 2 + - uid: 4255 components: - type: Transform - pos: -59.5,17.5 - parent: 89 - - uid: 13442 + rot: 3.141592653589793 rad + pos: -6.532264,30.576927 + parent: 2 + - uid: 4256 components: - type: Transform - pos: -58.5,17.5 - parent: 89 - - uid: 13443 + rot: 3.141592653589793 rad + pos: -3.6103897,32.545677 + parent: 2 + - uid: 4257 components: - type: Transform - pos: -57.5,17.5 - parent: 89 - - uid: 13444 + rot: 3.141592653589793 rad + pos: -0.7041397,30.561302 + parent: 2 + - uid: 4258 components: - type: Transform - pos: -56.5,17.5 - parent: 89 - - uid: 13445 + rot: 3.141592653589793 rad + pos: -0.51449203,41.5748 + parent: 2 + - uid: 4259 components: - type: Transform - pos: -55.5,17.5 - parent: 89 - - uid: 13446 + rot: 3.141592653589793 rad + pos: -3.5392475,40.54355 + parent: 2 + - uid: 4260 components: - type: Transform - pos: -54.5,17.5 - parent: 89 - - uid: 13484 + rot: 3.141592653589793 rad + pos: -0.5635147,35.623802 + parent: 2 + - uid: 4261 components: - type: Transform - pos: -52.5,29.5 - parent: 89 - - uid: 13485 + rot: 3.141592653589793 rad + pos: -2.576991,41.48105 + parent: 2 + - uid: 4262 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 13486 + rot: 3.141592653589793 rad + pos: -4.764492,45.777924 + parent: 2 + - uid: 4263 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 13487 + rot: 3.141592653589793 rad + pos: -2.326992,45.7623 + parent: 2 + - uid: 4264 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 13488 + rot: 3.141592653589793 rad + pos: -3.608242,43.5123 + parent: 2 + - uid: 4265 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 13489 + rot: 3.141592653589793 rad + pos: -42.524166,21.414473 + parent: 2 + - uid: 4266 components: - type: Transform - pos: -58.5,30.5 - parent: 89 - - uid: 13490 + rot: 3.141592653589793 rad + pos: -42.586666,22.273848 + parent: 2 + - uid: 4267 components: - type: Transform - pos: -58.5,29.5 - parent: 89 - - uid: 13491 + rot: 3.141592653589793 rad + pos: -42.47729,23.523848 + parent: 2 +- proto: CableApcStackLingering10 + entities: + - uid: 4268 components: - type: Transform - pos: -57.5,29.5 - parent: 89 - - uid: 13492 + pos: 0.46723938,-44.52636 + parent: 2 +- proto: CableHV + entities: + - uid: 4269 components: - type: Transform - pos: -56.5,29.5 - parent: 89 - - uid: 13493 + pos: -115.5,-12.5 + parent: 2 + - uid: 4270 components: - type: Transform - pos: -59.5,31.5 - parent: 89 - - uid: 13494 + pos: -82.5,-10.5 + parent: 2 + - uid: 4271 components: - type: Transform - pos: -60.5,31.5 - parent: 89 - - uid: 13495 + pos: -122.5,4.5 + parent: 2 + - uid: 4272 components: - type: Transform - pos: -61.5,31.5 - parent: 89 - - uid: 13496 + pos: -121.5,4.5 + parent: 2 + - uid: 4273 components: - type: Transform - pos: -62.5,31.5 - parent: 89 - - uid: 13497 + pos: -121.5,5.5 + parent: 2 + - uid: 4274 components: - type: Transform - pos: -63.5,31.5 - parent: 89 - - uid: 13498 + pos: -122.5,9.5 + parent: 2 + - uid: 4275 components: - type: Transform - pos: -64.5,31.5 - parent: 89 - - uid: 13499 + pos: -123.5,9.5 + parent: 2 + - uid: 4276 components: - type: Transform - pos: -65.5,31.5 - parent: 89 - - uid: 13500 + pos: -124.5,-2.5 + parent: 2 + - uid: 4277 components: - type: Transform - pos: -65.5,30.5 - parent: 89 - - uid: 13501 + pos: -121.5,8.5 + parent: 2 + - uid: 4278 components: - type: Transform - pos: -65.5,29.5 - parent: 89 - - uid: 13502 + pos: -121.5,9.5 + parent: 2 + - uid: 4279 components: - type: Transform - pos: -65.5,28.5 - parent: 89 - - uid: 13503 + pos: -11.5,-26.5 + parent: 2 + - uid: 4280 components: - type: Transform - pos: -65.5,27.5 - parent: 89 - - uid: 13504 + pos: -40.5,-6.5 + parent: 2 + - uid: 4281 components: - type: Transform - pos: -65.5,26.5 - parent: 89 - - uid: 13505 + pos: -12.5,-27.5 + parent: 2 + - uid: 4282 components: - type: Transform - pos: -65.5,25.5 - parent: 89 - - uid: 13506 + pos: 15.5,-14.5 + parent: 2 + - uid: 4283 components: - type: Transform - pos: -65.5,32.5 - parent: 89 - - uid: 13507 + pos: 14.5,-15.5 + parent: 2 + - uid: 4284 components: - type: Transform - pos: -65.5,33.5 - parent: 89 - - uid: 13508 + pos: -1.5,23.5 + parent: 2 + - uid: 4285 components: - type: Transform - pos: -65.5,34.5 - parent: 89 - - uid: 13509 + pos: -8.5,23.5 + parent: 2 + - uid: 4286 components: - type: Transform - pos: -65.5,35.5 - parent: 89 - - uid: 13510 + pos: 59.5,-38.5 + parent: 2 + - uid: 4287 components: - type: Transform - pos: -65.5,36.5 - parent: 89 - - uid: 13511 + pos: 62.5,-31.5 + parent: 2 + - uid: 4288 components: - type: Transform - pos: -65.5,37.5 - parent: 89 - - uid: 13512 + pos: 62.5,-32.5 + parent: 2 + - uid: 4289 components: - type: Transform - pos: -65.5,38.5 - parent: 89 - - uid: 13513 + pos: 53.5,-37.5 + parent: 2 + - uid: 4290 components: - type: Transform - pos: -65.5,39.5 - parent: 89 - - uid: 13514 + pos: 55.5,-37.5 + parent: 2 + - uid: 4291 components: - type: Transform - pos: -65.5,40.5 - parent: 89 - - uid: 13515 + pos: 47.5,3.5 + parent: 2 + - uid: 4292 components: - type: Transform - pos: -65.5,41.5 - parent: 89 - - uid: 13516 + pos: 48.5,3.5 + parent: 2 + - uid: 4293 components: - type: Transform - pos: -65.5,42.5 - parent: 89 - - uid: 13517 + pos: -11.5,3.5 + parent: 2 + - uid: 4294 components: - type: Transform - pos: -65.5,43.5 - parent: 89 - - uid: 13518 + pos: -10.5,3.5 + parent: 2 + - uid: 4295 components: - type: Transform - pos: -65.5,44.5 - parent: 89 - - uid: 13519 + pos: -7.5,3.5 + parent: 2 + - uid: 4296 components: - type: Transform - pos: -65.5,45.5 - parent: 89 - - uid: 13520 + pos: -6.5,3.5 + parent: 2 + - uid: 4297 components: - type: Transform - pos: -65.5,46.5 - parent: 89 - - uid: 13521 + pos: 47.5,4.5 + parent: 2 + - uid: 4298 components: - type: Transform - pos: -65.5,47.5 - parent: 89 - - uid: 13522 + pos: 54.5,-37.5 + parent: 2 + - uid: 4299 components: - type: Transform - pos: -59.5,35.5 - parent: 89 - - uid: 13523 + pos: -3.5,3.5 + parent: 2 + - uid: 4300 components: - type: Transform - pos: -59.5,36.5 - parent: 89 - - uid: 13524 + pos: -14.5,21.5 + parent: 2 + - uid: 4301 components: - type: Transform - pos: -59.5,37.5 - parent: 89 - - uid: 13525 + pos: -2.5,3.5 + parent: 2 + - uid: 4302 components: - type: Transform - pos: -59.5,38.5 - parent: 89 - - uid: 13526 + pos: -128.5,-8.5 + parent: 2 + - uid: 4303 components: - type: Transform - pos: -59.5,39.5 - parent: 89 - - uid: 13527 + pos: -1.5,3.5 + parent: 2 + - uid: 4304 components: - type: Transform - pos: -59.5,40.5 - parent: 89 - - uid: 13528 + pos: -0.5,3.5 + parent: 2 + - uid: 4305 components: - type: Transform - pos: -59.5,41.5 - parent: 89 - - uid: 13529 + pos: 0.5,3.5 + parent: 2 + - uid: 4306 components: - type: Transform - pos: -59.5,43.5 - parent: 89 - - uid: 13530 + pos: -126.5,4.5 + parent: 2 + - uid: 4307 components: - type: Transform - pos: -59.5,42.5 - parent: 89 - - uid: 13531 + pos: -126.5,-7.5 + parent: 2 + - uid: 4308 components: - type: Transform - pos: -59.5,44.5 - parent: 89 - - uid: 13532 + pos: 3.5,23.5 + parent: 2 + - uid: 4309 components: - type: Transform - pos: -60.5,44.5 - parent: 89 - - uid: 13533 + pos: -127.5,-3.5 + parent: 2 + - uid: 4310 components: - type: Transform - pos: -61.5,44.5 - parent: 89 - - uid: 13534 + pos: -129.5,-3.5 + parent: 2 + - uid: 4311 components: - type: Transform - pos: -62.5,44.5 - parent: 89 - - uid: 13535 + pos: -34.5,-16.5 + parent: 2 + - uid: 4312 components: - type: Transform - pos: -63.5,44.5 - parent: 89 - - uid: 13536 + pos: -33.5,-16.5 + parent: 2 + - uid: 4313 components: - type: Transform - pos: -64.5,44.5 - parent: 89 - - uid: 13537 + pos: -35.5,-16.5 + parent: 2 + - uid: 4314 components: - type: Transform - pos: -66.5,47.5 - parent: 89 - - uid: 13538 + pos: -14.5,22.5 + parent: 2 + - uid: 4315 components: - type: Transform - pos: -59.5,34.5 - parent: 89 - - uid: 13539 + pos: -128.5,-9.5 + parent: 2 + - uid: 4316 components: - type: Transform - pos: -58.5,35.5 - parent: 89 - - uid: 13540 + pos: -128.5,-10.5 + parent: 2 + - uid: 4317 components: - type: Transform - pos: -57.5,35.5 - parent: 89 - - uid: 13541 + pos: 10.5,26.5 + parent: 2 + - uid: 4318 components: - type: Transform - pos: -56.5,35.5 - parent: 89 - - uid: 13542 + pos: 63.5,-22.5 + parent: 2 + - uid: 4319 components: - type: Transform - pos: -56.5,36.5 - parent: 89 - - uid: 13543 + pos: 63.5,-23.5 + parent: 2 + - uid: 4320 components: - type: Transform - pos: -56.5,37.5 - parent: 89 - - uid: 13544 + pos: 8.5,26.5 + parent: 2 + - uid: 4321 components: - type: Transform - pos: -56.5,38.5 - parent: 89 - - uid: 13545 + pos: -5.5,26.5 + parent: 2 + - uid: 4322 components: - type: Transform - pos: -56.5,39.5 - parent: 89 - - uid: 13546 + pos: -5.5,27.5 + parent: 2 + - uid: 4323 components: - type: Transform - pos: -56.5,40.5 - parent: 89 - - uid: 13547 + pos: -5.5,26.5 + parent: 2 + - uid: 4324 components: - type: Transform - pos: -56.5,41.5 - parent: 89 - - uid: 13548 + pos: -4.5,26.5 + parent: 2 + - uid: 4325 components: - type: Transform - pos: -56.5,42.5 - parent: 89 - - uid: 13549 + pos: -3.5,26.5 + parent: 2 + - uid: 4326 components: - type: Transform - pos: -56.5,43.5 - parent: 89 - - uid: 13550 + pos: -3.5,26.5 + parent: 2 + - uid: 4327 components: - type: Transform - pos: -56.5,44.5 - parent: 89 - - uid: 13551 + pos: -3.5,25.5 + parent: 2 + - uid: 4328 components: - type: Transform - pos: -56.5,45.5 - parent: 89 - - uid: 13552 + pos: -3.5,24.5 + parent: 2 + - uid: 4329 components: - type: Transform - pos: -56.5,46.5 - parent: 89 - - uid: 13553 + pos: 21.5,25.5 + parent: 2 + - uid: 4330 components: - type: Transform - pos: -56.5,47.5 - parent: 89 - - uid: 13554 + pos: -129.5,12.5 + parent: 2 + - uid: 4331 components: - type: Transform - pos: -56.5,48.5 - parent: 89 - - uid: 13555 + pos: -127.5,12.5 + parent: 2 + - uid: 4332 components: - type: Transform - pos: -58.5,44.5 - parent: 89 - - uid: 13556 + pos: -128.5,12.5 + parent: 2 + - uid: 4333 components: - type: Transform - pos: -58.5,45.5 - parent: 89 - - uid: 13557 + pos: -118.5,6.5 + parent: 2 + - uid: 4334 components: - type: Transform - pos: -58.5,46.5 - parent: 89 - - uid: 13558 + pos: -131.5,13.5 + parent: 2 + - uid: 4335 components: - type: Transform - pos: -58.5,47.5 - parent: 89 - - uid: 13559 + pos: -131.5,14.5 + parent: 2 + - uid: 4336 components: - type: Transform - pos: -58.5,48.5 - parent: 89 - - uid: 13560 + pos: -131.5,15.5 + parent: 2 + - uid: 4337 components: - type: Transform - pos: -55.5,44.5 - parent: 89 - - uid: 13561 + pos: -131.5,16.5 + parent: 2 + - uid: 4338 components: - type: Transform - pos: -54.5,44.5 - parent: 89 - - uid: 13562 + pos: -126.5,12.5 + parent: 2 + - uid: 4339 components: - type: Transform - pos: -53.5,44.5 - parent: 89 - - uid: 13563 + pos: -129.5,13.5 + parent: 2 + - uid: 4340 components: - type: Transform - pos: -52.5,44.5 - parent: 89 - - uid: 13564 + pos: -125.5,12.5 + parent: 2 + - uid: 4341 components: - type: Transform - pos: -51.5,44.5 - parent: 89 - - uid: 13565 + pos: -124.5,12.5 + parent: 2 + - uid: 4342 components: - type: Transform - pos: -55.5,40.5 - parent: 89 - - uid: 13566 + pos: -123.5,12.5 + parent: 2 + - uid: 4343 components: - type: Transform - pos: -54.5,40.5 - parent: 89 - - uid: 13567 + pos: -126.5,15.5 + parent: 2 + - uid: 4344 components: - type: Transform - pos: -53.5,40.5 - parent: 89 - - uid: 13568 + pos: 18.5,26.5 + parent: 2 + - uid: 4345 components: - type: Transform - pos: -52.5,40.5 - parent: 89 - - uid: 13569 + pos: -124.5,16.5 + parent: 2 + - uid: 4346 components: - type: Transform - pos: -51.5,40.5 - parent: 89 - - uid: 13570 + pos: -118.5,5.5 + parent: 2 + - uid: 4347 components: - type: Transform - pos: -55.5,35.5 - parent: 89 - - uid: 13571 + pos: 62.5,-29.5 + parent: 2 + - uid: 4348 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 13572 + pos: 34.5,27.5 + parent: 2 + - uid: 4349 components: - type: Transform - pos: -53.5,35.5 - parent: 89 - - uid: 13573 + pos: -128.5,-7.5 + parent: 2 + - uid: 4350 components: - type: Transform - pos: -52.5,35.5 - parent: 89 - - uid: 13574 + pos: -127.5,-7.5 + parent: 2 + - uid: 4351 components: - type: Transform - pos: -52.5,36.5 - parent: 89 - - uid: 13575 + pos: 62.5,-30.5 + parent: 2 + - uid: 4352 components: - type: Transform - pos: -64.5,25.5 - parent: 89 - - uid: 13576 + pos: -82.5,-7.5 + parent: 2 + - uid: 4353 components: - type: Transform - pos: -63.5,25.5 - parent: 89 - - uid: 13577 + pos: -82.5,-6.5 + parent: 2 + - uid: 4354 components: - type: Transform - pos: -62.5,25.5 - parent: 89 - - uid: 13578 + pos: 62.5,-37.5 + parent: 2 + - uid: 4355 components: - type: Transform - pos: -61.5,25.5 - parent: 89 - - uid: 13579 + pos: 11.5,26.5 + parent: 2 + - uid: 4356 components: - type: Transform - pos: -60.5,25.5 - parent: 89 - - uid: 13580 + pos: 24.5,24.5 + parent: 2 + - uid: 4357 components: - type: Transform - pos: -59.5,25.5 - parent: 89 - - uid: 13581 + pos: 23.5,25.5 + parent: 2 + - uid: 4358 components: - type: Transform - pos: -58.5,25.5 - parent: 89 - - uid: 13582 + pos: -12.5,23.5 + parent: 2 + - uid: 4359 components: - type: Transform - pos: -57.5,25.5 - parent: 89 - - uid: 13583 + pos: -41.5,20.5 + parent: 2 + - uid: 4360 components: - type: Transform - pos: -56.5,25.5 - parent: 89 - - uid: 13603 + pos: -14.5,20.5 + parent: 2 + - uid: 4361 components: - type: Transform - pos: -55.5,48.5 - parent: 89 - - uid: 13717 + pos: -15.5,20.5 + parent: 2 + - uid: 4362 components: - type: Transform - pos: -120.5,-7.5 - parent: 89 - - uid: 13718 + pos: -16.5,20.5 + parent: 2 + - uid: 4363 components: - type: Transform - pos: -119.5,-7.5 - parent: 89 - - uid: 13719 + pos: -17.5,20.5 + parent: 2 + - uid: 4364 components: - type: Transform - pos: -118.5,-7.5 - parent: 89 - - uid: 13720 + pos: -18.5,20.5 + parent: 2 + - uid: 4365 components: - type: Transform - pos: -117.5,-7.5 - parent: 89 - - uid: 13721 + pos: -19.5,20.5 + parent: 2 + - uid: 4366 components: - type: Transform - pos: -116.5,-7.5 - parent: 89 - - uid: 13748 + pos: -20.5,20.5 + parent: 2 + - uid: 4367 components: - type: Transform - pos: -75.5,0.5 - parent: 89 - - uid: 13749 + pos: -21.5,20.5 + parent: 2 + - uid: 4368 components: - type: Transform - pos: -74.5,0.5 - parent: 89 - - uid: 13762 + pos: -22.5,20.5 + parent: 2 + - uid: 4369 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13763 + pos: -23.5,20.5 + parent: 2 + - uid: 4370 components: - type: Transform - pos: -64.5,5.5 - parent: 89 - - uid: 13764 + pos: -24.5,20.5 + parent: 2 + - uid: 4371 components: - type: Transform - pos: -64.5,4.5 - parent: 89 - - uid: 13765 + pos: -25.5,20.5 + parent: 2 + - uid: 4372 components: - type: Transform - pos: -65.5,4.5 - parent: 89 - - uid: 13766 + pos: -26.5,20.5 + parent: 2 + - uid: 4373 components: - type: Transform - pos: -66.5,4.5 - parent: 89 - - uid: 13767 + pos: -27.5,20.5 + parent: 2 + - uid: 4374 components: - type: Transform - pos: -67.5,4.5 - parent: 89 - - uid: 13768 + pos: -28.5,20.5 + parent: 2 + - uid: 4375 components: - type: Transform - pos: -68.5,4.5 - parent: 89 - - uid: 13769 + pos: -29.5,20.5 + parent: 2 + - uid: 4376 components: - type: Transform - pos: -69.5,4.5 - parent: 89 - - uid: 13770 + pos: -30.5,20.5 + parent: 2 + - uid: 4377 components: - type: Transform - pos: -70.5,4.5 - parent: 89 - - uid: 13771 + pos: -31.5,20.5 + parent: 2 + - uid: 4378 components: - type: Transform - pos: -71.5,4.5 - parent: 89 - - uid: 13772 + pos: -32.5,20.5 + parent: 2 + - uid: 4379 components: - type: Transform - pos: -72.5,4.5 - parent: 89 - - uid: 13773 + pos: -33.5,20.5 + parent: 2 + - uid: 4380 components: - type: Transform - pos: -73.5,4.5 - parent: 89 - - uid: 13774 + pos: -34.5,20.5 + parent: 2 + - uid: 4381 components: - type: Transform - pos: -74.5,4.5 - parent: 89 - - uid: 13775 + pos: -35.5,20.5 + parent: 2 + - uid: 4382 components: - type: Transform - pos: -75.5,4.5 - parent: 89 - - uid: 13776 + pos: -36.5,20.5 + parent: 2 + - uid: 4383 components: - type: Transform - pos: -76.5,4.5 - parent: 89 - - uid: 13777 + pos: -37.5,20.5 + parent: 2 + - uid: 4384 components: - type: Transform - pos: -77.5,4.5 - parent: 89 - - uid: 13778 + pos: -38.5,20.5 + parent: 2 + - uid: 4385 components: - type: Transform - pos: -78.5,4.5 - parent: 89 - - uid: 13788 + pos: -39.5,20.5 + parent: 2 + - uid: 4386 components: - type: Transform - pos: -62.5,4.5 - parent: 89 - - uid: 13789 + pos: -40.5,20.5 + parent: 2 + - uid: 4387 components: - type: Transform - pos: -63.5,4.5 - parent: 89 - - uid: 13790 + pos: -40.5,21.5 + parent: 2 + - uid: 4388 components: - type: Transform - pos: -61.5,4.5 - parent: 89 - - uid: 13791 + pos: -40.5,22.5 + parent: 2 + - uid: 4389 components: - type: Transform - pos: -60.5,4.5 - parent: 89 - - uid: 13792 + pos: -40.5,23.5 + parent: 2 + - uid: 4390 components: - type: Transform - pos: -59.5,4.5 - parent: 89 - - uid: 13793 + pos: -40.5,24.5 + parent: 2 + - uid: 4391 components: - type: Transform - pos: -58.5,4.5 - parent: 89 - - uid: 13794 + pos: -42.5,20.5 + parent: 2 + - uid: 4392 components: - type: Transform - pos: -57.5,4.5 - parent: 89 - - uid: 13795 + pos: -43.5,20.5 + parent: 2 + - uid: 4393 components: - type: Transform - pos: -56.5,4.5 - parent: 89 - - uid: 13796 + pos: -44.5,20.5 + parent: 2 + - uid: 4394 components: - type: Transform - pos: -55.5,4.5 - parent: 89 - - uid: 13797 + pos: -45.5,20.5 + parent: 2 + - uid: 4395 components: - type: Transform - pos: -54.5,4.5 - parent: 89 - - uid: 13798 + pos: -46.5,20.5 + parent: 2 + - uid: 4396 components: - type: Transform - pos: -53.5,4.5 - parent: 89 - - uid: 13799 + pos: -47.5,20.5 + parent: 2 + - uid: 4397 components: - type: Transform - pos: -55.5,3.5 - parent: 89 - - uid: 13800 + pos: -48.5,20.5 + parent: 2 + - uid: 4398 components: - type: Transform - pos: -55.5,2.5 - parent: 89 - - uid: 13801 + pos: -49.5,20.5 + parent: 2 + - uid: 4399 components: - type: Transform - pos: -55.5,1.5 - parent: 89 - - uid: 13802 + pos: -50.5,20.5 + parent: 2 + - uid: 4400 components: - type: Transform - pos: -55.5,0.5 - parent: 89 - - uid: 13803 + pos: -51.5,20.5 + parent: 2 + - uid: 4401 components: - type: Transform - pos: -55.5,-0.5 - parent: 89 - - uid: 13804 + pos: -52.5,20.5 + parent: 2 + - uid: 4402 components: - type: Transform - pos: -55.5,-1.5 - parent: 89 - - uid: 13805 + pos: -53.5,20.5 + parent: 2 + - uid: 4403 components: - type: Transform - pos: -55.5,-2.5 - parent: 89 - - uid: 13806 + pos: -84.5,13.5 + parent: 2 + - uid: 4404 components: - type: Transform - pos: -56.5,-0.5 - parent: 89 - - uid: 13807 + pos: -99.5,22.5 + parent: 2 + - uid: 4405 components: - type: Transform - pos: -57.5,-0.5 - parent: 89 - - uid: 13808 + pos: -119.5,15.5 + parent: 2 + - uid: 4406 components: - type: Transform - pos: -58.5,-0.5 - parent: 89 - - uid: 13809 + pos: -118.5,15.5 + parent: 2 + - uid: 4407 components: - type: Transform - pos: -59.5,-0.5 - parent: 89 - - uid: 13810 + pos: -117.5,15.5 + parent: 2 + - uid: 4408 components: - type: Transform - pos: -60.5,-0.5 - parent: 89 - - uid: 13811 + pos: -116.5,15.5 + parent: 2 + - uid: 4409 components: - type: Transform - pos: -61.5,-0.5 - parent: 89 - - uid: 13812 + pos: -116.5,14.5 + parent: 2 + - uid: 4410 components: - type: Transform - pos: -62.5,-0.5 - parent: 89 - - uid: 13813 + pos: -119.5,14.5 + parent: 2 + - uid: 4411 components: - type: Transform - pos: -63.5,-0.5 - parent: 89 - - uid: 13814 + pos: -118.5,17.5 + parent: 2 + - uid: 4412 components: - type: Transform - pos: -64.5,-0.5 - parent: 89 - - uid: 13815 + pos: -119.5,13.5 + parent: 2 + - uid: 4413 components: - type: Transform - pos: -65.5,-0.5 - parent: 89 - - uid: 13816 + pos: -119.5,10.5 + parent: 2 + - uid: 4414 components: - type: Transform - pos: -66.5,-0.5 - parent: 89 - - uid: 13817 + pos: -119.5,11.5 + parent: 2 + - uid: 4415 components: - type: Transform - pos: -67.5,-0.5 - parent: 89 - - uid: 13818 + pos: -119.5,12.5 + parent: 2 + - uid: 4416 components: - type: Transform - pos: -68.5,-0.5 - parent: 89 - - uid: 13819 + pos: -113.5,17.5 + parent: 2 + - uid: 4417 components: - type: Transform - pos: -69.5,-0.5 - parent: 89 - - uid: 13820 + pos: -116.5,9.5 + parent: 2 + - uid: 4418 components: - type: Transform - pos: -70.5,-0.5 - parent: 89 - - uid: 13821 + pos: -111.5,17.5 + parent: 2 + - uid: 4419 components: - type: Transform - pos: -70.5,-1.5 - parent: 89 - - uid: 13822 + pos: -110.5,17.5 + parent: 2 + - uid: 4420 components: - type: Transform - pos: -70.5,0.5 - parent: 89 - - uid: 13823 + pos: -109.5,17.5 + parent: 2 + - uid: 4421 components: - type: Transform - pos: -70.5,1.5 - parent: 89 - - uid: 13824 + pos: -108.5,17.5 + parent: 2 + - uid: 4422 components: - type: Transform - pos: -70.5,2.5 - parent: 89 - - uid: 13825 + pos: -107.5,17.5 + parent: 2 + - uid: 4423 components: - type: Transform - pos: -59.5,-1.5 - parent: 89 - - uid: 13826 + pos: -106.5,17.5 + parent: 2 + - uid: 4424 components: - type: Transform - pos: -66.5,-1.5 - parent: 89 - - uid: 13827 + pos: -105.5,17.5 + parent: 2 + - uid: 4425 components: - type: Transform - pos: -66.5,0.5 - parent: 89 - - uid: 13828 + pos: -104.5,17.5 + parent: 2 + - uid: 4426 components: - type: Transform - pos: -59.5,0.5 - parent: 89 - - uid: 13832 + pos: -103.5,17.5 + parent: 2 + - uid: 4427 components: - type: Transform - pos: -41.5,3.5 - parent: 89 - - uid: 13833 + pos: -102.5,17.5 + parent: 2 + - uid: 4428 components: - type: Transform - pos: -42.5,3.5 - parent: 89 - - uid: 13834 + pos: -101.5,17.5 + parent: 2 + - uid: 4429 components: - type: Transform - pos: -43.5,3.5 - parent: 89 - - uid: 13835 + pos: -100.5,17.5 + parent: 2 + - uid: 4430 components: - type: Transform - pos: -44.5,3.5 - parent: 89 - - uid: 13836 + pos: -100.5,18.5 + parent: 2 + - uid: 4431 components: - type: Transform - pos: -45.5,3.5 - parent: 89 - - uid: 13837 + pos: -100.5,19.5 + parent: 2 + - uid: 4432 components: - type: Transform - pos: -46.5,3.5 - parent: 89 - - uid: 13838 + pos: -100.5,20.5 + parent: 2 + - uid: 4433 components: - type: Transform - pos: -47.5,3.5 - parent: 89 - - uid: 13839 + pos: -100.5,21.5 + parent: 2 + - uid: 4434 components: - type: Transform - pos: -40.5,2.5 - parent: 89 - - uid: 13840 + pos: -100.5,22.5 + parent: 2 + - uid: 4435 components: - type: Transform - pos: -40.5,1.5 - parent: 89 - - uid: 13841 + pos: -98.5,22.5 + parent: 2 + - uid: 4436 components: - type: Transform - pos: -40.5,0.5 - parent: 89 - - uid: 13842 + pos: -97.5,22.5 + parent: 2 + - uid: 4437 components: - type: Transform - pos: -40.5,-0.5 - parent: 89 - - uid: 13843 + pos: -96.5,22.5 + parent: 2 + - uid: 4438 components: - type: Transform - pos: -41.5,-0.5 - parent: 89 - - uid: 13844 + pos: -95.5,22.5 + parent: 2 + - uid: 4439 components: - type: Transform - pos: -42.5,-0.5 - parent: 89 - - uid: 13845 + pos: -94.5,22.5 + parent: 2 + - uid: 4440 components: - type: Transform - pos: -43.5,-0.5 - parent: 89 - - uid: 13846 + pos: -93.5,22.5 + parent: 2 + - uid: 4441 components: - type: Transform - pos: -44.5,-0.5 - parent: 89 - - uid: 13847 + pos: -92.5,22.5 + parent: 2 + - uid: 4442 components: - type: Transform - pos: -44.5,0.5 - parent: 89 - - uid: 13871 + pos: -91.5,22.5 + parent: 2 + - uid: 4443 components: - type: Transform - pos: -46.5,-5.5 - parent: 89 - - uid: 13872 + pos: -90.5,22.5 + parent: 2 + - uid: 4444 components: - type: Transform - pos: -46.5,-6.5 - parent: 89 - - uid: 13873 + pos: -89.5,22.5 + parent: 2 + - uid: 4445 components: - type: Transform - pos: -47.5,-5.5 - parent: 89 - - uid: 13874 + pos: -88.5,22.5 + parent: 2 + - uid: 4446 components: - type: Transform - pos: -47.5,-4.5 - parent: 89 - - uid: 13875 + pos: -87.5,22.5 + parent: 2 + - uid: 4447 components: - type: Transform - pos: -47.5,-3.5 - parent: 89 - - uid: 13876 + pos: -87.5,21.5 + parent: 2 + - uid: 4448 components: - type: Transform - pos: -47.5,-2.5 - parent: 89 - - uid: 13877 + pos: -87.5,20.5 + parent: 2 + - uid: 4449 components: - type: Transform - pos: -47.5,-1.5 - parent: 89 - - uid: 13878 + pos: -87.5,19.5 + parent: 2 + - uid: 4450 components: - type: Transform - pos: -47.5,-0.5 - parent: 89 - - uid: 13879 + pos: -87.5,18.5 + parent: 2 + - uid: 4451 components: - type: Transform - pos: -48.5,-1.5 - parent: 89 - - uid: 13880 + pos: -87.5,17.5 + parent: 2 + - uid: 4452 components: - type: Transform - pos: -49.5,-1.5 - parent: 89 - - uid: 13881 + pos: -87.5,16.5 + parent: 2 + - uid: 4453 components: - type: Transform - pos: -50.5,-1.5 - parent: 89 - - uid: 13882 + pos: -86.5,16.5 + parent: 2 + - uid: 4454 components: - type: Transform - pos: -51.5,-1.5 - parent: 89 - - uid: 13883 + pos: -85.5,16.5 + parent: 2 + - uid: 4455 components: - type: Transform - pos: -51.5,-0.5 - parent: 89 - - uid: 13884 + pos: -85.5,15.5 + parent: 2 + - uid: 4456 components: - type: Transform - pos: -51.5,0.5 - parent: 89 - - uid: 13885 + pos: -85.5,14.5 + parent: 2 + - uid: 4457 components: - type: Transform - pos: -51.5,-7.5 - parent: 89 - - uid: 13886 + pos: -85.5,13.5 + parent: 2 + - uid: 4458 components: - type: Transform - pos: -51.5,-6.5 - parent: 89 - - uid: 13887 + pos: -83.5,13.5 + parent: 2 + - uid: 4459 components: - type: Transform - pos: -51.5,-5.5 - parent: 89 - - uid: 13888 + pos: -82.5,13.5 + parent: 2 + - uid: 4460 components: - type: Transform - pos: -51.5,-4.5 - parent: 89 - - uid: 13889 + pos: -81.5,13.5 + parent: 2 + - uid: 4461 components: - type: Transform - pos: -50.5,-4.5 - parent: 89 - - uid: 13890 + pos: -80.5,13.5 + parent: 2 + - uid: 4462 components: - type: Transform - pos: -49.5,-4.5 - parent: 89 - - uid: 13891 + pos: -80.5,14.5 + parent: 2 + - uid: 4463 components: - type: Transform - pos: -48.5,-4.5 - parent: 89 - - uid: 13892 + pos: -80.5,15.5 + parent: 2 + - uid: 4464 components: - type: Transform - pos: -47.5,-6.5 - parent: 89 - - uid: 13893 + pos: -80.5,16.5 + parent: 2 + - uid: 4465 components: - type: Transform - pos: -47.5,-7.5 - parent: 89 - - uid: 13894 + pos: -79.5,16.5 + parent: 2 + - uid: 4466 components: - type: Transform - pos: -46.5,-2.5 - parent: 89 - - uid: 13895 + pos: -78.5,16.5 + parent: 2 + - uid: 4467 components: - type: Transform - pos: -45.5,-2.5 - parent: 89 - - uid: 13904 + pos: -77.5,16.5 + parent: 2 + - uid: 4468 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 13905 + pos: -76.5,16.5 + parent: 2 + - uid: 4469 components: - type: Transform - pos: -35.5,17.5 - parent: 89 - - uid: 13906 + pos: -76.5,17.5 + parent: 2 + - uid: 4470 components: - type: Transform - pos: -36.5,17.5 - parent: 89 - - uid: 13907 + pos: -76.5,18.5 + parent: 2 + - uid: 4471 components: - type: Transform - pos: -37.5,17.5 - parent: 89 - - uid: 13908 + pos: -76.5,19.5 + parent: 2 + - uid: 4472 components: - type: Transform - pos: -38.5,17.5 - parent: 89 - - uid: 13909 + pos: -76.5,20.5 + parent: 2 + - uid: 4473 components: - type: Transform - pos: -39.5,17.5 - parent: 89 - - uid: 13910 + pos: -75.5,20.5 + parent: 2 + - uid: 4474 components: - type: Transform - pos: -40.5,17.5 - parent: 89 - - uid: 13911 + pos: -74.5,20.5 + parent: 2 + - uid: 4475 components: - type: Transform - pos: -41.5,17.5 - parent: 89 - - uid: 13912 + pos: -73.5,20.5 + parent: 2 + - uid: 4476 components: - type: Transform - pos: -42.5,17.5 - parent: 89 - - uid: 13913 + pos: -72.5,20.5 + parent: 2 + - uid: 4477 components: - type: Transform - pos: -43.5,17.5 - parent: 89 - - uid: 13914 + pos: -71.5,20.5 + parent: 2 + - uid: 4478 components: - type: Transform - pos: -44.5,17.5 - parent: 89 - - uid: 13915 + pos: -70.5,20.5 + parent: 2 + - uid: 4479 components: - type: Transform - pos: -45.5,17.5 - parent: 89 - - uid: 13916 + pos: -69.5,20.5 + parent: 2 + - uid: 4480 components: - type: Transform - pos: -46.5,17.5 - parent: 89 - - uid: 13917 + pos: -68.5,20.5 + parent: 2 + - uid: 4481 components: - type: Transform - pos: -47.5,17.5 - parent: 89 - - uid: 13918 + pos: -67.5,20.5 + parent: 2 + - uid: 4482 components: - type: Transform - pos: -48.5,17.5 - parent: 89 - - uid: 13919 + pos: -66.5,20.5 + parent: 2 + - uid: 4483 components: - type: Transform - pos: -48.5,16.5 - parent: 89 - - uid: 13920 + pos: -65.5,20.5 + parent: 2 + - uid: 4484 components: - type: Transform - pos: -48.5,15.5 - parent: 89 - - uid: 13921 + pos: -65.5,21.5 + parent: 2 + - uid: 4485 components: - type: Transform - pos: -48.5,14.5 - parent: 89 - - uid: 13922 + pos: -64.5,21.5 + parent: 2 + - uid: 4486 components: - type: Transform - pos: -48.5,18.5 - parent: 89 - - uid: 13923 + pos: -63.5,21.5 + parent: 2 + - uid: 4487 components: - type: Transform - pos: -49.5,17.5 - parent: 89 - - uid: 13924 + pos: -62.5,21.5 + parent: 2 + - uid: 4488 components: - type: Transform - pos: -50.5,17.5 - parent: 89 - - uid: 13925 + pos: -62.5,20.5 + parent: 2 + - uid: 4489 components: - type: Transform - pos: -51.5,17.5 - parent: 89 - - uid: 13940 + pos: -62.5,19.5 + parent: 2 + - uid: 4490 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - uid: 13941 + pos: -62.5,18.5 + parent: 2 + - uid: 4491 components: - type: Transform - pos: -22.5,2.5 - parent: 89 - - uid: 13942 + pos: -61.5,18.5 + parent: 2 + - uid: 4492 components: - type: Transform - pos: -23.5,2.5 - parent: 89 - - uid: 13943 + pos: -60.5,18.5 + parent: 2 + - uid: 4493 components: - type: Transform - pos: -24.5,2.5 - parent: 89 - - uid: 13944 + pos: -59.5,18.5 + parent: 2 + - uid: 4494 components: - type: Transform - pos: -25.5,2.5 - parent: 89 - - uid: 13945 + pos: -58.5,18.5 + parent: 2 + - uid: 4495 components: - type: Transform - pos: -25.5,3.5 - parent: 89 - - uid: 13946 + pos: -57.5,18.5 + parent: 2 + - uid: 4496 components: - type: Transform - pos: -25.5,4.5 - parent: 89 - - uid: 13947 + pos: -57.5,19.5 + parent: 2 + - uid: 4497 components: - type: Transform - pos: -25.5,5.5 - parent: 89 - - uid: 13948 + pos: -57.5,20.5 + parent: 2 + - uid: 4498 components: - type: Transform - pos: -25.5,6.5 - parent: 89 - - uid: 13949 + pos: -57.5,21.5 + parent: 2 + - uid: 4499 components: - type: Transform - pos: -25.5,7.5 - parent: 89 - - uid: 13950 + pos: -57.5,22.5 + parent: 2 + - uid: 4500 components: - type: Transform - pos: -25.5,8.5 - parent: 89 - - uid: 13951 + pos: -57.5,23.5 + parent: 2 + - uid: 4501 components: - type: Transform - pos: -24.5,8.5 - parent: 89 - - uid: 13952 + pos: -57.5,24.5 + parent: 2 + - uid: 4502 components: - type: Transform - pos: -23.5,8.5 - parent: 89 - - uid: 13953 + pos: -57.5,25.5 + parent: 2 + - uid: 4503 components: - type: Transform - pos: -26.5,4.5 - parent: 89 - - uid: 13954 + pos: -56.5,25.5 + parent: 2 + - uid: 4504 components: - type: Transform - pos: -26.5,8.5 - parent: 89 - - uid: 14048 + pos: -55.5,25.5 + parent: 2 + - uid: 4505 components: - type: Transform - pos: -62.5,-4.5 - parent: 89 - - uid: 14080 + pos: -54.5,25.5 + parent: 2 + - uid: 4506 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 14081 + pos: -53.5,25.5 + parent: 2 + - uid: 4507 components: - type: Transform - pos: 38.5,-8.5 - parent: 89 - - uid: 14082 + pos: -53.5,24.5 + parent: 2 + - uid: 4508 components: - type: Transform - pos: 38.5,-9.5 - parent: 89 - - uid: 14083 + pos: -53.5,23.5 + parent: 2 + - uid: 4509 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 - - uid: 14084 + pos: -53.5,22.5 + parent: 2 + - uid: 4510 components: - type: Transform - pos: 38.5,-11.5 - parent: 89 - - uid: 14085 + pos: -53.5,21.5 + parent: 2 + - uid: 4511 components: - type: Transform - pos: 38.5,-12.5 - parent: 89 - - uid: 14098 + pos: -14.5,19.5 + parent: 2 + - uid: 4512 components: - type: Transform - pos: 39.5,-10.5 - parent: 89 - - uid: 14106 + pos: -14.5,18.5 + parent: 2 + - uid: 4513 components: - type: Transform - pos: 58.5,-1.5 - parent: 89 - - uid: 14114 + pos: -14.5,17.5 + parent: 2 + - uid: 4514 components: - type: Transform - pos: 37.5,-7.5 - parent: 89 - - uid: 14115 + pos: -14.5,16.5 + parent: 2 + - uid: 4515 components: - type: Transform - pos: 37.5,-6.5 - parent: 89 - - uid: 14116 + pos: -14.5,15.5 + parent: 2 + - uid: 4516 components: - type: Transform - pos: 37.5,-5.5 - parent: 89 - - uid: 14117 + pos: -14.5,14.5 + parent: 2 + - uid: 4517 components: - type: Transform - pos: 38.5,-5.5 - parent: 89 - - uid: 14118 + pos: -14.5,13.5 + parent: 2 + - uid: 4518 components: - type: Transform - pos: 39.5,-5.5 - parent: 89 - - uid: 14125 + pos: -14.5,12.5 + parent: 2 + - uid: 4519 components: - type: Transform - pos: 36.5,-5.5 - parent: 89 - - uid: 14126 + pos: -14.5,11.5 + parent: 2 + - uid: 4520 components: - type: Transform - pos: 36.5,-4.5 - parent: 89 - - uid: 14127 + pos: -14.5,10.5 + parent: 2 + - uid: 4521 components: - type: Transform - pos: 36.5,-3.5 - parent: 89 - - uid: 14128 + pos: -14.5,9.5 + parent: 2 + - uid: 4522 components: - type: Transform - pos: 36.5,-2.5 - parent: 89 - - uid: 14129 + pos: -14.5,8.5 + parent: 2 + - uid: 4523 components: - type: Transform - pos: 36.5,-1.5 - parent: 89 - - uid: 14130 + pos: -14.5,7.5 + parent: 2 + - uid: 4524 components: - type: Transform - pos: 35.5,-1.5 - parent: 89 - - uid: 14131 + pos: -14.5,6.5 + parent: 2 + - uid: 4525 components: - type: Transform - pos: 34.5,-1.5 - parent: 89 - - uid: 14132 + pos: -13.5,6.5 + parent: 2 + - uid: 4526 components: - type: Transform - pos: 33.5,-1.5 - parent: 89 - - uid: 14133 + pos: -12.5,6.5 + parent: 2 + - uid: 4527 components: - type: Transform - pos: 32.5,-1.5 - parent: 89 - - uid: 14134 + pos: -11.5,6.5 + parent: 2 + - uid: 4528 components: - type: Transform - pos: 31.5,-1.5 - parent: 89 - - uid: 14135 + pos: -11.5,5.5 + parent: 2 + - uid: 4529 components: - type: Transform - pos: 36.5,-7.5 - parent: 89 - - uid: 14136 + pos: -11.5,4.5 + parent: 2 + - uid: 4530 components: - type: Transform - pos: 35.5,-7.5 - parent: 89 - - uid: 14137 + pos: 1.5,3.5 + parent: 2 + - uid: 4531 components: - type: Transform - pos: 34.5,-7.5 - parent: 89 - - uid: 14138 + pos: 2.5,3.5 + parent: 2 + - uid: 4532 components: - type: Transform - pos: 33.5,-7.5 - parent: 89 - - uid: 14139 + pos: 3.5,3.5 + parent: 2 + - uid: 4533 components: - type: Transform - pos: 32.5,-7.5 - parent: 89 - - uid: 14140 + pos: 4.5,3.5 + parent: 2 + - uid: 4534 components: - type: Transform - pos: 31.5,-7.5 - parent: 89 - - uid: 14141 + pos: 5.5,3.5 + parent: 2 + - uid: 4535 components: - type: Transform - pos: 30.5,-7.5 - parent: 89 - - uid: 14142 + pos: 6.5,3.5 + parent: 2 + - uid: 4536 components: - type: Transform - pos: 34.5,-8.5 - parent: 89 - - uid: 14143 + pos: 7.5,3.5 + parent: 2 + - uid: 4537 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 14146 + pos: 8.5,3.5 + parent: 2 + - uid: 4538 components: - type: Transform - pos: 34.5,-12.5 - parent: 89 - - uid: 14147 + pos: 9.5,3.5 + parent: 2 + - uid: 4539 components: - type: Transform - pos: 34.5,-13.5 - parent: 89 - - uid: 14149 + pos: 10.5,3.5 + parent: 2 + - uid: 4540 components: - type: Transform - pos: 33.5,-9.5 - parent: 89 - - uid: 14150 + pos: 11.5,3.5 + parent: 2 + - uid: 4541 components: - type: Transform - pos: 32.5,-9.5 - parent: 89 - - uid: 14151 + pos: 12.5,3.5 + parent: 2 + - uid: 4542 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 14152 + pos: 13.5,3.5 + parent: 2 + - uid: 4543 components: - type: Transform - pos: 30.5,-9.5 - parent: 89 - - uid: 14153 + pos: 14.5,3.5 + parent: 2 + - uid: 4544 components: - type: Transform - pos: 29.5,-9.5 - parent: 89 - - uid: 14154 + pos: 15.5,3.5 + parent: 2 + - uid: 4545 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 - - uid: 14155 + pos: 16.5,3.5 + parent: 2 + - uid: 4546 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 - - uid: 14156 + pos: 17.5,3.5 + parent: 2 + - uid: 4547 components: - type: Transform - pos: 27.5,-8.5 - parent: 89 - - uid: 14157 + pos: 18.5,3.5 + parent: 2 + - uid: 4548 components: - type: Transform - pos: 27.5,-7.5 - parent: 89 - - uid: 14158 + pos: 19.5,3.5 + parent: 2 + - uid: 4549 components: - type: Transform - pos: 27.5,-6.5 - parent: 89 - - uid: 14159 + pos: 20.5,3.5 + parent: 2 + - uid: 4550 components: - type: Transform - pos: 27.5,-5.5 - parent: 89 - - uid: 14160 + pos: 21.5,3.5 + parent: 2 + - uid: 4551 components: - type: Transform - pos: 27.5,-4.5 - parent: 89 - - uid: 14161 + pos: 22.5,3.5 + parent: 2 + - uid: 4552 components: - type: Transform - pos: 27.5,-3.5 - parent: 89 - - uid: 14162 + pos: 23.5,3.5 + parent: 2 + - uid: 4553 components: - type: Transform - pos: 27.5,-2.5 - parent: 89 - - uid: 14163 + pos: 24.5,3.5 + parent: 2 + - uid: 4554 components: - type: Transform - pos: 27.5,-1.5 - parent: 89 - - uid: 14164 + pos: 25.5,3.5 + parent: 2 + - uid: 4555 components: - type: Transform - pos: 26.5,-2.5 - parent: 89 - - uid: 14165 + pos: 26.5,3.5 + parent: 2 + - uid: 4556 components: - type: Transform - pos: 25.5,-2.5 - parent: 89 - - uid: 14166 + pos: 27.5,3.5 + parent: 2 + - uid: 4557 components: - type: Transform - pos: 24.5,-2.5 - parent: 89 - - uid: 14167 + pos: 28.5,3.5 + parent: 2 + - uid: 4558 components: - type: Transform - pos: 23.5,-2.5 - parent: 89 - - uid: 14168 + pos: 29.5,3.5 + parent: 2 + - uid: 4559 components: - type: Transform - pos: 23.5,-3.5 - parent: 89 - - uid: 14169 + pos: 30.5,3.5 + parent: 2 + - uid: 4560 components: - type: Transform - pos: 23.5,-4.5 - parent: 89 - - uid: 14170 + pos: 31.5,3.5 + parent: 2 + - uid: 4561 components: - type: Transform - pos: 23.5,-5.5 - parent: 89 - - uid: 14171 + pos: 32.5,3.5 + parent: 2 + - uid: 4562 components: - type: Transform - pos: 28.5,-10.5 - parent: 89 - - uid: 14172 + pos: 33.5,3.5 + parent: 2 + - uid: 4563 components: - type: Transform - pos: 28.5,-11.5 - parent: 89 - - uid: 14173 + pos: 34.5,3.5 + parent: 2 + - uid: 4564 components: - type: Transform - pos: 28.5,-12.5 - parent: 89 - - uid: 14174 + pos: 35.5,3.5 + parent: 2 + - uid: 4565 components: - type: Transform - pos: 28.5,-13.5 - parent: 89 - - uid: 14175 + pos: 35.5,2.5 + parent: 2 + - uid: 4566 components: - type: Transform - pos: 31.5,-10.5 - parent: 89 - - uid: 14176 + pos: 35.5,1.5 + parent: 2 + - uid: 4567 components: - type: Transform - pos: 31.5,-11.5 - parent: 89 - - uid: 14177 + pos: 36.5,1.5 + parent: 2 + - uid: 4568 components: - type: Transform - pos: 31.5,-12.5 - parent: 89 - - uid: 14178 + pos: 37.5,1.5 + parent: 2 + - uid: 4569 components: - type: Transform - pos: 31.5,-13.5 - parent: 89 - - uid: 14181 + pos: 38.5,1.5 + parent: 2 + - uid: 4570 components: - type: Transform - pos: 10.5,-6.5 - parent: 89 - - uid: 14182 + pos: 39.5,1.5 + parent: 2 + - uid: 4571 components: - type: Transform - pos: 10.5,-3.5 - parent: 89 - - uid: 14183 + pos: 40.5,1.5 + parent: 2 + - uid: 4572 components: - type: Transform - pos: 10.5,-2.5 - parent: 89 - - uid: 14184 + pos: 41.5,1.5 + parent: 2 + - uid: 4573 components: - type: Transform - pos: 10.5,-1.5 - parent: 89 - - uid: 14185 + pos: 42.5,1.5 + parent: 2 + - uid: 4574 components: - type: Transform - pos: 11.5,-1.5 - parent: 89 - - uid: 14186 + pos: 43.5,1.5 + parent: 2 + - uid: 4575 components: - type: Transform - pos: 12.5,-1.5 - parent: 89 - - uid: 14187 + pos: 44.5,1.5 + parent: 2 + - uid: 4576 components: - type: Transform - pos: 13.5,-1.5 - parent: 89 - - uid: 14188 + pos: 45.5,1.5 + parent: 2 + - uid: 4577 components: - type: Transform - pos: 14.5,-1.5 - parent: 89 - - uid: 14189 + pos: 46.5,1.5 + parent: 2 + - uid: 4578 components: - type: Transform - pos: 14.5,-2.5 - parent: 89 - - uid: 14190 + pos: 47.5,1.5 + parent: 2 + - uid: 4579 components: - type: Transform - pos: 15.5,-2.5 - parent: 89 - - uid: 14191 + pos: 48.5,1.5 + parent: 2 + - uid: 4580 components: - type: Transform - pos: 18.5,0.5 - parent: 89 - - uid: 14192 + pos: 49.5,1.5 + parent: 2 + - uid: 4581 components: - type: Transform - pos: 18.5,-0.5 - parent: 89 - - uid: 14193 + pos: 50.5,1.5 + parent: 2 + - uid: 4582 components: - type: Transform - pos: 18.5,1.5 - parent: 89 - - uid: 14195 + pos: 51.5,1.5 + parent: 2 + - uid: 4583 components: - type: Transform - pos: 11.5,-6.5 - parent: 89 - - uid: 14196 + pos: 51.5,2.5 + parent: 2 + - uid: 4584 components: - type: Transform - pos: 12.5,-6.5 - parent: 89 - - uid: 14197 + pos: 51.5,3.5 + parent: 2 + - uid: 4585 components: - type: Transform - pos: 13.5,-6.5 - parent: 89 - - uid: 14198 + pos: 51.5,4.5 + parent: 2 + - uid: 4586 components: - type: Transform - pos: 13.5,-7.5 - parent: 89 - - uid: 14199 + pos: 50.5,4.5 + parent: 2 + - uid: 4587 components: - type: Transform - pos: 13.5,-8.5 - parent: 89 - - uid: 14200 + pos: 49.5,4.5 + parent: 2 + - uid: 4588 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 - - uid: 14201 + pos: 49.5,3.5 + parent: 2 + - uid: 4589 components: - type: Transform - pos: 14.5,-9.5 - parent: 89 - - uid: 14202 + pos: 47.5,5.5 + parent: 2 + - uid: 4590 components: - type: Transform - pos: 15.5,-9.5 - parent: 89 - - uid: 14203 + pos: -111.5,16.5 + parent: 2 + - uid: 4591 components: - type: Transform - pos: 16.5,-9.5 - parent: 89 - - uid: 14204 + pos: -111.5,15.5 + parent: 2 + - uid: 4592 components: - type: Transform - pos: 17.5,-9.5 - parent: 89 - - uid: 14205 + pos: -111.5,14.5 + parent: 2 + - uid: 4593 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 - - uid: 14206 + pos: -111.5,13.5 + parent: 2 + - uid: 4594 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 - - uid: 14207 + pos: -111.5,12.5 + parent: 2 + - uid: 4595 components: - type: Transform - pos: 20.5,-9.5 - parent: 89 - - uid: 14208 + pos: -111.5,11.5 + parent: 2 + - uid: 4596 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 - - uid: 14209 + pos: -111.5,10.5 + parent: 2 + - uid: 4597 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 - - uid: 14210 + pos: -111.5,9.5 + parent: 2 + - uid: 4598 components: - type: Transform - pos: 23.5,-9.5 - parent: 89 - - uid: 14211 + pos: -110.5,9.5 + parent: 2 + - uid: 4599 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 - - uid: 14212 + pos: -109.5,9.5 + parent: 2 + - uid: 4600 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 - - uid: 14213 + pos: -108.5,9.5 + parent: 2 + - uid: 4601 components: - type: Transform - pos: 25.5,-10.5 - parent: 89 - - uid: 14214 + pos: -108.5,8.5 + parent: 2 + - uid: 4602 components: - type: Transform - pos: 25.5,-11.5 - parent: 89 - - uid: 14215 + pos: -108.5,7.5 + parent: 2 + - uid: 4603 components: - type: Transform - pos: 25.5,-12.5 - parent: 89 - - uid: 14216 + pos: -108.5,6.5 + parent: 2 + - uid: 4604 components: - type: Transform - pos: 25.5,-13.5 - parent: 89 - - uid: 14217 + pos: -108.5,5.5 + parent: 2 + - uid: 4605 components: - type: Transform - pos: 22.5,-10.5 - parent: 89 - - uid: 14218 + pos: -108.5,4.5 + parent: 2 + - uid: 4606 components: - type: Transform - pos: 22.5,-11.5 - parent: 89 - - uid: 14219 + pos: -107.5,4.5 + parent: 2 + - uid: 4607 components: - type: Transform - pos: 22.5,-12.5 - parent: 89 - - uid: 14220 + pos: -106.5,4.5 + parent: 2 + - uid: 4608 components: - type: Transform - pos: 22.5,-13.5 - parent: 89 - - uid: 14221 + pos: -105.5,4.5 + parent: 2 + - uid: 4609 components: - type: Transform - pos: 19.5,-10.5 - parent: 89 - - uid: 14222 + pos: -104.5,4.5 + parent: 2 + - uid: 4610 components: - type: Transform - pos: 19.5,-11.5 - parent: 89 - - uid: 14223 + pos: -103.5,4.5 + parent: 2 + - uid: 4611 components: - type: Transform - pos: 19.5,-12.5 - parent: 89 - - uid: 14224 + pos: -102.5,4.5 + parent: 2 + - uid: 4612 components: - type: Transform - pos: 19.5,-13.5 - parent: 89 - - uid: 14229 + pos: -101.5,4.5 + parent: 2 + - uid: 4613 components: - type: Transform - pos: 12.5,-9.5 - parent: 89 - - uid: 14230 + pos: -100.5,4.5 + parent: 2 + - uid: 4614 components: - type: Transform - pos: 11.5,-9.5 - parent: 89 - - uid: 14231 + pos: -99.5,4.5 + parent: 2 + - uid: 4615 components: - type: Transform - pos: 10.5,-9.5 - parent: 89 - - uid: 14232 + pos: -98.5,4.5 + parent: 2 + - uid: 4616 components: - type: Transform - pos: 9.5,-9.5 - parent: 89 - - uid: 14233 + pos: -98.5,5.5 + parent: 2 + - uid: 4617 components: - type: Transform - pos: 8.5,-9.5 - parent: 89 - - uid: 14234 + pos: -98.5,6.5 + parent: 2 + - uid: 4618 components: - type: Transform - pos: 8.5,-10.5 - parent: 89 - - uid: 14235 + pos: -98.5,7.5 + parent: 2 + - uid: 4619 components: - type: Transform - pos: 8.5,-11.5 - parent: 89 - - uid: 14236 + pos: -97.5,7.5 + parent: 2 + - uid: 4620 components: - type: Transform - pos: 9.5,-6.5 - parent: 89 - - uid: 14237 + pos: -96.5,7.5 + parent: 2 + - uid: 4621 components: - type: Transform - pos: 8.5,-6.5 - parent: 89 - - uid: 14238 + pos: -95.5,7.5 + parent: 2 + - uid: 4622 components: - type: Transform - pos: 7.5,-6.5 - parent: 89 - - uid: 14239 + pos: -94.5,7.5 + parent: 2 + - uid: 4623 components: - type: Transform - pos: 6.5,-6.5 - parent: 89 - - uid: 14240 + pos: -93.5,7.5 + parent: 2 + - uid: 4624 components: - type: Transform - pos: 5.5,-6.5 - parent: 89 - - uid: 14241 + pos: -92.5,7.5 + parent: 2 + - uid: 4625 components: - type: Transform - pos: 4.5,-6.5 - parent: 89 - - uid: 14242 + pos: -92.5,6.5 + parent: 2 + - uid: 4626 components: - type: Transform - pos: 4.5,-7.5 - parent: 89 - - uid: 14243 + pos: -92.5,5.5 + parent: 2 + - uid: 4627 components: - type: Transform - pos: 4.5,-8.5 - parent: 89 - - uid: 14244 + pos: -92.5,4.5 + parent: 2 + - uid: 4628 components: - type: Transform - pos: 3.5,-8.5 - parent: 89 - - uid: 14245 + pos: -92.5,3.5 + parent: 2 + - uid: 4629 components: - type: Transform - pos: 3.5,-9.5 - parent: 89 - - uid: 14246 + pos: -92.5,2.5 + parent: 2 + - uid: 4630 components: - type: Transform - pos: 3.5,-10.5 - parent: 89 - - uid: 14247 + pos: -92.5,1.5 + parent: 2 + - uid: 4631 components: - type: Transform - pos: 3.5,-11.5 - parent: 89 - - uid: 14248 + pos: -92.5,0.5 + parent: 2 + - uid: 4632 components: - type: Transform - pos: 3.5,-12.5 - parent: 89 - - uid: 14249 + pos: -92.5,-0.5 + parent: 2 + - uid: 4633 components: - type: Transform - pos: 4.5,-12.5 - parent: 89 - - uid: 14250 + pos: -92.5,-1.5 + parent: 2 + - uid: 4634 components: - type: Transform - pos: 5.5,-5.5 - parent: 89 - - uid: 14251 + pos: -91.5,-1.5 + parent: 2 + - uid: 4635 components: - type: Transform - pos: 5.5,-4.5 - parent: 89 - - uid: 14252 + pos: -90.5,-1.5 + parent: 2 + - uid: 4636 components: - type: Transform - pos: 5.5,-3.5 - parent: 89 - - uid: 14253 + pos: -89.5,-1.5 + parent: 2 + - uid: 4637 components: - type: Transform - pos: 5.5,-2.5 - parent: 89 - - uid: 14254 + pos: -88.5,-1.5 + parent: 2 + - uid: 4638 components: - type: Transform - pos: 5.5,-1.5 - parent: 89 - - uid: 14255 + pos: -87.5,-1.5 + parent: 2 + - uid: 4639 components: - type: Transform - pos: 2.5,-10.5 - parent: 89 - - uid: 14324 + pos: -86.5,-1.5 + parent: 2 + - uid: 4640 components: - type: Transform - pos: -62.5,18.5 - parent: 89 - - uid: 14325 + pos: -85.5,-1.5 + parent: 2 + - uid: 4641 components: - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 14326 + pos: -82.5,-3.5 + parent: 2 + - uid: 4642 components: - type: Transform - pos: -62.5,20.5 - parent: 89 - - uid: 14327 + pos: -82.5,-1.5 + parent: 2 + - uid: 4643 components: - type: Transform - pos: -62.5,21.5 - parent: 89 - - uid: 14328 + pos: -9.5,-25.5 + parent: 2 + - uid: 4644 components: - type: Transform - pos: -61.5,21.5 - parent: 89 - - uid: 14329 + pos: -9.5,-24.5 + parent: 2 + - uid: 4645 components: - type: Transform - pos: -60.5,21.5 - parent: 89 - - uid: 14333 + pos: -13.5,-27.5 + parent: 2 + - uid: 4646 components: - type: Transform - pos: -40.5,-1.5 - parent: 89 - - uid: 14334 + pos: -11.5,-25.5 + parent: 2 + - uid: 4647 components: - type: Transform - pos: -40.5,-2.5 - parent: 89 - - uid: 14335 + pos: -14.5,-26.5 + parent: 2 + - uid: 4648 components: - type: Transform - pos: -40.5,-3.5 - parent: 89 - - uid: 14336 + pos: -15.5,-26.5 + parent: 2 + - uid: 4649 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 - - uid: 14337 + pos: -16.5,-26.5 + parent: 2 + - uid: 4650 components: - type: Transform - pos: -40.5,-5.5 - parent: 89 - - uid: 14338 + pos: -17.5,-26.5 + parent: 2 + - uid: 4651 components: - - type: Transform - pos: -40.5,-6.5 - parent: 89 - - uid: 14339 + - type: Transform + pos: -18.5,-26.5 + parent: 2 + - uid: 4652 components: - type: Transform - pos: -40.5,-7.5 - parent: 89 - - uid: 14340 + pos: -19.5,-26.5 + parent: 2 + - uid: 4653 components: - type: Transform - pos: -40.5,-8.5 - parent: 89 - - uid: 14341 + pos: -20.5,-26.5 + parent: 2 + - uid: 4654 components: - type: Transform - pos: -40.5,-9.5 - parent: 89 - - uid: 14342 + pos: -20.5,-25.5 + parent: 2 + - uid: 4655 components: - type: Transform - pos: -40.5,-10.5 - parent: 89 - - uid: 14343 + pos: -21.5,-25.5 + parent: 2 + - uid: 4656 components: - type: Transform - pos: -40.5,-11.5 - parent: 89 - - uid: 14344 + pos: -22.5,-25.5 + parent: 2 + - uid: 4657 components: - type: Transform - pos: -40.5,-12.5 - parent: 89 - - uid: 14345 + pos: -23.5,-25.5 + parent: 2 + - uid: 4658 components: - type: Transform - pos: -39.5,-12.5 - parent: 89 - - uid: 14346 + pos: -24.5,-25.5 + parent: 2 + - uid: 4659 components: - type: Transform - pos: -38.5,-12.5 - parent: 89 - - uid: 14347 + pos: -25.5,-25.5 + parent: 2 + - uid: 4660 components: - type: Transform - pos: -37.5,-12.5 - parent: 89 - - uid: 14348 + pos: -25.5,-24.5 + parent: 2 + - uid: 4661 components: - type: Transform - pos: -36.5,-12.5 - parent: 89 - - uid: 14349 + pos: -25.5,-23.5 + parent: 2 + - uid: 4662 components: - type: Transform - pos: -35.5,-12.5 - parent: 89 - - uid: 14350 + pos: -25.5,-22.5 + parent: 2 + - uid: 4663 components: - type: Transform - pos: -34.5,-12.5 - parent: 89 - - uid: 14351 + pos: -25.5,-21.5 + parent: 2 + - uid: 4664 components: - type: Transform - pos: -33.5,-12.5 - parent: 89 - - uid: 14352 + pos: -25.5,-20.5 + parent: 2 + - uid: 4665 components: - type: Transform - pos: -32.5,-12.5 - parent: 89 - - uid: 14353 + pos: -25.5,-19.5 + parent: 2 + - uid: 4666 components: - type: Transform - pos: -31.5,-12.5 - parent: 89 - - uid: 14354 + pos: -25.5,-18.5 + parent: 2 + - uid: 4667 components: - type: Transform - pos: -30.5,-12.5 - parent: 89 - - uid: 14355 + pos: -25.5,-17.5 + parent: 2 + - uid: 4668 components: - type: Transform - pos: -29.5,-12.5 - parent: 89 - - uid: 14356 + pos: -25.5,-16.5 + parent: 2 + - uid: 4669 components: - type: Transform - pos: -22.5,-8.5 - parent: 89 - - uid: 14357 + pos: -26.5,-16.5 + parent: 2 + - uid: 4670 components: - type: Transform - pos: -22.5,-9.5 - parent: 89 - - uid: 14358 + pos: -27.5,-16.5 + parent: 2 + - uid: 4671 components: - type: Transform - pos: -22.5,-10.5 - parent: 89 - - uid: 14359 + pos: -28.5,-16.5 + parent: 2 + - uid: 4672 components: - type: Transform - pos: -22.5,-11.5 - parent: 89 - - uid: 14361 + pos: -29.5,-16.5 + parent: 2 + - uid: 4673 components: - type: Transform - pos: -20.5,-11.5 - parent: 89 - - uid: 14362 + pos: -30.5,-16.5 + parent: 2 + - uid: 4674 components: - type: Transform - pos: -20.5,-10.5 - parent: 89 - - uid: 14363 + pos: -31.5,-16.5 + parent: 2 + - uid: 4675 components: - type: Transform - pos: -20.5,-9.5 - parent: 89 - - uid: 14364 + pos: -32.5,-16.5 + parent: 2 + - uid: 4676 components: - type: Transform - pos: -20.5,-8.5 - parent: 89 - - uid: 14456 + pos: -36.5,-16.5 + parent: 2 + - uid: 4677 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 14457 + pos: -37.5,-15.5 + parent: 2 + - uid: 4678 components: - type: Transform - pos: 0.5,-3.5 - parent: 89 - - uid: 14458 + pos: -38.5,-15.5 + parent: 2 + - uid: 4679 components: - type: Transform - pos: -0.5,-3.5 - parent: 89 - - uid: 14459 + pos: -39.5,-15.5 + parent: 2 + - uid: 4680 components: - type: Transform - pos: -1.5,-3.5 - parent: 89 - - uid: 14460 + pos: -40.5,-15.5 + parent: 2 + - uid: 4681 components: - type: Transform - pos: -1.5,-4.5 - parent: 89 - - uid: 14461 + pos: -41.5,-15.5 + parent: 2 + - uid: 4682 components: - type: Transform - pos: -1.5,-5.5 - parent: 89 - - uid: 14462 + pos: -42.5,-15.5 + parent: 2 + - uid: 4683 components: - type: Transform - pos: -1.5,-6.5 - parent: 89 - - uid: 14463 + pos: -43.5,-15.5 + parent: 2 + - uid: 4684 components: - type: Transform - pos: -1.5,-7.5 - parent: 89 - - uid: 14464 + pos: -43.5,-14.5 + parent: 2 + - uid: 4685 components: - type: Transform - pos: -1.5,-8.5 - parent: 89 - - uid: 14465 + pos: -43.5,-13.5 + parent: 2 + - uid: 4686 components: - type: Transform - pos: -1.5,-9.5 - parent: 89 - - uid: 14466 + pos: -43.5,-12.5 + parent: 2 + - uid: 4687 components: - type: Transform - pos: -1.5,-10.5 - parent: 89 - - uid: 14467 + pos: -73.5,-10.5 + parent: 2 + - uid: 4688 components: - type: Transform - pos: -1.5,-11.5 - parent: 89 - - uid: 14468 + pos: -72.5,-10.5 + parent: 2 + - uid: 4689 components: - type: Transform - pos: -1.5,-12.5 - parent: 89 - - uid: 14469 + pos: -71.5,-10.5 + parent: 2 + - uid: 4690 components: - type: Transform - pos: -1.5,-13.5 - parent: 89 - - uid: 14470 + pos: -70.5,-10.5 + parent: 2 + - uid: 4691 components: - type: Transform - pos: -1.5,-14.5 - parent: 89 - - uid: 14471 + pos: -69.5,-10.5 + parent: 2 + - uid: 4692 components: - type: Transform - pos: -1.5,-15.5 - parent: 89 - - uid: 14472 + pos: -68.5,-10.5 + parent: 2 + - uid: 4693 components: - type: Transform - pos: -1.5,-16.5 - parent: 89 - - uid: 14473 + pos: -67.5,-10.5 + parent: 2 + - uid: 4694 components: - type: Transform - pos: -0.5,-15.5 - parent: 89 - - uid: 14474 + pos: -66.5,-10.5 + parent: 2 + - uid: 4695 components: - type: Transform - pos: -2.5,-12.5 - parent: 89 - - uid: 14475 + pos: -65.5,-10.5 + parent: 2 + - uid: 4696 components: - type: Transform - pos: -3.5,-12.5 - parent: 89 - - uid: 14476 + pos: -64.5,-10.5 + parent: 2 + - uid: 4697 components: - type: Transform - pos: -1.5,-2.5 - parent: 89 - - uid: 14477 + pos: -63.5,-10.5 + parent: 2 + - uid: 4698 components: - type: Transform - pos: -1.5,-1.5 - parent: 89 - - uid: 14478 + pos: -62.5,-10.5 + parent: 2 + - uid: 4699 components: - type: Transform - pos: -1.5,-0.5 - parent: 89 - - uid: 14479 + pos: -61.5,-10.5 + parent: 2 + - uid: 4700 components: - type: Transform - pos: -1.5,0.5 - parent: 89 - - uid: 14480 + pos: -60.5,-10.5 + parent: 2 + - uid: 4701 components: - type: Transform - pos: -1.5,1.5 - parent: 89 - - uid: 14481 + pos: -59.5,-10.5 + parent: 2 + - uid: 4702 components: - type: Transform - pos: -1.5,2.5 - parent: 89 - - uid: 14482 + pos: -58.5,-10.5 + parent: 2 + - uid: 4703 components: - type: Transform - pos: -0.5,2.5 - parent: 89 - - uid: 14483 + pos: -58.5,-9.5 + parent: 2 + - uid: 4704 components: - type: Transform - pos: 0.5,2.5 - parent: 89 - - uid: 14484 + pos: -58.5,-8.5 + parent: 2 + - uid: 4705 components: - type: Transform - pos: 1.5,2.5 - parent: 89 - - uid: 14485 + pos: -58.5,-7.5 + parent: 2 + - uid: 4706 components: - type: Transform - pos: 2.5,2.5 - parent: 89 - - uid: 14486 + pos: -58.5,-6.5 + parent: 2 + - uid: 4707 components: - type: Transform - pos: 3.5,2.5 - parent: 89 - - uid: 14487 + pos: -57.5,-6.5 + parent: 2 + - uid: 4708 components: - type: Transform - pos: 4.5,2.5 - parent: 89 - - uid: 14488 + pos: -56.5,-6.5 + parent: 2 + - uid: 4709 components: - type: Transform - pos: 5.5,2.5 - parent: 89 - - uid: 14489 + pos: -55.5,-6.5 + parent: 2 + - uid: 4710 components: - type: Transform - pos: 6.5,2.5 - parent: 89 - - uid: 14490 + pos: -55.5,-7.5 + parent: 2 + - uid: 4711 components: - type: Transform - pos: 7.5,2.5 - parent: 89 - - uid: 14491 + pos: -55.5,-8.5 + parent: 2 + - uid: 4712 components: - type: Transform - pos: 8.5,2.5 - parent: 89 - - uid: 14492 + pos: -55.5,-9.5 + parent: 2 + - uid: 4713 components: - type: Transform - pos: 9.5,2.5 - parent: 89 - - uid: 14493 + pos: -55.5,-10.5 + parent: 2 + - uid: 4714 components: - type: Transform - pos: 10.5,2.5 - parent: 89 - - uid: 14494 + pos: -54.5,-10.5 + parent: 2 + - uid: 4715 components: - type: Transform - pos: 11.5,2.5 - parent: 89 - - uid: 14495 + pos: -53.5,-10.5 + parent: 2 + - uid: 4716 components: - type: Transform - pos: 12.5,2.5 - parent: 89 - - uid: 14496 + pos: -52.5,-10.5 + parent: 2 + - uid: 4717 components: - type: Transform - pos: 13.5,2.5 - parent: 89 - - uid: 14497 + pos: -51.5,-10.5 + parent: 2 + - uid: 4718 components: - type: Transform - pos: 14.5,2.5 - parent: 89 - - uid: 14498 + pos: -50.5,-10.5 + parent: 2 + - uid: 4719 components: - type: Transform - pos: 15.5,2.5 - parent: 89 - - uid: 14499 + pos: -50.5,-11.5 + parent: 2 + - uid: 4720 components: - type: Transform - pos: 16.5,2.5 - parent: 89 - - uid: 14500 + pos: -50.5,-12.5 + parent: 2 + - uid: 4721 components: - type: Transform - pos: 17.5,2.5 - parent: 89 - - uid: 14501 + pos: -49.5,-12.5 + parent: 2 + - uid: 4722 components: - type: Transform - pos: 18.5,2.5 - parent: 89 - - uid: 14502 + pos: -48.5,-12.5 + parent: 2 + - uid: 4723 components: - type: Transform - pos: 19.5,2.5 - parent: 89 - - uid: 14503 + pos: -47.5,-12.5 + parent: 2 + - uid: 4724 components: - type: Transform - pos: 20.5,2.5 - parent: 89 - - uid: 14504 + pos: -46.5,-12.5 + parent: 2 + - uid: 4725 components: - type: Transform - pos: 21.5,2.5 - parent: 89 - - uid: 14505 + pos: -45.5,-12.5 + parent: 2 + - uid: 4726 components: - type: Transform - pos: 22.5,2.5 - parent: 89 - - uid: 14506 + pos: -44.5,-12.5 + parent: 2 + - uid: 4727 components: - type: Transform - pos: 23.5,2.5 - parent: 89 - - uid: 14507 + pos: -73.5,-9.5 + parent: 2 + - uid: 4728 components: - type: Transform - pos: 24.5,2.5 - parent: 89 - - uid: 14508 + pos: -74.5,-9.5 + parent: 2 + - uid: 4729 components: - type: Transform - pos: 25.5,2.5 - parent: 89 - - uid: 14509 + pos: -75.5,-9.5 + parent: 2 + - uid: 4730 components: - type: Transform - pos: 26.5,2.5 - parent: 89 - - uid: 14510 + pos: -76.5,-9.5 + parent: 2 + - uid: 4731 components: - type: Transform - pos: 27.5,2.5 - parent: 89 - - uid: 14511 + pos: -77.5,-9.5 + parent: 2 + - uid: 4732 components: - type: Transform - pos: 28.5,2.5 - parent: 89 - - uid: 14512 + pos: -78.5,-9.5 + parent: 2 + - uid: 4733 components: - type: Transform - pos: 29.5,2.5 - parent: 89 - - uid: 14513 + pos: -81.5,-5.5 + parent: 2 + - uid: 4734 components: - type: Transform - pos: 30.5,2.5 - parent: 89 - - uid: 14514 + pos: -82.5,-5.5 + parent: 2 + - uid: 4735 components: - type: Transform - pos: 31.5,2.5 - parent: 89 - - uid: 14515 + pos: -82.5,-4.5 + parent: 2 + - uid: 4736 components: - type: Transform - pos: -2.5,2.5 - parent: 89 - - uid: 14529 + pos: -84.5,-1.5 + parent: 2 + - uid: 4737 components: - type: Transform - pos: -27.5,16.5 - parent: 89 - - uid: 14647 + pos: 15.5,-13.5 + parent: 2 + - uid: 4738 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14653 + pos: 14.5,-13.5 + parent: 2 + - uid: 4739 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 14674 + pos: 15.5,-15.5 + parent: 2 + - uid: 4740 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14686 + pos: -24.5,-16.5 + parent: 2 + - uid: 4741 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 14687 + pos: -23.5,-16.5 + parent: 2 + - uid: 4742 components: - type: Transform - pos: -31.5,50.5 - parent: 89 - - uid: 14688 + pos: -22.5,-16.5 + parent: 2 + - uid: 4743 components: - type: Transform - pos: -31.5,49.5 - parent: 89 - - uid: 14689 + pos: -21.5,-16.5 + parent: 2 + - uid: 4744 components: - type: Transform - pos: -31.5,48.5 - parent: 89 - - uid: 14690 + pos: -12.5,-25.5 + parent: 2 + - uid: 4745 components: - type: Transform - pos: -31.5,47.5 - parent: 89 - - uid: 14748 + pos: -12.5,-24.5 + parent: 2 + - uid: 4746 components: - type: Transform - pos: -30.5,48.5 - parent: 89 - - uid: 14880 + pos: -11.5,-23.5 + parent: 2 + - uid: 4747 components: - type: Transform - pos: 12.5,-13.5 - parent: 89 - - uid: 14888 + pos: -12.5,-23.5 + parent: 2 + - uid: 4748 components: - type: Transform - pos: -14.5,21.5 - parent: 89 - - uid: 14894 + pos: -10.5,-23.5 + parent: 2 + - uid: 4749 components: - type: Transform - pos: 11.5,-3.5 - parent: 89 - - uid: 14910 + pos: -9.5,-23.5 + parent: 2 + - uid: 4750 components: - type: Transform - pos: -12.5,-37.5 - parent: 89 - - uid: 14911 + pos: -9.5,-24.5 + parent: 2 + - uid: 4751 components: - type: Transform - pos: -12.5,-36.5 - parent: 89 - - uid: 14912 + pos: -10.5,-22.5 + parent: 2 + - uid: 4752 components: - type: Transform - pos: -12.5,-35.5 - parent: 89 - - uid: 14913 + pos: -7.5,-22.5 + parent: 2 + - uid: 4753 components: - type: Transform - pos: -11.5,-35.5 - parent: 89 - - uid: 14914 + pos: 5.5,-24.5 + parent: 2 + - uid: 4754 components: - type: Transform - pos: -10.5,-35.5 - parent: 89 - - uid: 14915 + pos: 6.5,-24.5 + parent: 2 + - uid: 4755 components: - type: Transform - pos: -9.5,-35.5 - parent: 89 - - uid: 14933 + pos: 6.5,-23.5 + parent: 2 + - uid: 4756 components: - type: Transform - pos: 11.5,-4.5 - parent: 89 - - uid: 14935 + pos: 6.5,-22.5 + parent: 2 + - uid: 4757 components: - type: Transform - pos: 11.5,-5.5 - parent: 89 - - uid: 14939 + pos: 6.5,-21.5 + parent: 2 + - uid: 4758 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 14940 + pos: 6.5,-20.5 + parent: 2 + - uid: 4759 components: - type: Transform - pos: 13.5,-13.5 - parent: 89 - - uid: 14969 + pos: 6.5,-19.5 + parent: 2 + - uid: 4760 components: - type: Transform - pos: -63.5,-7.5 - parent: 89 - - uid: 14971 + pos: 6.5,-18.5 + parent: 2 + - uid: 4761 components: - type: Transform - pos: -29.5,48.5 - parent: 89 - - uid: 14981 + pos: 6.5,-17.5 + parent: 2 + - uid: 4762 components: - type: Transform - pos: -28.5,48.5 - parent: 89 - - uid: 15033 + pos: 6.5,-16.5 + parent: 2 + - uid: 4763 components: - type: Transform - pos: 18.5,26.5 - parent: 89 - - uid: 15035 + pos: 6.5,-15.5 + parent: 2 + - uid: 4764 components: - type: Transform - pos: 23.5,24.5 - parent: 89 - - uid: 15064 + pos: 7.5,-15.5 + parent: 2 + - uid: 4765 components: - type: Transform - pos: 19.5,30.5 - parent: 89 - - uid: 15095 + pos: 8.5,-15.5 + parent: 2 + - uid: 4766 components: - type: Transform - pos: 25.5,30.5 - parent: 89 - - uid: 15101 + pos: 9.5,-15.5 + parent: 2 + - uid: 4767 components: - type: Transform - pos: 26.5,30.5 - parent: 89 - - uid: 15117 + pos: 10.5,-15.5 + parent: 2 + - uid: 4768 components: - type: Transform - pos: 27.5,30.5 - parent: 89 - - uid: 15146 + pos: 11.5,-15.5 + parent: 2 + - uid: 4769 components: - type: Transform - pos: 23.5,30.5 - parent: 89 - - uid: 15147 + pos: 12.5,-15.5 + parent: 2 + - uid: 4770 components: - type: Transform - pos: 22.5,30.5 - parent: 89 - - uid: 15148 + pos: 13.5,-15.5 + parent: 2 + - uid: 4771 components: - type: Transform - pos: 21.5,30.5 - parent: 89 - - uid: 15150 + pos: -82.5,-8.5 + parent: 2 + - uid: 4772 components: - type: Transform - pos: 23.5,31.5 - parent: 89 - - uid: 15151 + pos: -82.5,-9.5 + parent: 2 + - uid: 4773 components: - type: Transform - pos: 20.5,30.5 - parent: 89 - - uid: 15269 + pos: -80.5,-5.5 + parent: 2 + - uid: 4774 components: - type: Transform - pos: -28.5,47.5 - parent: 89 - - uid: 15270 + pos: -80.5,-6.5 + parent: 2 + - uid: 4775 components: - type: Transform - pos: -28.5,49.5 - parent: 89 - - uid: 15271 + pos: -80.5,-7.5 + parent: 2 + - uid: 4776 components: - type: Transform - pos: -28.5,50.5 - parent: 89 - - uid: 15301 + pos: -80.5,-8.5 + parent: 2 + - uid: 4777 components: - type: Transform - pos: -30.5,47.5 - parent: 89 - - uid: 15302 + pos: -80.5,-9.5 + parent: 2 + - uid: 4778 components: - type: Transform - pos: -29.5,47.5 - parent: 89 - - uid: 15304 + pos: -79.5,-9.5 + parent: 2 + - uid: 4779 components: - type: Transform - pos: -30.5,46.5 - parent: 89 - - uid: 15319 + pos: -9.5,23.5 + parent: 2 + - uid: 4780 components: - type: Transform - pos: -29.5,46.5 - parent: 89 - - uid: 15337 + pos: -125.5,1.5 + parent: 2 + - uid: 4781 components: - type: Transform - pos: -31.5,38.5 - parent: 89 - - uid: 15338 + pos: -126.5,1.5 + parent: 2 + - uid: 4782 components: - type: Transform - pos: -31.5,37.5 - parent: 89 - - uid: 15347 + pos: -127.5,1.5 + parent: 2 + - uid: 4783 components: - type: Transform - pos: -31.5,36.5 - parent: 89 - - uid: 15348 + pos: -127.5,2.5 + parent: 2 + - uid: 4784 components: - type: Transform - pos: -31.5,35.5 - parent: 89 - - uid: 15349 + pos: -127.5,3.5 + parent: 2 + - uid: 4785 components: - type: Transform - pos: -30.5,35.5 - parent: 89 - - uid: 15350 + pos: -127.5,4.5 + parent: 2 + - uid: 4786 components: - type: Transform - pos: -29.5,35.5 - parent: 89 - - uid: 15351 + pos: -127.5,5.5 + parent: 2 + - uid: 4787 components: - type: Transform - pos: -28.5,35.5 - parent: 89 - - uid: 15352 + pos: -127.5,6.5 + parent: 2 + - uid: 4788 components: - type: Transform - pos: -28.5,36.5 - parent: 89 - - uid: 15353 + pos: -126.5,6.5 + parent: 2 + - uid: 4789 components: - type: Transform - pos: -28.5,37.5 - parent: 89 - - uid: 15359 + pos: -125.5,6.5 + parent: 2 + - uid: 4790 components: - type: Transform - pos: 10.5,32.5 - parent: 89 - - uid: 15367 + pos: -123.5,4.5 + parent: 2 + - uid: 4791 components: - type: Transform - pos: 12.5,32.5 - parent: 89 - - uid: 15369 + pos: -123.5,3.5 + parent: 2 + - uid: 4792 components: - type: Transform - pos: 11.5,32.5 - parent: 89 - - uid: 15385 + pos: -125.5,9.5 + parent: 2 + - uid: 4793 components: - type: Transform - pos: 13.5,29.5 - parent: 89 - - uid: 15476 + pos: -125.5,10.5 + parent: 2 + - uid: 4794 components: - type: Transform - pos: -30.5,37.5 - parent: 89 - - uid: 15477 + pos: -125.5,11.5 + parent: 2 + - uid: 4795 components: - type: Transform - pos: 13.5,35.5 - parent: 89 - - uid: 15478 + pos: -124.5,4.5 + parent: 2 + - uid: 4796 components: - type: Transform - pos: 13.5,36.5 - parent: 89 - - uid: 15528 + pos: -124.5,3.5 + parent: 2 + - uid: 4797 components: - type: Transform - pos: 12.5,29.5 - parent: 89 - - uid: 15531 + pos: -124.5,-1.5 + parent: 2 + - uid: 4798 components: - type: Transform - pos: 8.5,30.5 - parent: 89 - - uid: 15549 + pos: -125.5,-2.5 + parent: 2 + - uid: 4799 components: - type: Transform - pos: 13.5,30.5 - parent: 89 - - uid: 15551 + pos: -125.5,-3.5 + parent: 2 + - uid: 4800 components: - type: Transform - pos: 22.5,31.5 - parent: 89 - - uid: 15552 + pos: -125.5,-4.5 + parent: 2 + - uid: 4801 components: - type: Transform - pos: 22.5,25.5 - parent: 89 - - uid: 15562 + pos: -125.5,-5.5 + parent: 2 + - uid: 4802 components: - type: Transform - pos: 6.5,36.5 - parent: 89 - - uid: 15576 + pos: -125.5,-6.5 + parent: 2 + - uid: 4803 components: - type: Transform - pos: 10.5,33.5 - parent: 89 - - uid: 15591 + pos: -35.5,11.5 + parent: 2 + - uid: 4804 components: - type: Transform - pos: -29.5,37.5 - parent: 89 - - uid: 15595 + pos: -13.5,23.5 + parent: 2 + - uid: 4805 components: - type: Transform - pos: 19.5,26.5 - parent: 89 - - uid: 15598 + pos: -36.5,11.5 + parent: 2 + - uid: 4806 components: - type: Transform - pos: 20.5,26.5 - parent: 89 - - uid: 15600 + pos: -37.5,11.5 + parent: 2 + - uid: 4807 components: - type: Transform - pos: 11.5,29.5 - parent: 89 - - uid: 15638 + pos: -37.5,12.5 + parent: 2 + - uid: 4808 components: - type: Transform - pos: -112.5,-14.5 - parent: 89 - - uid: 15644 + pos: -37.5,13.5 + parent: 2 + - uid: 4809 components: - type: Transform - pos: -111.5,-15.5 - parent: 89 - - uid: 15645 + pos: -36.5,13.5 + parent: 2 + - uid: 4810 components: - type: Transform - pos: -111.5,-14.5 - parent: 89 - - uid: 15646 + pos: -14.5,23.5 + parent: 2 + - uid: 4811 components: - type: Transform - pos: -113.5,-14.5 - parent: 89 - - uid: 15647 + pos: 2.5,23.5 + parent: 2 + - uid: 4812 components: - type: Transform - pos: -113.5,-15.5 - parent: 89 - - uid: 15648 + pos: -53.5,26.5 + parent: 2 + - uid: 4813 components: - type: Transform - pos: -113.5,-16.5 - parent: 89 - - uid: 15736 + pos: -53.5,27.5 + parent: 2 + - uid: 4814 components: - type: Transform - pos: 13.5,33.5 - parent: 89 - - uid: 15742 + pos: -53.5,28.5 + parent: 2 + - uid: 4815 components: - type: Transform - pos: 6.5,35.5 - parent: 89 - - uid: 15849 + pos: -53.5,29.5 + parent: 2 + - uid: 4816 components: - type: Transform - pos: 9.5,32.5 - parent: 89 - - uid: 15855 + pos: -53.5,30.5 + parent: 2 + - uid: 4817 components: - type: Transform - pos: 10.5,37.5 - parent: 89 - - uid: 15864 + pos: -53.5,31.5 + parent: 2 + - uid: 4818 components: - type: Transform - pos: 13.5,34.5 - parent: 89 - - uid: 15906 + pos: -52.5,31.5 + parent: 2 + - uid: 4819 components: - type: Transform - pos: 6.5,34.5 - parent: 89 - - uid: 15991 + pos: -51.5,31.5 + parent: 2 + - uid: 4820 components: - type: Transform - pos: 26.5,21.5 - parent: 89 - - uid: 15992 + pos: -51.5,30.5 + parent: 2 + - uid: 4821 components: - type: Transform - pos: 26.5,20.5 - parent: 89 - - uid: 15993 + pos: -51.5,29.5 + parent: 2 + - uid: 4822 components: - type: Transform - pos: 26.5,19.5 - parent: 89 - - uid: 15994 + pos: -51.5,28.5 + parent: 2 + - uid: 4823 components: - type: Transform - pos: 26.5,18.5 - parent: 89 - - uid: 15995 + pos: -88.5,20.5 + parent: 2 + - uid: 4824 components: - type: Transform - pos: 27.5,18.5 - parent: 89 - - uid: 15996 + pos: -89.5,20.5 + parent: 2 + - uid: 4825 components: - type: Transform - pos: 27.5,17.5 - parent: 89 - - uid: 15997 + pos: -90.5,20.5 + parent: 2 + - uid: 4826 components: - type: Transform - pos: 27.5,16.5 - parent: 89 - - uid: 15998 + pos: -4.5,23.5 + parent: 2 + - uid: 4827 components: - type: Transform - pos: 27.5,15.5 - parent: 89 - - uid: 15999 + pos: -5.5,23.5 + parent: 2 + - uid: 4828 components: - type: Transform - pos: 27.5,14.5 - parent: 89 - - uid: 16000 + pos: -3.5,23.5 + parent: 2 + - uid: 4829 components: - type: Transform - pos: 26.5,13.5 - parent: 89 - - uid: 16001 + pos: -43.5,-11.5 + parent: 2 + - uid: 4830 components: - type: Transform - pos: 28.5,18.5 - parent: 89 - - uid: 16002 + pos: -36.5,14.5 + parent: 2 + - uid: 4831 components: - type: Transform - pos: 29.5,18.5 - parent: 89 - - uid: 16003 + pos: -36.5,15.5 + parent: 2 + - uid: 4832 components: - type: Transform - pos: 30.5,18.5 - parent: 89 - - uid: 16004 + pos: -36.5,16.5 + parent: 2 + - uid: 4833 components: - type: Transform - pos: 31.5,18.5 - parent: 89 - - uid: 16005 + pos: -36.5,17.5 + parent: 2 + - uid: 4834 components: - type: Transform - pos: 31.5,19.5 - parent: 89 - - uid: 16006 + pos: -35.5,17.5 + parent: 2 + - uid: 4835 components: - type: Transform - pos: 32.5,19.5 - parent: 89 - - uid: 16007 + pos: -34.5,17.5 + parent: 2 + - uid: 4836 components: - type: Transform - pos: 33.5,19.5 - parent: 89 - - uid: 16008 + pos: -33.5,17.5 + parent: 2 + - uid: 4837 components: - type: Transform - pos: 26.5,12.5 - parent: 89 - - uid: 16009 + pos: -32.5,17.5 + parent: 2 + - uid: 4838 components: - type: Transform - pos: 26.5,14.5 - parent: 89 - - uid: 16010 + pos: -31.5,17.5 + parent: 2 + - uid: 4839 components: - type: Transform - pos: 25.5,14.5 - parent: 89 - - uid: 16011 + pos: -30.5,17.5 + parent: 2 + - uid: 4840 components: - type: Transform - pos: 24.5,14.5 - parent: 89 - - uid: 16012 + pos: -29.5,17.5 + parent: 2 + - uid: 4841 components: - type: Transform - pos: 23.5,14.5 - parent: 89 - - uid: 16013 + pos: -29.5,18.5 + parent: 2 + - uid: 4842 components: - type: Transform - pos: 22.5,14.5 - parent: 89 - - uid: 16014 + pos: -29.5,19.5 + parent: 2 + - uid: 4843 components: - type: Transform - pos: 21.5,14.5 - parent: 89 - - uid: 16015 + pos: -43.5,-10.5 + parent: 2 + - uid: 4844 components: - type: Transform - pos: 20.5,14.5 - parent: 89 - - uid: 16018 + pos: -124.5,-3.5 + parent: 2 + - uid: 4845 components: - type: Transform - pos: 21.5,17.5 - parent: 89 - - uid: 16019 + pos: -121.5,3.5 + parent: 2 + - uid: 4846 components: - type: Transform - pos: 21.5,18.5 - parent: 89 - - uid: 16021 + pos: -122.5,3.5 + parent: 2 + - uid: 4847 components: - type: Transform - pos: 20.5,17.5 - parent: 89 - - uid: 16022 + pos: -124.5,9.5 + parent: 2 + - uid: 4848 components: - type: Transform - pos: 19.5,17.5 - parent: 89 - - uid: 16023 + pos: -0.5,23.5 + parent: 2 + - uid: 4849 components: - type: Transform - pos: 18.5,17.5 - parent: 89 - - uid: 16024 + pos: 4.5,23.5 + parent: 2 + - uid: 4850 components: - type: Transform - pos: 17.5,17.5 - parent: 89 - - uid: 16025 + pos: -43.5,-9.5 + parent: 2 + - uid: 4851 components: - type: Transform - pos: 17.5,18.5 - parent: 89 - - uid: 16027 + pos: 24.5,25.5 + parent: 2 + - uid: 4852 components: - type: Transform - pos: 24.5,15.5 - parent: 89 - - uid: 16028 + pos: 24.5,23.5 + parent: 2 + - uid: 4853 components: - type: Transform - pos: 24.5,16.5 - parent: 89 - - uid: 16029 + pos: -10.5,23.5 + parent: 2 + - uid: 4854 components: - type: Transform - pos: 24.5,17.5 - parent: 89 - - uid: 16030 + pos: -11.5,23.5 + parent: 2 + - uid: 4855 components: - type: Transform - pos: 24.5,18.5 - parent: 89 - - uid: 16031 + pos: -115.5,-10.5 + parent: 2 + - uid: 4856 components: - type: Transform - pos: 24.5,19.5 - parent: 89 - - uid: 16032 + pos: -2.5,23.5 + parent: 2 + - uid: 4857 components: - type: Transform - pos: 24.5,20.5 - parent: 89 - - uid: 16035 + pos: 0.5,23.5 + parent: 2 + - uid: 4858 components: - type: Transform - pos: 24.5,28.5 - parent: 89 - - uid: 16036 + pos: 1.5,23.5 + parent: 2 + - uid: 4859 components: - type: Transform - pos: 24.5,27.5 - parent: 89 - - uid: 16037 + pos: -116.5,-10.5 + parent: 2 + - uid: 4860 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 16040 + pos: -43.5,-8.5 + parent: 2 + - uid: 4861 components: - type: Transform - pos: 25.5,27.5 - parent: 89 - - uid: 16045 + pos: -6.5,23.5 + parent: 2 + - uid: 4862 components: - type: Transform - pos: 10.5,40.5 - parent: 89 - - uid: 16046 + pos: 16.5,26.5 + parent: 2 + - uid: 4863 components: - type: Transform - pos: 23.5,27.5 - parent: 89 - - uid: 16047 + pos: -7.5,23.5 + parent: 2 + - uid: 4864 components: - type: Transform - pos: 10.5,38.5 - parent: 89 - - uid: 16054 + pos: 13.5,26.5 + parent: 2 + - uid: 4865 components: - type: Transform - pos: 10.5,39.5 - parent: 89 - - uid: 16055 + pos: 14.5,26.5 + parent: 2 + - uid: 4866 components: - type: Transform - pos: 7.5,32.5 - parent: 89 - - uid: 16056 + pos: 20.5,25.5 + parent: 2 + - uid: 4867 components: - type: Transform - pos: 8.5,32.5 - parent: 89 - - uid: 16057 + pos: 19.5,26.5 + parent: 2 + - uid: 4868 components: - type: Transform - pos: 6.5,32.5 - parent: 89 - - uid: 16058 + pos: 15.5,26.5 + parent: 2 + - uid: 4869 components: - type: Transform - pos: 6.5,33.5 - parent: 89 - - uid: 16060 + pos: 6.5,26.5 + parent: 2 + - uid: 4870 components: - type: Transform - pos: -7.5,15.5 - parent: 89 - - uid: 16061 + pos: 12.5,26.5 + parent: 2 + - uid: 4871 components: - type: Transform - pos: -7.5,13.5 - parent: 89 - - uid: 16062 + pos: -43.5,-7.5 + parent: 2 + - uid: 4872 components: - type: Transform - pos: -7.5,12.5 - parent: 89 - - uid: 16063 + pos: 7.5,26.5 + parent: 2 + - uid: 4873 components: - type: Transform - pos: -8.5,15.5 - parent: 89 - - uid: 16064 + pos: 9.5,26.5 + parent: 2 + - uid: 4874 components: - type: Transform - pos: -9.5,15.5 - parent: 89 - - uid: 16065 + pos: -43.5,-6.5 + parent: 2 + - uid: 4875 components: - type: Transform - pos: -10.5,15.5 - parent: 89 - - uid: 16066 + pos: 17.5,26.5 + parent: 2 + - uid: 4876 components: - type: Transform - pos: -10.5,14.5 - parent: 89 - - uid: 16067 + pos: -43.5,-5.5 + parent: 2 + - uid: 4877 components: - type: Transform - pos: -10.5,13.5 - parent: 89 - - uid: 16068 + pos: -43.5,-4.5 + parent: 2 + - uid: 4878 components: - type: Transform - pos: -10.5,12.5 - parent: 89 - - uid: 16069 + pos: -42.5,-4.5 + parent: 2 + - uid: 4879 components: - type: Transform - pos: -10.5,11.5 - parent: 89 - - uid: 16076 + pos: -41.5,-4.5 + parent: 2 + - uid: 4880 components: - type: Transform - pos: -6.5,12.5 - parent: 89 - - uid: 16077 + pos: -40.5,-4.5 + parent: 2 + - uid: 4881 components: - type: Transform - pos: -5.5,12.5 - parent: 89 - - uid: 16078 + pos: -39.5,-4.5 + parent: 2 + - uid: 4882 components: - type: Transform - pos: -4.5,12.5 - parent: 89 - - uid: 16079 + pos: -117.5,-10.5 + parent: 2 + - uid: 4883 components: - type: Transform - pos: -3.5,12.5 - parent: 89 - - uid: 16080 + pos: -118.5,-10.5 + parent: 2 + - uid: 4884 components: - type: Transform - pos: -2.5,12.5 - parent: 89 - - uid: 16081 + pos: -119.5,-10.5 + parent: 2 + - uid: 4885 components: - type: Transform - pos: -1.5,12.5 - parent: 89 - - uid: 16082 + pos: -120.5,-10.5 + parent: 2 + - uid: 4886 components: - type: Transform - pos: -0.5,12.5 - parent: 89 - - uid: 16083 + pos: -121.5,-10.5 + parent: 2 + - uid: 4887 components: - type: Transform - pos: 0.5,12.5 - parent: 89 - - uid: 16084 + pos: -122.5,-10.5 + parent: 2 + - uid: 4888 components: - type: Transform - pos: 1.5,12.5 - parent: 89 - - uid: 16085 + pos: -123.5,-10.5 + parent: 2 + - uid: 4889 components: - type: Transform - pos: 2.5,12.5 - parent: 89 - - uid: 16086 + pos: -124.5,-10.5 + parent: 2 + - uid: 4890 components: - type: Transform - pos: 2.5,13.5 - parent: 89 - - uid: 16087 + pos: -125.5,-10.5 + parent: 2 + - uid: 4891 components: - type: Transform - pos: 3.5,13.5 - parent: 89 - - uid: 16088 + pos: -125.5,-9.5 + parent: 2 + - uid: 4892 components: - type: Transform - pos: 4.5,13.5 - parent: 89 - - uid: 16089 + pos: -125.5,-8.5 + parent: 2 + - uid: 4893 components: - type: Transform - pos: 5.5,13.5 - parent: 89 - - uid: 16090 + pos: -125.5,-7.5 + parent: 2 + - uid: 4894 components: - type: Transform - pos: 6.5,13.5 - parent: 89 - - uid: 16091 + pos: -38.5,-4.5 + parent: 2 + - uid: 4895 components: - type: Transform - pos: 7.5,13.5 - parent: 89 - - uid: 16092 + pos: 22.5,25.5 + parent: 2 + - uid: 4896 components: - type: Transform - pos: 8.5,13.5 - parent: 89 - - uid: 16093 + pos: -37.5,-4.5 + parent: 2 + - uid: 4897 components: - type: Transform - pos: 19.5,14.5 - parent: 89 - - uid: 16094 + pos: 4.5,25.5 + parent: 2 + - uid: 4898 components: - type: Transform - pos: 18.5,14.5 - parent: 89 - - uid: 16095 + pos: 4.5,26.5 + parent: 2 + - uid: 4899 components: - type: Transform - pos: 17.5,14.5 - parent: 89 - - uid: 16096 + pos: -123.5,13.5 + parent: 2 + - uid: 4900 components: - type: Transform - pos: 16.5,14.5 - parent: 89 - - uid: 16097 + pos: 35.5,27.5 + parent: 2 + - uid: 4901 components: - type: Transform - pos: 15.5,14.5 - parent: 89 - - uid: 16098 + pos: 20.5,26.5 + parent: 2 + - uid: 4902 components: - type: Transform - pos: 15.5,13.5 - parent: 89 - - uid: 16099 + pos: 4.5,24.5 + parent: 2 + - uid: 4903 components: - type: Transform - pos: 14.5,13.5 - parent: 89 - - uid: 16100 + pos: 5.5,26.5 + parent: 2 + - uid: 4904 components: - type: Transform - pos: 7.5,14.5 - parent: 89 - - uid: 16101 + pos: 24.5,22.5 + parent: 2 + - uid: 4905 components: - type: Transform - pos: 7.5,15.5 - parent: 89 - - uid: 16102 + pos: 25.5,22.5 + parent: 2 + - uid: 4906 components: - type: Transform - pos: 7.5,16.5 - parent: 89 - - uid: 16103 + pos: 26.5,22.5 + parent: 2 + - uid: 4907 components: - type: Transform - pos: 7.5,17.5 - parent: 89 - - uid: 16104 + pos: 27.5,22.5 + parent: 2 + - uid: 4908 components: - type: Transform - pos: 6.5,17.5 - parent: 89 - - uid: 16105 + pos: 28.5,22.5 + parent: 2 + - uid: 4909 components: - type: Transform - pos: 9.5,13.5 - parent: 89 - - uid: 16106 + pos: 29.5,22.5 + parent: 2 + - uid: 4910 components: - type: Transform - pos: 9.5,14.5 - parent: 89 - - uid: 16107 + pos: 30.5,22.5 + parent: 2 + - uid: 4911 components: - type: Transform - pos: 9.5,15.5 - parent: 89 - - uid: 16108 + pos: 31.5,22.5 + parent: 2 + - uid: 4912 components: - type: Transform - pos: 9.5,16.5 - parent: 89 - - uid: 16109 + pos: 32.5,22.5 + parent: 2 + - uid: 4913 components: - type: Transform - pos: 9.5,17.5 - parent: 89 - - uid: 16110 + pos: 33.5,22.5 + parent: 2 + - uid: 4914 components: - type: Transform - pos: 10.5,17.5 - parent: 89 - - uid: 16111 + pos: 34.5,22.5 + parent: 2 + - uid: 4915 components: - type: Transform - pos: 7.5,12.5 - parent: 89 - - uid: 16112 + pos: 34.5,23.5 + parent: 2 + - uid: 4916 components: - type: Transform - pos: 7.5,11.5 - parent: 89 - - uid: 16113 + pos: 34.5,24.5 + parent: 2 + - uid: 4917 components: - type: Transform - pos: 6.5,11.5 - parent: 89 - - uid: 16114 + pos: 34.5,25.5 + parent: 2 + - uid: 4918 components: - type: Transform - pos: 6.5,10.5 - parent: 89 - - uid: 16115 + pos: 34.5,26.5 + parent: 2 + - uid: 4919 components: - type: Transform - pos: 6.5,9.5 - parent: 89 - - uid: 16116 + pos: -116.5,13.5 + parent: 2 + - uid: 4920 components: - type: Transform - pos: 6.5,8.5 - parent: 89 - - uid: 16117 + pos: -117.5,13.5 + parent: 2 + - uid: 4921 components: - type: Transform - pos: 6.5,7.5 - parent: 89 - - uid: 16118 + pos: -37.5,-16.5 + parent: 2 + - uid: 4922 components: - type: Transform - pos: 7.5,7.5 - parent: 89 - - uid: 16119 + pos: -37.5,-5.5 + parent: 2 + - uid: 4923 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - uid: 16120 + pos: -37.5,-6.5 + parent: 2 + - uid: 4924 components: - type: Transform - pos: 9.5,7.5 - parent: 89 - - uid: 16121 + pos: -37.5,-7.5 + parent: 2 + - uid: 4925 components: - type: Transform - pos: 10.5,7.5 - parent: 89 - - uid: 16122 + pos: -37.5,-8.5 + parent: 2 + - uid: 4926 components: - type: Transform - pos: 11.5,7.5 - parent: 89 - - uid: 16123 + pos: -37.5,-9.5 + parent: 2 + - uid: 4927 components: - type: Transform - pos: 12.5,7.5 - parent: 89 - - uid: 16124 + pos: -118.5,4.5 + parent: 2 + - uid: 4928 components: - type: Transform - pos: 13.5,7.5 - parent: 89 - - uid: 16125 + pos: 16.5,-11.5 + parent: 2 + - uid: 4929 components: - type: Transform - pos: 9.5,12.5 - parent: 89 - - uid: 16126 + pos: 16.5,-9.5 + parent: 2 + - uid: 4930 components: - type: Transform - pos: 10.5,12.5 - parent: 89 - - uid: 16127 + pos: 21.5,-9.5 + parent: 2 + - uid: 4931 components: - type: Transform - pos: 0.5,13.5 - parent: 89 - - uid: 16135 + pos: 18.5,-9.5 + parent: 2 + - uid: 4932 components: - type: Transform - pos: 33.5,23.5 - parent: 89 - - uid: 16140 + pos: 19.5,-9.5 + parent: 2 + - uid: 4933 components: - type: Transform - pos: 0.5,11.5 - parent: 89 - - uid: 16141 + pos: 17.5,-9.5 + parent: 2 + - uid: 4934 components: - type: Transform - pos: 0.5,10.5 - parent: 89 - - uid: 16142 + pos: 20.5,-9.5 + parent: 2 + - uid: 4935 components: - type: Transform - pos: 0.5,9.5 - parent: 89 - - uid: 16143 + pos: 16.5,-12.5 + parent: 2 + - uid: 4936 components: - type: Transform - pos: 0.5,8.5 - parent: 89 - - uid: 16144 + pos: 16.5,-10.5 + parent: 2 + - uid: 4937 components: - type: Transform - pos: 0.5,7.5 - parent: 89 - - uid: 16148 + pos: 23.5,-9.5 + parent: 2 + - uid: 4938 components: - type: Transform - pos: -2.5,11.5 - parent: 89 - - uid: 16149 + pos: 25.5,-9.5 + parent: 2 + - uid: 4939 components: - type: Transform - pos: -2.5,10.5 - parent: 89 - - uid: 16150 + pos: 22.5,-9.5 + parent: 2 + - uid: 4940 components: - type: Transform - pos: -2.5,9.5 - parent: 89 - - uid: 16151 + pos: 24.5,-9.5 + parent: 2 + - uid: 4941 components: - type: Transform - pos: -2.5,8.5 - parent: 89 - - uid: 16152 + pos: 26.5,-9.5 + parent: 2 + - uid: 4942 components: - type: Transform - pos: -2.5,7.5 - parent: 89 - - uid: 16153 + pos: 28.5,-9.5 + parent: 2 + - uid: 4943 components: - type: Transform - pos: -2.5,6.5 - parent: 89 - - uid: 16154 + pos: 27.5,-9.5 + parent: 2 + - uid: 4944 components: - type: Transform - pos: -6.5,11.5 - parent: 89 - - uid: 16155 + pos: 30.5,-9.5 + parent: 2 + - uid: 4945 components: - type: Transform - pos: -6.5,10.5 - parent: 89 - - uid: 16156 + pos: 29.5,-9.5 + parent: 2 + - uid: 4946 components: - type: Transform - pos: -6.5,9.5 - parent: 89 - - uid: 16157 + pos: 32.5,-9.5 + parent: 2 + - uid: 4947 components: - type: Transform - pos: -6.5,8.5 - parent: 89 - - uid: 16158 + pos: 31.5,-9.5 + parent: 2 + - uid: 4948 components: - type: Transform - pos: -6.5,7.5 - parent: 89 - - uid: 16161 + pos: 34.5,-9.5 + parent: 2 + - uid: 4949 components: - type: Transform - pos: 13.5,27.5 - parent: 89 - - uid: 16181 + pos: 33.5,-9.5 + parent: 2 + - uid: 4950 components: - type: Transform - pos: 10.5,34.5 - parent: 89 - - uid: 16182 + pos: 36.5,-9.5 + parent: 2 + - uid: 4951 components: - type: Transform - pos: 10.5,35.5 - parent: 89 - - uid: 16183 + pos: 35.5,-9.5 + parent: 2 + - uid: 4952 components: - type: Transform - pos: 10.5,36.5 - parent: 89 - - uid: 16184 + pos: 38.5,-9.5 + parent: 2 + - uid: 4953 components: - type: Transform - pos: 9.5,36.5 - parent: 89 - - uid: 16190 + pos: 37.5,-9.5 + parent: 2 + - uid: 4954 components: - type: Transform - pos: 13.5,26.5 - parent: 89 - - uid: 16191 + pos: 38.5,-10.5 + parent: 2 + - uid: 4955 components: - type: Transform - pos: 13.5,25.5 - parent: 89 - - uid: 16192 + pos: 40.5,26.5 + parent: 2 + - uid: 4956 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 16194 + pos: -117.5,4.5 + parent: 2 + - uid: 4957 components: - type: Transform - pos: 13.5,14.5 - parent: 89 - - uid: 16195 + pos: -116.5,4.5 + parent: 2 + - uid: 4958 components: - type: Transform - pos: 13.5,14.5 - parent: 89 - - uid: 16196 + pos: -115.5,4.5 + parent: 2 + - uid: 4959 components: - type: Transform - pos: 13.5,15.5 - parent: 89 - - uid: 16197 + pos: -114.5,4.5 + parent: 2 + - uid: 4960 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 16199 + pos: -113.5,4.5 + parent: 2 + - uid: 4961 components: - type: Transform - pos: 13.5,17.5 - parent: 89 - - uid: 16200 + pos: -112.5,4.5 + parent: 2 + - uid: 4962 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 16239 + pos: -111.5,4.5 + parent: 2 + - uid: 4963 components: - type: Transform - pos: -10.5,-6.5 - parent: 89 - - uid: 16337 + pos: -110.5,4.5 + parent: 2 + - uid: 4964 components: - type: Transform - pos: 34.5,26.5 - parent: 89 - - uid: 16338 + pos: -109.5,4.5 + parent: 2 + - uid: 4965 components: - type: Transform - pos: 34.5,25.5 - parent: 89 - - uid: 16339 + pos: 38.5,-13.5 + parent: 2 + - uid: 4966 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 16340 + pos: 38.5,-12.5 + parent: 2 + - uid: 4967 components: - type: Transform - pos: 34.5,23.5 - parent: 89 - - uid: 16341 + pos: 51.5,0.5 + parent: 2 + - uid: 4968 components: - type: Transform - pos: 34.5,22.5 - parent: 89 - - uid: 16342 + pos: 52.5,0.5 + parent: 2 + - uid: 4969 components: - type: Transform - pos: 35.5,22.5 - parent: 89 - - uid: 16343 + pos: 52.5,-2.5 + parent: 2 + - uid: 4970 components: - type: Transform - pos: 36.5,22.5 - parent: 89 - - uid: 16347 + pos: 52.5,-3.5 + parent: 2 + - uid: 4971 components: - type: Transform - pos: 33.5,22.5 - parent: 89 - - uid: 16348 + pos: 52.5,-4.5 + parent: 2 + - uid: 4972 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 16349 + pos: 52.5,-5.5 + parent: 2 + - uid: 4973 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16350 + pos: 52.5,-6.5 + parent: 2 + - uid: 4974 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16351 + pos: 51.5,5.5 + parent: 2 + - uid: 4975 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16352 + pos: 51.5,6.5 + parent: 2 + - uid: 4976 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 16353 + pos: 51.5,7.5 + parent: 2 + - uid: 4977 components: - type: Transform - pos: 27.5,22.5 - parent: 89 - - uid: 16354 + pos: 51.5,8.5 + parent: 2 + - uid: 4978 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16355 + pos: 51.5,9.5 + parent: 2 + - uid: 4979 components: - type: Transform - pos: 25.5,22.5 - parent: 89 - - uid: 16356 + pos: 51.5,10.5 + parent: 2 + - uid: 4980 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 16357 + pos: 51.5,11.5 + parent: 2 + - uid: 4981 components: - type: Transform - pos: 23.5,22.5 - parent: 89 - - uid: 16365 + pos: -128.5,-13.5 + parent: 2 + - uid: 4982 components: - type: Transform - pos: 13.5,13.5 - parent: 89 - - uid: 16382 + pos: -128.5,-14.5 + parent: 2 + - uid: 4983 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 16383 + pos: 36.5,27.5 + parent: 2 + - uid: 4984 components: - type: Transform - pos: 20.5,8.5 - parent: 89 - - uid: 16384 + pos: 36.5,26.5 + parent: 2 + - uid: 4985 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 16385 + pos: 37.5,26.5 + parent: 2 + - uid: 4986 components: - type: Transform - pos: 19.5,7.5 - parent: 89 - - uid: 16386 + pos: 38.5,26.5 + parent: 2 + - uid: 4987 components: - type: Transform - pos: 18.5,7.5 - parent: 89 - - uid: 16387 + pos: 39.5,26.5 + parent: 2 + - uid: 4988 components: - type: Transform - pos: 17.5,7.5 - parent: 89 - - uid: 16388 + pos: 38.5,-11.5 + parent: 2 + - uid: 4989 components: - type: Transform - pos: 19.5,6.5 - parent: 89 - - uid: 16389 + pos: -128.5,-12.5 + parent: 2 + - uid: 4990 components: - type: Transform - pos: 21.5,9.5 - parent: 89 - - uid: 16390 + pos: 38.5,-14.5 + parent: 2 + - uid: 4991 components: - type: Transform - pos: 21.5,10.5 - parent: 89 - - uid: 16391 + pos: 38.5,-15.5 + parent: 2 + - uid: 4992 components: - type: Transform - pos: 21.5,11.5 - parent: 89 - - uid: 16392 + pos: 41.5,26.5 + parent: 2 + - uid: 4993 components: - type: Transform - pos: 20.5,11.5 - parent: 89 - - uid: 16393 + pos: -128.5,-11.5 + parent: 2 + - uid: 4994 components: - type: Transform - pos: 19.5,11.5 - parent: 89 - - uid: 16394 + pos: 50.5,11.5 + parent: 2 + - uid: 4995 components: - type: Transform - pos: 21.5,7.5 - parent: 89 - - uid: 16395 + pos: 49.5,11.5 + parent: 2 + - uid: 4996 components: - type: Transform - pos: 21.5,6.5 - parent: 89 - - uid: 16425 + pos: 48.5,11.5 + parent: 2 + - uid: 4997 components: - type: Transform - pos: -117.5,-11.5 - parent: 89 - - uid: 16426 + pos: 47.5,11.5 + parent: 2 + - uid: 4998 components: - type: Transform - pos: -117.5,-12.5 - parent: 89 - - uid: 16427 + pos: 47.5,12.5 + parent: 2 + - uid: 4999 components: - type: Transform - pos: -117.5,-13.5 - parent: 89 - - uid: 16428 + pos: 47.5,13.5 + parent: 2 + - uid: 5000 components: - type: Transform - pos: -118.5,-13.5 - parent: 89 - - uid: 16429 + pos: 47.5,14.5 + parent: 2 + - uid: 5001 components: - type: Transform - pos: -119.5,-13.5 - parent: 89 - - uid: 16430 + pos: 47.5,15.5 + parent: 2 + - uid: 5002 components: - type: Transform - pos: -120.5,-13.5 - parent: 89 - - uid: 16431 + pos: 47.5,16.5 + parent: 2 + - uid: 5003 components: - type: Transform - pos: -120.5,-12.5 - parent: 89 - - uid: 16432 + pos: 47.5,17.5 + parent: 2 + - uid: 5004 components: - type: Transform - pos: -122.5,-12.5 - parent: 89 - - uid: 16433 + pos: 44.5,19.5 + parent: 2 + - uid: 5005 components: - type: Transform - pos: -121.5,-12.5 - parent: 89 - - uid: 16470 + pos: 44.5,20.5 + parent: 2 + - uid: 5006 components: - type: Transform - pos: -57.5,8.5 - parent: 89 - - uid: 16471 + pos: 45.5,19.5 + parent: 2 + - uid: 5007 components: - type: Transform - pos: -56.5,8.5 - parent: 89 - - uid: 16472 + pos: 46.5,19.5 + parent: 2 + - uid: 5008 components: - type: Transform - pos: -55.5,8.5 - parent: 89 - - uid: 16473 + pos: 47.5,19.5 + parent: 2 + - uid: 5009 components: - type: Transform - pos: -55.5,9.5 - parent: 89 - - uid: 16474 + pos: 47.5,17.5 + parent: 2 + - uid: 5010 components: - type: Transform - pos: -55.5,10.5 - parent: 89 - - uid: 16475 + pos: -39.5,-2.5 + parent: 2 + - uid: 5011 components: - type: Transform - pos: -54.5,10.5 - parent: 89 - - uid: 16476 + pos: -39.5,-0.5 + parent: 2 + - uid: 5012 components: - type: Transform - pos: -53.5,10.5 - parent: 89 - - uid: 16477 + pos: -39.5,-1.5 + parent: 2 + - uid: 5013 components: - type: Transform - pos: -52.5,10.5 - parent: 89 - - uid: 16478 + pos: -39.5,-3.5 + parent: 2 + - uid: 5014 components: - type: Transform - pos: -51.5,10.5 - parent: 89 - - uid: 16479 + pos: -39.5,0.5 + parent: 2 + - uid: 5015 components: - type: Transform - pos: -50.5,10.5 - parent: 89 - - uid: 16480 + pos: -17.5,3.5 + parent: 2 + - uid: 5016 components: - type: Transform - pos: -49.5,10.5 - parent: 89 - - uid: 16481 + pos: -39.5,1.5 + parent: 2 + - uid: 5017 components: - type: Transform - pos: -48.5,10.5 - parent: 89 - - uid: 16482 + pos: -39.5,2.5 + parent: 2 + - uid: 5018 components: - type: Transform - pos: -47.5,10.5 - parent: 89 - - uid: 16483 + pos: -39.5,3.5 + parent: 2 + - uid: 5019 components: - type: Transform - pos: -46.5,10.5 - parent: 89 - - uid: 16484 + pos: -38.5,3.5 + parent: 2 + - uid: 5020 components: - type: Transform - pos: -45.5,10.5 - parent: 89 - - uid: 16485 + pos: -37.5,3.5 + parent: 2 + - uid: 5021 components: - type: Transform - pos: -44.5,10.5 - parent: 89 - - uid: 16486 + pos: -36.5,3.5 + parent: 2 + - uid: 5022 components: - type: Transform - pos: -44.5,9.5 - parent: 89 - - uid: 16487 + pos: -35.5,3.5 + parent: 2 + - uid: 5023 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 16488 + pos: -34.5,3.5 + parent: 2 + - uid: 5024 components: - type: Transform - pos: -44.5,7.5 - parent: 89 - - uid: 16489 + pos: -33.5,3.5 + parent: 2 + - uid: 5025 components: - type: Transform - pos: -50.5,9.5 - parent: 89 - - uid: 16490 + pos: -32.5,3.5 + parent: 2 + - uid: 5026 components: - type: Transform - pos: -50.5,8.5 - parent: 89 - - uid: 16491 + pos: -31.5,3.5 + parent: 2 + - uid: 5027 components: - type: Transform - pos: -50.5,7.5 - parent: 89 - - uid: 16545 + pos: -30.5,3.5 + parent: 2 + - uid: 5028 components: - type: Transform - pos: -63.5,-6.5 - parent: 89 - - uid: 16586 + pos: -29.5,3.5 + parent: 2 + - uid: 5029 components: - type: Transform - pos: -21.5,28.5 - parent: 89 - - uid: 16587 + pos: -28.5,3.5 + parent: 2 + - uid: 5030 components: - type: Transform - pos: -21.5,29.5 - parent: 89 - - uid: 16588 + pos: -27.5,3.5 + parent: 2 + - uid: 5031 components: - type: Transform - pos: -20.5,29.5 - parent: 89 - - uid: 16589 + pos: -26.5,3.5 + parent: 2 + - uid: 5032 components: - type: Transform - pos: -20.5,30.5 - parent: 89 - - uid: 16590 + pos: -22.5,3.5 + parent: 2 + - uid: 5033 components: - type: Transform - pos: -38.5,28.5 - parent: 89 - - uid: 16591 + pos: -21.5,3.5 + parent: 2 + - uid: 5034 components: - type: Transform - pos: -38.5,29.5 - parent: 89 - - uid: 16592 + pos: -20.5,3.5 + parent: 2 + - uid: 5035 components: - type: Transform - pos: -39.5,29.5 - parent: 89 - - uid: 16593 + pos: -19.5,3.5 + parent: 2 + - uid: 5036 components: - type: Transform - pos: -39.5,30.5 - parent: 89 - - uid: 16596 + pos: -18.5,3.5 + parent: 2 + - uid: 5037 components: - type: Transform - pos: -39.5,31.5 - parent: 89 - - uid: 16598 + pos: -16.5,3.5 + parent: 2 + - uid: 5038 components: - type: Transform - pos: -38.5,31.5 - parent: 89 - - uid: 16623 + pos: -15.5,3.5 + parent: 2 + - uid: 5039 components: - type: Transform - pos: 37.5,22.5 - parent: 89 - - uid: 16650 + pos: -14.5,3.5 + parent: 2 + - uid: 5040 components: - type: Transform - pos: -12.5,-34.5 - parent: 89 - - uid: 16651 + pos: -12.5,3.5 + parent: 2 + - uid: 5041 components: - type: Transform - pos: -12.5,-33.5 - parent: 89 - - uid: 16652 + pos: -13.5,3.5 + parent: 2 + - uid: 5042 components: - type: Transform - pos: -12.5,-32.5 - parent: 89 - - uid: 16653 + pos: -9.5,3.5 + parent: 2 + - uid: 5043 components: - type: Transform - pos: -12.5,-31.5 - parent: 89 - - uid: 16654 + pos: -8.5,3.5 + parent: 2 + - uid: 5044 components: - type: Transform - pos: -12.5,-30.5 - parent: 89 - - uid: 16655 + pos: -5.5,3.5 + parent: 2 + - uid: 5045 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 16656 + pos: -4.5,3.5 + parent: 2 + - uid: 5046 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 16659 + pos: 47.5,18.5 + parent: 2 + - uid: 5047 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 16660 + pos: 43.5,-18.5 + parent: 2 + - uid: 5048 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 16661 + pos: 42.5,-18.5 + parent: 2 + - uid: 5049 components: - type: Transform - pos: -15.5,-26.5 - parent: 89 - - uid: 16662 + pos: 41.5,-18.5 + parent: 2 + - uid: 5050 components: - type: Transform - pos: -16.5,-26.5 - parent: 89 - - uid: 16663 + pos: 40.5,-18.5 + parent: 2 + - uid: 5051 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 16664 + pos: 39.5,-18.5 + parent: 2 + - uid: 5052 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 16665 + pos: 38.5,-18.5 + parent: 2 + - uid: 5053 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 16666 + pos: 38.5,-17.5 + parent: 2 + - uid: 5054 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 16667 + pos: 38.5,-16.5 + parent: 2 + - uid: 5055 components: - type: Transform - pos: -20.5,-25.5 - parent: 89 - - uid: 16668 + pos: -23.5,3.5 + parent: 2 + - uid: 5056 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 16669 + pos: -24.5,3.5 + parent: 2 + - uid: 5057 components: - type: Transform - pos: -22.5,-25.5 - parent: 89 - - uid: 16670 + pos: -25.5,3.5 + parent: 2 + - uid: 5058 components: - type: Transform - pos: -23.5,-25.5 - parent: 89 - - uid: 16671 + pos: -83.5,-1.5 + parent: 2 + - uid: 5059 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 - - uid: 16672 + pos: -1.5,2.5 + parent: 2 + - uid: 5060 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 16673 + pos: -40.5,-5.5 + parent: 2 + - uid: 5061 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 16674 + pos: -1.5,-12.5 + parent: 2 + - uid: 5062 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 16675 + pos: -1.5,-13.5 + parent: 2 + - uid: 5063 components: - type: Transform - pos: -25.5,-22.5 - parent: 89 - - uid: 16676 + pos: -1.5,-14.5 + parent: 2 + - uid: 5064 components: - type: Transform - pos: -25.5,-21.5 - parent: 89 - - uid: 16677 + pos: -1.5,-15.5 + parent: 2 + - uid: 5065 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 16678 + pos: -0.5,-15.5 + parent: 2 + - uid: 5066 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 16679 + pos: 0.5,-15.5 + parent: 2 + - uid: 5067 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 16680 + pos: 1.5,-15.5 + parent: 2 + - uid: 5068 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 16681 + pos: 2.5,-15.5 + parent: 2 + - uid: 5069 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 16682 + pos: 3.5,-15.5 + parent: 2 + - uid: 5070 components: - type: Transform - pos: -26.5,-16.5 - parent: 89 - - uid: 16683 + pos: 4.5,-15.5 + parent: 2 + - uid: 5071 components: - type: Transform - pos: -27.5,-16.5 - parent: 89 - - uid: 16684 + pos: 5.5,-15.5 + parent: 2 + - uid: 5072 components: - type: Transform - pos: -28.5,-16.5 - parent: 89 - - uid: 16685 + pos: -128.5,-3.5 + parent: 2 + - uid: 5073 components: - type: Transform - pos: -29.5,-16.5 - parent: 89 - - uid: 16686 + pos: -126.5,-3.5 + parent: 2 + - uid: 5074 components: - type: Transform - pos: -30.5,-16.5 - parent: 89 - - uid: 16687 + pos: 57.5,-17.5 + parent: 2 + - uid: 5075 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 16688 + pos: 57.5,-18.5 + parent: 2 + - uid: 5076 components: - type: Transform - pos: -32.5,-16.5 - parent: 89 - - uid: 16691 + pos: 57.5,-19.5 + parent: 2 + - uid: 5077 components: - type: Transform - pos: -35.5,-16.5 - parent: 89 - - uid: 16694 + pos: 57.5,-20.5 + parent: 2 + - uid: 5078 components: - type: Transform - pos: -37.5,-15.5 - parent: 89 - - uid: 16695 + pos: 57.5,-21.5 + parent: 2 + - uid: 5079 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 16696 + pos: 57.5,-22.5 + parent: 2 + - uid: 5080 components: - type: Transform - pos: -39.5,-15.5 - parent: 89 - - uid: 16697 + pos: 57.5,-23.5 + parent: 2 + - uid: 5081 components: - type: Transform - pos: -40.5,-15.5 - parent: 89 - - uid: 16698 + pos: 57.5,-24.5 + parent: 2 + - uid: 5082 components: - type: Transform - pos: -41.5,-15.5 - parent: 89 - - uid: 16699 + pos: 57.5,-25.5 + parent: 2 + - uid: 5083 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 16700 + pos: 57.5,-26.5 + parent: 2 + - uid: 5084 components: - type: Transform - pos: -43.5,-15.5 - parent: 89 - - uid: 16701 + pos: 57.5,-27.5 + parent: 2 + - uid: 5085 components: - type: Transform - pos: -43.5,-14.5 - parent: 89 - - uid: 16702 + pos: 57.5,-28.5 + parent: 2 + - uid: 5086 components: - type: Transform - pos: -43.5,-13.5 - parent: 89 - - uid: 16703 + pos: 57.5,-29.5 + parent: 2 + - uid: 5087 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 16704 + pos: 57.5,-30.5 + parent: 2 + - uid: 5088 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 16705 + pos: 56.5,-30.5 + parent: 2 + - uid: 5089 components: - type: Transform - pos: -43.5,-10.5 - parent: 89 - - uid: 16706 + pos: 55.5,-30.5 + parent: 2 + - uid: 5090 components: - type: Transform - pos: -43.5,-9.5 - parent: 89 - - uid: 16707 + pos: 54.5,-30.5 + parent: 2 + - uid: 5091 components: - type: Transform - pos: -43.5,-8.5 - parent: 89 - - uid: 16708 + pos: 53.5,-30.5 + parent: 2 + - uid: 5092 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 16709 + pos: 52.5,-30.5 + parent: 2 + - uid: 5093 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 16722 + pos: 51.5,-30.5 + parent: 2 + - uid: 5094 components: - type: Transform - pos: 6.5,-16.5 - parent: 89 - - uid: 16723 + pos: 50.5,-30.5 + parent: 2 + - uid: 5095 components: - type: Transform - pos: -10.5,-24.5 - parent: 89 - - uid: 16724 + pos: 49.5,-30.5 + parent: 2 + - uid: 5096 components: - type: Transform - pos: -10.5,-25.5 - parent: 89 - - uid: 16725 + pos: 48.5,-30.5 + parent: 2 + - uid: 5097 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 16726 + pos: 47.5,-30.5 + parent: 2 + - uid: 5098 components: - type: Transform - pos: -12.5,-25.5 - parent: 89 - - uid: 16727 + pos: 46.5,-30.5 + parent: 2 + - uid: 5099 components: - type: Transform - pos: -12.5,-26.5 - parent: 89 - - uid: 16728 + pos: 45.5,-30.5 + parent: 2 + - uid: 5100 components: - type: Transform - pos: 15.5,-10.5 - parent: 89 - - uid: 16729 + pos: 45.5,-29.5 + parent: 2 + - uid: 5101 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 16730 + pos: 45.5,-28.5 + parent: 2 + - uid: 5102 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - uid: 16731 + pos: 45.5,-27.5 + parent: 2 + - uid: 5103 components: - type: Transform - pos: 15.5,-13.5 - parent: 89 - - uid: 16734 + pos: 45.5,-26.5 + parent: 2 + - uid: 5104 components: - type: Transform - pos: 12.5,-14.5 - parent: 89 - - uid: 16735 + pos: 45.5,-25.5 + parent: 2 + - uid: 5105 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 16736 + pos: 45.5,-24.5 + parent: 2 + - uid: 5106 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 16737 + pos: 45.5,-23.5 + parent: 2 + - uid: 5107 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 16738 + pos: 45.5,-22.5 + parent: 2 + - uid: 5108 components: - type: Transform - pos: 9.5,-15.5 - parent: 89 - - uid: 16739 + pos: 45.5,-21.5 + parent: 2 + - uid: 5109 components: - type: Transform - pos: 8.5,-15.5 - parent: 89 - - uid: 16740 + pos: 45.5,-20.5 + parent: 2 + - uid: 5110 components: - type: Transform - pos: 7.5,-15.5 - parent: 89 - - uid: 16741 + pos: 45.5,-19.5 + parent: 2 + - uid: 5111 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 16742 + pos: 45.5,-18.5 + parent: 2 + - uid: 5112 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 16743 + pos: 44.5,-18.5 + parent: 2 + - uid: 5113 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 16744 + pos: 59.5,-16.5 + parent: 2 + - uid: 5114 components: - type: Transform - pos: 6.5,-19.5 - parent: 89 - - uid: 16745 + pos: 60.5,-16.5 + parent: 2 + - uid: 5115 components: - type: Transform - pos: 6.5,-20.5 - parent: 89 - - uid: 16746 + pos: 58.5,-16.5 + parent: 2 + - uid: 5116 components: - type: Transform - pos: 6.5,-21.5 - parent: 89 - - uid: 16747 + pos: 57.5,-16.5 + parent: 2 + - uid: 5117 components: - type: Transform - pos: 6.5,-22.5 - parent: 89 - - uid: 16748 + pos: 60.5,-17.5 + parent: 2 + - uid: 5118 components: - type: Transform - pos: 6.5,-23.5 - parent: 89 - - uid: 16749 + pos: 60.5,-18.5 + parent: 2 + - uid: 5119 components: - type: Transform - pos: 6.5,-24.5 - parent: 89 - - uid: 16750 + pos: 60.5,-18.5 + parent: 2 + - uid: 5120 components: - type: Transform - pos: 5.5,-24.5 - parent: 89 - - uid: 16751 + pos: 61.5,-18.5 + parent: 2 + - uid: 5121 components: - type: Transform - pos: 13.5,-12.5 - parent: 89 - - uid: 16752 + pos: 62.5,-18.5 + parent: 2 + - uid: 5122 components: - type: Transform - pos: 5.5,-15.5 - parent: 89 - - uid: 16753 + pos: 50.5,-37.5 + parent: 2 + - uid: 5123 components: - type: Transform - pos: 4.5,-15.5 - parent: 89 - - uid: 16754 + pos: 62.5,-18.5 + parent: 2 + - uid: 5124 components: - type: Transform - pos: 3.5,-15.5 - parent: 89 - - uid: 17037 + pos: 62.5,-19.5 + parent: 2 + - uid: 5125 components: - type: Transform - pos: 24.5,28.5 - parent: 89 - - uid: 17089 + pos: 62.5,-20.5 + parent: 2 + - uid: 5126 components: - type: Transform - pos: -91.5,28.5 - parent: 89 - - uid: 17256 + pos: 62.5,-21.5 + parent: 2 + - uid: 5127 components: - type: Transform - pos: -54.5,48.5 - parent: 89 - - uid: 17280 + pos: 62.5,-22.5 + parent: 2 + - uid: 5128 components: - type: Transform - pos: -51.5,47.5 - parent: 89 - - uid: 17282 + pos: 63.5,-24.5 + parent: 2 + - uid: 5129 components: - type: Transform - pos: -52.5,48.5 - parent: 89 - - uid: 17286 + pos: 63.5,-25.5 + parent: 2 + - uid: 5130 components: - type: Transform - pos: -52.5,47.5 - parent: 89 - - uid: 17411 + pos: 63.5,-26.5 + parent: 2 + - uid: 5131 components: - type: Transform - pos: 33.5,26.5 - parent: 89 - - uid: 17630 + pos: 63.5,-27.5 + parent: 2 + - uid: 5132 components: - type: Transform - pos: 1.5,7.5 - parent: 89 - - uid: 17631 + pos: 63.5,-28.5 + parent: 2 + - uid: 5133 components: - type: Transform - pos: 2.5,7.5 - parent: 89 - - uid: 17633 + pos: 63.5,-29.5 + parent: 2 + - uid: 5134 components: - type: Transform - pos: 3.5,7.5 - parent: 89 - - uid: 17634 + pos: 62.5,-33.5 + parent: 2 + - uid: 5135 components: - type: Transform - pos: 2.5,6.5 - parent: 89 - - uid: 17645 + pos: 62.5,-34.5 + parent: 2 + - uid: 5136 components: - type: Transform - pos: 2.5,8.5 - parent: 89 - - uid: 17976 + pos: 62.5,-35.5 + parent: 2 + - uid: 5137 components: - type: Transform - pos: -66.5,30.5 - parent: 89 - - uid: 18152 + pos: 62.5,-36.5 + parent: 2 + - uid: 5138 components: - type: Transform - pos: 21.5,-5.5 - parent: 89 - - uid: 18270 + pos: 62.5,-37.5 + parent: 2 + - uid: 5139 components: - type: Transform - pos: -85.5,-19.5 - parent: 89 - - uid: 18271 + pos: 61.5,-37.5 + parent: 2 + - uid: 5140 components: - type: Transform - pos: -85.5,-20.5 - parent: 89 - - uid: 18272 + pos: 60.5,-37.5 + parent: 2 + - uid: 5141 components: - type: Transform - pos: -86.5,-20.5 - parent: 89 - - uid: 18273 + pos: 59.5,-37.5 + parent: 2 + - uid: 5142 components: - type: Transform - pos: -87.5,-20.5 - parent: 89 - - uid: 18274 + pos: 58.5,-38.5 + parent: 2 + - uid: 5143 components: - type: Transform - pos: -88.5,-20.5 - parent: 89 - - uid: 18275 + pos: 57.5,-38.5 + parent: 2 + - uid: 5144 components: - type: Transform - pos: -89.5,-20.5 - parent: 89 - - uid: 18276 + pos: 56.5,-38.5 + parent: 2 + - uid: 5145 components: - type: Transform - pos: -90.5,-20.5 - parent: 89 - - uid: 18277 + pos: 55.5,-38.5 + parent: 2 + - uid: 5146 components: - type: Transform - pos: -91.5,-20.5 - parent: 89 - - uid: 18278 + pos: 57.5,-37.5 + parent: 2 + - uid: 5147 components: - type: Transform - pos: -92.5,-20.5 - parent: 89 - - uid: 18279 + pos: 57.5,-36.5 + parent: 2 + - uid: 5148 components: - type: Transform - pos: -93.5,-20.5 - parent: 89 - - uid: 18280 + pos: 57.5,-35.5 + parent: 2 + - uid: 5149 components: - type: Transform - pos: -94.5,-20.5 - parent: 89 - - uid: 18281 + pos: 56.5,-16.5 + parent: 2 + - uid: 5150 components: - type: Transform - pos: -95.5,-20.5 - parent: 89 - - uid: 18282 + pos: 55.5,-16.5 + parent: 2 + - uid: 5151 components: - type: Transform - pos: -96.5,-20.5 - parent: 89 - - uid: 18283 + pos: 53.5,-38.5 + parent: 2 + - uid: 5152 components: - type: Transform - pos: -97.5,-20.5 - parent: 89 - - uid: 18284 + pos: 52.5,-38.5 + parent: 2 + - uid: 5153 components: - type: Transform - pos: -98.5,-20.5 - parent: 89 - - uid: 18285 + pos: 51.5,-38.5 + parent: 2 + - uid: 5154 components: - type: Transform - pos: -99.5,-20.5 - parent: 89 - - uid: 18286 + pos: 50.5,-38.5 + parent: 2 + - uid: 5155 components: - type: Transform - pos: -100.5,-20.5 - parent: 89 - - uid: 18287 + pos: 49.5,-38.5 + parent: 2 + - uid: 5156 components: - type: Transform - pos: -101.5,-20.5 - parent: 89 - - uid: 18296 + pos: 48.5,-38.5 + parent: 2 + - uid: 5157 components: - type: Transform - pos: 40.5,-5.5 - parent: 89 - - uid: 18297 + pos: 50.5,-36.5 + parent: 2 + - uid: 5158 components: - type: Transform - pos: 40.5,-4.5 - parent: 89 - - uid: 18298 + pos: 50.5,-35.5 + parent: 2 + - uid: 5159 components: - type: Transform - pos: 40.5,-3.5 - parent: 89 - - uid: 18299 + pos: 47.5,-38.5 + parent: 2 + - uid: 5160 components: - type: Transform - pos: 41.5,-3.5 - parent: 89 - - uid: 18300 + pos: 46.5,-38.5 + parent: 2 + - uid: 5161 components: - type: Transform - pos: 42.5,-3.5 - parent: 89 - - uid: 18301 + pos: 45.5,-38.5 + parent: 2 + - uid: 5162 components: - type: Transform - pos: 43.5,-3.5 - parent: 89 - - uid: 18302 + pos: 44.5,-38.5 + parent: 2 + - uid: 5163 components: - type: Transform - pos: 43.5,-4.5 - parent: 89 - - uid: 18303 + pos: 43.5,-38.5 + parent: 2 + - uid: 5164 components: - type: Transform - pos: 43.5,-5.5 - parent: 89 - - uid: 18304 + pos: 42.5,-38.5 + parent: 2 + - uid: 5165 components: - type: Transform - pos: 43.5,-6.5 - parent: 89 - - uid: 18305 + pos: 41.5,-38.5 + parent: 2 + - uid: 5166 components: - type: Transform - pos: 43.5,-7.5 - parent: 89 - - uid: 18306 + pos: 40.5,-38.5 + parent: 2 + - uid: 5167 components: - type: Transform - pos: 43.5,-8.5 - parent: 89 - - uid: 18307 + pos: 39.5,-38.5 + parent: 2 + - uid: 5168 components: - type: Transform - pos: 42.5,-8.5 - parent: 89 - - uid: 18308 + pos: 38.5,-38.5 + parent: 2 + - uid: 5169 + components: + - type: Transform + pos: 38.5,-37.5 + parent: 2 + - uid: 5170 components: - type: Transform - pos: 41.5,-8.5 - parent: 89 - - uid: 18363 + pos: 38.5,-36.5 + parent: 2 + - uid: 5171 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 18366 + pos: 38.5,-35.5 + parent: 2 + - uid: 5172 components: - type: Transform - pos: 42.5,-11.5 - parent: 89 - - uid: 18367 + pos: 37.5,-35.5 + parent: 2 + - uid: 5173 components: - type: Transform - pos: 42.5,-12.5 - parent: 89 - - uid: 18368 + pos: 48.5,-35.5 + parent: 2 + - uid: 5174 components: - type: Transform - pos: 42.5,-13.5 - parent: 89 - - uid: 18369 + pos: 48.5,-36.5 + parent: 2 + - uid: 5175 components: - type: Transform - pos: 42.5,-14.5 - parent: 89 - - uid: 18370 + pos: 48.5,-37.5 + parent: 2 + - uid: 5176 components: - type: Transform - pos: 42.5,-15.5 - parent: 89 - - uid: 18371 + pos: 48.5,-38.5 + parent: 2 + - uid: 5177 components: - type: Transform - pos: 43.5,-12.5 - parent: 89 - - uid: 18372 + pos: 36.5,-35.5 + parent: 2 + - uid: 5178 components: - type: Transform - pos: 44.5,-12.5 - parent: 89 - - uid: 18373 + pos: 36.5,-34.5 + parent: 2 + - uid: 5179 components: - type: Transform - pos: 45.5,-12.5 - parent: 89 - - uid: 18374 + pos: 36.5,-33.5 + parent: 2 + - uid: 5180 components: - type: Transform - pos: 46.5,-12.5 - parent: 89 - - uid: 18375 + pos: 36.5,-32.5 + parent: 2 + - uid: 5181 components: - type: Transform - pos: 47.5,-12.5 - parent: 89 - - uid: 18376 + pos: 36.5,-31.5 + parent: 2 + - uid: 5182 components: - type: Transform - pos: 48.5,-12.5 - parent: 89 - - uid: 18377 + pos: 48.5,-38.5 + parent: 2 + - uid: 5183 components: - type: Transform - pos: 49.5,-12.5 - parent: 89 - - uid: 18378 + pos: 49.5,-38.5 + parent: 2 + - uid: 5184 components: - type: Transform - pos: 38.5,-13.5 - parent: 89 - - uid: 18379 + pos: 50.5,-38.5 + parent: 2 + - uid: 5185 components: - type: Transform - pos: 50.5,-12.5 - parent: 89 - - uid: 18380 + pos: 51.5,-38.5 + parent: 2 + - uid: 5186 components: - type: Transform - pos: 51.5,-12.5 - parent: 89 - - uid: 18381 + pos: 52.5,-38.5 + parent: 2 + - uid: 5187 components: - type: Transform - pos: 43.5,-15.5 - parent: 89 - - uid: 18382 + pos: 53.5,-38.5 + parent: 2 + - uid: 5188 components: - type: Transform - pos: 44.5,-15.5 - parent: 89 - - uid: 18383 + pos: 37.5,-31.5 + parent: 2 + - uid: 5189 components: - type: Transform - pos: 45.5,-15.5 - parent: 89 - - uid: 18384 + pos: 37.5,-30.5 + parent: 2 + - uid: 5190 components: - type: Transform - pos: 46.5,-15.5 - parent: 89 - - uid: 18385 + pos: 37.5,-29.5 + parent: 2 + - uid: 5191 components: - type: Transform - pos: 47.5,-15.5 - parent: 89 - - uid: 18386 + pos: 37.5,-28.5 + parent: 2 + - uid: 5192 components: - type: Transform - pos: 48.5,-15.5 - parent: 89 - - uid: 18387 + pos: 42.5,-37.5 + parent: 2 + - uid: 5193 components: - type: Transform - pos: 49.5,-15.5 - parent: 89 - - uid: 18389 + pos: 42.5,-35.5 + parent: 2 + - uid: 5194 components: - type: Transform - pos: 50.5,-15.5 - parent: 89 - - uid: 18391 + pos: 42.5,-36.5 + parent: 2 + - uid: 5195 components: - type: Transform - pos: 51.5,-15.5 - parent: 89 - - uid: 18392 + pos: 42.5,-37.5 + parent: 2 + - uid: 5196 components: - type: Transform - pos: 42.5,-16.5 - parent: 89 - - uid: 18649 + pos: 42.5,-38.5 + parent: 2 + - uid: 5197 components: - type: Transform - pos: 0.5,14.5 - parent: 89 - - uid: 19495 + pos: 42.5,-36.5 + parent: 2 + - uid: 5198 components: - type: Transform - pos: 55.5,9.5 - parent: 89 - - uid: 19496 + pos: 42.5,-35.5 + parent: 2 + - uid: 5199 components: - type: Transform - pos: 55.5,10.5 - parent: 89 - - uid: 19497 + pos: 42.5,-38.5 + parent: 2 + - uid: 5200 components: - type: Transform - pos: 62.5,8.5 - parent: 89 - - uid: 19499 + pos: 43.5,-38.5 + parent: 2 + - uid: 5201 components: - type: Transform - pos: 63.5,8.5 - parent: 89 - - uid: 19550 + pos: 44.5,-38.5 + parent: 2 + - uid: 5202 components: - type: Transform - pos: -44.5,11.5 - parent: 89 - - uid: 19589 + pos: 45.5,-38.5 + parent: 2 + - uid: 5203 components: - type: Transform - pos: 31.5,23.5 - parent: 89 - - uid: 19591 + pos: 46.5,-38.5 + parent: 2 + - uid: 5204 components: - type: Transform - pos: 31.5,24.5 - parent: 89 - - uid: 19717 + pos: 41.5,-38.5 + parent: 2 + - uid: 5205 components: - type: Transform - pos: 12.5,26.5 - parent: 89 - - uid: 19719 + pos: 40.5,-38.5 + parent: 2 + - uid: 5206 components: - type: Transform - pos: 11.5,26.5 - parent: 89 - - uid: 19741 + pos: 39.5,-38.5 + parent: 2 + - uid: 5207 components: - type: Transform - pos: -85.5,37.5 - parent: 89 - - uid: 19742 + pos: 38.5,-38.5 + parent: 2 + - uid: 5208 components: - type: Transform - pos: -86.5,37.5 - parent: 89 - - uid: 19743 + pos: 38.5,-38.5 + parent: 2 + - uid: 5209 components: - type: Transform - pos: -85.5,39.5 - parent: 89 - - uid: 19744 + pos: 38.5,-37.5 + parent: 2 + - uid: 5210 components: - type: Transform - pos: -86.5,39.5 - parent: 89 - - uid: 19745 + pos: 38.5,-36.5 + parent: 2 + - uid: 5211 components: - type: Transform - pos: -87.5,39.5 - parent: 89 - - uid: 19746 + pos: 38.5,-35.5 + parent: 2 + - uid: 5212 components: - type: Transform - pos: -87.5,37.5 - parent: 89 - - uid: 19747 + pos: 59.5,-22.5 + parent: 2 + - uid: 5213 components: - type: Transform - pos: -84.5,46.5 - parent: 89 - - uid: 19748 + pos: 60.5,-22.5 + parent: 2 + - uid: 5214 components: - type: Transform - pos: -84.5,47.5 - parent: 89 - - uid: 19769 + pos: 61.5,-22.5 + parent: 2 + - uid: 5215 components: - type: Transform - pos: -128.5,-11.5 - parent: 89 - - uid: 19771 + pos: -126.5,3.5 + parent: 2 + - uid: 5216 components: - type: Transform - pos: 10.5,26.5 - parent: 89 - - uid: 19775 + pos: -125.5,4.5 + parent: 2 + - uid: 5217 components: - type: Transform - pos: -128.5,-12.5 - parent: 89 - - uid: 19786 + pos: -125.5,3.5 + parent: 2 + - uid: 5218 components: - type: Transform - pos: 9.5,26.5 - parent: 89 - - uid: 19787 + pos: -128.5,-2.5 + parent: 2 + - uid: 5219 components: - type: Transform - pos: 8.5,26.5 - parent: 89 - - uid: 19885 + pos: -119.5,14.5 + parent: 2 + - uid: 5220 components: - type: Transform - pos: -15.5,23.5 - parent: 89 - - uid: 19978 + pos: 62.5,9.5 + parent: 2 + - uid: 5221 components: - type: Transform - pos: 24.5,29.5 - parent: 89 - - uid: 19979 + pos: 63.5,8.5 + parent: 2 + - uid: 5222 components: - type: Transform - pos: 24.5,30.5 - parent: 89 - - uid: 19980 + pos: 63.5,5.5 + parent: 2 + - uid: 5223 components: - type: Transform - pos: 24.5,31.5 - parent: 89 - - uid: 19981 + pos: 62.5,5.5 + parent: 2 + - uid: 5224 components: - type: Transform - pos: 24.5,32.5 - parent: 89 - - uid: 19982 + pos: 62.5,4.5 + parent: 2 + - uid: 5225 components: - type: Transform - pos: 24.5,33.5 - parent: 89 - - uid: 19983 + pos: 64.5,8.5 + parent: 2 + - uid: 5226 components: - type: Transform - pos: 24.5,34.5 - parent: 89 - - uid: 19984 + pos: 66.5,10.5 + parent: 2 + - uid: 5227 components: - type: Transform - pos: 24.5,35.5 - parent: 89 - - uid: 19985 + pos: 66.5,13.5 + parent: 2 + - uid: 5228 components: - type: Transform - pos: 24.5,36.5 - parent: 89 - - uid: 19986 + pos: 63.5,10.5 + parent: 2 + - uid: 5229 components: - type: Transform - pos: 24.5,37.5 - parent: 89 - - uid: 19987 + pos: 66.5,12.5 + parent: 2 + - uid: 5230 components: - type: Transform - pos: 24.5,38.5 - parent: 89 - - uid: 19988 + pos: 63.5,3.5 + parent: 2 + - uid: 5231 components: - type: Transform - pos: 24.5,39.5 - parent: 89 - - uid: 19989 + pos: 65.5,10.5 + parent: 2 + - uid: 5232 components: - type: Transform - pos: 24.5,40.5 - parent: 89 - - uid: 19990 + pos: 66.5,11.5 + parent: 2 + - uid: 5233 components: - type: Transform - pos: 23.5,40.5 - parent: 89 - - uid: 19991 + pos: 64.5,1.5 + parent: 2 + - uid: 5234 components: - type: Transform - pos: 23.5,41.5 - parent: 89 - - uid: 19992 + pos: 64.5,3.5 + parent: 2 + - uid: 5235 components: - type: Transform - pos: 23.5,42.5 - parent: 89 - - uid: 19993 + pos: 62.5,8.5 + parent: 2 + - uid: 5236 components: - type: Transform - pos: 24.5,42.5 - parent: 89 - - uid: 20027 + pos: 62.5,3.5 + parent: 2 + - uid: 5237 components: - type: Transform - pos: 23.5,35.5 - parent: 89 - - uid: 20028 + pos: 64.5,-1.5 + parent: 2 + - uid: 5238 components: - type: Transform - pos: 25.5,35.5 - parent: 89 - - uid: 20029 + pos: 64.5,2.5 + parent: 2 + - uid: 5239 components: - type: Transform - pos: 26.5,35.5 - parent: 89 - - uid: 20397 + pos: 65.5,-1.5 + parent: 2 + - uid: 5240 components: - type: Transform - pos: 35.5,26.5 - parent: 89 - - uid: 20398 + pos: 64.5,0.5 + parent: 2 + - uid: 5241 components: - type: Transform - pos: 36.5,26.5 - parent: 89 - - uid: 20399 + pos: 66.5,-1.5 + parent: 2 + - uid: 5242 components: - type: Transform - pos: 37.5,26.5 - parent: 89 - - uid: 20402 + pos: 66.5,-2.5 + parent: 2 + - uid: 5243 components: - type: Transform - pos: 38.5,26.5 - parent: 89 - - uid: 20544 + pos: 65.5,-4.5 + parent: 2 + - uid: 5244 components: - type: Transform - pos: -128.5,-13.5 - parent: 89 - - uid: 20545 + pos: 65.5,-5.5 + parent: 2 + - uid: 5245 components: - type: Transform - pos: -128.5,-14.5 - parent: 89 - - uid: 20546 + pos: 57.5,-7.5 + parent: 2 + - uid: 5246 components: - type: Transform - pos: -128.5,-15.5 - parent: 89 - - uid: 20556 + pos: 62.5,-4.5 + parent: 2 + - uid: 5247 components: - type: Transform - pos: -129.5,-15.5 - parent: 89 - - uid: 20557 + pos: 59.5,-4.5 + parent: 2 + - uid: 5248 components: - type: Transform - pos: -127.5,-15.5 - parent: 89 - - uid: 20827 + pos: 64.5,7.5 + parent: 2 + - uid: 5249 components: - type: Transform - pos: 18.5,15.5 - parent: 89 - - uid: 20834 + pos: 64.5,6.5 + parent: 2 + - uid: 5250 components: - type: Transform - pos: -7.5,16.5 - parent: 89 - - uid: 20836 + pos: 61.5,-4.5 + parent: 2 + - uid: 5251 components: - type: Transform - pos: -6.5,16.5 - parent: 89 - - uid: 20837 + pos: 59.5,-7.5 + parent: 2 + - uid: 5252 components: - type: Transform - pos: -5.5,16.5 - parent: 89 - - uid: 20838 + pos: 62.5,0.5 + parent: 2 + - uid: 5253 components: - type: Transform - pos: -5.5,17.5 - parent: 89 - - uid: 20839 + pos: 62.5,-1.5 + parent: 2 + - uid: 5254 components: - type: Transform - pos: -5.5,18.5 - parent: 89 - - uid: 20840 + pos: 63.5,-1.5 + parent: 2 + - uid: 5255 components: - type: Transform - pos: -6.5,18.5 - parent: 89 - - uid: 20841 + pos: 66.5,-3.5 + parent: 2 + - uid: 5256 components: - type: Transform - pos: -7.5,18.5 - parent: 89 - - uid: 20842 + pos: 66.5,-4.5 + parent: 2 + - uid: 5257 components: - type: Transform - pos: -8.5,18.5 - parent: 89 - - uid: 20843 + pos: 64.5,-5.5 + parent: 2 + - uid: 5258 components: - type: Transform - pos: -9.5,18.5 - parent: 89 - - uid: 20844 + pos: 62.5,-5.5 + parent: 2 + - uid: 5259 components: - type: Transform - pos: -10.5,18.5 - parent: 89 - - uid: 20845 + pos: 56.5,-7.5 + parent: 2 + - uid: 5260 components: - type: Transform - pos: -4.5,18.5 - parent: 89 - - uid: 20846 + pos: 59.5,-6.5 + parent: 2 + - uid: 5261 components: - type: Transform - pos: -3.5,18.5 - parent: 89 - - uid: 20847 + pos: 59.5,-5.5 + parent: 2 + - uid: 5262 components: - type: Transform - pos: -2.5,18.5 - parent: 89 - - uid: 20848 + pos: 60.5,-4.5 + parent: 2 + - uid: 5263 components: - type: Transform - pos: -1.5,18.5 - parent: 89 - - uid: 20849 + pos: 55.5,-7.5 + parent: 2 + - uid: 5264 components: - type: Transform - pos: -0.5,18.5 - parent: 89 - - uid: 20850 + pos: 54.5,-7.5 + parent: 2 + - uid: 5265 components: - type: Transform - pos: -0.5,17.5 - parent: 89 - - uid: 20851 + pos: 63.5,0.5 + parent: 2 + - uid: 5266 components: - type: Transform - pos: -0.5,16.5 - parent: 89 - - uid: 20852 + pos: 63.5,-5.5 + parent: 2 + - uid: 5267 components: - type: Transform - pos: -46.5,24.5 - parent: 89 - - uid: 20933 + pos: 48.5,18.5 + parent: 2 + - uid: 5268 components: - type: Transform - pos: 37.5,19.5 - parent: 89 - - uid: 20937 + pos: 64.5,5.5 + parent: 2 + - uid: 5269 components: - type: Transform - pos: 38.5,19.5 - parent: 89 - - uid: 20938 + pos: 58.5,-7.5 + parent: 2 + - uid: 5270 components: - type: Transform - pos: 39.5,19.5 - parent: 89 - - uid: 20939 + pos: 58.5,16.5 + parent: 2 + - uid: 5271 components: - type: Transform - pos: 40.5,19.5 - parent: 89 - - uid: 20940 + pos: 59.5,16.5 + parent: 2 + - uid: 5272 components: - type: Transform - pos: 0.5,16.5 - parent: 89 - - uid: 20941 + pos: 59.5,15.5 + parent: 2 + - uid: 5273 components: - type: Transform - pos: 41.5,19.5 - parent: 89 - - uid: 20944 + pos: 60.5,13.5 + parent: 2 + - uid: 5274 components: - type: Transform - pos: 42.5,19.5 - parent: 89 - - uid: 20959 + pos: 61.5,13.5 + parent: 2 + - uid: 5275 components: - type: Transform - pos: 1.5,16.5 - parent: 89 - - uid: 20960 + pos: 62.5,13.5 + parent: 2 + - uid: 5276 components: - type: Transform - pos: 2.5,16.5 - parent: 89 - - uid: 20961 + pos: 63.5,14.5 + parent: 2 + - uid: 5277 components: - type: Transform - pos: -0.5,19.5 - parent: 89 - - uid: 20971 + pos: 62.5,14.5 + parent: 2 + - uid: 5278 components: - type: Transform - pos: -0.5,20.5 - parent: 89 - - uid: 20975 + pos: 65.5,14.5 + parent: 2 + - uid: 5279 components: - type: Transform - pos: 0.5,20.5 - parent: 89 - - uid: 20976 + pos: 65.5,13.5 + parent: 2 + - uid: 5280 components: - type: Transform - pos: 1.5,20.5 - parent: 89 - - uid: 21002 + pos: 49.5,18.5 + parent: 2 + - uid: 5281 components: - type: Transform - pos: 47.5,16.5 - parent: 89 - - uid: 21003 + pos: 64.5,14.5 + parent: 2 + - uid: 5282 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21004 + pos: 52.5,14.5 + parent: 2 + - uid: 5283 components: - type: Transform - pos: 47.5,18.5 - parent: 89 - - uid: 21005 + pos: 47.5,20.5 + parent: 2 + - uid: 5284 components: - type: Transform - pos: 47.5,19.5 - parent: 89 - - uid: 21006 + pos: 52.5,11.5 + parent: 2 + - uid: 5285 components: - type: Transform - pos: 47.5,20.5 - parent: 89 - - uid: 21007 + pos: 52.5,12.5 + parent: 2 + - uid: 5286 components: - type: Transform - pos: 48.5,20.5 - parent: 89 - - uid: 21266 + pos: 52.5,13.5 + parent: 2 + - uid: 5287 components: - type: Transform - pos: 2.5,20.5 - parent: 89 - - uid: 21303 + pos: 48.5,21.5 + parent: 2 + - uid: 5288 components: - type: Transform - pos: -1.5,16.5 - parent: 89 - - uid: 21304 + pos: 47.5,21.5 + parent: 2 + - uid: 5289 components: - type: Transform - pos: -1.5,20.5 - parent: 89 - - uid: 21305 + pos: 55.5,16.5 + parent: 2 + - uid: 5290 components: - type: Transform - pos: -5.5,19.5 - parent: 89 - - uid: 21306 + pos: 59.5,14.5 + parent: 2 + - uid: 5291 components: - type: Transform - pos: -5.5,20.5 - parent: 89 - - uid: 21317 + pos: 52.5,16.5 + parent: 2 + - uid: 5292 components: - type: Transform - pos: 50.5,-30.5 - parent: 89 - - uid: 21394 + pos: 53.5,16.5 + parent: 2 + - uid: 5293 components: - type: Transform - pos: 14.5,19.5 - parent: 89 - - uid: 21402 + pos: 54.5,16.5 + parent: 2 + - uid: 5294 components: - type: Transform - pos: 15.5,19.5 - parent: 89 - - uid: 21406 + pos: 52.5,15.5 + parent: 2 + - uid: 5295 components: - type: Transform - pos: 14.5,20.5 - parent: 89 - - uid: 21446 + pos: 57.5,16.5 + parent: 2 + - uid: 5296 components: - type: Transform - pos: 37.5,21.5 - parent: 89 - - uid: 21447 + pos: 62.5,-0.5 + parent: 2 + - uid: 5297 components: - type: Transform - pos: 37.5,20.5 - parent: 89 - - uid: 21472 + pos: 56.5,16.5 + parent: 2 + - uid: 5298 components: - type: Transform - pos: 14.5,21.5 - parent: 89 - - uid: 21476 + pos: -0.5,2.5 + parent: 2 + - uid: 5299 components: - type: Transform - pos: 14.5,22.5 - parent: 89 - - uid: 21477 + pos: 54.5,-6.5 + parent: 2 + - uid: 5300 components: - type: Transform - pos: 15.5,22.5 - parent: 89 - - uid: 21481 + pos: 53.5,-6.5 + parent: 2 + - uid: 5301 components: - type: Transform - pos: 16.5,22.5 - parent: 89 - - uid: 21482 + pos: -0.5,-0.5 + parent: 2 + - uid: 5302 components: - type: Transform - pos: 17.5,22.5 - parent: 89 - - uid: 21483 + pos: -0.5,-2.5 + parent: 2 + - uid: 5303 components: - type: Transform - pos: 18.5,22.5 - parent: 89 - - uid: 21509 + pos: -0.5,-6.5 + parent: 2 + - uid: 5304 components: - type: Transform - pos: -45.5,24.5 - parent: 89 - - uid: 21510 + pos: -0.5,-3.5 + parent: 2 + - uid: 5305 components: - type: Transform - pos: -44.5,24.5 - parent: 89 - - uid: 21511 + pos: -0.5,-12.5 + parent: 2 + - uid: 5306 components: - type: Transform - pos: -43.5,24.5 - parent: 89 - - uid: 21512 + pos: -0.5,-8.5 + parent: 2 + - uid: 5307 components: - type: Transform - pos: -42.5,24.5 - parent: 89 - - uid: 21526 + pos: -0.5,-7.5 + parent: 2 + - uid: 5308 components: - type: Transform - pos: 19.5,22.5 - parent: 89 - - uid: 21527 + pos: -0.5,-10.5 + parent: 2 + - uid: 5309 components: - type: Transform - pos: 13.5,22.5 - parent: 89 - - uid: 21528 + pos: -0.5,-1.5 + parent: 2 + - uid: 5310 components: - type: Transform - pos: 12.5,22.5 - parent: 89 - - uid: 21530 + pos: -0.5,-9.5 + parent: 2 + - uid: 5311 components: - type: Transform - pos: 11.5,22.5 - parent: 89 - - uid: 21531 + pos: -0.5,-4.5 + parent: 2 + - uid: 5312 components: - type: Transform - pos: 10.5,22.5 - parent: 89 - - uid: 21532 + pos: -0.5,-11.5 + parent: 2 + - uid: 5313 components: - type: Transform - pos: 9.5,22.5 - parent: 89 - - uid: 21533 + pos: -0.5,-5.5 + parent: 2 + - uid: 5314 components: - type: Transform - pos: 8.5,22.5 - parent: 89 - - uid: 21534 + pos: 62.5,10.5 + parent: 2 + - uid: 5315 components: - type: Transform - pos: 7.5,22.5 - parent: 89 - - uid: 21535 + pos: 64.5,10.5 + parent: 2 + - uid: 5316 components: - type: Transform - pos: 6.5,22.5 - parent: 89 - - uid: 21537 + pos: 59.5,13.5 + parent: 2 + - uid: 5317 components: - type: Transform - pos: 6.5,23.5 - parent: 89 - - uid: 21538 + pos: 49.5,17.5 + parent: 2 + - uid: 5318 components: - type: Transform - pos: 11.5,23.5 - parent: 89 - - uid: 21539 + pos: -0.5,1.5 + parent: 2 + - uid: 5319 components: - type: Transform - pos: 6.5,21.5 - parent: 89 - - uid: 21540 + pos: -0.5,0.5 + parent: 2 + - uid: 5320 components: - type: Transform - pos: 18.5,16.5 - parent: 89 - - uid: 21607 + pos: 52.5,-0.5 + parent: 2 + - uid: 5321 components: - type: Transform - pos: 13.5,23.5 - parent: 89 - - uid: 21639 + pos: 15.5,-12.5 + parent: 2 + - uid: 5322 components: - type: Transform - pos: 1.5,-3.5 - parent: 21627 - - uid: 21640 + pos: 16.5,-13.5 + parent: 2 + - uid: 5323 components: - type: Transform - pos: 1.5,-2.5 - parent: 21627 - - uid: 21641 + pos: -11.5,-27.5 + parent: 2 + - uid: 5324 components: - type: Transform - pos: 0.5,-2.5 - parent: 21627 - - uid: 21642 + pos: -40.5,-9.5 + parent: 2 + - uid: 5325 components: - type: Transform - pos: -0.5,-2.5 - parent: 21627 - - uid: 21643 + pos: -40.5,-10.5 + parent: 2 + - uid: 5326 components: - type: Transform - pos: 0.5,-1.5 - parent: 21627 - - uid: 21644 + pos: -40.5,-7.5 + parent: 2 + - uid: 5327 components: - type: Transform - pos: 0.5,-0.5 - parent: 21627 - - uid: 21645 + pos: -12.5,-24.5 + parent: 2 + - uid: 5328 components: - type: Transform - pos: -0.5,-0.5 - parent: 21627 - - uid: 21646 + pos: -40.5,-8.5 + parent: 2 + - uid: 5329 components: - type: Transform - pos: 1.5,-0.5 - parent: 21627 - - uid: 21647 + pos: -40.5,-11.5 + parent: 2 + - uid: 5330 components: - type: Transform - pos: 0.5,-3.5 - parent: 21627 - - uid: 21648 + pos: -40.5,-12.5 + parent: 2 + - uid: 5331 components: - type: Transform - pos: 0.5,-4.5 - parent: 21627 - - uid: 21649 + pos: -39.5,-12.5 + parent: 2 + - uid: 5332 components: - type: Transform - pos: 0.5,-5.5 - parent: 21627 - - uid: 21650 + pos: -38.5,-12.5 + parent: 2 + - uid: 5333 components: - type: Transform - pos: 0.5,-6.5 - parent: 21627 - - uid: 21651 + pos: -37.5,-12.5 + parent: 2 + - uid: 5334 components: - type: Transform - pos: -0.5,-4.5 - parent: 21627 - - uid: 21652 + pos: -36.5,-12.5 + parent: 2 + - uid: 5335 components: - type: Transform - pos: 1.5,-4.5 - parent: 21627 - - uid: 21653 + pos: -35.5,-12.5 + parent: 2 + - uid: 5336 components: - type: Transform - pos: -0.5,-6.5 - parent: 21627 - - uid: 21654 + pos: -34.5,-12.5 + parent: 2 + - uid: 5337 components: - type: Transform - pos: 1.5,-6.5 - parent: 21627 - - uid: 21815 + pos: -33.5,-12.5 + parent: 2 + - uid: 5338 components: - type: Transform - pos: 51.5,-26.5 - parent: 89 - - uid: 22072 + pos: -32.5,-12.5 + parent: 2 + - uid: 5339 components: - type: Transform - pos: -132.5,-8.5 - parent: 89 - - uid: 22073 + pos: -31.5,-12.5 + parent: 2 + - uid: 5340 components: - type: Transform - pos: -132.5,-9.5 - parent: 89 - - uid: 22074 + pos: -30.5,-12.5 + parent: 2 + - uid: 5341 components: - type: Transform - pos: -132.5,-10.5 - parent: 89 - - uid: 22075 + pos: -29.5,-12.5 + parent: 2 + - uid: 5342 components: - type: Transform - pos: -132.5,-11.5 - parent: 89 - - uid: 22076 + pos: -28.5,-12.5 + parent: 2 + - uid: 5343 components: - type: Transform - pos: -132.5,-12.5 - parent: 89 - - uid: 22077 + pos: -27.5,-12.5 + parent: 2 + - uid: 5344 components: - type: Transform - pos: -133.5,-7.5 - parent: 89 - - uid: 22078 + pos: -26.5,-12.5 + parent: 2 + - uid: 5345 components: - type: Transform - pos: -134.5,-7.5 - parent: 89 - - uid: 22079 + pos: -25.5,-12.5 + parent: 2 + - uid: 5346 components: - type: Transform - pos: -135.5,-7.5 - parent: 89 - - uid: 22080 + pos: -24.5,-12.5 + parent: 2 + - uid: 5347 components: - type: Transform - pos: -131.5,-7.5 - parent: 89 - - uid: 22216 + pos: -23.5,-12.5 + parent: 2 + - uid: 5348 components: - type: Transform - pos: 45.5,-27.5 - parent: 89 - - uid: 22260 + pos: -22.5,-12.5 + parent: 2 + - uid: 5349 components: - type: Transform - pos: 37.5,-18.5 - parent: 89 - - uid: 22261 + pos: -21.5,-12.5 + parent: 2 + - uid: 5350 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 22262 + pos: -20.5,-12.5 + parent: 2 + - uid: 5351 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 22263 + pos: -19.5,-12.5 + parent: 2 + - uid: 5352 components: - type: Transform - pos: 38.5,-19.5 - parent: 89 - - uid: 22264 + pos: -18.5,-12.5 + parent: 2 + - uid: 5353 components: - type: Transform - pos: 38.5,-20.5 - parent: 89 - - uid: 22265 + pos: -17.5,-12.5 + parent: 2 + - uid: 5354 components: - type: Transform - pos: 38.5,-20.5 - parent: 89 - - uid: 22266 + pos: -16.5,-12.5 + parent: 2 + - uid: 5355 components: - type: Transform - pos: 37.5,-20.5 - parent: 89 - - uid: 22267 + pos: -15.5,-12.5 + parent: 2 + - uid: 5356 components: - type: Transform - pos: 36.5,-20.5 - parent: 89 - - uid: 22268 + pos: -14.5,-12.5 + parent: 2 + - uid: 5357 components: - type: Transform - pos: 35.5,-20.5 - parent: 89 - - uid: 22269 + pos: -13.5,-12.5 + parent: 2 + - uid: 5358 components: - type: Transform - pos: 39.5,-20.5 - parent: 89 - - uid: 22270 + pos: -12.5,-12.5 + parent: 2 + - uid: 5359 components: - type: Transform - pos: 39.5,-21.5 - parent: 89 - - uid: 22271 + pos: -11.5,-12.5 + parent: 2 + - uid: 5360 components: - type: Transform - pos: 39.5,-22.5 - parent: 89 - - uid: 22272 + pos: -10.5,-12.5 + parent: 2 + - uid: 5361 components: - type: Transform - pos: 39.5,-23.5 - parent: 89 - - uid: 22273 + pos: -9.5,-12.5 + parent: 2 + - uid: 5362 components: - type: Transform - pos: 39.5,-24.5 - parent: 89 - - uid: 22274 + pos: -8.5,-12.5 + parent: 2 + - uid: 5363 components: - type: Transform - pos: 39.5,-25.5 - parent: 89 - - uid: 22275 + pos: -7.5,-12.5 + parent: 2 + - uid: 5364 components: - type: Transform - pos: 39.5,-26.5 - parent: 89 - - uid: 22276 + pos: -6.5,-12.5 + parent: 2 + - uid: 5365 components: - type: Transform - pos: 40.5,-20.5 - parent: 89 - - uid: 22277 + pos: -5.5,-12.5 + parent: 2 + - uid: 5366 components: - type: Transform - pos: 41.5,-20.5 - parent: 89 - - uid: 22278 + pos: -4.5,-12.5 + parent: 2 + - uid: 5367 components: - type: Transform - pos: 42.5,-20.5 - parent: 89 - - uid: 22279 + pos: -3.5,-12.5 + parent: 2 + - uid: 5368 components: - type: Transform - pos: 43.5,-20.5 - parent: 89 - - uid: 22280 + pos: -2.5,-12.5 + parent: 2 + - uid: 5369 components: - type: Transform - pos: 44.5,-20.5 - parent: 89 - - uid: 22281 + pos: -121.5,2.5 + parent: 2 + - uid: 5370 components: - type: Transform - pos: 45.5,-20.5 - parent: 89 - - uid: 22282 + pos: -121.5,1.5 + parent: 2 + - uid: 5371 components: - type: Transform - pos: 42.5,-19.5 - parent: 89 - - uid: 22283 + pos: -121.5,-0.5 + parent: 2 + - uid: 5372 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 22284 + pos: -121.5,6.5 + parent: 2 + - uid: 5373 components: - type: Transform - pos: 39.5,-18.5 - parent: 89 - - uid: 22285 + pos: -123.5,14.5 + parent: 2 + - uid: 5374 components: - type: Transform - pos: 39.5,-17.5 - parent: 89 - - uid: 22286 + pos: -123.5,16.5 + parent: 2 + - uid: 5375 components: - type: Transform - pos: 39.5,-16.5 - parent: 89 - - uid: 22287 + pos: -129.5,14.5 + parent: 2 + - uid: 5376 components: - type: Transform - pos: 39.5,-15.5 - parent: 89 - - uid: 22288 + pos: -129.5,15.5 + parent: 2 + - uid: 5377 components: - type: Transform - pos: 45.5,-21.5 - parent: 89 - - uid: 22289 + pos: -129.5,16.5 + parent: 2 + - uid: 5378 components: - type: Transform - pos: 45.5,-22.5 - parent: 89 - - uid: 22290 + pos: -130.5,16.5 + parent: 2 + - uid: 5379 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22291 + pos: -118.5,9.5 + parent: 2 + - uid: 5380 components: - type: Transform - pos: 45.5,-24.5 - parent: 89 - - uid: 22292 + pos: -119.5,9.5 + parent: 2 + - uid: 5381 components: - type: Transform - pos: 45.5,-25.5 - parent: 89 - - uid: 22293 + pos: -117.5,9.5 + parent: 2 + - uid: 5382 components: - type: Transform - pos: 45.5,-26.5 - parent: 89 - - uid: 22294 + pos: -82.5,-2.5 + parent: 2 + - uid: 5383 components: - type: Transform - pos: 49.5,-30.5 - parent: 89 - - uid: 22295 + pos: -125.5,17.5 + parent: 2 + - uid: 5384 components: - type: Transform - pos: 45.5,-28.5 - parent: 89 - - uid: 22296 + pos: -124.5,17.5 + parent: 2 + - uid: 5385 components: - type: Transform - pos: 45.5,-29.5 - parent: 89 - - uid: 22297 + pos: -121.5,14.5 + parent: 2 + - uid: 5386 components: - type: Transform - pos: 45.5,-29.5 - parent: 89 - - uid: 22298 + pos: -130.5,13.5 + parent: 2 + - uid: 5387 components: - type: Transform - pos: 44.5,-29.5 - parent: 89 - - uid: 22299 + pos: -120.5,14.5 + parent: 2 + - uid: 5388 components: - type: Transform - pos: 43.5,-29.5 - parent: 89 - - uid: 22300 + pos: -123.5,17.5 + parent: 2 + - uid: 5389 components: - type: Transform - pos: 42.5,-29.5 - parent: 89 - - uid: 22301 + pos: -121.5,16.5 + parent: 2 + - uid: 5390 components: - type: Transform - pos: 41.5,-29.5 - parent: 89 - - uid: 22302 + pos: -122.5,17.5 + parent: 2 + - uid: 5391 components: - type: Transform - pos: 40.5,-29.5 - parent: 89 - - uid: 22303 + pos: -111.5,20.5 + parent: 2 + - uid: 5392 components: - type: Transform - pos: 44.5,-25.5 - parent: 89 - - uid: 22304 + pos: -121.5,-1.5 + parent: 2 + - uid: 5393 components: - type: Transform - pos: 43.5,-25.5 - parent: 89 - - uid: 22305 + pos: -121.5,7.5 + parent: 2 + - uid: 5394 components: - type: Transform - pos: 42.5,-25.5 - parent: 89 - - uid: 22306 + pos: -116.5,20.5 + parent: 2 + - uid: 5395 components: - type: Transform - pos: 44.5,-22.5 - parent: 89 - - uid: 22307 + pos: -113.5,21.5 + parent: 2 + - uid: 5396 components: - type: Transform - pos: 43.5,-22.5 - parent: 89 - - uid: 22308 + pos: -116.5,19.5 + parent: 2 + - uid: 5397 components: - type: Transform - pos: 42.5,-22.5 - parent: 89 - - uid: 22316 + pos: -114.5,21.5 + parent: 2 + - uid: 5398 components: - type: Transform - pos: 45.5,-30.5 - parent: 89 - - uid: 22317 + pos: -115.5,17.5 + parent: 2 + - uid: 5399 components: - type: Transform - pos: 45.5,-31.5 - parent: 89 - - uid: 22318 + pos: -113.5,17.5 + parent: 2 + - uid: 5400 components: - type: Transform - pos: 45.5,-32.5 - parent: 89 - - uid: 22319 + pos: -114.5,25.5 + parent: 2 + - uid: 5401 components: - type: Transform - pos: 45.5,-33.5 - parent: 89 - - uid: 22320 + pos: -112.5,22.5 + parent: 2 + - uid: 5402 components: - type: Transform - pos: 44.5,-32.5 - parent: 89 - - uid: 22321 + pos: -117.5,26.5 + parent: 2 + - uid: 5403 components: - type: Transform - pos: 43.5,-32.5 - parent: 89 - - uid: 22322 + pos: -118.5,25.5 + parent: 2 + - uid: 5404 components: - type: Transform - pos: 42.5,-32.5 - parent: 89 - - uid: 22323 + pos: -116.5,26.5 + parent: 2 + - uid: 5405 components: - type: Transform - pos: 41.5,-32.5 - parent: 89 - - uid: 22324 + pos: -118.5,24.5 + parent: 2 + - uid: 5406 components: - type: Transform - pos: 40.5,-32.5 - parent: 89 - - uid: 22325 + pos: -117.5,25.5 + parent: 2 + - uid: 5407 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 22326 + pos: -116.5,18.5 + parent: 2 + - uid: 5408 components: - type: Transform - pos: 51.5,-23.5 - parent: 89 - - uid: 22327 + pos: -113.5,25.5 + parent: 2 + - uid: 5409 components: - type: Transform - pos: 50.5,-23.5 - parent: 89 - - uid: 22328 + pos: -114.5,26.5 + parent: 2 + - uid: 5410 components: - type: Transform - pos: 49.5,-23.5 - parent: 89 - - uid: 22329 + pos: -115.5,26.5 + parent: 2 + - uid: 5411 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 - - uid: 22330 + pos: -112.5,17.5 + parent: 2 + - uid: 5412 components: - type: Transform - pos: 47.5,-23.5 - parent: 89 - - uid: 22331 + pos: -114.5,17.5 + parent: 2 + - uid: 5413 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 - - uid: 22332 + pos: -116.5,17.5 + parent: 2 + - uid: 5414 components: - type: Transform - pos: 48.5,-22.5 - parent: 89 - - uid: 22333 + pos: -116.5,21.5 + parent: 2 + - uid: 5415 components: - type: Transform - pos: 48.5,-21.5 - parent: 89 - - uid: 22334 + pos: -115.5,21.5 + parent: 2 + - uid: 5416 components: - type: Transform - pos: 48.5,-20.5 - parent: 89 - - uid: 22335 + pos: -122.5,-1.5 + parent: 2 + - uid: 5417 components: - type: Transform - pos: 48.5,-19.5 - parent: 89 - - uid: 22336 + pos: -123.5,-1.5 + parent: 2 + - uid: 5418 components: - type: Transform - pos: 48.5,-18.5 - parent: 89 - - uid: 22337 + pos: -112.5,21.5 + parent: 2 + - uid: 5419 components: - type: Transform - pos: 51.5,-22.5 - parent: 89 - - uid: 22338 + pos: -125.5,16.5 + parent: 2 + - uid: 5420 components: - type: Transform - pos: 51.5,-21.5 - parent: 89 - - uid: 22339 + pos: -123.5,15.5 + parent: 2 + - uid: 5421 components: - type: Transform - pos: 51.5,-20.5 - parent: 89 - - uid: 22340 + pos: -124.5,15.5 + parent: 2 + - uid: 5422 components: - type: Transform - pos: 51.5,-19.5 - parent: 89 - - uid: 22341 + pos: -121.5,0.5 + parent: 2 + - uid: 5423 components: - type: Transform - pos: 51.5,-18.5 - parent: 89 - - uid: 22342 + pos: -112.5,20.5 + parent: 2 + - uid: 5424 components: - type: Transform - pos: 52.5,-20.5 - parent: 89 - - uid: 22343 + pos: -125.5,15.5 + parent: 2 + - uid: 5425 components: - type: Transform - pos: 53.5,-20.5 - parent: 89 - - uid: 22344 + pos: -114.5,9.5 + parent: 2 + - uid: 5426 components: - type: Transform - pos: 53.5,-23.5 - parent: 89 - - uid: 22346 + pos: -115.5,9.5 + parent: 2 + - uid: 5427 components: - type: Transform - pos: 52.5,-25.5 - parent: 89 - - uid: 22348 + pos: -112.5,9.5 + parent: 2 + - uid: 5428 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 22349 + pos: -113.5,9.5 + parent: 2 + - uid: 5429 components: - type: Transform - pos: 52.5,-22.5 - parent: 89 - - uid: 22350 + pos: -102.5,25.5 + parent: 2 + - uid: 5430 components: - type: Transform - pos: 53.5,-25.5 - parent: 89 - - uid: 22352 + pos: -103.5,25.5 + parent: 2 + - uid: 5431 components: - type: Transform - pos: 53.5,-23.5 - parent: 89 - - uid: 22353 + pos: -104.5,25.5 + parent: 2 + - uid: 5432 components: - type: Transform - pos: 51.5,-29.5 - parent: 89 - - uid: 22354 + pos: -105.5,25.5 + parent: 2 + - uid: 5433 components: - type: Transform - pos: 54.5,-25.5 - parent: 89 - - uid: 22356 + pos: -106.5,25.5 + parent: 2 + - uid: 5434 components: - type: Transform - pos: 51.5,-27.5 - parent: 89 - - uid: 22357 + pos: -107.5,25.5 + parent: 2 + - uid: 5435 components: - type: Transform - pos: 51.5,-28.5 - parent: 89 - - uid: 22358 + pos: -108.5,25.5 + parent: 2 + - uid: 5436 components: - type: Transform - pos: 55.5,-25.5 - parent: 89 - - uid: 22360 + pos: -109.5,25.5 + parent: 2 + - uid: 5437 components: - type: Transform - pos: 51.5,-24.5 - parent: 89 - - uid: 22362 + pos: -110.5,25.5 + parent: 2 + - uid: 5438 components: - type: Transform - pos: 51.5,-30.5 - parent: 89 - - uid: 22363 + pos: -111.5,25.5 + parent: 2 + - uid: 5439 components: - type: Transform - pos: 50.5,-25.5 - parent: 89 - - uid: 22364 + pos: -112.5,25.5 + parent: 2 + - uid: 5440 components: - type: Transform - pos: 49.5,-25.5 - parent: 89 - - uid: 22365 + pos: -112.5,23.5 + parent: 2 + - uid: 5441 components: - type: Transform - pos: 48.5,-25.5 - parent: 89 - - uid: 22366 + pos: -111.5,23.5 + parent: 2 + - uid: 5442 components: - type: Transform - pos: 47.5,-25.5 - parent: 89 - - uid: 22367 + pos: -110.5,23.5 + parent: 2 + - uid: 5443 components: - type: Transform - pos: 48.5,-26.5 - parent: 89 - - uid: 22368 + pos: -109.5,23.5 + parent: 2 + - uid: 5444 components: - type: Transform - pos: 48.5,-27.5 - parent: 89 - - uid: 22369 + pos: -108.5,23.5 + parent: 2 + - uid: 5445 components: - type: Transform - pos: 48.5,-28.5 - parent: 89 - - uid: 22371 + pos: -107.5,23.5 + parent: 2 + - uid: 5446 components: - type: Transform - pos: 47.5,-27.5 - parent: 89 - - uid: 22372 + pos: -106.5,23.5 + parent: 2 + - uid: 5447 components: - type: Transform - pos: 46.5,-25.5 - parent: 89 - - uid: 22373 + pos: -105.5,23.5 + parent: 2 + - uid: 5448 components: - type: Transform - pos: 48.5,-30.5 - parent: 89 - - uid: 22374 + pos: -104.5,23.5 + parent: 2 + - uid: 5449 components: - type: Transform - pos: 47.5,-30.5 - parent: 89 - - uid: 22375 + pos: -103.5,23.5 + parent: 2 + - uid: 5450 components: - type: Transform - pos: 49.5,-31.5 - parent: 89 - - uid: 22376 + pos: -102.5,23.5 + parent: 2 + - uid: 5451 components: - type: Transform - pos: 49.5,-32.5 - parent: 89 - - uid: 22377 + pos: -107.5,24.5 + parent: 2 + - uid: 5452 components: - type: Transform - pos: 49.5,-33.5 - parent: 89 - - uid: 22378 + pos: -112.5,27.5 + parent: 2 + - uid: 5453 components: - type: Transform - pos: 47.5,-31.5 - parent: 89 - - uid: 22379 + pos: -111.5,27.5 + parent: 2 + - uid: 5454 components: - type: Transform - pos: 47.5,-32.5 - parent: 89 - - uid: 22380 + pos: -110.5,27.5 + parent: 2 + - uid: 5455 components: - type: Transform - pos: 47.5,-33.5 - parent: 89 - - uid: 22381 + pos: -109.5,27.5 + parent: 2 + - uid: 5456 components: - type: Transform - pos: 51.5,-31.5 - parent: 89 - - uid: 22382 + pos: -108.5,27.5 + parent: 2 + - uid: 5457 components: - type: Transform - pos: 51.5,-32.5 - parent: 89 - - uid: 22383 + pos: -107.5,27.5 + parent: 2 + - uid: 5458 components: - type: Transform - pos: 51.5,-33.5 - parent: 89 - - uid: 22384 + pos: -106.5,27.5 + parent: 2 + - uid: 5459 components: - type: Transform - pos: 53.5,-30.5 - parent: 89 - - uid: 22385 + pos: -105.5,27.5 + parent: 2 + - uid: 5460 components: - type: Transform - pos: 53.5,-31.5 - parent: 89 - - uid: 22386 + pos: -104.5,27.5 + parent: 2 + - uid: 5461 components: - type: Transform - pos: 53.5,-32.5 - parent: 89 - - uid: 22387 + pos: -103.5,27.5 + parent: 2 + - uid: 5462 components: - type: Transform - pos: 53.5,-33.5 - parent: 89 - - uid: 22388 + pos: -102.5,27.5 + parent: 2 + - uid: 5463 components: - type: Transform - pos: 52.5,-30.5 - parent: 89 - - uid: 22389 + pos: -133.5,-10.5 + parent: 2 + - uid: 5464 components: - type: Transform - pos: 54.5,-30.5 - parent: 89 - - uid: 22390 + pos: -135.5,-8.5 + parent: 2 + - uid: 5465 components: - type: Transform - pos: 55.5,-30.5 - parent: 89 - - uid: 22391 + pos: -135.5,-6.5 + parent: 2 + - uid: 5466 components: - type: Transform - pos: 56.5,-30.5 - parent: 89 - - uid: 22392 + pos: -135.5,-7.5 + parent: 2 + - uid: 5467 components: - type: Transform - pos: 56.5,-31.5 - parent: 89 - - uid: 22393 + pos: -115.5,-11.5 + parent: 2 + - uid: 5468 components: - type: Transform - pos: 56.5,-32.5 - parent: 89 - - uid: 22394 + pos: -115.5,-13.5 + parent: 2 + - uid: 5469 components: - type: Transform - pos: 56.5,-33.5 - parent: 89 - - uid: 22395 + pos: -82.5,-11.5 + parent: 2 + - uid: 5470 components: - type: Transform - pos: 56.5,-29.5 - parent: 89 - - uid: 22396 + pos: -135.5,-9.5 + parent: 2 + - uid: 5471 components: - type: Transform - pos: 56.5,-28.5 - parent: 89 - - uid: 22397 + pos: -135.5,-10.5 + parent: 2 + - uid: 5472 components: - type: Transform - pos: 56.5,-27.5 - parent: 89 - - uid: 22398 + pos: -135.5,-11.5 + parent: 2 + - uid: 5473 components: - type: Transform - pos: 57.5,-27.5 - parent: 89 - - uid: 22399 + pos: -135.5,-5.5 + parent: 2 + - uid: 5474 components: - type: Transform - pos: 57.5,-26.5 - parent: 89 - - uid: 22400 + pos: -135.5,-4.5 + parent: 2 + - uid: 5475 components: - type: Transform - pos: 57.5,-25.5 - parent: 89 - - uid: 22401 + pos: -135.5,-3.5 + parent: 2 + - uid: 5476 components: - type: Transform - pos: 57.5,-24.5 - parent: 89 - - uid: 22402 + pos: -134.5,-4.5 + parent: 2 + - uid: 5477 components: - type: Transform - pos: 57.5,-29.5 - parent: 89 - - uid: 22403 + pos: -134.5,-10.5 + parent: 2 + - uid: 5478 components: - type: Transform - pos: 58.5,-29.5 - parent: 89 - - uid: 22415 + pos: -135.5,-2.5 + parent: 2 + - uid: 5479 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22416 + pos: -133.5,-7.5 + parent: 2 + - uid: 5480 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 22417 + pos: -132.5,-7.5 + parent: 2 + - uid: 5481 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 22418 + pos: -133.5,-4.5 + parent: 2 + - uid: 5482 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 22419 + pos: -132.5,-4.5 + parent: 2 + - uid: 5483 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 22423 + pos: -132.5,-10.5 + parent: 2 + - uid: 5484 components: - type: Transform - pos: -133.5,-6.5 - parent: 89 - - uid: 22424 + pos: -132.5,-9.5 + parent: 2 + - uid: 5485 components: - type: Transform - pos: -133.5,-5.5 - parent: 89 - - uid: 22425 + pos: -132.5,-8.5 + parent: 2 + - uid: 5486 components: - type: Transform - pos: -133.5,-4.5 - parent: 89 - - uid: 22426 + pos: -132.5,-5.5 + parent: 2 + - uid: 5487 components: - type: Transform - pos: -133.5,-3.5 - parent: 89 - - uid: 22427 + pos: -132.5,-6.5 + parent: 2 + - uid: 5488 components: - type: Transform - pos: -134.5,-10.5 - parent: 89 - - uid: 22428 + pos: -131.5,-12.5 + parent: 2 + - uid: 5489 components: - type: Transform - pos: -133.5,-10.5 - parent: 89 - - uid: 22430 + pos: -129.5,-10.5 + parent: 2 + - uid: 5490 components: - type: Transform - pos: 52.5,-28.5 - parent: 89 - - uid: 22431 + pos: -144.5,-0.5 + parent: 2 + - uid: 5491 components: - type: Transform - pos: 53.5,-28.5 - parent: 89 - - uid: 23222 + pos: -130.5,-12.5 + parent: 2 + - uid: 5492 components: - type: Transform - pos: -14.5,-22.5 - parent: 22565 - - uid: 23223 + pos: -143.5,-0.5 + parent: 2 + - uid: 5493 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 23224 + pos: -142.5,-0.5 + parent: 2 + - uid: 5494 components: - type: Transform - pos: -8.5,-2.5 - parent: 22565 - - uid: 23225 + pos: -150.5,-6.5 + parent: 2 + - uid: 5495 components: - type: Transform - pos: -10.5,-24.5 - parent: 22565 - - uid: 23226 + pos: -150.5,-7.5 + parent: 2 + - uid: 5496 components: - type: Transform - pos: -8.5,-25.5 - parent: 22565 - - uid: 23227 + pos: -150.5,-8.5 + parent: 2 + - uid: 5497 components: - type: Transform - pos: -15.5,-22.5 - parent: 22565 - - uid: 23228 + pos: -150.5,-9.5 + parent: 2 + - uid: 5498 components: - type: Transform - pos: -13.5,-18.5 - parent: 22565 - - uid: 23229 + pos: -150.5,-5.5 + parent: 2 + - uid: 5499 components: - type: Transform - pos: -10.5,-23.5 - parent: 22565 - - uid: 23230 + pos: -145.5,-14.5 + parent: 2 + - uid: 5500 components: - type: Transform - pos: -10.5,-22.5 - parent: 22565 - - uid: 23231 + pos: -144.5,-14.5 + parent: 2 + - uid: 5501 components: - type: Transform - pos: -10.5,-20.5 - parent: 22565 - - uid: 23232 + pos: -143.5,-14.5 + parent: 2 + - uid: 5502 components: - type: Transform - pos: -16.5,-20.5 - parent: 22565 - - uid: 23233 + pos: -142.5,-14.5 + parent: 2 + - uid: 5503 components: - type: Transform - pos: -12.5,-22.5 - parent: 22565 - - uid: 23234 + pos: -141.5,-14.5 + parent: 2 + - uid: 5504 components: - type: Transform - pos: -13.5,-19.5 - parent: 22565 - - uid: 23235 + pos: -145.5,-0.5 + parent: 2 + - uid: 5505 components: - type: Transform - pos: -9.5,-22.5 - parent: 22565 - - uid: 23236 + pos: -141.5,-0.5 + parent: 2 + - uid: 5506 components: - type: Transform - pos: -16.5,-19.5 - parent: 22565 - - uid: 23237 + pos: -130.5,-10.5 + parent: 2 + - uid: 5507 components: - type: Transform - pos: -15.5,-2.5 - parent: 22565 - - uid: 23238 + pos: -130.5,-11.5 + parent: 2 + - uid: 5508 components: - type: Transform - pos: -17.5,-22.5 - parent: 22565 - - uid: 23239 + pos: -92.5,24.5 + parent: 2 + - uid: 5509 components: - type: Transform - pos: -11.5,-22.5 - parent: 22565 - - uid: 23240 + pos: -92.5,23.5 + parent: 2 + - uid: 5510 components: - type: Transform - pos: -10.5,-19.5 - parent: 22565 - - uid: 23241 + pos: -91.5,24.5 + parent: 2 + - uid: 5511 components: - type: Transform - pos: -10.5,-21.5 - parent: 22565 - - uid: 23242 + pos: -91.5,25.5 + parent: 2 + - uid: 5512 components: - type: Transform - pos: -9.5,-25.5 - parent: 22565 - - uid: 23243 + pos: -91.5,26.5 + parent: 2 + - uid: 5513 components: - type: Transform - pos: -10.5,-25.5 - parent: 22565 - - uid: 23244 + pos: -91.5,27.5 + parent: 2 + - uid: 5514 components: - type: Transform - pos: -11.5,-25.5 - parent: 22565 - - uid: 23245 + pos: -91.5,28.5 + parent: 2 + - uid: 5515 components: - type: Transform - pos: -12.5,-25.5 - parent: 22565 - - uid: 23246 + pos: -90.5,28.5 + parent: 2 + - uid: 5516 components: - type: Transform - pos: -13.5,-25.5 - parent: 22565 - - uid: 23247 + pos: -89.5,28.5 + parent: 2 + - uid: 5517 components: - type: Transform - pos: -14.5,-25.5 - parent: 22565 - - uid: 23248 + pos: 53.5,-0.5 + parent: 2 + - uid: 5518 components: - type: Transform - pos: -15.5,-25.5 - parent: 22565 - - uid: 23249 + pos: -14.5,-27.5 + parent: 2 + - uid: 5519 components: - type: Transform - pos: -16.5,-25.5 - parent: 22565 - - uid: 23250 + pos: 53.5,-1.5 + parent: 2 + - uid: 5520 components: - type: Transform - pos: -17.5,-25.5 - parent: 22565 - - uid: 23251 + pos: 53.5,-2.5 + parent: 2 + - uid: 5521 components: - type: Transform - pos: -16.5,-24.5 - parent: 22565 - - uid: 23252 + pos: 48.5,5.5 + parent: 2 + - uid: 5522 components: - type: Transform - pos: -16.5,-23.5 - parent: 22565 - - uid: 23253 + pos: -120.5,16.5 + parent: 2 + - uid: 5523 components: - type: Transform - pos: -16.5,-22.5 - parent: 22565 - - uid: 23254 + pos: -119.5,16.5 + parent: 2 + - uid: 5524 components: - type: Transform - pos: -16.5,-21.5 - parent: 22565 - - uid: 23255 + pos: -126.5,16.5 + parent: 2 + - uid: 5525 components: - type: Transform - pos: -13.5,-24.5 - parent: 22565 - - uid: 23256 + pos: -126.5,17.5 + parent: 2 + - uid: 5526 components: - type: Transform - pos: -13.5,-23.5 - parent: 22565 - - uid: 23257 + pos: -126.5,18.5 + parent: 2 + - uid: 5527 components: - type: Transform - pos: -13.5,-22.5 - parent: 22565 - - uid: 23258 + pos: -125.5,18.5 + parent: 2 + - uid: 5528 components: - type: Transform - pos: -13.5,-21.5 - parent: 22565 - - uid: 23259 + pos: -123.5,18.5 + parent: 2 + - uid: 5529 components: - type: Transform - pos: -13.5,-20.5 - parent: 22565 - - uid: 23260 + pos: -122.5,18.5 + parent: 2 + - uid: 5530 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 23261 + pos: -122.5,15.5 + parent: 2 + - uid: 5531 components: - type: Transform - pos: -8.5,-22.5 - parent: 22565 - - uid: 23262 + pos: -122.5,16.5 + parent: 2 + - uid: 5532 components: - type: Transform - pos: -8.5,-21.5 - parent: 22565 - - uid: 23263 + pos: -124.5,18.5 + parent: 2 + - uid: 23776 components: - type: Transform - pos: -8.5,-20.5 - parent: 22565 - - uid: 23264 + pos: 1.5,-10.5 + parent: 23711 + - uid: 23777 components: - type: Transform - pos: -8.5,-19.5 - parent: 22565 - - uid: 23265 + pos: 2.5,-10.5 + parent: 23711 + - uid: 23778 components: - type: Transform - pos: -8.5,-18.5 - parent: 22565 - - uid: 23266 + pos: 3.5,-10.5 + parent: 23711 + - uid: 24022 components: - type: Transform - pos: -8.5,-17.5 - parent: 22565 - - uid: 23267 + pos: 7.5,1.5 + parent: 23919 + - uid: 24023 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 23268 + pos: 6.5,0.5 + parent: 23919 + - uid: 24024 components: - type: Transform - pos: -6.5,-17.5 - parent: 22565 - - uid: 23269 + pos: 7.5,0.5 + parent: 23919 + - uid: 24025 components: - type: Transform - pos: -5.5,-17.5 - parent: 22565 - - uid: 23270 + pos: 5.5,0.5 + parent: 23919 + - uid: 24026 components: - type: Transform - pos: -4.5,-17.5 - parent: 22565 - - uid: 23271 + pos: 7.5,-0.5 + parent: 23919 + - uid: 24027 components: - type: Transform - pos: -3.5,-17.5 - parent: 22565 - - uid: 23272 + pos: 7.5,5.5 + parent: 23919 + - uid: 24028 components: - type: Transform - pos: -2.5,-17.5 - parent: 22565 - - uid: 23273 + pos: 7.5,2.5 + parent: 23919 + - uid: 24029 components: - type: Transform - pos: -12.5,-12.5 - parent: 22565 - - uid: 23274 + pos: 7.5,4.5 + parent: 23919 + - uid: 24030 components: - type: Transform - pos: -15.5,-13.5 - parent: 22565 - - uid: 23275 + pos: 7.5,3.5 + parent: 23919 + - uid: 24031 components: - type: Transform - pos: -14.5,-13.5 - parent: 22565 - - uid: 23276 + pos: 5.5,-0.5 + parent: 23919 + - uid: 24032 components: - type: Transform - pos: -13.5,-13.5 - parent: 22565 - - uid: 23277 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24033 components: - type: Transform - pos: -12.5,-13.5 - parent: 22565 - - uid: 23278 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24034 components: - type: Transform - pos: -12.5,-11.5 - parent: 22565 - - uid: 23279 + pos: 4.5,0.5 + parent: 23919 + - uid: 24035 components: - type: Transform - pos: -12.5,-10.5 - parent: 22565 - - uid: 23280 + pos: 6.5,6.5 + parent: 23919 + - uid: 24036 components: - type: Transform - pos: -12.5,-9.5 - parent: 22565 - - uid: 23281 + pos: 5.5,7.5 + parent: 23919 + - uid: 24037 components: - type: Transform - pos: -16.5,-7.5 - parent: 22565 - - uid: 23282 + pos: 4.5,7.5 + parent: 23919 + - uid: 24038 components: - type: Transform - pos: -16.5,-8.5 - parent: 22565 - - uid: 23283 + pos: 7.5,6.5 + parent: 23919 + - uid: 24039 components: - type: Transform - pos: -16.5,-9.5 - parent: 22565 - - uid: 23284 + pos: 2.5,7.5 + parent: 23919 + - uid: 24040 components: - type: Transform - pos: -16.5,-10.5 - parent: 22565 - - uid: 23285 + pos: 3.5,7.5 + parent: 23919 + - uid: 24041 components: - type: Transform - pos: -16.5,-11.5 - parent: 22565 - - uid: 23286 + pos: 2.5,5.5 + parent: 23919 + - uid: 24042 components: - type: Transform - pos: -16.5,-12.5 - parent: 22565 - - uid: 23287 + pos: 2.5,6.5 + parent: 23919 + - uid: 24043 components: - type: Transform - pos: -16.5,-13.5 - parent: 22565 - - uid: 23288 + pos: 6.5,7.5 + parent: 23919 + - uid: 24044 components: - type: Transform - pos: -16.5,-14.5 - parent: 22565 - - uid: 23289 + pos: 8.5,5.5 + parent: 23919 + - uid: 24367 components: - type: Transform - pos: -16.5,-15.5 - parent: 22565 - - uid: 23290 + pos: 0.5,1.5 + parent: 24340 + - uid: 24368 components: - type: Transform - pos: -16.5,-16.5 - parent: 22565 - - uid: 23291 + pos: 2.5,-2.5 + parent: 24340 + - uid: 24369 components: - type: Transform - pos: -16.5,-17.5 - parent: 22565 - - uid: 23292 + pos: 2.5,-1.5 + parent: 24340 + - uid: 24370 components: - type: Transform - pos: -16.5,-18.5 - parent: 22565 - - uid: 23293 + pos: -1.5,-2.5 + parent: 24340 + - uid: 24371 components: - type: Transform - pos: -13.5,1.5 - parent: 22565 - - uid: 23294 + pos: -1.5,-1.5 + parent: 24340 + - uid: 24372 components: - type: Transform - pos: -13.5,-1.5 - parent: 22565 - - uid: 23295 + pos: -0.5,-1.5 + parent: 24340 + - uid: 24373 components: - type: Transform - pos: -20.5,11.5 - parent: 22565 - - uid: 23296 + pos: 0.5,-1.5 + parent: 24340 + - uid: 24374 components: - type: Transform - pos: -10.5,3.5 - parent: 22565 - - uid: 23297 + pos: 1.5,-1.5 + parent: 24340 + - uid: 24375 components: - type: Transform - pos: -7.5,-2.5 - parent: 22565 - - uid: 23298 + pos: 0.5,-0.5 + parent: 24340 + - uid: 24376 components: - type: Transform - pos: -13.5,0.5 - parent: 22565 - - uid: 23299 + pos: 0.5,0.5 + parent: 24340 + - uid: 24377 components: - type: Transform - pos: -23.5,9.5 - parent: 22565 - - uid: 23300 + pos: 0.5,-2.5 + parent: 24340 + - uid: 24378 components: - type: Transform - pos: -20.5,9.5 - parent: 22565 - - uid: 23301 + pos: 0.5,-3.5 + parent: 24340 + - uid: 24379 components: - type: Transform - pos: -13.5,-2.5 - parent: 22565 - - uid: 23302 + pos: -0.5,-3.5 + parent: 24340 + - uid: 24380 components: - type: Transform - pos: -10.5,1.5 - parent: 22565 - - uid: 23303 + pos: 1.5,-3.5 + parent: 24340 + - uid: 24381 components: - type: Transform - pos: -16.5,-2.5 - parent: 22565 - - uid: 23304 + pos: 2.5,-3.5 + parent: 24340 + - uid: 24382 components: - type: Transform - pos: -13.5,2.5 - parent: 22565 - - uid: 23305 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24383 components: - type: Transform - pos: -10.5,-2.5 - parent: 22565 - - uid: 23306 + pos: -0.5,-2.5 + parent: 24340 + - uid: 25481 components: - type: Transform - pos: -9.5,-2.5 - parent: 22565 - - uid: 23307 + pos: -1.5,-11.5 + parent: 24450 + - uid: 25482 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 23308 + pos: -5.5,-17.5 + parent: 24450 + - uid: 25483 components: - type: Transform - pos: -13.5,-0.5 - parent: 22565 - - uid: 23309 + pos: -6.5,-15.5 + parent: 24450 + - uid: 25484 components: - type: Transform - pos: -10.5,0.5 - parent: 22565 - - uid: 23310 + pos: -4.5,-17.5 + parent: 24450 + - uid: 25485 components: - type: Transform - pos: -10.5,-1.5 - parent: 22565 - - uid: 23311 + pos: -6.5,-16.5 + parent: 24450 + - uid: 25486 components: - type: Transform - pos: -10.5,-0.5 - parent: 22565 - - uid: 23312 + pos: -6.5,-17.5 + parent: 24450 + - uid: 25487 components: - type: Transform - pos: -10.5,2.5 - parent: 22565 - - uid: 23313 + pos: -7.5,-17.5 + parent: 24450 + - uid: 25488 components: - type: Transform - pos: -10.5,4.5 - parent: 22565 - - uid: 23314 + pos: -10.5,-12.5 + parent: 24450 + - uid: 25489 components: - type: Transform - pos: -10.5,5.5 - parent: 22565 - - uid: 23315 + pos: -11.5,-12.5 + parent: 24450 + - uid: 25490 components: - type: Transform - pos: -10.5,6.5 - parent: 22565 - - uid: 23316 + pos: -5.5,-15.5 + parent: 24450 + - uid: 25491 components: - type: Transform - pos: -10.5,7.5 - parent: 22565 - - uid: 23317 + pos: -17.5,-6.5 + parent: 24450 + - uid: 25492 components: - type: Transform - pos: -10.5,8.5 - parent: 22565 - - uid: 23318 + pos: -0.5,-11.5 + parent: 24450 + - uid: 25493 components: - type: Transform - pos: -10.5,9.5 - parent: 22565 - - uid: 23319 + pos: 0.5,-11.5 + parent: 24450 + - uid: 25494 components: - type: Transform - pos: -10.5,10.5 - parent: 22565 - - uid: 23320 + pos: -1.5,-12.5 + parent: 24450 + - uid: 25495 components: - type: Transform - pos: -13.5,3.5 - parent: 22565 - - uid: 23321 + pos: -1.5,-13.5 + parent: 24450 + - uid: 25496 components: - type: Transform - pos: -13.5,4.5 - parent: 22565 - - uid: 23322 + pos: -4.5,-11.5 + parent: 24450 + - uid: 25497 components: - type: Transform - pos: -13.5,5.5 - parent: 22565 - - uid: 23323 + pos: -0.5,-12.5 + parent: 24450 + - uid: 25498 components: - type: Transform - pos: -13.5,6.5 - parent: 22565 - - uid: 23324 + pos: -0.5,-13.5 + parent: 24450 + - uid: 25499 components: - type: Transform - pos: -13.5,7.5 - parent: 22565 - - uid: 23325 + pos: -3.5,-11.5 + parent: 24450 + - uid: 25500 components: - type: Transform - pos: -13.5,8.5 - parent: 22565 - - uid: 23326 + pos: 0.5,-12.5 + parent: 24450 + - uid: 25501 components: - type: Transform - pos: -13.5,9.5 - parent: 22565 - - uid: 23327 + pos: 0.5,-13.5 + parent: 24450 + - uid: 25502 components: - type: Transform - pos: -13.5,10.5 - parent: 22565 - - uid: 23328 + pos: -2.5,-11.5 + parent: 24450 + - uid: 25503 components: - type: Transform - pos: -9.5,10.5 - parent: 22565 - - uid: 23329 + pos: -4.5,-14.5 + parent: 24450 + - uid: 25504 components: - type: Transform - pos: -8.5,10.5 - parent: 22565 - - uid: 23330 + pos: -4.5,-13.5 + parent: 24450 + - uid: 25505 components: - type: Transform - pos: -7.5,10.5 - parent: 22565 - - uid: 23331 + pos: -4.5,-12.5 + parent: 24450 + - uid: 25506 components: - type: Transform - pos: -6.5,10.5 - parent: 22565 - - uid: 23332 + pos: -5.5,-14.5 + parent: 24450 + - uid: 25507 components: - type: Transform - pos: -5.5,10.5 - parent: 22565 - - uid: 23333 + pos: -5.5,-13.5 + parent: 24450 + - uid: 25508 components: - type: Transform - pos: -4.5,10.5 - parent: 22565 - - uid: 23334 + pos: -5.5,-12.5 + parent: 24450 + - uid: 25509 components: - type: Transform - pos: -3.5,10.5 - parent: 22565 - - uid: 23335 + pos: -6.5,-14.5 + parent: 24450 + - uid: 25510 components: - type: Transform - pos: -2.5,10.5 - parent: 22565 - - uid: 23336 + pos: -6.5,-13.5 + parent: 24450 + - uid: 25511 components: - type: Transform - pos: -1.5,10.5 - parent: 22565 - - uid: 23337 + pos: -6.5,-12.5 + parent: 24450 + - uid: 25512 components: - type: Transform - pos: -0.5,10.5 - parent: 22565 - - uid: 23338 + pos: -4.5,-15.5 + parent: 24450 + - uid: 25513 components: - type: Transform - pos: -3.5,11.5 - parent: 22565 - - uid: 23339 + pos: -6.5,-7.5 + parent: 24450 + - uid: 25514 components: - type: Transform - pos: -3.5,12.5 - parent: 22565 - - uid: 23340 + pos: -6.5,-8.5 + parent: 24450 + - uid: 25515 components: - type: Transform - pos: -3.5,13.5 - parent: 22565 - - uid: 23341 + pos: -6.5,-6.5 + parent: 24450 + - uid: 25516 components: - type: Transform - pos: -3.5,14.5 - parent: 22565 - - uid: 23342 + pos: -7.5,-3.5 + parent: 24450 + - uid: 25517 components: - type: Transform - pos: -3.5,15.5 - parent: 22565 - - uid: 23343 + pos: -6.5,-10.5 + parent: 24450 + - uid: 25518 components: - type: Transform - pos: -3.5,16.5 - parent: 22565 - - uid: 23344 + pos: -6.5,-11.5 + parent: 24450 + - uid: 25519 components: - type: Transform - pos: -3.5,17.5 - parent: 22565 - - uid: 23345 + pos: -6.5,-4.5 + parent: 24450 + - uid: 25520 components: - type: Transform - pos: -3.5,18.5 - parent: 22565 - - uid: 23346 + pos: -6.5,-5.5 + parent: 24450 + - uid: 25521 components: - type: Transform - pos: -3.5,19.5 - parent: 22565 - - uid: 23347 + pos: -8.5,-3.5 + parent: 24450 + - uid: 25522 components: - type: Transform - pos: -3.5,20.5 - parent: 22565 - - uid: 23348 + pos: -6.5,-9.5 + parent: 24450 + - uid: 25523 components: - type: Transform - pos: -3.5,21.5 - parent: 22565 - - uid: 23349 + pos: -6.5,-3.5 + parent: 24450 + - uid: 25524 components: - type: Transform - pos: -3.5,22.5 - parent: 22565 - - uid: 23350 + pos: -7.5,-13.5 + parent: 24450 + - uid: 25525 components: - type: Transform - pos: -3.5,23.5 - parent: 22565 - - uid: 23351 + pos: -8.5,-13.5 + parent: 24450 + - uid: 25526 components: - type: Transform - pos: -3.5,24.5 - parent: 22565 - - uid: 23352 + pos: -9.5,-13.5 + parent: 24450 + - uid: 25527 components: - type: Transform - pos: -3.5,25.5 - parent: 22565 - - uid: 23353 + pos: -10.5,-13.5 + parent: 24450 + - uid: 25528 components: - type: Transform - pos: -0.5,11.5 - parent: 22565 - - uid: 23354 + pos: -15.5,-12.5 + parent: 24450 + - uid: 25529 components: - type: Transform - pos: -0.5,12.5 - parent: 22565 - - uid: 23355 + pos: -17.5,-3.5 + parent: 24450 + - uid: 25530 components: - type: Transform - pos: -0.5,13.5 - parent: 22565 - - uid: 23356 + pos: -17.5,-4.5 + parent: 24450 + - uid: 25531 components: - type: Transform - pos: -0.5,14.5 - parent: 22565 - - uid: 23357 + pos: -17.5,-5.5 + parent: 24450 + - uid: 25532 components: - type: Transform - pos: -0.5,15.5 - parent: 22565 - - uid: 23358 + pos: -17.5,-7.5 + parent: 24450 + - uid: 25533 components: - type: Transform - pos: -0.5,16.5 - parent: 22565 - - uid: 23359 + pos: -17.5,-8.5 + parent: 24450 + - uid: 25534 components: - type: Transform - pos: -0.5,17.5 - parent: 22565 - - uid: 23360 + pos: -17.5,-9.5 + parent: 24450 + - uid: 25535 components: - type: Transform - pos: -0.5,18.5 - parent: 22565 - - uid: 23361 + pos: -16.5,-3.5 + parent: 24450 + - uid: 25536 components: - type: Transform - pos: -0.5,19.5 - parent: 22565 - - uid: 23362 + pos: -15.5,-3.5 + parent: 24450 + - uid: 25537 components: - type: Transform - pos: -0.5,20.5 - parent: 22565 - - uid: 23363 + pos: -5.5,-11.5 + parent: 24450 + - uid: 25538 components: - type: Transform - pos: -0.5,21.5 - parent: 22565 - - uid: 23364 + pos: -15.5,-9.5 + parent: 24450 + - uid: 25539 components: - type: Transform - pos: -0.5,22.5 - parent: 22565 - - uid: 23365 + pos: -14.5,-12.5 + parent: 24450 + - uid: 25540 components: - type: Transform - pos: -0.5,23.5 - parent: 22565 - - uid: 23366 + pos: -13.5,-12.5 + parent: 24450 + - uid: 25541 components: - type: Transform - pos: -0.5,24.5 - parent: 22565 - - uid: 23367 + pos: -12.5,-12.5 + parent: 24450 + - uid: 25542 components: - type: Transform - pos: -0.5,25.5 - parent: 22565 - - uid: 23368 + pos: -16.5,-12.5 + parent: 24450 + - uid: 25543 components: - type: Transform - pos: -1.5,25.5 - parent: 22565 - - uid: 23369 + pos: -17.5,-12.5 + parent: 24450 + - uid: 25544 components: - type: Transform - pos: -2.5,25.5 - parent: 22565 - - uid: 23370 + pos: -17.5,-12.5 + parent: 24450 + - uid: 25545 components: - type: Transform - pos: -1.5,1.5 - parent: 22565 - - uid: 23371 + pos: -17.5,-11.5 + parent: 24450 + - uid: 25546 components: - type: Transform - pos: -2.5,1.5 - parent: 22565 - - uid: 23372 + pos: -17.5,-10.5 + parent: 24450 + - uid: 25547 components: - type: Transform - pos: -3.5,1.5 - parent: 22565 - - uid: 23373 + pos: -5.5,-16.5 + parent: 24450 + - uid: 27390 components: - type: Transform - pos: -4.5,1.5 - parent: 22565 - - uid: 23374 + pos: 4.5,-3.5 + parent: 27260 + - uid: 27391 components: - type: Transform - pos: -5.5,1.5 - parent: 22565 - - uid: 23375 + pos: -6.5,-0.5 + parent: 27260 + - uid: 27392 components: - type: Transform - pos: -6.5,1.5 - parent: 22565 - - uid: 23376 + pos: -6.5,-2.5 + parent: 27260 + - uid: 27393 components: - type: Transform - pos: -7.5,1.5 - parent: 22565 - - uid: 23377 + pos: 7.5,-1.5 + parent: 27260 + - uid: 27394 components: - type: Transform - pos: -8.5,1.5 - parent: 22565 - - uid: 23378 + pos: 7.5,-0.5 + parent: 27260 + - uid: 27395 components: - type: Transform - pos: -9.5,1.5 - parent: 22565 - - uid: 23379 + pos: -6.5,-1.5 + parent: 27260 + - uid: 27396 components: - type: Transform - pos: 0.5,5.5 - parent: 22565 - - uid: 23380 + pos: 2.5,-11.5 + parent: 27260 + - uid: 27397 components: - type: Transform - pos: -2.5,5.5 - parent: 22565 - - uid: 23381 + pos: 2.5,-12.5 + parent: 27260 + - uid: 27398 components: - type: Transform - pos: -3.5,9.5 - parent: 22565 - - uid: 23382 + pos: 1.5,-12.5 + parent: 27260 + - uid: 27399 components: - type: Transform - pos: -14.5,10.5 - parent: 22565 - - uid: 23383 + pos: 0.5,-12.5 + parent: 27260 + - uid: 27400 components: - type: Transform - pos: -15.5,10.5 - parent: 22565 - - uid: 23384 + pos: -0.5,-11.5 + parent: 27260 + - uid: 27401 components: - type: Transform - pos: -16.5,10.5 - parent: 22565 - - uid: 23385 + pos: -0.5,-12.5 + parent: 27260 + - uid: 27402 components: - type: Transform - pos: -17.5,10.5 - parent: 22565 - - uid: 23386 + pos: -0.5,-13.5 + parent: 27260 + - uid: 27403 components: - type: Transform - pos: -18.5,10.5 - parent: 22565 - - uid: 23387 + pos: -0.5,-14.5 + parent: 27260 + - uid: 27404 components: - type: Transform - pos: -19.5,10.5 - parent: 22565 - - uid: 23388 + pos: 0.5,-14.5 + parent: 27260 + - uid: 27405 components: - type: Transform - pos: -20.5,10.5 - parent: 22565 - - uid: 23389 + pos: 1.5,-14.5 + parent: 27260 + - uid: 27406 components: - type: Transform - pos: -20.5,12.5 - parent: 22565 - - uid: 23390 + pos: 2.5,-14.5 + parent: 27260 + - uid: 27407 components: - type: Transform - pos: -20.5,13.5 - parent: 22565 - - uid: 23391 + pos: 3.5,-14.5 + parent: 27260 + - uid: 27408 components: - type: Transform - pos: -20.5,14.5 - parent: 22565 - - uid: 23392 + pos: 4.5,-14.5 + parent: 27260 + - uid: 27409 components: - type: Transform - pos: -20.5,15.5 - parent: 22565 - - uid: 23393 + pos: 5.5,-14.5 + parent: 27260 + - uid: 27410 components: - type: Transform - pos: -20.5,16.5 - parent: 22565 - - uid: 23394 + pos: 6.5,-14.5 + parent: 27260 + - uid: 27411 components: - type: Transform - pos: -20.5,17.5 - parent: 22565 - - uid: 23395 + pos: 7.5,-14.5 + parent: 27260 + - uid: 27412 components: - type: Transform - pos: -20.5,18.5 - parent: 22565 - - uid: 23396 + pos: 4.5,-15.5 + parent: 27260 + - uid: 27413 components: - type: Transform - pos: -20.5,19.5 - parent: 22565 - - uid: 23397 + pos: 5.5,-15.5 + parent: 27260 + - uid: 27414 components: - type: Transform - pos: -20.5,20.5 - parent: 22565 - - uid: 23398 + pos: 6.5,-15.5 + parent: 27260 + - uid: 27415 components: - type: Transform - pos: -20.5,21.5 - parent: 22565 - - uid: 23399 + pos: 7.5,-13.5 + parent: 27260 + - uid: 27416 components: - type: Transform - pos: -20.5,22.5 - parent: 22565 - - uid: 23400 + pos: 7.5,-12.5 + parent: 27260 + - uid: 27417 components: - type: Transform - pos: -20.5,23.5 - parent: 22565 - - uid: 23401 + pos: 7.5,-11.5 + parent: 27260 + - uid: 27418 components: - type: Transform - pos: -20.5,24.5 - parent: 22565 - - uid: 23402 + pos: 7.5,-10.5 + parent: 27260 + - uid: 27419 components: - type: Transform - pos: -20.5,25.5 - parent: 22565 - - uid: 23403 + pos: 7.5,-9.5 + parent: 27260 + - uid: 27420 components: - type: Transform - pos: -21.5,25.5 - parent: 22565 - - uid: 23404 + pos: 7.5,-8.5 + parent: 27260 + - uid: 27421 components: - type: Transform - pos: -22.5,25.5 - parent: 22565 - - uid: 23405 + pos: 7.5,-7.5 + parent: 27260 + - uid: 27422 components: - type: Transform - pos: -23.5,25.5 - parent: 22565 - - uid: 23406 + pos: 7.5,-6.5 + parent: 27260 + - uid: 27423 components: - type: Transform - pos: -23.5,24.5 - parent: 22565 - - uid: 23407 + pos: 7.5,-5.5 + parent: 27260 + - uid: 27424 components: - type: Transform - pos: -23.5,23.5 - parent: 22565 - - uid: 23408 + pos: 7.5,-4.5 + parent: 27260 + - uid: 27425 components: - type: Transform - pos: -23.5,22.5 - parent: 22565 - - uid: 23409 + pos: 8.5,-4.5 + parent: 27260 + - uid: 27426 components: - type: Transform - pos: -23.5,21.5 - parent: 22565 - - uid: 23410 + pos: 8.5,-5.5 + parent: 27260 + - uid: 27427 components: - type: Transform - pos: -23.5,20.5 - parent: 22565 - - uid: 23411 + pos: 8.5,-6.5 + parent: 27260 + - uid: 27428 components: - type: Transform - pos: -23.5,19.5 - parent: 22565 - - uid: 23412 + pos: 8.5,-7.5 + parent: 27260 + - uid: 27429 components: - type: Transform - pos: -23.5,18.5 - parent: 22565 - - uid: 23413 + pos: 8.5,-10.5 + parent: 27260 + - uid: 27430 components: - type: Transform - pos: -23.5,17.5 - parent: 22565 - - uid: 23414 + pos: 8.5,-11.5 + parent: 27260 + - uid: 27431 components: - type: Transform - pos: -23.5,16.5 - parent: 22565 - - uid: 23415 + pos: 8.5,-12.5 + parent: 27260 + - uid: 27432 components: - type: Transform - pos: -23.5,15.5 - parent: 22565 - - uid: 23416 + pos: 8.5,-13.5 + parent: 27260 + - uid: 27433 components: - type: Transform - pos: -23.5,14.5 - parent: 22565 - - uid: 23417 + pos: 7.5,-3.5 + parent: 27260 + - uid: 27434 components: - type: Transform - pos: -23.5,13.5 - parent: 22565 - - uid: 23418 + pos: 6.5,-3.5 + parent: 27260 + - uid: 27435 components: - type: Transform - pos: -23.5,12.5 - parent: 22565 - - uid: 23419 + pos: 5.5,-3.5 + parent: 27260 + - uid: 27436 components: - type: Transform - pos: -23.5,11.5 - parent: 22565 - - uid: 23420 + pos: 6.5,-1.5 + parent: 27260 + - uid: 27437 components: - type: Transform - pos: -23.5,10.5 - parent: 22565 - - uid: 23421 + pos: 6.5,-0.5 + parent: 27260 + - uid: 27438 components: - type: Transform - pos: -22.5,10.5 - parent: 22565 - - uid: 23422 + pos: 7.5,-2.5 + parent: 27260 + - uid: 27439 components: - type: Transform - pos: -21.5,10.5 - parent: 22565 - - uid: 23423 + pos: 6.5,-2.5 + parent: 27260 + - uid: 27440 components: - type: Transform - pos: -0.5,1.5 - parent: 22565 - - uid: 23424 + pos: 3.5,-3.5 + parent: 27260 + - uid: 27441 components: - type: Transform - pos: 0.5,1.5 - parent: 22565 - - uid: 23425 + pos: 2.5,-3.5 + parent: 27260 + - uid: 27442 components: - type: Transform - pos: 1.5,1.5 - parent: 22565 - - uid: 23426 + pos: 1.5,-3.5 + parent: 27260 + - uid: 27443 components: - type: Transform - pos: 2.5,1.5 - parent: 22565 - - uid: 23427 + pos: 0.5,-3.5 + parent: 27260 + - uid: 27444 components: - type: Transform - pos: 3.5,1.5 - parent: 22565 - - uid: 23428 + pos: -0.5,-3.5 + parent: 27260 + - uid: 27445 components: - type: Transform - pos: -3.5,8.5 - parent: 22565 - - uid: 23429 + pos: -1.5,-3.5 + parent: 27260 + - uid: 27446 components: - type: Transform - pos: -3.5,7.5 - parent: 22565 - - uid: 23430 + pos: -2.5,-3.5 + parent: 27260 + - uid: 27447 components: - type: Transform - pos: -3.5,6.5 - parent: 22565 - - uid: 23431 + pos: -3.5,-3.5 + parent: 27260 + - uid: 27448 components: - type: Transform - pos: -3.5,5.5 - parent: 22565 - - uid: 23432 + pos: -4.5,-3.5 + parent: 27260 + - uid: 27449 components: - type: Transform - pos: -3.5,4.5 - parent: 22565 - - uid: 23433 + pos: -5.5,-3.5 + parent: 27260 + - uid: 27450 components: - type: Transform - pos: -3.5,3.5 - parent: 22565 - - uid: 23434 + pos: -6.5,-3.5 + parent: 27260 + - uid: 27451 components: - type: Transform - pos: -3.5,2.5 - parent: 22565 - - uid: 23435 + pos: -6.5,-4.5 + parent: 27260 + - uid: 27452 components: - type: Transform - pos: -0.5,2.5 - parent: 22565 - - uid: 23436 + pos: -6.5,-5.5 + parent: 27260 + - uid: 27453 components: - - type: Transform - pos: -0.5,3.5 - parent: 22565 - - uid: 23437 + - type: Transform + pos: -6.5,-6.5 + parent: 27260 + - uid: 27454 components: - type: Transform - pos: -0.5,4.5 - parent: 22565 - - uid: 23438 + pos: -6.5,-7.5 + parent: 27260 + - uid: 27455 components: - type: Transform - pos: -0.5,5.5 - parent: 22565 - - uid: 23439 + pos: -6.5,-8.5 + parent: 27260 + - uid: 27456 components: - type: Transform - pos: -0.5,6.5 - parent: 22565 - - uid: 23440 + pos: -6.5,-9.5 + parent: 27260 + - uid: 27457 components: - type: Transform - pos: -0.5,7.5 - parent: 22565 - - uid: 23441 + pos: -6.5,-10.5 + parent: 27260 + - uid: 27458 components: - type: Transform - pos: -0.5,8.5 - parent: 22565 - - uid: 23442 + pos: -6.5,-11.5 + parent: 27260 + - uid: 27459 components: - type: Transform - pos: -0.5,9.5 - parent: 22565 - - uid: 23443 + pos: -6.5,-12.5 + parent: 27260 + - uid: 27460 components: - type: Transform - pos: -1.5,5.5 - parent: 22565 - - uid: 23444 + pos: -6.5,-13.5 + parent: 27260 + - uid: 27461 components: - type: Transform - pos: 1.5,5.5 - parent: 22565 - - uid: 23445 + pos: -6.5,-14.5 + parent: 27260 + - uid: 27462 components: - type: Transform - pos: 2.5,5.5 - parent: 22565 - - uid: 23446 + pos: -5.5,-14.5 + parent: 27260 + - uid: 27463 components: - type: Transform - pos: 3.5,5.5 - parent: 22565 - - uid: 23447 + pos: -4.5,-14.5 + parent: 27260 + - uid: 27464 components: - type: Transform - pos: 4.5,5.5 - parent: 22565 - - uid: 23448 + pos: -3.5,-14.5 + parent: 27260 + - uid: 27465 components: - type: Transform - pos: 5.5,5.5 - parent: 22565 - - uid: 23449 + pos: -2.5,-14.5 + parent: 27260 + - uid: 27466 components: - type: Transform - pos: 6.5,5.5 - parent: 22565 - - uid: 23450 + pos: -1.5,-14.5 + parent: 27260 + - uid: 27467 components: - type: Transform - pos: 7.5,5.5 - parent: 22565 - - uid: 23451 + pos: -3.5,-15.5 + parent: 27260 + - uid: 27468 components: - type: Transform - pos: 7.5,6.5 - parent: 22565 - - uid: 23452 + pos: -4.5,-15.5 + parent: 27260 + - uid: 27469 components: - type: Transform - pos: 7.5,7.5 - parent: 22565 - - uid: 23453 + pos: -5.5,-15.5 + parent: 27260 + - uid: 27470 components: - type: Transform - pos: 7.5,8.5 - parent: 22565 - - uid: 23454 + pos: -7.5,-13.5 + parent: 27260 + - uid: 27471 components: - type: Transform - pos: 7.5,9.5 - parent: 22565 - - uid: 23455 + pos: -7.5,-12.5 + parent: 27260 + - uid: 27472 components: - type: Transform - pos: 7.5,10.5 - parent: 22565 - - uid: 23456 + pos: -7.5,-11.5 + parent: 27260 + - uid: 27473 components: - type: Transform - pos: 7.5,11.5 - parent: 22565 - - uid: 23457 + pos: -7.5,-10.5 + parent: 27260 + - uid: 27474 components: - type: Transform - pos: 7.5,12.5 - parent: 22565 - - uid: 23458 + pos: -7.5,-7.5 + parent: 27260 + - uid: 27475 components: - type: Transform - pos: 7.5,4.5 - parent: 22565 - - uid: 23459 + pos: -7.5,-6.5 + parent: 27260 + - uid: 27476 components: - type: Transform - pos: 7.5,3.5 - parent: 22565 - - uid: 23460 + pos: -7.5,-5.5 + parent: 27260 + - uid: 27477 components: - type: Transform - pos: 7.5,2.5 - parent: 22565 - - uid: 23461 + pos: -7.5,-4.5 + parent: 27260 + - uid: 27478 components: - type: Transform - pos: 7.5,1.5 - parent: 22565 - - uid: 23462 + pos: -5.5,-0.5 + parent: 27260 + - uid: 27479 components: - type: Transform - pos: 6.5,3.5 - parent: 22565 - - uid: 23463 + pos: -5.5,-1.5 + parent: 27260 + - uid: 27480 components: - type: Transform - pos: 5.5,3.5 - parent: 22565 - - uid: 23464 + pos: -5.5,-2.5 + parent: 27260 + - uid: 27481 components: - type: Transform - pos: 8.5,3.5 - parent: 22565 - - uid: 23465 + pos: -1.5,-11.5 + parent: 27260 +- proto: CableHVStack + entities: + - uid: 5533 components: - type: Transform - pos: 9.5,3.5 - parent: 22565 - - uid: 23466 + pos: -131.46945,-2.4058437 + parent: 2 + - uid: 5534 components: - type: Transform - pos: 10.5,3.5 - parent: 22565 - - uid: 23467 + pos: -103.4719,-2.5463343 + parent: 2 + - uid: 5535 components: - type: Transform - pos: 8.5,5.5 - parent: 22565 - - uid: 23468 + pos: -103.175026,-2.4682093 + parent: 2 + - uid: 5536 components: - type: Transform - pos: 9.5,5.5 - parent: 22565 - - uid: 23469 + pos: -115.50455,15.490905 + parent: 2 + - uid: 5537 components: - type: Transform - pos: 10.5,5.5 - parent: 22565 - - uid: 23470 + pos: 17.28944,-1.4667225 + parent: 2 + - uid: 5538 components: - type: Transform - pos: 8.5,9.5 - parent: 22565 - - uid: 23471 + pos: 17.28944,-1.4667225 + parent: 2 + - uid: 5539 components: - type: Transform - pos: 9.5,9.5 - parent: 22565 - - uid: 23472 + pos: 17.28944,-1.4667225 + parent: 2 + - uid: 5540 components: - type: Transform - pos: 10.5,9.5 - parent: 22565 - - uid: 23473 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5541 components: - type: Transform - pos: 8.5,11.5 - parent: 22565 - - uid: 23474 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5542 components: - type: Transform - pos: 9.5,11.5 - parent: 22565 - - uid: 23475 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5543 components: - type: Transform - pos: 10.5,11.5 - parent: 22565 - - uid: 23476 + pos: -119.506325,12.502924 + parent: 2 + - uid: 5544 components: - type: Transform - pos: 3.5,6.5 - parent: 22565 - - uid: 23477 + pos: -115.52195,5.4791265 + parent: 2 + - uid: 5545 components: - type: Transform - pos: 3.5,7.5 - parent: 22565 - - uid: 23478 + pos: 32.617672,6.306506 + parent: 2 + - uid: 27482 components: - type: Transform - pos: 3.5,8.5 - parent: 22565 - - uid: 23479 + pos: -1.4234314,-7.2307434 + parent: 27260 +- proto: CableMV + entities: + - uid: 5546 components: - type: Transform - pos: 3.5,9.5 - parent: 22565 - - uid: 23480 + pos: 2.5,-24.5 + parent: 2 + - uid: 5547 components: - type: Transform - pos: 3.5,10.5 - parent: 22565 - - uid: 23481 + pos: -1.5,-31.5 + parent: 2 + - uid: 5548 components: - type: Transform - pos: -14.5,1.5 - parent: 22565 - - uid: 23482 + pos: -3.5,-30.5 + parent: 2 + - uid: 5549 components: - type: Transform - pos: -15.5,1.5 - parent: 22565 - - uid: 23483 + pos: -2.5,-30.5 + parent: 2 + - uid: 5550 components: - type: Transform - pos: -16.5,1.5 - parent: 22565 - - uid: 23484 + pos: -4.5,-38.5 + parent: 2 + - uid: 5551 components: - type: Transform - pos: -17.5,1.5 - parent: 22565 - - uid: 23485 + pos: 2.5,-20.5 + parent: 2 + - uid: 5552 components: - type: Transform - pos: -18.5,1.5 - parent: 22565 - - uid: 23486 + pos: 2.5,-19.5 + parent: 2 + - uid: 5553 components: - type: Transform - pos: -19.5,1.5 - parent: 22565 - - uid: 23487 + pos: 2.5,-18.5 + parent: 2 + - uid: 5554 components: - type: Transform - pos: -20.5,1.5 - parent: 22565 - - uid: 23488 + pos: 1.5,-18.5 + parent: 2 + - uid: 5555 components: - type: Transform - pos: -21.5,1.5 - parent: 22565 - - uid: 23489 + pos: -4.5,-37.5 + parent: 2 + - uid: 5556 components: - type: Transform - pos: -22.5,1.5 - parent: 22565 - - uid: 23490 + pos: 2.5,-21.5 + parent: 2 + - uid: 5557 components: - type: Transform - pos: -23.5,1.5 - parent: 22565 - - uid: 23491 + pos: -130.5,-4.5 + parent: 2 + - uid: 5558 components: - type: Transform - pos: -24.5,1.5 - parent: 22565 - - uid: 23492 + pos: -87.5,-11.5 + parent: 2 + - uid: 5559 components: - type: Transform - pos: -25.5,1.5 - parent: 22565 - - uid: 23493 + pos: -111.5,20.5 + parent: 2 + - uid: 5560 components: - type: Transform - pos: -26.5,1.5 - parent: 22565 - - uid: 23494 + pos: -103.5,25.5 + parent: 2 + - uid: 5561 components: - type: Transform - pos: -26.5,2.5 - parent: 22565 - - uid: 23495 + pos: -108.5,23.5 + parent: 2 + - uid: 5562 components: - type: Transform - pos: -26.5,3.5 - parent: 22565 - - uid: 23496 + pos: -112.5,23.5 + parent: 2 + - uid: 5563 components: - type: Transform - pos: -26.5,4.5 - parent: 22565 - - uid: 23497 + pos: -109.5,25.5 + parent: 2 + - uid: 5564 components: - type: Transform - pos: -26.5,5.5 - parent: 22565 - - uid: 23498 + pos: -107.5,25.5 + parent: 2 + - uid: 5565 components: - type: Transform - pos: -27.5,5.5 - parent: 22565 - - uid: 23499 + pos: -150.5,-2.5 + parent: 2 + - uid: 5566 components: - type: Transform - pos: -27.5,5.5 - parent: 22565 - - uid: 23500 + pos: -145.5,-14.5 + parent: 2 + - uid: 5567 components: - type: Transform - pos: -27.5,6.5 - parent: 22565 - - uid: 23501 + pos: -138.5,-14.5 + parent: 2 + - uid: 5568 components: - type: Transform - pos: -27.5,7.5 - parent: 22565 - - uid: 23502 + pos: -149.5,-0.5 + parent: 2 + - uid: 5569 components: - type: Transform - pos: -27.5,8.5 - parent: 22565 - - uid: 23503 + pos: -148.5,-0.5 + parent: 2 + - uid: 5570 components: - type: Transform - pos: -27.5,9.5 - parent: 22565 - - uid: 23504 + pos: -145.5,-0.5 + parent: 2 + - uid: 5571 components: - type: Transform - pos: -27.5,10.5 - parent: 22565 - - uid: 23505 + pos: -150.5,-13.5 + parent: 2 + - uid: 5572 components: - type: Transform - pos: -27.5,11.5 - parent: 22565 - - uid: 23506 + pos: -150.5,-3.5 + parent: 2 + - uid: 5573 components: - type: Transform - pos: -27.5,5.5 - parent: 22565 - - uid: 23507 + pos: -150.5,-11.5 + parent: 2 + - uid: 5574 components: - type: Transform - pos: -28.5,5.5 - parent: 22565 - - uid: 23508 + pos: 16.5,-13.5 + parent: 2 + - uid: 5575 components: - type: Transform - pos: -29.5,5.5 - parent: 22565 - - uid: 23509 + pos: 15.5,-15.5 + parent: 2 + - uid: 5576 components: - type: Transform - pos: -30.5,5.5 - parent: 22565 - - uid: 23510 + pos: 39.5,-9.5 + parent: 2 + - uid: 5577 components: - type: Transform - pos: -30.5,5.5 - parent: 22565 - - uid: 23511 + pos: -10.5,-18.5 + parent: 2 + - uid: 5578 components: - type: Transform - pos: -30.5,4.5 - parent: 22565 - - uid: 23512 + pos: 5.5,-29.5 + parent: 2 + - uid: 5579 components: - type: Transform - pos: -30.5,3.5 - parent: 22565 - - uid: 23513 + pos: -5.5,-25.5 + parent: 2 + - uid: 5580 components: - type: Transform - pos: -30.5,2.5 - parent: 22565 - - uid: 23514 + pos: -8.5,-18.5 + parent: 2 + - uid: 5581 components: - type: Transform - pos: -30.5,5.5 - parent: 22565 - - uid: 23515 + pos: -8.5,-18.5 + parent: 2 + - uid: 5582 components: - type: Transform - pos: -31.5,5.5 - parent: 22565 - - uid: 23516 + pos: -10.5,-19.5 + parent: 2 + - uid: 5583 components: - type: Transform - pos: -32.5,5.5 - parent: 22565 - - uid: 23517 + pos: 44.5,9.5 + parent: 2 + - uid: 5584 components: - type: Transform - pos: -33.5,5.5 - parent: 22565 - - uid: 23518 + pos: 44.5,10.5 + parent: 2 + - uid: 5585 components: - type: Transform - pos: -34.5,5.5 - parent: 22565 - - uid: 23519 + pos: 44.5,11.5 + parent: 2 + - uid: 5586 components: - type: Transform - pos: -30.5,6.5 - parent: 22565 - - uid: 23520 + pos: 44.5,8.5 + parent: 2 + - uid: 5587 components: - type: Transform - pos: -30.5,7.5 - parent: 22565 - - uid: 23521 + pos: 42.5,13.5 + parent: 2 + - uid: 5588 components: - type: Transform - pos: -30.5,8.5 - parent: 22565 - - uid: 23522 + pos: 43.5,12.5 + parent: 2 + - uid: 5589 components: - type: Transform - pos: -30.5,9.5 - parent: 22565 - - uid: 23523 + pos: 45.5,3.5 + parent: 2 + - uid: 5590 components: - type: Transform - pos: -30.5,10.5 - parent: 22565 - - uid: 23524 + pos: 44.5,3.5 + parent: 2 + - uid: 5591 components: - type: Transform - pos: -30.5,11.5 - parent: 22565 - - uid: 23525 + pos: 40.5,5.5 + parent: 2 + - uid: 5592 components: - type: Transform - pos: -30.5,11.5 - parent: 22565 - - uid: 23526 + pos: 40.5,8.5 + parent: 2 + - uid: 5593 components: - type: Transform - pos: -31.5,11.5 - parent: 22565 - - uid: 23527 + pos: 40.5,6.5 + parent: 2 + - uid: 5594 components: - type: Transform - pos: -32.5,11.5 - parent: 22565 - - uid: 23528 + pos: 41.5,8.5 + parent: 2 + - uid: 5595 components: - type: Transform - pos: -33.5,11.5 - parent: 22565 - - uid: 23529 + pos: 52.5,4.5 + parent: 2 + - uid: 5596 components: - type: Transform - pos: -30.5,9.5 - parent: 22565 - - uid: 23530 + pos: 40.5,14.5 + parent: 2 + - uid: 5597 components: - type: Transform - pos: -31.5,9.5 - parent: 22565 - - uid: 23531 + pos: 41.5,14.5 + parent: 2 + - uid: 5598 components: - type: Transform - pos: -32.5,9.5 - parent: 22565 - - uid: 23532 + pos: 42.5,14.5 + parent: 2 + - uid: 5599 components: - type: Transform - pos: -33.5,9.5 - parent: 22565 - - uid: 23533 + pos: 43.5,11.5 + parent: 2 + - uid: 5600 components: - type: Transform - pos: -34.5,9.5 - parent: 22565 - - uid: 23534 + pos: 45.5,8.5 + parent: 2 + - uid: 5601 components: - type: Transform - pos: -34.5,11.5 - parent: 22565 - - uid: 23535 + pos: 48.5,12.5 + parent: 2 + - uid: 5602 components: - type: Transform - pos: -34.5,4.5 - parent: 22565 - - uid: 23536 + pos: 49.5,5.5 + parent: 2 + - uid: 5603 components: - type: Transform - pos: -34.5,3.5 - parent: 22565 - - uid: 23537 + pos: 47.5,5.5 + parent: 2 + - uid: 5604 components: - type: Transform - pos: -14.5,7.5 - parent: 22565 - - uid: 23538 + pos: 48.5,5.5 + parent: 2 + - uid: 5605 components: - type: Transform - pos: -14.5,4.5 - parent: 22565 - - uid: 23539 + pos: 50.5,4.5 + parent: 2 + - uid: 5606 components: - type: Transform - pos: -9.5,4.5 - parent: 22565 - - uid: 23540 + pos: 51.5,4.5 + parent: 2 + - uid: 5607 components: - type: Transform - pos: -9.5,7.5 - parent: 22565 - - uid: 23541 + pos: 50.5,5.5 + parent: 2 + - uid: 5608 components: - type: Transform - pos: -22.5,12.5 - parent: 22565 - - uid: 23542 + pos: 52.5,7.5 + parent: 2 + - uid: 5609 components: - type: Transform - pos: -21.5,12.5 - parent: 22565 - - uid: 23543 + pos: 52.5,8.5 + parent: 2 + - uid: 5610 components: - type: Transform - pos: -2.5,12.5 - parent: 22565 - - uid: 23544 + pos: 52.5,5.5 + parent: 2 + - uid: 5611 components: - type: Transform - pos: -1.5,12.5 - parent: 22565 - - uid: 23545 + pos: 52.5,6.5 + parent: 2 + - uid: 5612 components: - type: Transform - pos: -6.5,2.5 - parent: 22565 - - uid: 23546 + pos: 47.5,8.5 + parent: 2 + - uid: 5613 components: - type: Transform - pos: -6.5,3.5 - parent: 22565 - - uid: 23547 + pos: 49.5,8.5 + parent: 2 + - uid: 5614 components: - type: Transform - pos: -6.5,4.5 - parent: 22565 - - uid: 23548 + pos: 48.5,8.5 + parent: 2 + - uid: 5615 components: - type: Transform - pos: -6.5,5.5 - parent: 22565 - - uid: 23549 + pos: 50.5,8.5 + parent: 2 + - uid: 5616 components: - type: Transform - pos: -6.5,6.5 - parent: 22565 - - uid: 23550 + pos: 51.5,8.5 + parent: 2 + - uid: 5617 components: - type: Transform - pos: -6.5,7.5 - parent: 22565 - - uid: 23551 + pos: 46.5,8.5 + parent: 2 + - uid: 5618 components: - type: Transform - pos: -6.5,8.5 - parent: 22565 - - uid: 23552 + pos: -9.5,-25.5 + parent: 2 + - uid: 5619 components: - type: Transform - pos: -6.5,9.5 - parent: 22565 - - uid: 23553 + pos: 52.5,3.5 + parent: 2 + - uid: 5620 components: - type: Transform - pos: -4.5,5.5 - parent: 22565 - - uid: 23554 + pos: 52.5,2.5 + parent: 2 + - uid: 5621 components: - type: Transform - pos: -5.5,5.5 - parent: 22565 - - uid: 23555 + pos: 52.5,1.5 + parent: 2 + - uid: 5622 components: - type: Transform - pos: -23.5,8.5 - parent: 22565 - - uid: 23556 + pos: 52.5,0.5 + parent: 2 + - uid: 5623 components: - type: Transform - pos: -23.5,7.5 - parent: 22565 - - uid: 23557 + pos: 44.5,2.5 + parent: 2 + - uid: 5624 components: - type: Transform - pos: -23.5,6.5 - parent: 22565 - - uid: 23558 + pos: -7.5,-23.5 + parent: 2 + - uid: 5625 components: - type: Transform - pos: -23.5,5.5 - parent: 22565 - - uid: 23559 + pos: -29.5,19.5 + parent: 2 + - uid: 5626 components: - type: Transform - pos: -23.5,4.5 - parent: 22565 - - uid: 23560 + pos: -11.5,-25.5 + parent: 2 + - uid: 5627 components: - type: Transform - pos: -23.5,3.5 - parent: 22565 - - uid: 23561 + pos: 2.5,-23.5 + parent: 2 + - uid: 5628 components: - type: Transform - pos: -23.5,2.5 - parent: 22565 - - uid: 23562 + pos: -1.5,-38.5 + parent: 2 + - uid: 5629 components: - type: Transform - pos: -20.5,8.5 - parent: 22565 - - uid: 23563 + pos: -1.5,-36.5 + parent: 2 + - uid: 5630 components: - type: Transform - pos: -20.5,7.5 - parent: 22565 - - uid: 23564 + pos: -1.5,-30.5 + parent: 2 + - uid: 5631 components: - type: Transform - pos: -20.5,6.5 - parent: 22565 - - uid: 23565 + pos: -1.5,-27.5 + parent: 2 + - uid: 5632 components: - type: Transform - pos: -20.5,5.5 - parent: 22565 - - uid: 23566 + pos: -1.5,-26.5 + parent: 2 + - uid: 5633 components: - type: Transform - pos: -20.5,4.5 - parent: 22565 - - uid: 23567 + pos: -1.5,-25.5 + parent: 2 + - uid: 5634 components: - type: Transform - pos: -20.5,3.5 - parent: 22565 - - uid: 23568 + pos: -2.5,-25.5 + parent: 2 + - uid: 5635 components: - type: Transform - pos: -20.5,2.5 - parent: 22565 - - uid: 23569 + pos: -3.5,-25.5 + parent: 2 + - uid: 5636 components: - type: Transform - pos: -25.5,5.5 - parent: 22565 - - uid: 23570 + pos: -14.5,21.5 + parent: 2 + - uid: 5637 components: - type: Transform - pos: -24.5,5.5 - parent: 22565 - - uid: 23571 + pos: 41.5,6.5 + parent: 2 + - uid: 5638 components: - type: Transform - pos: -22.5,5.5 - parent: 22565 - - uid: 23572 + pos: 40.5,7.5 + parent: 2 + - uid: 5639 components: - type: Transform - pos: -21.5,5.5 - parent: 22565 - - uid: 23573 + pos: -10.5,-25.5 + parent: 2 + - uid: 5640 components: - type: Transform - pos: -19.5,5.5 - parent: 22565 - - uid: 23574 + pos: 43.5,10.5 + parent: 2 + - uid: 5641 components: - type: Transform - pos: -18.5,5.5 - parent: 22565 - - uid: 23575 + pos: 43.5,3.5 + parent: 2 + - uid: 5642 components: - type: Transform - pos: -17.5,5.5 - parent: 22565 - - uid: 23576 + pos: -9.5,-25.5 + parent: 2 + - uid: 5643 components: - type: Transform - pos: -16.5,5.5 - parent: 22565 - - uid: 23577 + pos: -1.5,-37.5 + parent: 2 + - uid: 5644 components: - type: Transform - pos: -16.5,6.5 - parent: 22565 - - uid: 23578 + pos: -1.5,-32.5 + parent: 2 + - uid: 5645 components: - type: Transform - pos: -16.5,7.5 - parent: 22565 - - uid: 23579 + pos: 3.5,-41.5 + parent: 2 + - uid: 5646 components: - type: Transform - pos: -16.5,8.5 - parent: 22565 - - uid: 23580 + pos: 1.5,-25.5 + parent: 2 + - uid: 5647 components: - type: Transform - pos: -16.5,9.5 - parent: 22565 - - uid: 23581 + pos: -7.5,-25.5 + parent: 2 + - uid: 5648 components: - type: Transform - pos: -16.5,4.5 - parent: 22565 - - uid: 23582 + pos: -7.5,-21.5 + parent: 2 + - uid: 5649 components: - type: Transform - pos: -16.5,3.5 - parent: 22565 - - uid: 23583 + pos: -7.5,-22.5 + parent: 2 + - uid: 5650 components: - type: Transform - pos: -16.5,2.5 - parent: 22565 - - uid: 23584 + pos: -2.5,-23.5 + parent: 2 + - uid: 5651 components: - type: Transform - pos: -31.5,2.5 - parent: 22565 - - uid: 23585 + pos: -4.5,-25.5 + parent: 2 + - uid: 5652 components: - type: Transform - pos: -32.5,2.5 - parent: 22565 - - uid: 23586 + pos: -1.5,-29.5 + parent: 2 + - uid: 5653 components: - type: Transform - pos: -33.5,2.5 - parent: 22565 - - uid: 23587 + pos: -1.5,-32.5 + parent: 2 + - uid: 5654 components: - type: Transform - pos: -18.5,-25.5 - parent: 22565 - - uid: 24763 + pos: -1.5,-31.5 + parent: 2 + - uid: 5655 components: - type: Transform - pos: 26.5,-17.5 - parent: 89 - - uid: 24764 + pos: -1.5,-34.5 + parent: 2 + - uid: 5656 components: - type: Transform - pos: 26.5,-16.5 - parent: 89 - - uid: 24765 + pos: -8.5,-19.5 + parent: 2 + - uid: 5657 components: - type: Transform - pos: 26.5,-16.5 - parent: 89 - - uid: 24766 + pos: -4.5,-31.5 + parent: 2 + - uid: 5658 components: - type: Transform - pos: 25.5,-16.5 - parent: 89 - - uid: 24767 + pos: -3.5,-31.5 + parent: 2 + - uid: 5659 components: - type: Transform - pos: 24.5,-16.5 - parent: 89 - - uid: 24768 + pos: -6.5,-25.5 + parent: 2 + - uid: 5660 components: - type: Transform - pos: 23.5,-16.5 - parent: 89 - - uid: 24769 + pos: -9.5,-18.5 + parent: 2 + - uid: 5661 components: - type: Transform - pos: 22.5,-16.5 - parent: 89 - - uid: 24770 + pos: -1.5,-35.5 + parent: 2 + - uid: 5662 components: - type: Transform - pos: 21.5,-16.5 - parent: 89 - - uid: 24771 + pos: -1.5,-33.5 + parent: 2 + - uid: 5663 components: - type: Transform - pos: 20.5,-16.5 - parent: 89 - - uid: 24772 + pos: -1.5,-28.5 + parent: 2 + - uid: 5664 components: - type: Transform - pos: 19.5,-16.5 - parent: 89 - - uid: 24773 + pos: -29.5,17.5 + parent: 2 + - uid: 5665 components: - type: Transform - pos: 18.5,-16.5 - parent: 89 - - uid: 24774 + pos: -0.5,-25.5 + parent: 2 + - uid: 5666 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24775 + pos: 0.5,-25.5 + parent: 2 + - uid: 5667 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24776 + pos: 2.5,-27.5 + parent: 2 + - uid: 5668 components: - type: Transform - pos: 17.5,-17.5 - parent: 89 - - uid: 24777 + pos: 2.5,-25.5 + parent: 2 + - uid: 5669 components: - type: Transform - pos: 17.5,-18.5 - parent: 89 - - uid: 24778 + pos: 2.5,-29.5 + parent: 2 + - uid: 5670 components: - type: Transform - pos: 17.5,-18.5 - parent: 89 - - uid: 24779 + pos: 2.5,-26.5 + parent: 2 + - uid: 5671 components: - type: Transform - pos: 16.5,-18.5 - parent: 89 - - uid: 24780 + pos: 3.5,-29.5 + parent: 2 + - uid: 5672 components: - type: Transform - pos: 15.5,-18.5 - parent: 89 - - uid: 24781 + pos: 4.5,-29.5 + parent: 2 + - uid: 5673 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - uid: 24782 + pos: -8.5,-20.5 + parent: 2 + - uid: 5674 components: - type: Transform - pos: 14.5,-19.5 - parent: 89 - - uid: 24783 + pos: -7.5,-23.5 + parent: 2 + - uid: 5675 components: - type: Transform - pos: 13.5,-19.5 - parent: 89 - - uid: 24784 + pos: -7.5,-20.5 + parent: 2 + - uid: 5676 components: - type: Transform - pos: 12.5,-19.5 - parent: 89 - - uid: 24785 + pos: -7.5,-24.5 + parent: 2 + - uid: 5677 components: - type: Transform - pos: 11.5,-19.5 - parent: 89 - - uid: 24786 + pos: 35.5,3.5 + parent: 2 + - uid: 5678 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 25397 + pos: 35.5,2.5 + parent: 2 + - uid: 5679 components: - type: Transform - pos: 38.5,-22.5 - parent: 89 - - uid: 25398 + pos: 51.5,1.5 + parent: 2 + - uid: 5680 components: - type: Transform - pos: 37.5,-22.5 - parent: 89 - - uid: 25399 + pos: 50.5,1.5 + parent: 2 + - uid: 5681 components: - type: Transform - pos: 36.5,-22.5 - parent: 89 - - uid: 25400 + pos: 49.5,1.5 + parent: 2 + - uid: 5682 components: - type: Transform - pos: 35.5,-22.5 - parent: 89 - - uid: 25401 + pos: 48.5,1.5 + parent: 2 + - uid: 5683 components: - type: Transform - pos: 34.5,-22.5 - parent: 89 - - uid: 25402 + pos: 47.5,1.5 + parent: 2 + - uid: 5684 components: - type: Transform - pos: 35.5,-23.5 - parent: 89 - - uid: 25403 + pos: 46.5,1.5 + parent: 2 + - uid: 5685 components: - type: Transform - pos: 35.5,-24.5 - parent: 89 - - uid: 25404 + pos: 45.5,1.5 + parent: 2 + - uid: 5686 components: - type: Transform - pos: 35.5,-25.5 - parent: 89 - - uid: 25405 + pos: 44.5,1.5 + parent: 2 + - uid: 5687 components: - type: Transform - pos: 35.5,-26.5 - parent: 89 - - uid: 25406 + pos: 43.5,1.5 + parent: 2 + - uid: 5688 components: - type: Transform - pos: 35.5,-27.5 - parent: 89 - - uid: 25430 + pos: 42.5,1.5 + parent: 2 + - uid: 5689 components: - type: Transform - pos: 1.5,-12.5 - parent: 18153 - - uid: 25431 + pos: 41.5,1.5 + parent: 2 + - uid: 5690 components: - type: Transform - pos: 0.5,-7.5 - parent: 18153 - - uid: 25432 + pos: 40.5,1.5 + parent: 2 + - uid: 5691 components: - type: Transform - pos: 1.5,-7.5 - parent: 18153 - - uid: 25433 + pos: 39.5,1.5 + parent: 2 + - uid: 5692 components: - type: Transform - pos: 5.5,-4.5 - parent: 18153 - - uid: 25434 + pos: 38.5,1.5 + parent: 2 + - uid: 5693 components: - type: Transform - pos: 5.5,-6.5 - parent: 18153 - - uid: 25435 + pos: 37.5,1.5 + parent: 2 + - uid: 5694 components: - type: Transform - pos: 0.5,-8.5 - parent: 18153 - - uid: 25436 + pos: 36.5,1.5 + parent: 2 + - uid: 5695 components: - type: Transform - pos: 3.5,-11.5 - parent: 18153 - - uid: 25437 + pos: 35.5,1.5 + parent: 2 + - uid: 5696 components: - type: Transform - pos: 2.5,-11.5 - parent: 18153 - - uid: 25438 + pos: 35.5,4.5 + parent: 2 + - uid: 5697 components: - type: Transform - pos: 2.5,-7.5 - parent: 18153 - - uid: 25439 + pos: 35.5,5.5 + parent: 2 + - uid: 5698 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25440 + pos: 35.5,6.5 + parent: 2 + - uid: 5699 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25441 + pos: 35.5,7.5 + parent: 2 + - uid: 5700 components: - type: Transform - pos: 3.5,-5.5 - parent: 18153 - - uid: 25442 + pos: 35.5,8.5 + parent: 2 + - uid: 5701 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25443 + pos: 35.5,9.5 + parent: 2 + - uid: 5702 components: - type: Transform - pos: 3.5,-3.5 - parent: 18153 - - uid: 25444 + pos: 35.5,10.5 + parent: 2 + - uid: 5703 components: - type: Transform - pos: 3.5,-2.5 - parent: 18153 - - uid: 25445 + pos: 35.5,11.5 + parent: 2 + - uid: 5704 components: - type: Transform - pos: 3.5,-1.5 - parent: 18153 - - uid: 25446 + pos: 35.5,12.5 + parent: 2 + - uid: 5705 components: - type: Transform - pos: 4.5,-4.5 - parent: 18153 - - uid: 25447 + pos: 35.5,13.5 + parent: 2 + - uid: 5706 components: - type: Transform - pos: 4.5,-6.5 - parent: 18153 - - uid: 25448 + pos: 35.5,14.5 + parent: 2 + - uid: 5707 components: - type: Transform - pos: 0.5,-5.5 - parent: 18153 - - uid: 25449 + pos: 36.5,14.5 + parent: 2 + - uid: 5708 components: - type: Transform - pos: 0.5,-6.5 - parent: 18153 - - uid: 25450 + pos: 37.5,14.5 + parent: 2 + - uid: 5709 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25451 + pos: 38.5,14.5 + parent: 2 + - uid: 5710 components: - type: Transform - pos: 4.5,-10.5 - parent: 18153 - - uid: 25452 + pos: 39.5,14.5 + parent: 2 + - uid: 5711 components: - type: Transform - pos: 3.5,-9.5 - parent: 18153 - - uid: 25453 + pos: 32.5,4.5 + parent: 2 + - uid: 5712 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25454 + pos: 33.5,8.5 + parent: 2 + - uid: 5713 components: - type: Transform - pos: 4.5,-11.5 - parent: 18153 - - uid: 25455 + pos: 34.5,3.5 + parent: 2 + - uid: 5714 components: - type: Transform - pos: 3.5,-8.5 - parent: 18153 - - uid: 25456 + pos: 33.5,8.5 + parent: 2 + - uid: 5715 components: - type: Transform - pos: 4.5,-2.5 - parent: 18153 - - uid: 25457 + pos: 33.5,3.5 + parent: 2 + - uid: 5716 components: - type: Transform - pos: 5.5,-2.5 - parent: 18153 - - uid: 25458 + pos: 32.5,3.5 + parent: 2 + - uid: 5717 components: - type: Transform - pos: 2.5,-2.5 - parent: 18153 - - uid: 25459 + pos: 32.5,5.5 + parent: 2 + - uid: 5718 components: - type: Transform - pos: 1.5,-2.5 - parent: 18153 - - uid: 25460 + pos: 32.5,6.5 + parent: 2 + - uid: 5719 components: - type: Transform - pos: 5.5,-10.5 - parent: 18153 - - uid: 25461 + pos: 32.5,7.5 + parent: 2 + - uid: 5720 components: - type: Transform - pos: 1.5,-12.5 - parent: 18153 - - uid: 25462 + pos: 32.5,8.5 + parent: 2 + - uid: 5721 components: - type: Transform - pos: 5.5,-12.5 - parent: 18153 - - uid: 25463 + pos: 40.5,2.5 + parent: 2 + - uid: 5722 components: - type: Transform - pos: 1.5,-11.5 - parent: 18153 - - uid: 25464 + pos: 40.5,3.5 + parent: 2 + - uid: 5723 components: - type: Transform - pos: 5.5,-11.5 - parent: 18153 - - uid: 25465 + pos: 40.5,4.5 + parent: 2 + - uid: 5724 components: - type: Transform - pos: 1.5,-13.5 - parent: 18153 - - uid: 25466 + pos: 41.5,4.5 + parent: 2 + - uid: 5725 components: - type: Transform - pos: 1.5,-2.5 - parent: 18153 - - uid: 25467 + pos: 42.5,12.5 + parent: 2 + - uid: 5726 components: - type: Transform - pos: 1.5,-3.5 - parent: 18153 - - uid: 25468 + pos: 52.5,-5.5 + parent: 2 + - uid: 5727 components: - type: Transform - pos: 2.5,-3.5 - parent: 18153 - - uid: 25469 + pos: 49.5,12.5 + parent: 2 + - uid: 5728 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25470 + pos: 47.5,12.5 + parent: 2 + - uid: 5729 components: - type: Transform - pos: 5.5,-12.5 - parent: 18153 - - uid: 25471 + pos: 48.5,12.5 + parent: 2 + - uid: 5730 components: - type: Transform - pos: 5.5,-13.5 - parent: 18153 - - uid: 25472 + pos: 47.5,14.5 + parent: 2 + - uid: 5731 components: - type: Transform - pos: 3.5,-5.5 - parent: 18153 - - uid: 25473 + pos: 52.5,-4.5 + parent: 2 + - uid: 5732 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25474 + pos: 52.5,-3.5 + parent: 2 + - uid: 5733 components: - type: Transform - pos: 5.5,-3.5 - parent: 18153 - - uid: 25475 + pos: 52.5,-2.5 + parent: 2 + - uid: 5734 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25476 + pos: 52.5,-0.5 + parent: 2 + - uid: 5735 components: - type: Transform - pos: 3.5,-3.5 - parent: 18153 - - uid: 25477 + pos: 13.5,-14.5 + parent: 2 + - uid: 5736 components: - type: Transform - pos: 1.5,-3.5 - parent: 18153 - - uid: 25478 + pos: -37.5,-9.5 + parent: 2 + - uid: 5737 components: - type: Transform - pos: 0.5,-4.5 - parent: 18153 - - uid: 25479 + pos: -117.5,18.5 + parent: 2 + - uid: 5738 components: - type: Transform - pos: 0.5,-5.5 - parent: 18153 - - uid: 25607 + pos: -4.5,23.5 + parent: 2 + - uid: 5739 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 25608 + pos: -6.5,23.5 + parent: 2 + - uid: 5740 components: - type: Transform - pos: 9.5,-18.5 - parent: 89 - - uid: 25643 + pos: -70.5,-16.5 + parent: 2 + - uid: 5741 components: - type: Transform - pos: -86.5,-6.5 - parent: 89 - - uid: 25657 + pos: -8.5,23.5 + parent: 2 + - uid: 5742 components: - type: Transform - pos: 27.5,-16.5 - parent: 89 - - uid: 25658 + pos: -52.5,-11.5 + parent: 2 + - uid: 5743 components: - type: Transform - pos: 28.5,-16.5 - parent: 89 - - uid: 25659 + pos: -53.5,-11.5 + parent: 2 + - uid: 5744 components: - type: Transform - pos: 29.5,-16.5 - parent: 89 - - uid: 25660 + pos: 0.5,12.5 + parent: 2 + - uid: 5745 components: - type: Transform - pos: 30.5,-16.5 - parent: 89 - - uid: 25661 + pos: -82.5,-5.5 + parent: 2 + - uid: 5746 components: - type: Transform - pos: 31.5,-16.5 - parent: 89 - - uid: 25662 + pos: -73.5,-9.5 + parent: 2 + - uid: 5747 components: - type: Transform - pos: 32.5,-16.5 - parent: 89 - - uid: 25663 + pos: -70.5,-13.5 + parent: 2 + - uid: 5748 components: - type: Transform - pos: 33.5,-16.5 - parent: 89 - - uid: 25664 + pos: -70.5,-15.5 + parent: 2 + - uid: 5749 components: - type: Transform - pos: 34.5,-16.5 - parent: 89 - - uid: 25665 + pos: -71.5,-16.5 + parent: 2 + - uid: 5750 components: - type: Transform - pos: 35.5,-16.5 - parent: 89 - - uid: 25666 + pos: -43.5,-7.5 + parent: 2 + - uid: 5751 components: - type: Transform - pos: 36.5,-16.5 - parent: 89 - - uid: 25667 + pos: -119.5,15.5 + parent: 2 + - uid: 5752 components: - type: Transform - pos: 36.5,-17.5 - parent: 89 - - uid: 25848 + pos: -11.5,23.5 + parent: 2 + - uid: 5753 components: - type: Transform - pos: -26.5,16.5 - parent: 89 - - uid: 25849 + pos: -73.5,-10.5 + parent: 2 + - uid: 5754 components: - type: Transform - pos: -26.5,17.5 - parent: 89 - - uid: 25865 + pos: -69.5,-10.5 + parent: 2 + - uid: 5755 components: - type: Transform - pos: -14.5,-25.5 - parent: 89 -- proto: CableApcStack - entities: - - uid: 97 + pos: -72.5,-15.5 + parent: 2 + - uid: 5756 components: - type: Transform - pos: -13.491456,-15.321603 - parent: 89 - - uid: 99 + pos: -67.5,-9.5 + parent: 2 + - uid: 5757 components: - type: Transform - pos: -13.335206,-15.446603 - parent: 89 - - uid: 8938 + pos: -67.5,-8.5 + parent: 2 + - uid: 5758 components: - type: Transform - pos: -131.43742,-2.5232015 - parent: 89 - - uid: 15290 + pos: -68.5,-8.5 + parent: 2 + - uid: 5759 components: - type: Transform - pos: -115.45264,15.019241 - parent: 89 - - uid: 19698 + pos: -44.5,-12.5 + parent: 2 + - uid: 5760 components: - type: Transform - pos: 17.273815,-1.3573475 - parent: 89 - - uid: 19699 + pos: -1.5,12.5 + parent: 2 + - uid: 5761 components: - type: Transform - pos: 17.273815,-1.3573475 - parent: 89 - - uid: 19703 + pos: -0.5,12.5 + parent: 2 + - uid: 5762 components: - type: Transform - pos: 17.273815,-1.3573475 - parent: 89 - - uid: 19727 + pos: -13.5,23.5 + parent: 2 + - uid: 5763 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19728 + pos: -80.5,-9.5 + parent: 2 + - uid: 5764 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19729 + pos: -80.5,-8.5 + parent: 2 + - uid: 5765 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19730 + pos: -119.5,14.5 + parent: 2 + - uid: 5766 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19731 + pos: -79.5,-9.5 + parent: 2 + - uid: 5767 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 19732 + pos: -78.5,-9.5 + parent: 2 + - uid: 5768 components: - type: Transform - pos: -119.4907,12.690424 - parent: 89 - - uid: 20085 + pos: -77.5,-9.5 + parent: 2 + - uid: 5769 components: - type: Transform - pos: -115.48235,5.7165937 - parent: 89 - - uid: 21091 + pos: -81.5,-5.5 + parent: 2 + - uid: 5770 components: - type: Transform - pos: -103.706276,-2.3275843 - parent: 89 - - uid: 21094 + pos: -76.5,-9.5 + parent: 2 + - uid: 5771 components: - type: Transform - pos: -103.50315,-2.2338343 - parent: 89 -- proto: CableApcStack1 - entities: - - uid: 8223 + pos: -75.5,-9.5 + parent: 2 + - uid: 5772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5947638,30.561302 - parent: 89 - - uid: 8231 + pos: -74.5,-9.5 + parent: 2 + - uid: 5773 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.532264,30.576927 - parent: 89 - - uid: 8239 + pos: -80.5,-5.5 + parent: 2 + - uid: 5774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.6103897,32.545677 - parent: 89 - - uid: 8250 + pos: -80.5,-7.5 + parent: 2 + - uid: 5775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.7041397,30.561302 - parent: 89 - - uid: 8259 + pos: -82.5,-6.5 + parent: 2 + - uid: 5776 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.51449203,41.5748 - parent: 89 - - uid: 8288 + pos: -82.5,-8.5 + parent: 2 + - uid: 5777 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5392475,40.54355 - parent: 89 - - uid: 8302 + pos: -82.5,-7.5 + parent: 2 + - uid: 5778 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5635147,35.623802 - parent: 89 - - uid: 8305 + pos: -82.5,-9.5 + parent: 2 + - uid: 5779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.576991,41.48105 - parent: 89 - - uid: 8313 + pos: -72.5,-10.5 + parent: 2 + - uid: 5780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.764492,45.777924 - parent: 89 - - uid: 8316 + pos: -71.5,-10.5 + parent: 2 + - uid: 5781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.326992,45.7623 - parent: 89 - - uid: 8328 + pos: -70.5,-10.5 + parent: 2 + - uid: 5782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.608242,43.5123 - parent: 89 - - uid: 21515 + pos: -14.5,22.5 + parent: 2 + - uid: 5783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.524166,21.414473 - parent: 89 - - uid: 21516 + pos: -150.5,-12.5 + parent: 2 + - uid: 5784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.586666,22.273848 - parent: 89 - - uid: 21517 + pos: -117.5,19.5 + parent: 2 + - uid: 5785 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.47729,23.523848 - parent: 89 -- proto: CableHV - entities: - - uid: 43 + pos: -14.5,23.5 + parent: 2 + - uid: 5786 components: - type: Transform - pos: -1.5,23.5 - parent: 89 - - uid: 125 + pos: -12.5,23.5 + parent: 2 + - uid: 5787 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 464 + pos: -10.5,23.5 + parent: 2 + - uid: 5788 components: - type: Transform - pos: 59.5,-38.5 - parent: 89 - - uid: 466 + pos: -7.5,23.5 + parent: 2 + - uid: 5789 components: - type: Transform - pos: 62.5,-31.5 - parent: 89 - - uid: 517 + pos: -5.5,23.5 + parent: 2 + - uid: 5790 components: - type: Transform - pos: 62.5,-32.5 - parent: 89 - - uid: 521 + pos: 34.5,27.5 + parent: 2 + - uid: 5791 components: - type: Transform - pos: 53.5,-37.5 - parent: 89 - - uid: 522 + pos: 20.5,-16.5 + parent: 2 + - uid: 5792 components: - type: Transform - pos: 55.5,-37.5 - parent: 89 - - uid: 620 + pos: 12.5,-15.5 + parent: 2 + - uid: 5793 components: - type: Transform - pos: 47.5,3.5 - parent: 89 - - uid: 626 + pos: -3.5,26.5 + parent: 2 + - uid: 5794 components: - type: Transform - pos: 48.5,3.5 - parent: 89 - - uid: 797 + pos: 13.5,-15.5 + parent: 2 + - uid: 5795 components: - type: Transform - pos: -130.5,-3.5 - parent: 89 - - uid: 816 + pos: -3.5,23.5 + parent: 2 + - uid: 5796 components: - type: Transform - pos: -11.5,3.5 - parent: 89 - - uid: 819 + pos: -5.5,26.5 + parent: 2 + - uid: 5797 components: - type: Transform - pos: -10.5,3.5 - parent: 89 - - uid: 821 + pos: -5.5,27.5 + parent: 2 + - uid: 5798 components: - type: Transform - pos: -7.5,3.5 - parent: 89 - - uid: 822 + pos: -4.5,26.5 + parent: 2 + - uid: 5799 components: - type: Transform - pos: -6.5,3.5 - parent: 89 - - uid: 867 + pos: -5.5,26.5 + parent: 2 + - uid: 5800 components: - type: Transform - pos: 47.5,4.5 - parent: 89 - - uid: 991 + pos: -3.5,26.5 + parent: 2 + - uid: 5801 components: - type: Transform - pos: 54.5,-37.5 - parent: 89 - - uid: 1637 + pos: -3.5,27.5 + parent: 2 + - uid: 5802 components: - type: Transform - pos: -3.5,3.5 - parent: 89 - - uid: 1797 + pos: -3.5,28.5 + parent: 2 + - uid: 5803 components: - type: Transform - pos: -14.5,21.5 - parent: 89 - - uid: 2073 + pos: -3.5,29.5 + parent: 2 + - uid: 5804 components: - type: Transform - pos: -2.5,3.5 - parent: 89 - - uid: 2085 + pos: -3.5,30.5 + parent: 2 + - uid: 5805 components: - type: Transform - pos: -131.5,-3.5 - parent: 89 - - uid: 2089 + pos: -3.5,31.5 + parent: 2 + - uid: 5806 components: - type: Transform - pos: -128.5,-8.5 - parent: 89 - - uid: 2242 + pos: -3.5,33.5 + parent: 2 + - uid: 5807 components: - type: Transform - pos: -1.5,3.5 - parent: 89 - - uid: 2258 + pos: -3.5,34.5 + parent: 2 + - uid: 5808 components: - type: Transform - pos: -0.5,3.5 - parent: 89 - - uid: 2654 + pos: -3.5,35.5 + parent: 2 + - uid: 5809 components: - type: Transform - pos: 0.5,3.5 - parent: 89 - - uid: 2868 + pos: -3.5,36.5 + parent: 2 + - uid: 5810 components: - type: Transform - pos: -126.5,4.5 - parent: 89 - - uid: 3033 + pos: -3.5,37.5 + parent: 2 + - uid: 5811 components: - type: Transform - pos: 52.5,26.5 - parent: 89 - - uid: 3034 + pos: -3.5,38.5 + parent: 2 + - uid: 5812 components: - type: Transform - pos: 51.5,26.5 - parent: 89 - - uid: 3038 + pos: -3.5,39.5 + parent: 2 + - uid: 5813 components: - type: Transform - pos: 50.5,26.5 - parent: 89 - - uid: 3040 + pos: -2.5,39.5 + parent: 2 + - uid: 5814 components: - type: Transform - pos: 49.5,26.5 - parent: 89 - - uid: 3277 + pos: -2.5,38.5 + parent: 2 + - uid: 5815 components: - type: Transform - pos: 53.5,43.5 - parent: 89 - - uid: 3282 + pos: 52.5,-23.5 + parent: 2 + - uid: 5816 components: - type: Transform - pos: -126.5,-7.5 - parent: 89 - - uid: 3286 + pos: -130.5,-4.5 + parent: 2 + - uid: 5817 components: - type: Transform - pos: -129.5,-13.5 - parent: 89 - - uid: 4891 + pos: 2.5,-28.5 + parent: 2 + - uid: 5818 components: - type: Transform - pos: -123.5,-18.5 - parent: 89 - - uid: 5833 + pos: -80.5,-6.5 + parent: 2 + - uid: 5819 components: - type: Transform - pos: 3.5,23.5 - parent: 89 - - uid: 6229 + pos: -70.5,-14.5 + parent: 2 + - uid: 5820 components: - type: Transform - pos: -133.5,-9.5 - parent: 89 - - uid: 6240 + pos: -70.5,-11.5 + parent: 2 + - uid: 5821 components: - type: Transform - pos: -127.5,-3.5 - parent: 89 - - uid: 6247 + pos: -70.5,-12.5 + parent: 2 + - uid: 5822 components: - type: Transform - pos: -129.5,-3.5 - parent: 89 - - uid: 6511 + pos: -47.5,-12.5 + parent: 2 + - uid: 5823 components: - type: Transform - pos: -132.5,-2.5 - parent: 89 - - uid: 6646 + pos: -43.5,-11.5 + parent: 2 + - uid: 5824 components: - type: Transform - pos: -34.5,-16.5 - parent: 89 - - uid: 6648 + pos: -43.5,-12.5 + parent: 2 + - uid: 5825 components: - type: Transform - pos: -33.5,-16.5 - parent: 89 - - uid: 6720 + pos: -67.5,-10.5 + parent: 2 + - uid: 5826 components: - type: Transform - pos: -35.5,-16.5 - parent: 89 - - uid: 6864 + pos: -68.5,-10.5 + parent: 2 + - uid: 5827 components: - type: Transform - pos: -14.5,22.5 - parent: 89 - - uid: 6974 + pos: -48.5,-12.5 + parent: 2 + - uid: 5828 components: - type: Transform - pos: -128.5,-9.5 - parent: 89 - - uid: 6975 + pos: -43.5,-9.5 + parent: 2 + - uid: 5829 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 7145 + pos: -72.5,-14.5 + parent: 2 + - uid: 5830 components: - type: Transform - pos: 10.5,26.5 - parent: 89 - - uid: 7618 + pos: -46.5,-12.5 + parent: 2 + - uid: 5831 components: - type: Transform - pos: 63.5,-22.5 - parent: 89 - - uid: 7621 + pos: -45.5,-12.5 + parent: 2 + - uid: 5832 components: - type: Transform - pos: 63.5,-23.5 - parent: 89 - - uid: 7636 + pos: -72.5,-16.5 + parent: 2 + - uid: 5833 components: - type: Transform - pos: 8.5,26.5 - parent: 89 - - uid: 8248 + pos: -43.5,-8.5 + parent: 2 + - uid: 5834 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8249 + pos: -43.5,-10.5 + parent: 2 + - uid: 5835 components: - type: Transform - pos: -5.5,27.5 - parent: 89 - - uid: 8251 + pos: -14.5,-26.5 + parent: 2 + - uid: 5836 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8252 + pos: -15.5,-26.5 + parent: 2 + - uid: 5837 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8253 + pos: -16.5,-26.5 + parent: 2 + - uid: 5838 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8255 + pos: -9.5,-16.5 + parent: 2 + - uid: 5839 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8256 + pos: -10.5,-16.5 + parent: 2 + - uid: 5840 components: - type: Transform - pos: -3.5,25.5 - parent: 89 - - uid: 8257 + pos: -9.5,-17.5 + parent: 2 + - uid: 5841 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 8351 + pos: -17.5,-26.5 + parent: 2 + - uid: 5842 components: - type: Transform - pos: 21.5,25.5 - parent: 89 - - uid: 8447 + pos: -19.5,-26.5 + parent: 2 + - uid: 5843 components: - type: Transform - pos: -129.5,12.5 - parent: 89 - - uid: 8448 + pos: -18.5,-26.5 + parent: 2 + - uid: 5844 components: - type: Transform - pos: -127.5,12.5 - parent: 89 - - uid: 8455 + pos: -11.5,-16.5 + parent: 2 + - uid: 5845 components: - type: Transform - pos: -128.5,12.5 - parent: 89 - - uid: 8458 + pos: -20.5,-26.5 + parent: 2 + - uid: 5846 components: - type: Transform - pos: -118.5,6.5 - parent: 89 - - uid: 8463 + pos: -20.5,-25.5 + parent: 2 + - uid: 5847 components: - type: Transform - pos: -130.5,12.5 - parent: 89 - - uid: 8464 + pos: -21.5,-25.5 + parent: 2 + - uid: 5848 components: - type: Transform - pos: -130.5,13.5 - parent: 89 - - uid: 8465 + pos: -22.5,-25.5 + parent: 2 + - uid: 5849 components: - type: Transform - pos: -130.5,14.5 - parent: 89 - - uid: 8466 + pos: -23.5,-25.5 + parent: 2 + - uid: 5850 components: - type: Transform - pos: -130.5,15.5 - parent: 89 - - uid: 8467 + pos: -24.5,-25.5 + parent: 2 + - uid: 5851 components: - type: Transform - pos: -130.5,16.5 - parent: 89 - - uid: 8479 + pos: -13.5,-16.5 + parent: 2 + - uid: 5852 components: - type: Transform - pos: -126.5,12.5 - parent: 89 - - uid: 8543 + pos: -16.5,-16.5 + parent: 2 + - uid: 5853 components: - type: Transform - pos: -121.5,18.5 - parent: 89 - - uid: 8544 + pos: -24.5,-16.5 + parent: 2 + - uid: 5854 components: - type: Transform - pos: -122.5,18.5 - parent: 89 - - uid: 8545 + pos: -24.5,-16.5 + parent: 2 + - uid: 5855 components: - type: Transform - pos: -125.5,12.5 - parent: 89 - - uid: 8546 + pos: -23.5,-16.5 + parent: 2 + - uid: 5856 components: - type: Transform - pos: -124.5,12.5 - parent: 89 - - uid: 8547 + pos: -22.5,-16.5 + parent: 2 + - uid: 5857 components: - type: Transform - pos: -123.5,12.5 - parent: 89 - - uid: 8548 + pos: -21.5,-16.5 + parent: 2 + - uid: 5858 components: - type: Transform - pos: -123.5,13.5 - parent: 89 - - uid: 8549 + pos: -20.5,-16.5 + parent: 2 + - uid: 5859 components: - type: Transform - pos: -123.5,14.5 - parent: 89 - - uid: 8550 + pos: -19.5,-16.5 + parent: 2 + - uid: 5860 components: - type: Transform - pos: -123.5,15.5 - parent: 89 - - uid: 8552 + pos: -18.5,-16.5 + parent: 2 + - uid: 5861 components: - type: Transform - pos: -123.5,18.5 - parent: 89 - - uid: 8560 + pos: -17.5,-16.5 + parent: 2 + - uid: 5862 components: - type: Transform - pos: -124.5,18.5 - parent: 89 - - uid: 8561 + pos: -15.5,-16.5 + parent: 2 + - uid: 5863 components: - type: Transform - pos: -125.5,17.5 - parent: 89 - - uid: 8562 + pos: -14.5,-16.5 + parent: 2 + - uid: 5864 components: - type: Transform - pos: 18.5,26.5 - parent: 89 - - uid: 8571 + pos: -12.5,-16.5 + parent: 2 + - uid: 5865 components: - type: Transform - pos: -120.5,18.5 - parent: 89 - - uid: 8572 + pos: -25.5,-25.5 + parent: 2 + - uid: 5866 components: - type: Transform - pos: -120.5,19.5 - parent: 89 - - uid: 8578 + pos: -25.5,-24.5 + parent: 2 + - uid: 5867 components: - type: Transform - pos: -118.5,5.5 - parent: 89 - - uid: 8700 + pos: -25.5,-23.5 + parent: 2 + - uid: 5868 components: - type: Transform - pos: -121.5,19.5 - parent: 89 - - uid: 8701 + pos: -25.5,-22.5 + parent: 2 + - uid: 5869 components: - type: Transform - pos: -124.5,17.5 - parent: 89 - - uid: 8702 + pos: -25.5,-21.5 + parent: 2 + - uid: 5870 components: - type: Transform - pos: -123.5,17.5 - parent: 89 - - uid: 8721 + pos: -25.5,-20.5 + parent: 2 + - uid: 5871 components: - type: Transform - pos: -125.5,18.5 - parent: 89 - - uid: 8722 + pos: -25.5,-19.5 + parent: 2 + - uid: 5872 components: - type: Transform - pos: -123.5,16.5 - parent: 89 - - uid: 8848 + pos: -25.5,-18.5 + parent: 2 + - uid: 5873 components: - type: Transform - pos: 62.5,-29.5 - parent: 89 - - uid: 8894 + pos: -25.5,-17.5 + parent: 2 + - uid: 5874 components: - type: Transform - pos: 34.5,27.5 - parent: 89 - - uid: 8923 + pos: -25.5,-16.5 + parent: 2 + - uid: 5875 components: - type: Transform - pos: -129.5,-8.5 - parent: 89 - - uid: 8924 + pos: -3.5,24.5 + parent: 2 + - uid: 5876 components: - type: Transform - pos: -130.5,-8.5 - parent: 89 - - uid: 8934 + pos: -40.5,21.5 + parent: 2 + - uid: 5877 components: - type: Transform - pos: -132.5,-6.5 - parent: 89 - - uid: 8936 + pos: -40.5,22.5 + parent: 2 + - uid: 5878 components: - type: Transform - pos: -132.5,-5.5 - parent: 89 - - uid: 9139 + pos: -40.5,20.5 + parent: 2 + - uid: 5879 components: - type: Transform - pos: -124.5,19.5 - parent: 89 - - uid: 9236 + pos: 13.5,31.5 + parent: 2 + - uid: 5880 components: - type: Transform - pos: 62.5,-30.5 - parent: 89 - - uid: 9338 + pos: 13.5,28.5 + parent: 2 + - uid: 5881 components: - type: Transform - pos: -82.5,-7.5 - parent: 89 - - uid: 9344 + pos: 13.5,32.5 + parent: 2 + - uid: 5882 components: - type: Transform - pos: -82.5,-6.5 - parent: 89 - - uid: 9777 + pos: -40.5,24.5 + parent: 2 + - uid: 5883 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 10970 + pos: 14.5,32.5 + parent: 2 + - uid: 5884 components: - type: Transform - pos: 11.5,26.5 - parent: 89 - - uid: 11216 + pos: -40.5,23.5 + parent: 2 + - uid: 5885 components: - type: Transform - pos: 24.5,24.5 - parent: 89 - - uid: 11221 + pos: -3.5,25.5 + parent: 2 + - uid: 5886 components: - type: Transform - pos: 23.5,25.5 - parent: 89 - - uid: 11385 + pos: -29.5,18.5 + parent: 2 + - uid: 5887 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 11398 + pos: -29.5,16.5 + parent: 2 + - uid: 5888 components: - type: Transform - pos: -41.5,20.5 - parent: 89 - - uid: 11411 + pos: 15.5,32.5 + parent: 2 + - uid: 5889 components: - type: Transform - pos: -14.5,20.5 - parent: 89 - - uid: 11412 + pos: -39.5,20.5 + parent: 2 + - uid: 5890 components: - type: Transform - pos: -15.5,20.5 - parent: 89 - - uid: 11413 + pos: -38.5,20.5 + parent: 2 + - uid: 5891 components: - type: Transform - pos: -16.5,20.5 - parent: 89 - - uid: 11414 + pos: -37.5,20.5 + parent: 2 + - uid: 5892 components: - type: Transform - pos: -17.5,20.5 - parent: 89 - - uid: 11415 + pos: -36.5,20.5 + parent: 2 + - uid: 5893 components: - type: Transform - pos: -18.5,20.5 - parent: 89 - - uid: 11416 + pos: -35.5,20.5 + parent: 2 + - uid: 5894 components: - type: Transform - pos: -19.5,20.5 - parent: 89 - - uid: 11417 + pos: -34.5,20.5 + parent: 2 + - uid: 5895 components: - type: Transform - pos: -20.5,20.5 - parent: 89 - - uid: 11418 + pos: -33.5,20.5 + parent: 2 + - uid: 5896 components: - type: Transform - pos: -21.5,20.5 - parent: 89 - - uid: 11419 + pos: -32.5,20.5 + parent: 2 + - uid: 5897 components: - type: Transform - pos: -22.5,20.5 - parent: 89 - - uid: 11420 + pos: -31.5,20.5 + parent: 2 + - uid: 5898 components: - type: Transform - pos: -23.5,20.5 - parent: 89 - - uid: 11421 + pos: -30.5,20.5 + parent: 2 + - uid: 5899 components: - type: Transform - pos: -24.5,20.5 - parent: 89 - - uid: 11422 + pos: -29.5,20.5 + parent: 2 + - uid: 5900 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 11423 + pos: -28.5,20.5 + parent: 2 + - uid: 5901 components: - type: Transform - pos: -26.5,20.5 - parent: 89 - - uid: 11424 + pos: -27.5,20.5 + parent: 2 + - uid: 5902 components: - type: Transform - pos: -27.5,20.5 - parent: 89 - - uid: 11425 + pos: -27.5,21.5 + parent: 2 + - uid: 5903 components: - type: Transform - pos: -28.5,20.5 - parent: 89 - - uid: 11426 + pos: -27.5,22.5 + parent: 2 + - uid: 5904 components: - type: Transform - pos: -29.5,20.5 - parent: 89 - - uid: 11427 + pos: -29.5,15.5 + parent: 2 + - uid: 5905 components: - type: Transform - pos: -30.5,20.5 - parent: 89 - - uid: 11428 + pos: -29.5,14.5 + parent: 2 + - uid: 5906 components: - type: Transform - pos: -31.5,20.5 - parent: 89 - - uid: 11429 + pos: -29.5,13.5 + parent: 2 + - uid: 5907 components: - type: Transform - pos: -32.5,20.5 - parent: 89 - - uid: 11430 + pos: -28.5,13.5 + parent: 2 + - uid: 5908 components: - type: Transform - pos: -33.5,20.5 - parent: 89 - - uid: 11431 + pos: -27.5,13.5 + parent: 2 + - uid: 5909 components: - type: Transform - pos: -34.5,20.5 - parent: 89 - - uid: 11432 + pos: -27.5,14.5 + parent: 2 + - uid: 5910 components: - type: Transform - pos: -35.5,20.5 - parent: 89 - - uid: 11433 + pos: -27.5,15.5 + parent: 2 + - uid: 5911 components: - type: Transform - pos: -36.5,20.5 - parent: 89 - - uid: 11434 + pos: -117.5,14.5 + parent: 2 + - uid: 5912 components: - type: Transform - pos: -37.5,20.5 - parent: 89 - - uid: 11435 + pos: -36.5,6.5 + parent: 2 + - uid: 5913 components: - type: Transform - pos: -38.5,20.5 - parent: 89 - - uid: 11436 + pos: -39.5,23.5 + parent: 2 + - uid: 5914 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 11437 + pos: -21.5,19.5 + parent: 2 + - uid: 5915 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 11438 + pos: -21.5,20.5 + parent: 2 + - uid: 5916 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 11439 + pos: -22.5,20.5 + parent: 2 + - uid: 5917 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 11440 + pos: -23.5,20.5 + parent: 2 + - uid: 5918 components: - type: Transform - pos: -40.5,23.5 - parent: 89 - - uid: 11441 + pos: -24.5,20.5 + parent: 2 + - uid: 5919 components: - type: Transform - pos: -40.5,24.5 - parent: 89 - - uid: 11443 + pos: -25.5,20.5 + parent: 2 + - uid: 5920 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 11444 + pos: -26.5,20.5 + parent: 2 + - uid: 5921 components: - type: Transform - pos: -43.5,20.5 - parent: 89 - - uid: 11445 + pos: -36.5,7.5 + parent: 2 + - uid: 5922 components: - type: Transform - pos: -44.5,20.5 - parent: 89 - - uid: 11446 + pos: -14.5,17.5 + parent: 2 + - uid: 5923 components: - type: Transform - pos: -45.5,20.5 - parent: 89 - - uid: 11447 + pos: -14.5,16.5 + parent: 2 + - uid: 5924 components: - type: Transform - pos: -46.5,20.5 - parent: 89 - - uid: 11448 + pos: -14.5,15.5 + parent: 2 + - uid: 5925 components: - type: Transform - pos: -47.5,20.5 - parent: 89 - - uid: 11449 + pos: -14.5,14.5 + parent: 2 + - uid: 5926 components: - type: Transform - pos: -48.5,20.5 - parent: 89 - - uid: 11450 + pos: -14.5,13.5 + parent: 2 + - uid: 5927 components: - type: Transform - pos: -49.5,20.5 - parent: 89 - - uid: 11451 + pos: -14.5,12.5 + parent: 2 + - uid: 5928 components: - type: Transform - pos: -50.5,20.5 - parent: 89 - - uid: 11452 + pos: -14.5,20.5 + parent: 2 + - uid: 5929 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 11453 + pos: -14.5,18.5 + parent: 2 + - uid: 5930 components: - type: Transform - pos: -52.5,20.5 - parent: 89 - - uid: 11454 + pos: -117.5,13.5 + parent: 2 + - uid: 5931 components: - type: Transform - pos: -53.5,20.5 - parent: 89 - - uid: 11455 + pos: 15.5,-13.5 + parent: 2 + - uid: 5932 components: - type: Transform - pos: -84.5,13.5 - parent: 89 - - uid: 11460 + pos: 14.5,-15.5 + parent: 2 + - uid: 5933 components: - type: Transform - pos: -99.5,22.5 - parent: 89 - - uid: 11463 + pos: 13.5,-10.5 + parent: 2 + - uid: 5934 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - uid: 11465 + pos: -36.5,8.5 + parent: 2 + - uid: 5935 components: - type: Transform - pos: -118.5,15.5 - parent: 89 - - uid: 11466 + pos: -119.5,13.5 + parent: 2 + - uid: 5936 components: - type: Transform - pos: -117.5,15.5 - parent: 89 - - uid: 11467 + pos: -119.5,12.5 + parent: 2 + - uid: 5937 components: - type: Transform - pos: -116.5,15.5 - parent: 89 - - uid: 11468 + pos: -119.5,11.5 + parent: 2 + - uid: 5938 components: - type: Transform - pos: -116.5,14.5 - parent: 89 - - uid: 11469 + pos: -119.5,10.5 + parent: 2 + - uid: 5939 components: - type: Transform - pos: -119.5,16.5 - parent: 89 - - uid: 11470 + pos: -119.5,9.5 + parent: 2 + - uid: 5940 components: - type: Transform - pos: -119.5,17.5 - parent: 89 - - uid: 11471 + pos: -118.5,9.5 + parent: 2 + - uid: 5941 components: - type: Transform - pos: -118.5,17.5 - parent: 89 - - uid: 11472 + pos: -117.5,9.5 + parent: 2 + - uid: 5942 components: - type: Transform - pos: -117.5,17.5 - parent: 89 - - uid: 11473 + pos: -116.5,9.5 + parent: 2 + - uid: 5943 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 11474 + pos: -115.5,9.5 + parent: 2 + - uid: 5944 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 11475 + pos: -114.5,9.5 + parent: 2 + - uid: 5945 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 11476 + pos: -113.5,9.5 + parent: 2 + - uid: 5946 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 11477 + pos: -112.5,9.5 + parent: 2 + - uid: 5947 components: - type: Transform - pos: -112.5,17.5 - parent: 89 - - uid: 11478 + pos: -111.5,9.5 + parent: 2 + - uid: 5948 components: - type: Transform - pos: -111.5,17.5 - parent: 89 - - uid: 11479 + pos: -110.5,9.5 + parent: 2 + - uid: 5949 components: - type: Transform - pos: -110.5,17.5 - parent: 89 - - uid: 11480 + pos: -109.5,9.5 + parent: 2 + - uid: 5950 components: - type: Transform - pos: -109.5,17.5 - parent: 89 - - uid: 11481 + pos: -108.5,9.5 + parent: 2 + - uid: 5951 components: - type: Transform - pos: -108.5,17.5 - parent: 89 - - uid: 11482 + pos: -108.5,10.5 + parent: 2 + - uid: 5952 components: - type: Transform - pos: -107.5,17.5 - parent: 89 - - uid: 11483 + pos: -108.5,11.5 + parent: 2 + - uid: 5953 components: - type: Transform - pos: -106.5,17.5 - parent: 89 - - uid: 11484 + pos: -108.5,12.5 + parent: 2 + - uid: 5954 components: - type: Transform - pos: -105.5,17.5 - parent: 89 - - uid: 11485 + pos: -108.5,13.5 + parent: 2 + - uid: 5955 components: - type: Transform - pos: -104.5,17.5 - parent: 89 - - uid: 11486 + pos: -108.5,14.5 + parent: 2 + - uid: 5956 components: - type: Transform - pos: -103.5,17.5 - parent: 89 - - uid: 11487 + pos: -105.5,14.5 + parent: 2 + - uid: 5957 components: - type: Transform - pos: -102.5,17.5 - parent: 89 - - uid: 11488 + pos: -106.5,14.5 + parent: 2 + - uid: 5958 components: - type: Transform - pos: -101.5,17.5 - parent: 89 - - uid: 11489 + pos: -107.5,14.5 + parent: 2 + - uid: 5959 components: - type: Transform - pos: -100.5,17.5 - parent: 89 - - uid: 11490 + pos: -108.5,8.5 + parent: 2 + - uid: 5960 components: - type: Transform - pos: -100.5,18.5 - parent: 89 - - uid: 11491 + pos: -108.5,7.5 + parent: 2 + - uid: 5961 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 11492 + pos: -108.5,6.5 + parent: 2 + - uid: 5962 components: - type: Transform - pos: -100.5,20.5 - parent: 89 - - uid: 11493 + pos: -108.5,5.5 + parent: 2 + - uid: 5963 components: - type: Transform - pos: -100.5,21.5 - parent: 89 - - uid: 11494 + pos: -108.5,4.5 + parent: 2 + - uid: 5964 components: - type: Transform - pos: -100.5,22.5 - parent: 89 - - uid: 11496 + pos: -108.5,3.5 + parent: 2 + - uid: 5965 components: - type: Transform - pos: -98.5,22.5 - parent: 89 - - uid: 11497 + pos: -108.5,2.5 + parent: 2 + - uid: 5966 components: - type: Transform - pos: -97.5,22.5 - parent: 89 - - uid: 11498 + pos: -108.5,1.5 + parent: 2 + - uid: 5967 components: - type: Transform - pos: -96.5,22.5 - parent: 89 - - uid: 11499 + pos: -108.5,0.5 + parent: 2 + - uid: 5968 components: - type: Transform - pos: -95.5,22.5 - parent: 89 - - uid: 11500 + pos: -108.5,-0.5 + parent: 2 + - uid: 5969 components: - type: Transform - pos: -94.5,22.5 - parent: 89 - - uid: 11501 + pos: -108.5,-1.5 + parent: 2 + - uid: 5970 components: - type: Transform - pos: -93.5,22.5 - parent: 89 - - uid: 11502 + pos: -108.5,-2.5 + parent: 2 + - uid: 5971 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 11503 + pos: -108.5,-3.5 + parent: 2 + - uid: 5972 components: - type: Transform - pos: -91.5,22.5 - parent: 89 - - uid: 11504 + pos: -108.5,-4.5 + parent: 2 + - uid: 5973 components: - type: Transform - pos: -90.5,22.5 - parent: 89 - - uid: 11505 + pos: -108.5,-5.5 + parent: 2 + - uid: 5974 components: - type: Transform - pos: -89.5,22.5 - parent: 89 - - uid: 11506 + pos: -108.5,-6.5 + parent: 2 + - uid: 5975 components: - type: Transform - pos: -88.5,22.5 - parent: 89 - - uid: 11507 + pos: -108.5,-7.5 + parent: 2 + - uid: 5976 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 11509 + pos: -108.5,-8.5 + parent: 2 + - uid: 5977 components: - type: Transform - pos: -87.5,21.5 - parent: 89 - - uid: 11510 + pos: -108.5,-9.5 + parent: 2 + - uid: 5978 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 11511 + pos: -108.5,-10.5 + parent: 2 + - uid: 5979 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 11512 + pos: -108.5,-11.5 + parent: 2 + - uid: 5980 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 11513 + pos: -108.5,-12.5 + parent: 2 + - uid: 5981 components: - type: Transform - pos: -87.5,17.5 - parent: 89 - - uid: 11514 + pos: -108.5,-13.5 + parent: 2 + - uid: 5982 components: - type: Transform - pos: -87.5,16.5 - parent: 89 - - uid: 11516 + pos: -108.5,-14.5 + parent: 2 + - uid: 5983 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 11517 + pos: -85.5,-11.5 + parent: 2 + - uid: 5984 components: - type: Transform - pos: -85.5,16.5 - parent: 89 - - uid: 11518 + pos: -109.5,-1.5 + parent: 2 + - uid: 5985 components: - type: Transform - pos: -85.5,15.5 - parent: 89 - - uid: 11519 + pos: -110.5,-1.5 + parent: 2 + - uid: 5986 components: - type: Transform - pos: -85.5,14.5 - parent: 89 - - uid: 11520 + pos: -111.5,-1.5 + parent: 2 + - uid: 5987 components: - type: Transform - pos: -85.5,13.5 - parent: 89 - - uid: 11521 + pos: -107.5,4.5 + parent: 2 + - uid: 5988 components: - type: Transform - pos: -83.5,13.5 - parent: 89 - - uid: 11522 + pos: -106.5,4.5 + parent: 2 + - uid: 5989 components: - type: Transform - pos: -82.5,13.5 - parent: 89 - - uid: 11523 + pos: -105.5,4.5 + parent: 2 + - uid: 5990 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 11524 + pos: -104.5,4.5 + parent: 2 + - uid: 5991 components: - type: Transform - pos: -80.5,13.5 - parent: 89 - - uid: 11525 + pos: -103.5,4.5 + parent: 2 + - uid: 5992 components: - type: Transform - pos: -80.5,14.5 - parent: 89 - - uid: 11526 + pos: -102.5,4.5 + parent: 2 + - uid: 5993 components: - type: Transform - pos: -80.5,15.5 - parent: 89 - - uid: 11527 + pos: -101.5,4.5 + parent: 2 + - uid: 5994 components: - type: Transform - pos: -80.5,16.5 - parent: 89 - - uid: 11528 + pos: -100.5,4.5 + parent: 2 + - uid: 5995 components: - type: Transform - pos: -79.5,16.5 - parent: 89 - - uid: 11529 + pos: -99.5,4.5 + parent: 2 + - uid: 5996 components: - type: Transform - pos: -78.5,16.5 - parent: 89 - - uid: 11530 + pos: -98.5,4.5 + parent: 2 + - uid: 5997 components: - type: Transform - pos: -77.5,16.5 - parent: 89 - - uid: 11531 + pos: -98.5,5.5 + parent: 2 + - uid: 5998 components: - type: Transform - pos: -76.5,16.5 - parent: 89 - - uid: 11532 + pos: -98.5,6.5 + parent: 2 + - uid: 5999 components: - type: Transform - pos: -76.5,17.5 - parent: 89 - - uid: 11533 + pos: -98.5,7.5 + parent: 2 + - uid: 6000 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 11534 + pos: -98.5,8.5 + parent: 2 + - uid: 6001 components: - type: Transform - pos: -76.5,19.5 - parent: 89 - - uid: 11535 + pos: -107.5,-3.5 + parent: 2 + - uid: 6002 components: - type: Transform - pos: -76.5,20.5 - parent: 89 - - uid: 11536 + pos: -106.5,-3.5 + parent: 2 + - uid: 6003 components: - type: Transform - pos: -75.5,20.5 - parent: 89 - - uid: 11537 + pos: -106.5,-2.5 + parent: 2 + - uid: 6004 components: - type: Transform - pos: -74.5,20.5 - parent: 89 - - uid: 11538 + pos: -83.5,-10.5 + parent: 2 + - uid: 6005 components: - type: Transform - pos: -73.5,20.5 - parent: 89 - - uid: 11539 + pos: -86.5,-11.5 + parent: 2 + - uid: 6006 components: - type: Transform - pos: -72.5,20.5 - parent: 89 - - uid: 11540 + pos: -97.5,8.5 + parent: 2 + - uid: 6007 components: - type: Transform - pos: -71.5,20.5 - parent: 89 - - uid: 11541 + pos: -96.5,8.5 + parent: 2 + - uid: 6008 components: - type: Transform - pos: -70.5,20.5 - parent: 89 - - uid: 11542 + pos: -95.5,8.5 + parent: 2 + - uid: 6009 components: - type: Transform - pos: -69.5,20.5 - parent: 89 - - uid: 11543 + pos: -94.5,8.5 + parent: 2 + - uid: 6010 components: - type: Transform - pos: -68.5,20.5 - parent: 89 - - uid: 11544 + pos: -94.5,7.5 + parent: 2 + - uid: 6011 components: - type: Transform - pos: -67.5,20.5 - parent: 89 - - uid: 11545 + pos: -94.5,6.5 + parent: 2 + - uid: 6012 components: - type: Transform - pos: -66.5,20.5 - parent: 89 - - uid: 11546 + pos: -94.5,5.5 + parent: 2 + - uid: 6013 components: - type: Transform - pos: -65.5,20.5 - parent: 89 - - uid: 11547 + pos: -94.5,4.5 + parent: 2 + - uid: 6014 components: - type: Transform - pos: -65.5,21.5 - parent: 89 - - uid: 11548 + pos: -94.5,3.5 + parent: 2 + - uid: 6015 components: - type: Transform - pos: -64.5,21.5 - parent: 89 - - uid: 11549 + pos: -95.5,3.5 + parent: 2 + - uid: 6016 components: - type: Transform - pos: -63.5,21.5 - parent: 89 - - uid: 11550 + pos: -96.5,3.5 + parent: 2 + - uid: 6017 components: - type: Transform - pos: -62.5,21.5 - parent: 89 - - uid: 11551 + pos: -102.5,5.5 + parent: 2 + - uid: 6018 components: - type: Transform - pos: -62.5,20.5 - parent: 89 - - uid: 11552 + pos: -102.5,6.5 + parent: 2 + - uid: 6019 components: - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 11553 + pos: -102.5,7.5 + parent: 2 + - uid: 6020 components: - type: Transform - pos: -62.5,18.5 - parent: 89 - - uid: 11554 + pos: -102.5,8.5 + parent: 2 + - uid: 6021 components: - type: Transform - pos: -61.5,18.5 - parent: 89 - - uid: 11555 + pos: -102.5,9.5 + parent: 2 + - uid: 6022 components: - type: Transform - pos: -60.5,18.5 - parent: 89 - - uid: 11556 + pos: -101.5,9.5 + parent: 2 + - uid: 6023 components: - type: Transform - pos: -59.5,18.5 - parent: 89 - - uid: 11557 + pos: -100.5,9.5 + parent: 2 + - uid: 6024 components: - type: Transform - pos: -58.5,18.5 - parent: 89 - - uid: 11558 + pos: -110.5,1.5 + parent: 2 + - uid: 6025 components: - type: Transform - pos: -57.5,18.5 - parent: 89 - - uid: 11559 + pos: -109.5,1.5 + parent: 2 + - uid: 6026 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - uid: 11560 + pos: -111.5,1.5 + parent: 2 + - uid: 6027 components: - type: Transform - pos: -57.5,20.5 - parent: 89 - - uid: 11561 + pos: -37.5,8.5 + parent: 2 + - uid: 6028 components: - type: Transform - pos: -57.5,21.5 - parent: 89 - - uid: 11562 + pos: -119.5,16.5 + parent: 2 + - uid: 6029 components: - type: Transform - pos: -57.5,22.5 - parent: 89 - - uid: 11563 + pos: -119.5,17.5 + parent: 2 + - uid: 6030 components: - type: Transform - pos: -57.5,23.5 - parent: 89 - - uid: 11564 + pos: -118.5,17.5 + parent: 2 + - uid: 6031 components: - type: Transform - pos: -57.5,24.5 - parent: 89 - - uid: 11565 + pos: -117.5,17.5 + parent: 2 + - uid: 6032 components: - type: Transform - pos: -57.5,25.5 - parent: 89 - - uid: 11566 + pos: -116.5,17.5 + parent: 2 + - uid: 6033 components: - type: Transform - pos: -56.5,25.5 - parent: 89 - - uid: 11567 + pos: -115.5,17.5 + parent: 2 + - uid: 6034 components: - type: Transform - pos: -55.5,25.5 - parent: 89 - - uid: 11568 + pos: -114.5,17.5 + parent: 2 + - uid: 6035 components: - type: Transform - pos: -54.5,25.5 - parent: 89 - - uid: 11569 + pos: -113.5,17.5 + parent: 2 + - uid: 6036 components: - type: Transform - pos: -53.5,25.5 - parent: 89 - - uid: 11570 + pos: -112.5,17.5 + parent: 2 + - uid: 6037 components: - type: Transform - pos: -53.5,24.5 - parent: 89 - - uid: 11571 + pos: -111.5,17.5 + parent: 2 + - uid: 6038 components: - type: Transform - pos: -53.5,23.5 - parent: 89 - - uid: 11572 + pos: -110.5,17.5 + parent: 2 + - uid: 6039 components: - type: Transform - pos: -53.5,22.5 - parent: 89 - - uid: 11573 + pos: -109.5,17.5 + parent: 2 + - uid: 6040 components: - type: Transform - pos: -53.5,21.5 - parent: 89 - - uid: 11574 + pos: -108.5,17.5 + parent: 2 + - uid: 6041 components: - type: Transform - pos: -14.5,19.5 - parent: 89 - - uid: 11575 + pos: -110.5,20.5 + parent: 2 + - uid: 6042 components: - type: Transform - pos: -14.5,18.5 - parent: 89 - - uid: 11576 + pos: -109.5,20.5 + parent: 2 + - uid: 6043 components: - type: Transform - pos: -14.5,17.5 - parent: 89 - - uid: 11577 + pos: -108.5,20.5 + parent: 2 + - uid: 6044 components: - type: Transform - pos: -14.5,16.5 - parent: 89 - - uid: 11578 + pos: -108.5,21.5 + parent: 2 + - uid: 6045 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 11579 + pos: -107.5,21.5 + parent: 2 + - uid: 6046 components: - type: Transform - pos: -14.5,14.5 - parent: 89 - - uid: 11580 + pos: -107.5,22.5 + parent: 2 + - uid: 6047 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 11581 + pos: -107.5,17.5 + parent: 2 + - uid: 6048 components: - type: Transform - pos: -14.5,12.5 - parent: 89 - - uid: 11582 + pos: -106.5,17.5 + parent: 2 + - uid: 6049 components: - type: Transform - pos: -14.5,11.5 - parent: 89 - - uid: 11583 + pos: -105.5,17.5 + parent: 2 + - uid: 6050 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 11584 + pos: -104.5,17.5 + parent: 2 + - uid: 6051 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 11585 + pos: -103.5,17.5 + parent: 2 + - uid: 6052 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 11586 + pos: -102.5,17.5 + parent: 2 + - uid: 6053 components: - type: Transform - pos: -14.5,7.5 - parent: 89 - - uid: 11587 + pos: -101.5,17.5 + parent: 2 + - uid: 6054 components: - type: Transform - pos: -14.5,6.5 - parent: 89 - - uid: 11588 + pos: -100.5,17.5 + parent: 2 + - uid: 6055 components: - type: Transform - pos: -13.5,6.5 - parent: 89 - - uid: 11589 + pos: -100.5,18.5 + parent: 2 + - uid: 6056 components: - type: Transform - pos: -12.5,6.5 - parent: 89 - - uid: 11590 + pos: -100.5,19.5 + parent: 2 + - uid: 6057 components: - type: Transform - pos: -11.5,6.5 - parent: 89 - - uid: 11591 + pos: -100.5,20.5 + parent: 2 + - uid: 6058 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 11592 + pos: -100.5,21.5 + parent: 2 + - uid: 6059 components: - type: Transform - pos: -11.5,4.5 - parent: 89 - - uid: 11606 + pos: -100.5,22.5 + parent: 2 + - uid: 6060 components: - type: Transform - pos: 1.5,3.5 - parent: 89 - - uid: 11607 + pos: -99.5,22.5 + parent: 2 + - uid: 6061 components: - type: Transform - pos: 2.5,3.5 - parent: 89 - - uid: 11608 + pos: -99.5,23.5 + parent: 2 + - uid: 6062 components: - type: Transform - pos: 3.5,3.5 - parent: 89 - - uid: 11609 + pos: -99.5,24.5 + parent: 2 + - uid: 6063 components: - type: Transform - pos: 4.5,3.5 - parent: 89 - - uid: 11610 + pos: -99.5,25.5 + parent: 2 + - uid: 6064 components: - type: Transform - pos: 5.5,3.5 - parent: 89 - - uid: 11611 + pos: -100.5,25.5 + parent: 2 + - uid: 6065 components: - type: Transform - pos: 6.5,3.5 - parent: 89 - - uid: 11612 + pos: -101.5,25.5 + parent: 2 + - uid: 6066 components: - type: Transform - pos: 7.5,3.5 - parent: 89 - - uid: 11613 + pos: -118.5,14.5 + parent: 2 + - uid: 6067 components: - type: Transform - pos: 8.5,3.5 - parent: 89 - - uid: 11614 + pos: -9.5,23.5 + parent: 2 + - uid: 6068 components: - type: Transform - pos: 9.5,3.5 - parent: 89 - - uid: 11615 + pos: -37.5,9.5 + parent: 2 + - uid: 6069 components: - type: Transform - pos: 10.5,3.5 - parent: 89 - - uid: 11616 + pos: -36.5,11.5 + parent: 2 + - uid: 6070 components: - type: Transform - pos: 11.5,3.5 - parent: 89 - - uid: 11617 + pos: -35.5,11.5 + parent: 2 + - uid: 6071 components: - type: Transform - pos: 12.5,3.5 - parent: 89 - - uid: 11618 + pos: 22.5,31.5 + parent: 2 + - uid: 6072 components: - type: Transform - pos: 13.5,3.5 - parent: 89 - - uid: 11619 + pos: -15.5,14.5 + parent: 2 + - uid: 6073 components: - type: Transform - pos: 14.5,3.5 - parent: 89 - - uid: 11620 + pos: -16.5,14.5 + parent: 2 + - uid: 6074 components: - type: Transform - pos: 15.5,3.5 - parent: 89 - - uid: 11621 + pos: -17.5,14.5 + parent: 2 + - uid: 6075 components: - type: Transform - pos: 16.5,3.5 - parent: 89 - - uid: 11622 + pos: -18.5,14.5 + parent: 2 + - uid: 6076 components: - type: Transform - pos: 17.5,3.5 - parent: 89 - - uid: 11623 + pos: -19.5,14.5 + parent: 2 + - uid: 6077 components: - type: Transform - pos: 18.5,3.5 - parent: 89 - - uid: 11624 + pos: -19.5,13.5 + parent: 2 + - uid: 6078 components: - type: Transform - pos: 19.5,3.5 - parent: 89 - - uid: 11625 + pos: -19.5,12.5 + parent: 2 + - uid: 6079 components: - type: Transform - pos: 20.5,3.5 - parent: 89 - - uid: 11626 + pos: -19.5,11.5 + parent: 2 + - uid: 6080 components: - type: Transform - pos: 21.5,3.5 - parent: 89 - - uid: 11627 + pos: -19.5,10.5 + parent: 2 + - uid: 6081 components: - type: Transform - pos: 22.5,3.5 - parent: 89 - - uid: 11628 + pos: -18.5,10.5 + parent: 2 + - uid: 6082 components: - type: Transform - pos: 23.5,3.5 - parent: 89 - - uid: 11629 + pos: -14.5,11.5 + parent: 2 + - uid: 6083 components: - type: Transform - pos: 24.5,3.5 - parent: 89 - - uid: 11630 + pos: -14.5,10.5 + parent: 2 + - uid: 6084 components: - type: Transform - pos: 25.5,3.5 - parent: 89 - - uid: 11631 + pos: -14.5,9.5 + parent: 2 + - uid: 6085 components: - type: Transform - pos: 26.5,3.5 - parent: 89 - - uid: 11632 + pos: -14.5,8.5 + parent: 2 + - uid: 6086 components: - type: Transform - pos: 27.5,3.5 - parent: 89 - - uid: 11633 + pos: -14.5,7.5 + parent: 2 + - uid: 6087 components: - type: Transform - pos: 28.5,3.5 - parent: 89 - - uid: 11634 + pos: -14.5,6.5 + parent: 2 + - uid: 6088 components: - type: Transform - pos: 29.5,3.5 - parent: 89 - - uid: 11635 + pos: -13.5,6.5 + parent: 2 + - uid: 6089 components: - type: Transform - pos: 30.5,3.5 - parent: 89 - - uid: 11636 + pos: -12.5,6.5 + parent: 2 + - uid: 6090 components: - type: Transform - pos: 31.5,3.5 - parent: 89 - - uid: 11637 + pos: -11.5,6.5 + parent: 2 + - uid: 6091 components: - type: Transform - pos: 32.5,3.5 - parent: 89 - - uid: 11638 + pos: -11.5,5.5 + parent: 2 + - uid: 6092 components: - type: Transform - pos: 33.5,3.5 - parent: 89 - - uid: 11639 + pos: -10.5,5.5 + parent: 2 + - uid: 6093 components: - type: Transform - pos: 34.5,3.5 - parent: 89 - - uid: 11640 + pos: -11.5,7.5 + parent: 2 + - uid: 6094 components: - type: Transform - pos: 35.5,3.5 - parent: 89 - - uid: 11641 + pos: -10.5,7.5 + parent: 2 + - uid: 6095 components: - type: Transform - pos: 35.5,2.5 - parent: 89 - - uid: 11642 + pos: -9.5,7.5 + parent: 2 + - uid: 6096 components: - type: Transform - pos: 35.5,1.5 - parent: 89 - - uid: 11643 + pos: -8.5,7.5 + parent: 2 + - uid: 6097 components: - type: Transform - pos: 36.5,1.5 - parent: 89 - - uid: 11644 + pos: -7.5,7.5 + parent: 2 + - uid: 6098 components: - type: Transform - pos: 37.5,1.5 - parent: 89 - - uid: 11645 + pos: -6.5,7.5 + parent: 2 + - uid: 6099 components: - type: Transform - pos: 38.5,1.5 - parent: 89 - - uid: 11646 + pos: -6.5,8.5 + parent: 2 + - uid: 6100 components: - type: Transform - pos: 39.5,1.5 - parent: 89 - - uid: 11647 + pos: -6.5,9.5 + parent: 2 + - uid: 6101 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 11648 + pos: -6.5,10.5 + parent: 2 + - uid: 6102 components: - type: Transform - pos: 41.5,1.5 - parent: 89 - - uid: 11649 + pos: -6.5,11.5 + parent: 2 + - uid: 6103 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 11650 + pos: -6.5,12.5 + parent: 2 + - uid: 6104 components: - type: Transform - pos: 43.5,1.5 - parent: 89 - - uid: 11651 + pos: -6.5,13.5 + parent: 2 + - uid: 6105 components: - type: Transform - pos: 44.5,1.5 - parent: 89 - - uid: 11652 + pos: -6.5,14.5 + parent: 2 + - uid: 6106 components: - type: Transform - pos: 45.5,1.5 - parent: 89 - - uid: 11653 + pos: -29.5,-0.5 + parent: 2 + - uid: 6107 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 11654 + pos: -28.5,-0.5 + parent: 2 + - uid: 6108 components: - type: Transform - pos: 47.5,1.5 - parent: 89 - - uid: 11655 + pos: -28.5,0.5 + parent: 2 + - uid: 6109 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - uid: 11656 + pos: -82.5,-4.5 + parent: 2 + - uid: 6110 components: - type: Transform - pos: 49.5,1.5 - parent: 89 - - uid: 11657 + pos: -82.5,-3.5 + parent: 2 + - uid: 6111 components: - type: Transform - pos: 50.5,1.5 - parent: 89 - - uid: 11658 + pos: -82.5,-2.5 + parent: 2 + - uid: 6112 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 11660 + pos: -82.5,-1.5 + parent: 2 + - uid: 6113 components: - type: Transform - pos: 51.5,2.5 - parent: 89 - - uid: 11661 + pos: -82.5,-0.5 + parent: 2 + - uid: 6114 components: - type: Transform - pos: 51.5,3.5 - parent: 89 - - uid: 11662 + pos: -82.5,0.5 + parent: 2 + - uid: 6115 components: - type: Transform - pos: 51.5,4.5 - parent: 89 - - uid: 11663 + pos: -81.5,0.5 + parent: 2 + - uid: 6116 components: - type: Transform - pos: 50.5,4.5 - parent: 89 - - uid: 11664 + pos: -81.5,1.5 + parent: 2 + - uid: 6117 components: - type: Transform - pos: 49.5,4.5 - parent: 89 - - uid: 11665 + pos: -81.5,2.5 + parent: 2 + - uid: 6118 components: - type: Transform - pos: 49.5,3.5 - parent: 89 - - uid: 11667 + pos: -81.5,3.5 + parent: 2 + - uid: 6119 components: - type: Transform - pos: 47.5,5.5 - parent: 89 - - uid: 11670 + pos: -81.5,4.5 + parent: 2 + - uid: 6120 components: - type: Transform - pos: -111.5,16.5 - parent: 89 - - uid: 11671 + pos: -80.5,4.5 + parent: 2 + - uid: 6121 components: - type: Transform - pos: -111.5,15.5 - parent: 89 - - uid: 11672 + pos: -79.5,4.5 + parent: 2 + - uid: 6122 components: - type: Transform - pos: -111.5,14.5 - parent: 89 - - uid: 11673 + pos: -78.5,4.5 + parent: 2 + - uid: 6123 components: - type: Transform - pos: -111.5,13.5 - parent: 89 - - uid: 11674 + pos: -77.5,4.5 + parent: 2 + - uid: 6124 components: - type: Transform - pos: -111.5,12.5 - parent: 89 - - uid: 11675 + pos: -76.5,4.5 + parent: 2 + - uid: 6125 components: - type: Transform - pos: -111.5,11.5 - parent: 89 - - uid: 11676 + pos: -76.5,3.5 + parent: 2 + - uid: 6126 components: - type: Transform - pos: -111.5,10.5 - parent: 89 - - uid: 11677 + pos: -76.5,2.5 + parent: 2 + - uid: 6127 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 11678 + pos: -76.5,1.5 + parent: 2 + - uid: 6128 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 11679 + pos: -77.5,1.5 + parent: 2 + - uid: 6129 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 11680 + pos: -78.5,1.5 + parent: 2 + - uid: 6130 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 11681 + pos: -79.5,1.5 + parent: 2 + - uid: 6131 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 11682 + pos: -79.5,2.5 + parent: 2 + - uid: 6132 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 11683 + pos: -51.5,28.5 + parent: 2 + - uid: 6133 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 11684 + pos: -51.5,29.5 + parent: 2 + - uid: 6134 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 11685 + pos: -51.5,30.5 + parent: 2 + - uid: 6135 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 11686 + pos: -51.5,31.5 + parent: 2 + - uid: 6136 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 11687 + pos: -52.5,29.5 + parent: 2 + - uid: 6137 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 11688 + pos: -52.5,31.5 + parent: 2 + - uid: 6138 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 11689 + pos: -52.5,32.5 + parent: 2 + - uid: 6139 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 11690 + pos: -52.5,33.5 + parent: 2 + - uid: 6140 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 11691 + pos: -52.5,34.5 + parent: 2 + - uid: 6141 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 11692 + pos: -52.5,35.5 + parent: 2 + - uid: 6142 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 11693 + pos: -53.5,35.5 + parent: 2 + - uid: 6143 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 11694 + pos: -54.5,35.5 + parent: 2 + - uid: 6144 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 11695 + pos: -55.5,35.5 + parent: 2 + - uid: 6145 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 11696 + pos: -56.5,35.5 + parent: 2 + - uid: 6146 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 11697 + pos: -56.5,34.5 + parent: 2 + - uid: 6147 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 11698 + pos: -56.5,33.5 + parent: 2 + - uid: 6148 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 11699 + pos: -57.5,33.5 + parent: 2 + - uid: 6149 components: - type: Transform - pos: -97.5,7.5 - parent: 89 - - uid: 11700 + pos: -58.5,33.5 + parent: 2 + - uid: 6150 components: - type: Transform - pos: -96.5,7.5 - parent: 89 - - uid: 11701 + pos: -59.5,33.5 + parent: 2 + - uid: 6151 components: - type: Transform - pos: -95.5,7.5 - parent: 89 - - uid: 11702 + pos: -59.5,32.5 + parent: 2 + - uid: 6152 components: - type: Transform - pos: -94.5,7.5 - parent: 89 - - uid: 11703 + pos: -59.5,31.5 + parent: 2 + - uid: 6153 components: - type: Transform - pos: -93.5,7.5 - parent: 89 - - uid: 11704 + pos: -58.5,31.5 + parent: 2 + - uid: 6154 components: - type: Transform - pos: -92.5,7.5 - parent: 89 - - uid: 11705 + pos: -67.5,15.5 + parent: 2 + - uid: 6155 components: - type: Transform - pos: -92.5,6.5 - parent: 89 - - uid: 11706 + pos: -67.5,14.5 + parent: 2 + - uid: 6156 components: - type: Transform - pos: -92.5,5.5 - parent: 89 - - uid: 11707 + pos: -67.5,13.5 + parent: 2 + - uid: 6157 components: - type: Transform - pos: -92.5,4.5 - parent: 89 - - uid: 11708 + pos: -67.5,12.5 + parent: 2 + - uid: 6158 components: - type: Transform - pos: -92.5,3.5 - parent: 89 - - uid: 11709 + pos: -67.5,11.5 + parent: 2 + - uid: 6159 components: - type: Transform - pos: -92.5,2.5 - parent: 89 - - uid: 11710 + pos: -67.5,10.5 + parent: 2 + - uid: 6160 components: - type: Transform - pos: -92.5,1.5 - parent: 89 - - uid: 11711 + pos: -67.5,9.5 + parent: 2 + - uid: 6161 components: - type: Transform - pos: -92.5,0.5 - parent: 89 - - uid: 11712 + pos: -68.5,9.5 + parent: 2 + - uid: 6162 components: - type: Transform - pos: -92.5,-0.5 - parent: 89 - - uid: 11713 + pos: -69.5,9.5 + parent: 2 + - uid: 6163 components: - type: Transform - pos: -92.5,-1.5 - parent: 89 - - uid: 11714 + pos: -70.5,9.5 + parent: 2 + - uid: 6164 components: - type: Transform - pos: -91.5,-1.5 - parent: 89 - - uid: 11715 + pos: -71.5,9.5 + parent: 2 + - uid: 6165 components: - type: Transform - pos: -90.5,-1.5 - parent: 89 - - uid: 11716 + pos: -72.5,9.5 + parent: 2 + - uid: 6166 components: - type: Transform - pos: -89.5,-1.5 - parent: 89 - - uid: 11717 + pos: -72.5,10.5 + parent: 2 + - uid: 6167 components: - type: Transform - pos: -88.5,-1.5 - parent: 89 - - uid: 11718 + pos: -72.5,11.5 + parent: 2 + - uid: 6168 components: - type: Transform - pos: -87.5,-1.5 - parent: 89 - - uid: 11719 + pos: -72.5,12.5 + parent: 2 + - uid: 6169 components: - type: Transform - pos: -86.5,-1.5 - parent: 89 - - uid: 11720 + pos: -72.5,13.5 + parent: 2 + - uid: 6170 components: - type: Transform - pos: -85.5,-1.5 - parent: 89 - - uid: 11721 + pos: -72.5,14.5 + parent: 2 + - uid: 6171 components: - type: Transform - pos: -85.5,-2.5 - parent: 89 - - uid: 11722 + pos: -72.5,15.5 + parent: 2 + - uid: 6172 components: - type: Transform - pos: -85.5,-3.5 - parent: 89 - - uid: 11723 + pos: -72.5,16.5 + parent: 2 + - uid: 6173 components: - type: Transform - pos: -85.5,-4.5 - parent: 89 - - uid: 11725 + pos: -73.5,16.5 + parent: 2 + - uid: 6174 components: - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 11726 + pos: -74.5,16.5 + parent: 2 + - uid: 6175 components: - type: Transform - pos: -10.5,-25.5 - parent: 89 - - uid: 11727 + pos: -75.5,16.5 + parent: 2 + - uid: 6176 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 11728 + pos: -76.5,16.5 + parent: 2 + - uid: 6177 components: - type: Transform - pos: -12.5,-25.5 - parent: 89 - - uid: 11729 + pos: -77.5,16.5 + parent: 2 + - uid: 6178 components: - type: Transform - pos: -12.5,-26.5 - parent: 89 - - uid: 11730 + pos: -78.5,16.5 + parent: 2 + - uid: 6179 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 11731 + pos: -79.5,16.5 + parent: 2 + - uid: 6180 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 11732 + pos: -80.5,16.5 + parent: 2 + - uid: 6181 components: - type: Transform - pos: -15.5,-26.5 - parent: 89 - - uid: 11733 + pos: -81.5,16.5 + parent: 2 + - uid: 6182 components: - type: Transform - pos: -16.5,-26.5 - parent: 89 - - uid: 11734 + pos: -81.5,15.5 + parent: 2 + - uid: 6183 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 11735 + pos: -81.5,14.5 + parent: 2 + - uid: 6184 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 11736 + pos: -81.5,13.5 + parent: 2 + - uid: 6185 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 11737 + pos: -82.5,13.5 + parent: 2 + - uid: 6186 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 11738 + pos: -83.5,13.5 + parent: 2 + - uid: 6187 components: - type: Transform - pos: -20.5,-25.5 - parent: 89 - - uid: 11739 + pos: -84.5,13.5 + parent: 2 + - uid: 6188 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 11740 + pos: -85.5,13.5 + parent: 2 + - uid: 6189 components: - type: Transform - pos: -22.5,-25.5 - parent: 89 - - uid: 11741 + pos: -85.5,14.5 + parent: 2 + - uid: 6190 components: - type: Transform - pos: -23.5,-25.5 - parent: 89 - - uid: 11742 + pos: -85.5,15.5 + parent: 2 + - uid: 6191 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 - - uid: 11743 + pos: -87.5,16.5 + parent: 2 + - uid: 6192 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 11744 + pos: -86.5,16.5 + parent: 2 + - uid: 6193 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 11745 + pos: -86.5,15.5 + parent: 2 + - uid: 6194 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 11746 + pos: -87.5,17.5 + parent: 2 + - uid: 6195 components: - type: Transform - pos: -25.5,-22.5 - parent: 89 - - uid: 11747 + pos: -87.5,18.5 + parent: 2 + - uid: 6196 components: - type: Transform - pos: -25.5,-21.5 - parent: 89 - - uid: 11748 + pos: -87.5,19.5 + parent: 2 + - uid: 6197 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 11749 + pos: -87.5,20.5 + parent: 2 + - uid: 6198 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 11750 + pos: -88.5,20.5 + parent: 2 + - uid: 6199 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 11751 + pos: -89.5,20.5 + parent: 2 + - uid: 6200 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 11752 + pos: -90.5,20.5 + parent: 2 + - uid: 6201 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 11753 + pos: -75.5,4.5 + parent: 2 + - uid: 6202 components: - type: Transform - pos: -26.5,-16.5 - parent: 89 - - uid: 11754 + pos: -74.5,4.5 + parent: 2 + - uid: 6203 components: - type: Transform - pos: -27.5,-16.5 - parent: 89 - - uid: 11755 + pos: -73.5,4.5 + parent: 2 + - uid: 6204 components: - type: Transform - pos: -28.5,-16.5 - parent: 89 - - uid: 11756 + pos: -72.5,4.5 + parent: 2 + - uid: 6205 components: - type: Transform - pos: -29.5,-16.5 - parent: 89 - - uid: 11757 + pos: -71.5,4.5 + parent: 2 + - uid: 6206 components: - type: Transform - pos: -30.5,-16.5 - parent: 89 - - uid: 11758 + pos: -64.5,6.5 + parent: 2 + - uid: 6207 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 11759 + pos: -70.5,4.5 + parent: 2 + - uid: 6208 components: - type: Transform - pos: -32.5,-16.5 - parent: 89 - - uid: 11761 + pos: -69.5,4.5 + parent: 2 + - uid: 6209 components: - type: Transform - pos: -36.5,-16.5 - parent: 89 - - uid: 11765 + pos: -68.5,4.5 + parent: 2 + - uid: 6210 components: - type: Transform - pos: -37.5,-15.5 - parent: 89 - - uid: 11766 + pos: -67.5,4.5 + parent: 2 + - uid: 6211 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 11767 + pos: -66.5,4.5 + parent: 2 + - uid: 6212 components: - type: Transform - pos: -39.5,-15.5 - parent: 89 - - uid: 11768 + pos: -65.5,4.5 + parent: 2 + - uid: 6213 components: - type: Transform - pos: -40.5,-15.5 - parent: 89 - - uid: 11769 + pos: -64.5,4.5 + parent: 2 + - uid: 6214 components: - type: Transform - pos: -41.5,-15.5 - parent: 89 - - uid: 11770 + pos: -64.5,5.5 + parent: 2 + - uid: 6215 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 11771 + pos: -64.5,6.5 + parent: 2 + - uid: 6216 components: - type: Transform - pos: -43.5,-15.5 - parent: 89 - - uid: 11772 + pos: -37.5,-8.5 + parent: 2 + - uid: 6217 components: - type: Transform - pos: -43.5,-14.5 - parent: 89 - - uid: 11773 + pos: -37.5,-7.5 + parent: 2 + - uid: 6218 components: - type: Transform - pos: -43.5,-13.5 - parent: 89 - - uid: 11774 + pos: -37.5,-6.5 + parent: 2 + - uid: 6219 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 11775 + pos: -37.5,-5.5 + parent: 2 + - uid: 6220 components: - type: Transform - pos: -73.5,-10.5 - parent: 89 - - uid: 11776 + pos: -37.5,-4.5 + parent: 2 + - uid: 6221 components: - type: Transform - pos: -72.5,-10.5 - parent: 89 - - uid: 11777 + pos: -38.5,-4.5 + parent: 2 + - uid: 6222 components: - type: Transform - pos: -71.5,-10.5 - parent: 89 - - uid: 11778 + pos: -39.5,-4.5 + parent: 2 + - uid: 6223 components: - type: Transform - pos: -70.5,-10.5 - parent: 89 - - uid: 11779 + pos: -40.5,-4.5 + parent: 2 + - uid: 6224 components: - type: Transform - pos: -69.5,-10.5 - parent: 89 - - uid: 11780 + pos: -41.5,-4.5 + parent: 2 + - uid: 6225 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 - - uid: 11781 + pos: -42.5,-4.5 + parent: 2 + - uid: 6226 components: - type: Transform - pos: -67.5,-10.5 - parent: 89 - - uid: 11782 + pos: -43.5,-4.5 + parent: 2 + - uid: 6227 components: - type: Transform - pos: -66.5,-10.5 - parent: 89 - - uid: 11783 + pos: -43.5,-5.5 + parent: 2 + - uid: 6228 components: - type: Transform - pos: -65.5,-10.5 - parent: 89 - - uid: 11784 + pos: -43.5,-6.5 + parent: 2 + - uid: 6229 components: - type: Transform - pos: -64.5,-10.5 - parent: 89 - - uid: 11785 + pos: -44.5,-6.5 + parent: 2 + - uid: 6230 components: - type: Transform - pos: -63.5,-10.5 - parent: 89 - - uid: 11786 + pos: -45.5,-6.5 + parent: 2 + - uid: 6231 components: - type: Transform - pos: -62.5,-10.5 - parent: 89 - - uid: 11787 + pos: -46.5,-6.5 + parent: 2 + - uid: 6232 components: - type: Transform - pos: -61.5,-10.5 - parent: 89 - - uid: 11788 + pos: -46.5,-5.5 + parent: 2 + - uid: 6233 components: - type: Transform - pos: -60.5,-10.5 - parent: 89 - - uid: 11789 + pos: -49.5,-12.5 + parent: 2 + - uid: 6234 components: - type: Transform - pos: -59.5,-10.5 - parent: 89 - - uid: 11790 + pos: -50.5,-12.5 + parent: 2 + - uid: 6235 components: - type: Transform - pos: -58.5,-10.5 - parent: 89 - - uid: 11791 + pos: -51.5,-12.5 + parent: 2 + - uid: 6236 components: - type: Transform - pos: -58.5,-9.5 - parent: 89 - - uid: 11792 + pos: -52.5,-12.5 + parent: 2 + - uid: 6237 components: - type: Transform - pos: -58.5,-8.5 - parent: 89 - - uid: 11793 + pos: -37.5,10.5 + parent: 2 + - uid: 6238 components: - type: Transform - pos: -58.5,-7.5 - parent: 89 - - uid: 11794 + pos: 13.5,-9.5 + parent: 2 + - uid: 6239 components: - type: Transform - pos: -58.5,-6.5 - parent: 89 - - uid: 11795 + pos: 13.5,-8.5 + parent: 2 + - uid: 6240 components: - type: Transform - pos: -57.5,-6.5 - parent: 89 - - uid: 11796 + pos: 13.5,-7.5 + parent: 2 + - uid: 6241 components: - type: Transform - pos: -56.5,-6.5 - parent: 89 - - uid: 11797 + pos: 13.5,-6.5 + parent: 2 + - uid: 6242 components: - type: Transform - pos: -55.5,-6.5 - parent: 89 - - uid: 11798 + pos: 14.5,-9.5 + parent: 2 + - uid: 6243 components: - type: Transform - pos: -55.5,-7.5 - parent: 89 - - uid: 11799 + pos: 12.5,-6.5 + parent: 2 + - uid: 6244 components: - type: Transform - pos: -55.5,-8.5 - parent: 89 - - uid: 11800 + pos: 11.5,-6.5 + parent: 2 + - uid: 6245 components: - type: Transform - pos: -55.5,-9.5 - parent: 89 - - uid: 11801 + pos: 10.5,-6.5 + parent: 2 + - uid: 6246 components: - type: Transform - pos: -55.5,-10.5 - parent: 89 - - uid: 11802 + pos: 15.5,-9.5 + parent: 2 + - uid: 6247 components: - type: Transform - pos: -54.5,-10.5 - parent: 89 - - uid: 11803 + pos: 16.5,-9.5 + parent: 2 + - uid: 6248 components: - type: Transform - pos: -53.5,-10.5 - parent: 89 - - uid: 11804 + pos: 17.5,-9.5 + parent: 2 + - uid: 6249 components: - type: Transform - pos: -52.5,-10.5 - parent: 89 - - uid: 11805 + pos: 18.5,-9.5 + parent: 2 + - uid: 6250 components: - type: Transform - pos: -51.5,-10.5 - parent: 89 - - uid: 11806 + pos: 19.5,-9.5 + parent: 2 + - uid: 6251 components: - type: Transform - pos: -50.5,-10.5 - parent: 89 - - uid: 11807 + pos: 20.5,-9.5 + parent: 2 + - uid: 6252 components: - type: Transform - pos: -50.5,-11.5 - parent: 89 - - uid: 11808 + pos: 21.5,-9.5 + parent: 2 + - uid: 6253 components: - type: Transform - pos: -50.5,-12.5 - parent: 89 - - uid: 11809 + pos: 22.5,-9.5 + parent: 2 + - uid: 6254 components: - type: Transform - pos: -49.5,-12.5 - parent: 89 - - uid: 11810 + pos: 23.5,-9.5 + parent: 2 + - uid: 6255 components: - type: Transform - pos: -48.5,-12.5 - parent: 89 - - uid: 11811 + pos: 24.5,-9.5 + parent: 2 + - uid: 6256 components: - type: Transform - pos: -47.5,-12.5 - parent: 89 - - uid: 11812 + pos: 25.5,-9.5 + parent: 2 + - uid: 6257 components: - type: Transform - pos: -46.5,-12.5 - parent: 89 - - uid: 11813 + pos: 26.5,-9.5 + parent: 2 + - uid: 6258 components: - type: Transform - pos: -45.5,-12.5 - parent: 89 - - uid: 11814 + pos: 27.5,-9.5 + parent: 2 + - uid: 6259 components: - type: Transform - pos: -44.5,-12.5 - parent: 89 - - uid: 11815 + pos: 28.5,-9.5 + parent: 2 + - uid: 6260 components: - type: Transform - pos: -73.5,-9.5 - parent: 89 - - uid: 11816 + pos: 29.5,-9.5 + parent: 2 + - uid: 6261 components: - type: Transform - pos: -74.5,-9.5 - parent: 89 - - uid: 11817 + pos: 30.5,-9.5 + parent: 2 + - uid: 6262 components: - type: Transform - pos: -75.5,-9.5 - parent: 89 - - uid: 11818 + pos: 31.5,-9.5 + parent: 2 + - uid: 6263 components: - type: Transform - pos: -76.5,-9.5 - parent: 89 - - uid: 11819 + pos: 32.5,-9.5 + parent: 2 + - uid: 6264 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 11820 + pos: 33.5,-9.5 + parent: 2 + - uid: 6265 components: - type: Transform - pos: -78.5,-9.5 - parent: 89 - - uid: 11827 + pos: 34.5,-9.5 + parent: 2 + - uid: 6266 components: - type: Transform - pos: -81.5,-5.5 - parent: 89 - - uid: 11828 + pos: 35.5,-9.5 + parent: 2 + - uid: 6267 components: - type: Transform - pos: -82.5,-5.5 - parent: 89 - - uid: 11829 + pos: 36.5,-9.5 + parent: 2 + - uid: 6268 components: - type: Transform - pos: -83.5,-5.5 - parent: 89 - - uid: 11830 + pos: 37.5,-9.5 + parent: 2 + - uid: 6269 components: - type: Transform - pos: -84.5,-5.5 - parent: 89 - - uid: 11844 + pos: 38.5,-9.5 + parent: 2 + - uid: 6270 components: - type: Transform - pos: 16.5,-12.5 - parent: 89 - - uid: 11845 + pos: -57.5,8.5 + parent: 2 + - uid: 6271 components: - type: Transform - pos: 16.5,-13.5 - parent: 89 - - uid: 11846 + pos: -56.5,8.5 + parent: 2 + - uid: 6272 components: - type: Transform - pos: 15.5,-13.5 - parent: 89 - - uid: 11847 + pos: -55.5,8.5 + parent: 2 + - uid: 6273 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 11848 + pos: -55.5,9.5 + parent: 2 + - uid: 6274 components: - type: Transform - pos: 13.5,-13.5 - parent: 89 - - uid: 11849 + pos: -55.5,10.5 + parent: 2 + - uid: 6275 components: - type: Transform - pos: 12.5,-13.5 - parent: 89 - - uid: 11850 + pos: -54.5,10.5 + parent: 2 + - uid: 6276 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 - - uid: 11851 + pos: -53.5,10.5 + parent: 2 + - uid: 6277 components: - type: Transform - pos: -23.5,-16.5 - parent: 89 - - uid: 11852 + pos: -52.5,10.5 + parent: 2 + - uid: 6278 components: - type: Transform - pos: -22.5,-16.5 - parent: 89 - - uid: 11853 + pos: -51.5,10.5 + parent: 2 + - uid: 6279 components: - type: Transform - pos: -21.5,-16.5 - parent: 89 - - uid: 11854 + pos: -51.5,9.5 + parent: 2 + - uid: 6280 components: - type: Transform - pos: -21.5,-17.5 - parent: 89 - - uid: 11855 + pos: -51.5,8.5 + parent: 2 + - uid: 6281 components: - type: Transform - pos: -21.5,-18.5 - parent: 89 - - uid: 11856 + pos: -50.5,10.5 + parent: 2 + - uid: 6282 components: - type: Transform - pos: -21.5,-19.5 - parent: 89 - - uid: 11857 + pos: -49.5,10.5 + parent: 2 + - uid: 6283 components: - type: Transform - pos: -20.5,-19.5 - parent: 89 - - uid: 11858 + pos: -48.5,10.5 + parent: 2 + - uid: 6284 components: - type: Transform - pos: -19.5,-19.5 - parent: 89 - - uid: 11860 + pos: -47.5,10.5 + parent: 2 + - uid: 6285 components: - type: Transform - pos: -19.5,-20.5 - parent: 89 - - uid: 11861 + pos: -46.5,10.5 + parent: 2 + - uid: 6286 components: - type: Transform - pos: -19.5,-21.5 - parent: 89 - - uid: 11862 + pos: -45.5,10.5 + parent: 2 + - uid: 6287 components: - type: Transform - pos: -19.5,-22.5 - parent: 89 - - uid: 11863 + pos: -44.5,10.5 + parent: 2 + - uid: 6288 components: - type: Transform - pos: -18.5,-22.5 - parent: 89 - - uid: 11864 + pos: -44.5,11.5 + parent: 2 + - uid: 6289 components: - type: Transform - pos: -17.5,-22.5 - parent: 89 - - uid: 11865 + pos: -43.5,11.5 + parent: 2 + - uid: 6290 components: - type: Transform - pos: -16.5,-22.5 - parent: 89 - - uid: 11866 + pos: -42.5,11.5 + parent: 2 + - uid: 6291 components: - type: Transform - pos: -15.5,-22.5 - parent: 89 - - uid: 11867 + pos: -41.5,11.5 + parent: 2 + - uid: 6292 components: - type: Transform - pos: -14.5,-22.5 - parent: 89 - - uid: 11868 + pos: -40.5,11.5 + parent: 2 + - uid: 6293 components: - type: Transform - pos: -13.5,-22.5 - parent: 89 - - uid: 11869 + pos: -39.5,11.5 + parent: 2 + - uid: 6294 components: - type: Transform - pos: -12.5,-22.5 - parent: 89 - - uid: 11870 + pos: -38.5,11.5 + parent: 2 + - uid: 6295 components: - type: Transform - pos: -11.5,-22.5 - parent: 89 - - uid: 11871 + pos: -37.5,11.5 + parent: 2 + - uid: 6296 components: - type: Transform - pos: -10.5,-22.5 - parent: 89 - - uid: 11872 + pos: 9.5,-6.5 + parent: 2 + - uid: 6297 components: - type: Transform - pos: -9.5,-22.5 - parent: 89 - - uid: 11873 + pos: 8.5,-6.5 + parent: 2 + - uid: 6298 components: - type: Transform - pos: -8.5,-22.5 - parent: 89 - - uid: 11874 + pos: 7.5,-6.5 + parent: 2 + - uid: 6299 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 11875 + pos: 6.5,-6.5 + parent: 2 + - uid: 6300 components: - type: Transform - pos: -6.5,-22.5 - parent: 89 - - uid: 11877 + pos: 5.5,-6.5 + parent: 2 + - uid: 6301 components: - type: Transform - pos: -6.5,-23.5 - parent: 89 - - uid: 11878 + pos: 4.5,-6.5 + parent: 2 + - uid: 6302 components: - type: Transform - pos: -6.5,-24.5 - parent: 89 - - uid: 11880 + pos: 3.5,-6.5 + parent: 2 + - uid: 6303 components: - type: Transform - pos: -5.5,-24.5 - parent: 89 - - uid: 11881 + pos: 3.5,-7.5 + parent: 2 + - uid: 6304 components: - type: Transform - pos: -4.5,-24.5 - parent: 89 - - uid: 11882 + pos: 3.5,-8.5 + parent: 2 + - uid: 6305 components: - type: Transform - pos: -3.5,-24.5 - parent: 89 - - uid: 11883 + pos: 3.5,-9.5 + parent: 2 + - uid: 6306 components: - type: Transform - pos: -2.5,-24.5 - parent: 89 - - uid: 11884 + pos: 3.5,-10.5 + parent: 2 + - uid: 6307 components: - type: Transform - pos: -1.5,-24.5 - parent: 89 - - uid: 11885 + pos: 2.5,-10.5 + parent: 2 + - uid: 6308 components: - type: Transform - pos: -0.5,-24.5 - parent: 89 - - uid: 11886 + pos: 1.5,-10.5 + parent: 2 + - uid: 6309 components: - type: Transform - pos: 0.5,-24.5 - parent: 89 - - uid: 11887 + pos: 0.5,-10.5 + parent: 2 + - uid: 6310 components: - type: Transform - pos: 1.5,-24.5 - parent: 89 - - uid: 11888 + pos: -0.5,-10.5 + parent: 2 + - uid: 6311 components: - type: Transform - pos: 2.5,-24.5 - parent: 89 - - uid: 11889 + pos: -0.5,-9.5 + parent: 2 + - uid: 6312 components: - type: Transform - pos: 3.5,-24.5 - parent: 89 - - uid: 11890 + pos: -0.5,-8.5 + parent: 2 + - uid: 6313 components: - type: Transform - pos: 4.5,-24.5 - parent: 89 - - uid: 11891 + pos: -0.5,-7.5 + parent: 2 + - uid: 6314 components: - type: Transform - pos: 5.5,-24.5 - parent: 89 - - uid: 11892 + pos: -0.5,-6.5 + parent: 2 + - uid: 6315 components: - type: Transform - pos: 6.5,-24.5 - parent: 89 - - uid: 11893 + pos: -0.5,-5.5 + parent: 2 + - uid: 6316 components: - type: Transform - pos: 6.5,-23.5 - parent: 89 - - uid: 11894 + pos: -0.5,-4.5 + parent: 2 + - uid: 6317 components: - type: Transform - pos: 6.5,-22.5 - parent: 89 - - uid: 11895 + pos: -0.5,-3.5 + parent: 2 + - uid: 6318 components: - type: Transform - pos: 6.5,-21.5 - parent: 89 - - uid: 11896 + pos: 0.5,-3.5 + parent: 2 + - uid: 6319 components: - type: Transform - pos: 6.5,-20.5 - parent: 89 - - uid: 11897 + pos: 1.5,-3.5 + parent: 2 + - uid: 6320 components: - type: Transform - pos: 6.5,-19.5 - parent: 89 - - uid: 11898 + pos: 55.5,-23.5 + parent: 2 + - uid: 6321 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 11899 + pos: 8.5,-15.5 + parent: 2 + - uid: 6322 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 11900 + pos: -12.5,-37.5 + parent: 2 + - uid: 6323 components: - type: Transform - pos: 6.5,-16.5 - parent: 89 - - uid: 11901 + pos: -12.5,-36.5 + parent: 2 + - uid: 6324 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 11902 + pos: -12.5,-35.5 + parent: 2 + - uid: 6325 components: - type: Transform - pos: 7.5,-15.5 - parent: 89 - - uid: 11903 + pos: -12.5,-34.5 + parent: 2 + - uid: 6326 components: - type: Transform - pos: 8.5,-15.5 - parent: 89 - - uid: 11904 + pos: -12.5,-33.5 + parent: 2 + - uid: 6327 components: - type: Transform - pos: 9.5,-15.5 - parent: 89 - - uid: 11905 + pos: -12.5,-32.5 + parent: 2 + - uid: 6328 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 11906 + pos: -12.5,-31.5 + parent: 2 + - uid: 6329 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 11907 + pos: -12.5,-30.5 + parent: 2 + - uid: 6330 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 11908 + pos: -12.5,-29.5 + parent: 2 + - uid: 6331 components: - type: Transform - pos: 12.5,-14.5 - parent: 89 - - uid: 11922 + pos: -12.5,-28.5 + parent: 2 + - uid: 6332 components: - type: Transform - pos: -82.5,-8.5 - parent: 89 - - uid: 11923 + pos: -117.5,20.5 + parent: 2 + - uid: 6333 components: - type: Transform - pos: -82.5,-9.5 - parent: 89 - - uid: 11924 + pos: 23.5,31.5 + parent: 2 + - uid: 6334 components: - type: Transform - pos: -80.5,-5.5 - parent: 89 - - uid: 11925 + pos: 24.5,30.5 + parent: 2 + - uid: 6335 components: - type: Transform - pos: -80.5,-6.5 - parent: 89 - - uid: 11926 + pos: 24.5,31.5 + parent: 2 + - uid: 6336 components: - type: Transform - pos: -80.5,-7.5 - parent: 89 - - uid: 11927 + pos: -14.5,19.5 + parent: 2 + - uid: 6337 components: - type: Transform - pos: -80.5,-8.5 - parent: 89 - - uid: 11928 + pos: 13.5,29.5 + parent: 2 + - uid: 6338 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 11929 + pos: 13.5,30.5 + parent: 2 + - uid: 6339 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 12038 + pos: -30.5,21.5 + parent: 2 + - uid: 6340 components: - type: Transform - pos: -9.5,23.5 - parent: 89 - - uid: 12543 + pos: -30.5,22.5 + parent: 2 + - uid: 6341 components: - type: Transform - pos: -125.5,1.5 - parent: 89 - - uid: 12544 + pos: -30.5,23.5 + parent: 2 + - uid: 6342 components: - type: Transform - pos: -126.5,1.5 - parent: 89 - - uid: 12545 + pos: -30.5,24.5 + parent: 2 + - uid: 6343 components: - type: Transform - pos: -127.5,1.5 - parent: 89 - - uid: 12546 + pos: -30.5,25.5 + parent: 2 + - uid: 6344 components: - type: Transform - pos: -127.5,2.5 - parent: 89 - - uid: 12547 + pos: -30.5,26.5 + parent: 2 + - uid: 6345 components: - type: Transform - pos: -127.5,3.5 - parent: 89 - - uid: 12548 + pos: 6.5,13.5 + parent: 2 + - uid: 6346 components: - type: Transform - pos: -127.5,4.5 - parent: 89 - - uid: 12549 + pos: 7.5,13.5 + parent: 2 + - uid: 6347 components: - type: Transform - pos: -127.5,5.5 - parent: 89 - - uid: 12550 + pos: 8.5,13.5 + parent: 2 + - uid: 6348 components: - type: Transform - pos: -127.5,6.5 - parent: 89 - - uid: 12551 + pos: 9.5,13.5 + parent: 2 + - uid: 6349 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 12552 + pos: 10.5,13.5 + parent: 2 + - uid: 6350 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 12553 + pos: 11.5,13.5 + parent: 2 + - uid: 6351 components: - type: Transform - pos: -125.5,7.5 - parent: 89 - - uid: 12554 + pos: 12.5,13.5 + parent: 2 + - uid: 6352 components: - type: Transform - pos: -125.5,8.5 - parent: 89 - - uid: 12555 + pos: 13.5,13.5 + parent: 2 + - uid: 6353 components: - type: Transform - pos: -125.5,9.5 - parent: 89 - - uid: 12556 + pos: 14.5,13.5 + parent: 2 + - uid: 6354 components: - type: Transform - pos: -125.5,10.5 - parent: 89 - - uid: 12557 + pos: 13.5,14.5 + parent: 2 + - uid: 6355 components: - type: Transform - pos: -125.5,11.5 - parent: 89 - - uid: 12558 + pos: 13.5,15.5 + parent: 2 + - uid: 6356 components: - type: Transform - pos: -125.5,0.5 - parent: 89 - - uid: 12559 + pos: 13.5,16.5 + parent: 2 + - uid: 6357 components: - type: Transform - pos: -125.5,-0.5 - parent: 89 - - uid: 12560 + pos: 13.5,17.5 + parent: 2 + - uid: 6358 components: - type: Transform - pos: -125.5,-1.5 - parent: 89 - - uid: 12561 + pos: 13.5,18.5 + parent: 2 + - uid: 6359 components: - type: Transform - pos: -125.5,-2.5 - parent: 89 - - uid: 12562 + pos: 13.5,19.5 + parent: 2 + - uid: 6360 components: - type: Transform - pos: -125.5,-3.5 - parent: 89 - - uid: 12563 + pos: 13.5,20.5 + parent: 2 + - uid: 6361 components: - type: Transform - pos: -125.5,-4.5 - parent: 89 - - uid: 12564 + pos: 13.5,21.5 + parent: 2 + - uid: 6362 components: - type: Transform - pos: -125.5,-5.5 - parent: 89 - - uid: 12565 + pos: 13.5,22.5 + parent: 2 + - uid: 6363 components: - type: Transform - pos: -125.5,-6.5 - parent: 89 - - uid: 12666 + pos: 13.5,23.5 + parent: 2 + - uid: 6364 components: - type: Transform - pos: -35.5,11.5 - parent: 89 - - uid: 12701 + pos: 13.5,24.5 + parent: 2 + - uid: 6365 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 12705 + pos: 13.5,25.5 + parent: 2 + - uid: 6366 components: - type: Transform - pos: -36.5,11.5 - parent: 89 - - uid: 12706 + pos: 13.5,26.5 + parent: 2 + - uid: 6367 components: - type: Transform - pos: -37.5,11.5 - parent: 89 - - uid: 12761 + pos: 13.5,27.5 + parent: 2 + - uid: 6368 components: - type: Transform - pos: -37.5,12.5 - parent: 89 - - uid: 12762 + pos: 15.5,13.5 + parent: 2 + - uid: 6369 components: - type: Transform - pos: -37.5,13.5 - parent: 89 - - uid: 12764 + pos: 15.5,14.5 + parent: 2 + - uid: 6370 components: - type: Transform - pos: -36.5,13.5 - parent: 89 - - uid: 12795 + pos: 16.5,14.5 + parent: 2 + - uid: 6371 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 12848 + pos: 17.5,14.5 + parent: 2 + - uid: 6372 components: - type: Transform - pos: 2.5,23.5 - parent: 89 - - uid: 13451 + pos: 18.5,14.5 + parent: 2 + - uid: 6373 components: - type: Transform - pos: -53.5,26.5 - parent: 89 - - uid: 13452 + pos: 19.5,14.5 + parent: 2 + - uid: 6374 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 13453 + pos: 20.5,14.5 + parent: 2 + - uid: 6375 components: - type: Transform - pos: -53.5,28.5 - parent: 89 - - uid: 13454 + pos: 21.5,14.5 + parent: 2 + - uid: 6376 components: - type: Transform - pos: -53.5,29.5 - parent: 89 - - uid: 13455 + pos: 22.5,14.5 + parent: 2 + - uid: 6377 components: - type: Transform - pos: -53.5,30.5 - parent: 89 - - uid: 13456 + pos: 23.5,14.5 + parent: 2 + - uid: 6378 components: - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 13457 + pos: 24.5,14.5 + parent: 2 + - uid: 6379 components: - type: Transform - pos: -52.5,31.5 - parent: 89 - - uid: 13458 + pos: 25.5,14.5 + parent: 2 + - uid: 6380 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 13459 + pos: 26.5,14.5 + parent: 2 + - uid: 6381 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 13460 + pos: 27.5,14.5 + parent: 2 + - uid: 6382 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 13461 + pos: 27.5,15.5 + parent: 2 + - uid: 6383 components: - type: Transform - pos: -51.5,28.5 - parent: 89 - - uid: 13631 + pos: 27.5,16.5 + parent: 2 + - uid: 6384 components: - type: Transform - pos: -88.5,20.5 - parent: 89 - - uid: 13632 + pos: 27.5,17.5 + parent: 2 + - uid: 6385 components: - type: Transform - pos: -89.5,20.5 - parent: 89 - - uid: 13633 + pos: 27.5,18.5 + parent: 2 + - uid: 6386 components: - type: Transform - pos: -90.5,20.5 - parent: 89 - - uid: 14066 + pos: 26.5,18.5 + parent: 2 + - uid: 6387 components: - type: Transform - pos: -4.5,23.5 - parent: 89 - - uid: 14279 + pos: 26.5,19.5 + parent: 2 + - uid: 6388 components: - type: Transform - pos: -5.5,23.5 - parent: 89 - - uid: 14280 + pos: 26.5,20.5 + parent: 2 + - uid: 6389 components: - type: Transform - pos: -3.5,23.5 - parent: 89 - - uid: 14283 + pos: 26.5,21.5 + parent: 2 + - uid: 6390 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 14331 + pos: 24.5,15.5 + parent: 2 + - uid: 6391 components: - type: Transform - pos: -115.5,-12.5 - parent: 89 - - uid: 14415 + pos: 24.5,16.5 + parent: 2 + - uid: 6392 components: - type: Transform - pos: -36.5,14.5 - parent: 89 - - uid: 14416 + pos: 24.5,17.5 + parent: 2 + - uid: 6393 components: - type: Transform - pos: -36.5,15.5 - parent: 89 - - uid: 14417 + pos: 24.5,18.5 + parent: 2 + - uid: 6394 components: - type: Transform - pos: -36.5,16.5 - parent: 89 - - uid: 14418 + pos: 24.5,19.5 + parent: 2 + - uid: 6395 components: - type: Transform - pos: -36.5,17.5 - parent: 89 - - uid: 14419 + pos: 24.5,20.5 + parent: 2 + - uid: 6396 components: - type: Transform - pos: -35.5,17.5 - parent: 89 - - uid: 14420 + pos: 24.5,21.5 + parent: 2 + - uid: 6397 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 14421 + pos: 24.5,22.5 + parent: 2 + - uid: 6398 components: - type: Transform - pos: -33.5,17.5 - parent: 89 - - uid: 14422 + pos: 24.5,23.5 + parent: 2 + - uid: 6399 components: - type: Transform - pos: -32.5,17.5 - parent: 89 - - uid: 14423 + pos: 24.5,24.5 + parent: 2 + - uid: 6400 components: - type: Transform - pos: -31.5,17.5 - parent: 89 - - uid: 14424 + pos: 24.5,25.5 + parent: 2 + - uid: 6401 components: - type: Transform - pos: -30.5,17.5 - parent: 89 - - uid: 14425 + pos: 24.5,26.5 + parent: 2 + - uid: 6402 components: - type: Transform - pos: -29.5,17.5 - parent: 89 - - uid: 14426 + pos: 24.5,27.5 + parent: 2 + - uid: 6403 components: - type: Transform - pos: -29.5,18.5 - parent: 89 - - uid: 14427 + pos: 24.5,28.5 + parent: 2 + - uid: 6404 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 14561 + pos: -30.5,-0.5 + parent: 2 + - uid: 6405 components: - type: Transform - pos: -43.5,-10.5 - parent: 89 - - uid: 14565 + pos: -31.5,-0.5 + parent: 2 + - uid: 6406 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 14601 + pos: -32.5,-0.5 + parent: 2 + - uid: 6407 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14602 + pos: -33.5,-0.5 + parent: 2 + - uid: 6408 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 14603 + pos: -34.5,-0.5 + parent: 2 + - uid: 6409 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14662 + pos: -35.5,-0.5 + parent: 2 + - uid: 6410 components: - type: Transform - pos: -0.5,23.5 - parent: 89 - - uid: 15004 + pos: -36.5,-0.5 + parent: 2 + - uid: 6411 components: - type: Transform - pos: 4.5,23.5 - parent: 89 - - uid: 15040 + pos: -37.5,-0.5 + parent: 2 + - uid: 6412 components: - type: Transform - pos: -43.5,-9.5 - parent: 89 - - uid: 15121 + pos: -37.5,-1.5 + parent: 2 + - uid: 6413 components: - type: Transform - pos: 24.5,25.5 - parent: 89 - - uid: 15122 + pos: -37.5,-2.5 + parent: 2 + - uid: 6414 components: - type: Transform - pos: 24.5,23.5 - parent: 89 - - uid: 15200 + pos: -37.5,-3.5 + parent: 2 + - uid: 6415 components: - type: Transform - pos: -115.5,-11.5 - parent: 89 - - uid: 15252 + pos: -28.5,-1.5 + parent: 2 + - uid: 6416 components: - type: Transform - pos: -10.5,23.5 - parent: 89 - - uid: 15257 + pos: -27.5,-1.5 + parent: 2 + - uid: 6417 components: - type: Transform - pos: -11.5,23.5 - parent: 89 - - uid: 15268 + pos: -26.5,-1.5 + parent: 2 + - uid: 6418 components: - type: Transform - pos: -115.5,-10.5 - parent: 89 - - uid: 15273 + pos: -25.5,-1.5 + parent: 2 + - uid: 6419 components: - type: Transform - pos: -2.5,23.5 - parent: 89 - - uid: 15274 + pos: -24.5,-1.5 + parent: 2 + - uid: 6420 components: - type: Transform - pos: 0.5,23.5 - parent: 89 - - uid: 15276 + pos: -23.5,-1.5 + parent: 2 + - uid: 6421 components: - type: Transform - pos: 1.5,23.5 - parent: 89 - - uid: 15279 + pos: -22.5,-1.5 + parent: 2 + - uid: 6422 components: - type: Transform - pos: -116.5,-10.5 - parent: 89 - - uid: 15383 + pos: -21.5,-1.5 + parent: 2 + - uid: 6423 components: - type: Transform - pos: -43.5,-8.5 - parent: 89 - - uid: 15412 + pos: -20.5,-1.5 + parent: 2 + - uid: 6424 components: - type: Transform - pos: -6.5,23.5 - parent: 89 - - uid: 15418 + pos: -19.5,-1.5 + parent: 2 + - uid: 6425 components: - type: Transform - pos: 16.5,26.5 - parent: 89 - - uid: 15421 + pos: -18.5,-1.5 + parent: 2 + - uid: 6426 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 15460 + pos: -17.5,-1.5 + parent: 2 + - uid: 6427 components: - type: Transform - pos: 13.5,26.5 - parent: 89 - - uid: 15465 + pos: -17.5,-2.5 + parent: 2 + - uid: 6428 components: - type: Transform - pos: 14.5,26.5 - parent: 89 - - uid: 15483 + pos: -17.5,-3.5 + parent: 2 + - uid: 6429 components: - type: Transform - pos: 20.5,25.5 - parent: 89 - - uid: 15504 + pos: -17.5,-4.5 + parent: 2 + - uid: 6430 components: - type: Transform - pos: 19.5,26.5 - parent: 89 - - uid: 15520 + pos: -17.5,-5.5 + parent: 2 + - uid: 6431 components: - type: Transform - pos: 15.5,26.5 - parent: 89 - - uid: 15536 + pos: -17.5,-6.5 + parent: 2 + - uid: 6432 components: - type: Transform - pos: 6.5,26.5 - parent: 89 - - uid: 15545 + pos: -17.5,-7.5 + parent: 2 + - uid: 6433 components: - type: Transform - pos: 12.5,26.5 - parent: 89 - - uid: 15564 + pos: -16.5,-7.5 + parent: 2 + - uid: 6434 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 15577 + pos: -15.5,-7.5 + parent: 2 + - uid: 6435 components: - type: Transform - pos: 7.5,26.5 - parent: 89 - - uid: 15578 + pos: -14.5,-7.5 + parent: 2 + - uid: 6436 components: - type: Transform - pos: 9.5,26.5 - parent: 89 - - uid: 15580 + pos: -13.5,-7.5 + parent: 2 + - uid: 6437 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 15582 + pos: -12.5,-7.5 + parent: 2 + - uid: 6438 components: - type: Transform - pos: 17.5,26.5 - parent: 89 - - uid: 15583 + pos: -11.5,-7.5 + parent: 2 + - uid: 6439 components: - type: Transform - pos: -43.5,-5.5 - parent: 89 - - uid: 15585 + pos: -10.5,-6.5 + parent: 2 + - uid: 6440 components: - type: Transform - pos: -43.5,-4.5 - parent: 89 - - uid: 15588 + pos: 6.5,12.5 + parent: 2 + - uid: 6441 components: - type: Transform - pos: -42.5,-4.5 - parent: 89 - - uid: 15596 + pos: 6.5,11.5 + parent: 2 + - uid: 6442 components: - type: Transform - pos: -41.5,-4.5 - parent: 89 - - uid: 15606 + pos: 6.5,10.5 + parent: 2 + - uid: 6443 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 - - uid: 15607 + pos: 6.5,9.5 + parent: 2 + - uid: 6444 components: - type: Transform - pos: -39.5,-4.5 - parent: 89 - - uid: 15650 + pos: 6.5,8.5 + parent: 2 + - uid: 6445 components: - type: Transform - pos: -115.5,-13.5 - parent: 89 - - uid: 15651 + pos: 6.5,7.5 + parent: 2 + - uid: 6446 components: - type: Transform - pos: -114.5,-13.5 - parent: 89 - - uid: 15652 + pos: 7.5,7.5 + parent: 2 + - uid: 6447 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 - - uid: 15653 + pos: 8.5,7.5 + parent: 2 + - uid: 6448 components: - type: Transform - pos: -112.5,-13.5 - parent: 89 - - uid: 15654 + pos: 9.5,7.5 + parent: 2 + - uid: 6449 components: - type: Transform - pos: -111.5,-13.5 - parent: 89 - - uid: 15658 + pos: 10.5,7.5 + parent: 2 + - uid: 6450 components: - type: Transform - pos: -117.5,-10.5 - parent: 89 - - uid: 15659 + pos: 11.5,7.5 + parent: 2 + - uid: 6451 components: - type: Transform - pos: -118.5,-10.5 - parent: 89 - - uid: 15660 + pos: 12.5,7.5 + parent: 2 + - uid: 6452 components: - type: Transform - pos: -119.5,-10.5 - parent: 89 - - uid: 15661 + pos: 13.5,7.5 + parent: 2 + - uid: 6453 components: - type: Transform - pos: -120.5,-10.5 - parent: 89 - - uid: 15662 + pos: 14.5,7.5 + parent: 2 + - uid: 6454 components: - type: Transform - pos: -121.5,-10.5 - parent: 89 - - uid: 15663 + pos: 15.5,7.5 + parent: 2 + - uid: 6455 components: - type: Transform - pos: -122.5,-10.5 - parent: 89 - - uid: 15664 + pos: 16.5,7.5 + parent: 2 + - uid: 6456 components: - type: Transform - pos: -123.5,-10.5 - parent: 89 - - uid: 15665 + pos: 17.5,7.5 + parent: 2 + - uid: 6457 components: - type: Transform - pos: -124.5,-10.5 - parent: 89 - - uid: 15666 + pos: 18.5,7.5 + parent: 2 + - uid: 6458 components: - type: Transform - pos: -125.5,-10.5 - parent: 89 - - uid: 15667 + pos: 19.5,7.5 + parent: 2 + - uid: 6459 components: - type: Transform - pos: -125.5,-9.5 - parent: 89 - - uid: 15668 + pos: 20.5,7.5 + parent: 2 + - uid: 6460 components: - type: Transform - pos: -125.5,-8.5 - parent: 89 - - uid: 15669 + pos: 20.5,8.5 + parent: 2 + - uid: 6461 components: - type: Transform - pos: -125.5,-7.5 - parent: 89 - - uid: 15852 + pos: 20.5,9.5 + parent: 2 + - uid: 6462 components: - type: Transform - pos: -38.5,-4.5 - parent: 89 - - uid: 15863 + pos: 26.5,22.5 + parent: 2 + - uid: 6463 components: - type: Transform - pos: 22.5,25.5 - parent: 89 - - uid: 15872 + pos: 27.5,22.5 + parent: 2 + - uid: 6464 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 15886 + pos: 28.5,22.5 + parent: 2 + - uid: 6465 components: - type: Transform - pos: 4.5,25.5 - parent: 89 - - uid: 15897 + pos: 29.5,22.5 + parent: 2 + - uid: 6466 components: - type: Transform - pos: -121.5,17.5 - parent: 89 - - uid: 15902 + pos: 30.5,22.5 + parent: 2 + - uid: 6467 components: - type: Transform - pos: 4.5,26.5 - parent: 89 - - uid: 15903 + pos: 31.5,22.5 + parent: 2 + - uid: 6468 components: - type: Transform - pos: -122.5,17.5 - parent: 89 - - uid: 15916 + pos: 32.5,22.5 + parent: 2 + - uid: 6469 components: - type: Transform - pos: 35.5,27.5 - parent: 89 - - uid: 16075 + pos: 33.5,22.5 + parent: 2 + - uid: 6470 components: - type: Transform - pos: -131.5,-8.5 - parent: 89 - - uid: 16146 + pos: 34.5,22.5 + parent: 2 + - uid: 6471 components: - type: Transform - pos: 20.5,26.5 - parent: 89 - - uid: 16163 + pos: 34.5,23.5 + parent: 2 + - uid: 6472 components: - type: Transform - pos: 4.5,24.5 - parent: 89 - - uid: 16173 + pos: 34.5,24.5 + parent: 2 + - uid: 6473 components: - type: Transform - pos: 5.5,26.5 - parent: 89 - - uid: 16274 + pos: 34.5,25.5 + parent: 2 + - uid: 6474 components: - type: Transform - pos: -135.5,-25.5 - parent: 89 - - uid: 16275 + pos: 34.5,26.5 + parent: 2 + - uid: 6475 components: - type: Transform - pos: -134.5,-25.5 - parent: 89 - - uid: 16301 + pos: -3.5,12.5 + parent: 2 + - uid: 6476 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 16302 + pos: -2.5,12.5 + parent: 2 + - uid: 6477 components: - type: Transform - pos: 25.5,22.5 - parent: 89 - - uid: 16303 + pos: -30.5,27.5 + parent: 2 + - uid: 6478 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16304 + pos: -30.5,28.5 + parent: 2 + - uid: 6479 components: - type: Transform - pos: 27.5,22.5 - parent: 89 - - uid: 16305 + pos: -30.5,29.5 + parent: 2 + - uid: 6480 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 16306 + pos: -30.5,30.5 + parent: 2 + - uid: 6481 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16307 + pos: -30.5,31.5 + parent: 2 + - uid: 6482 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16308 + pos: -30.5,32.5 + parent: 2 + - uid: 6483 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16309 + pos: -30.5,33.5 + parent: 2 + - uid: 6484 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 16310 + pos: -30.5,34.5 + parent: 2 + - uid: 6485 components: - type: Transform - pos: 33.5,22.5 - parent: 89 - - uid: 16311 + pos: -30.5,35.5 + parent: 2 + - uid: 6486 components: - type: Transform - pos: 34.5,22.5 - parent: 89 - - uid: 16312 + pos: -30.5,36.5 + parent: 2 + - uid: 6487 components: - type: Transform - pos: 34.5,23.5 - parent: 89 - - uid: 16313 + pos: -10.5,-24.5 + parent: 2 + - uid: 6488 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 16314 + pos: 15.5,-12.5 + parent: 2 + - uid: 6489 components: - type: Transform - pos: 34.5,25.5 - parent: 89 - - uid: 16315 + pos: 15.5,-11.5 + parent: 2 + - uid: 6490 components: - type: Transform - pos: 34.5,26.5 - parent: 89 - - uid: 16528 + pos: -30.5,37.5 + parent: 2 + - uid: 6491 components: - type: Transform - pos: -126.5,17.5 - parent: 89 - - uid: 16531 + pos: -31.5,37.5 + parent: 2 + - uid: 6492 components: - type: Transform - pos: -126.5,18.5 - parent: 89 - - uid: 16532 + pos: -81.5,16.5 + parent: 2 + - uid: 6493 components: - type: Transform - pos: -123.5,19.5 - parent: 89 - - uid: 16542 + pos: -81.5,17.5 + parent: 2 + - uid: 6494 components: - type: Transform - pos: -122.5,19.5 - parent: 89 - - uid: 16580 + pos: -81.5,18.5 + parent: 2 + - uid: 6495 components: - type: Transform - pos: -116.5,13.5 - parent: 89 - - uid: 16581 + pos: -81.5,19.5 + parent: 2 + - uid: 6496 components: - type: Transform - pos: -117.5,13.5 - parent: 89 - - uid: 16690 + pos: -81.5,20.5 + parent: 2 + - uid: 6497 components: - type: Transform - pos: -37.5,-16.5 - parent: 89 - - uid: 16778 + pos: -82.5,20.5 + parent: 2 + - uid: 6498 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 16779 + pos: -83.5,20.5 + parent: 2 + - uid: 6499 components: - type: Transform - pos: -37.5,-6.5 - parent: 89 - - uid: 16780 + pos: -84.5,20.5 + parent: 2 + - uid: 6500 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 16781 + pos: -84.5,21.5 + parent: 2 + - uid: 6501 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 16782 + pos: -84.5,22.5 + parent: 2 + - uid: 6502 components: - type: Transform - pos: -37.5,-9.5 - parent: 89 - - uid: 16917 + pos: -84.5,23.5 + parent: 2 + - uid: 6503 components: - type: Transform - pos: -118.5,4.5 - parent: 89 - - uid: 17068 + pos: -84.5,24.5 + parent: 2 + - uid: 6504 components: - type: Transform - pos: 13.5,-12.5 - parent: 89 - - uid: 17069 + pos: -84.5,25.5 + parent: 2 + - uid: 6505 components: - type: Transform - pos: -133.5,-25.5 - parent: 89 - - uid: 17071 + pos: -84.5,26.5 + parent: 2 + - uid: 6506 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 17072 + pos: -84.5,27.5 + parent: 2 + - uid: 6507 components: - type: Transform - pos: 13.5,-10.5 - parent: 89 - - uid: 17073 + pos: -84.5,28.5 + parent: 2 + - uid: 6508 components: - type: Transform - pos: 14.5,-9.5 - parent: 89 - - uid: 17075 + pos: -84.5,29.5 + parent: 2 + - uid: 6509 components: - type: Transform - pos: 16.5,-9.5 - parent: 89 - - uid: 17076 + pos: -84.5,30.5 + parent: 2 + - uid: 6510 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 - - uid: 17146 + pos: -84.5,31.5 + parent: 2 + - uid: 6511 components: - type: Transform - pos: -132.5,-25.5 - parent: 89 - - uid: 17161 + pos: -84.5,32.5 + parent: 2 + - uid: 6512 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 - - uid: 17169 + pos: -84.5,33.5 + parent: 2 + - uid: 6513 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 - - uid: 17172 + pos: -84.5,34.5 + parent: 2 + - uid: 6514 components: - type: Transform - pos: -132.5,-4.5 - parent: 89 - - uid: 17173 + pos: -84.5,35.5 + parent: 2 + - uid: 6515 components: - type: Transform - pos: 17.5,-9.5 - parent: 89 - - uid: 17178 + pos: -85.5,35.5 + parent: 2 + - uid: 6516 components: - type: Transform - pos: 20.5,-9.5 - parent: 89 - - uid: 17179 + pos: -86.5,35.5 + parent: 2 + - uid: 6517 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 - - uid: 17182 + pos: -86.5,36.5 + parent: 2 + - uid: 6518 components: - type: Transform - pos: 15.5,-9.5 - parent: 89 - - uid: 17183 + pos: -31.5,38.5 + parent: 2 + - uid: 6519 components: - type: Transform - pos: 23.5,-9.5 - parent: 89 - - uid: 17184 + pos: 24.5,29.5 + parent: 2 + - uid: 6520 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 - - uid: 17185 + pos: 38.5,-10.5 + parent: 2 + - uid: 6521 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 - - uid: 17186 + pos: 38.5,-11.5 + parent: 2 + - uid: 6522 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 - - uid: 17187 + pos: 42.5,-10.5 + parent: 2 + - uid: 6523 components: - type: Transform - pos: 26.5,-9.5 - parent: 89 - - uid: 17188 + pos: 42.5,-11.5 + parent: 2 + - uid: 6524 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 - - uid: 17189 + pos: 42.5,-12.5 + parent: 2 + - uid: 6525 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 - - uid: 17191 + pos: 42.5,-13.5 + parent: 2 + - uid: 6526 components: - type: Transform - pos: 30.5,-9.5 - parent: 89 - - uid: 17192 + pos: 41.5,-13.5 + parent: 2 + - uid: 6527 components: - type: Transform - pos: 29.5,-9.5 - parent: 89 - - uid: 17193 + pos: 40.5,-13.5 + parent: 2 + - uid: 6528 components: - type: Transform - pos: 32.5,-9.5 - parent: 89 - - uid: 17194 + pos: 39.5,-13.5 + parent: 2 + - uid: 6529 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 17195 + pos: 38.5,-13.5 + parent: 2 + - uid: 6530 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 17197 + pos: 38.5,-12.5 + parent: 2 + - uid: 6531 components: - type: Transform - pos: 33.5,-9.5 - parent: 89 - - uid: 17198 + pos: 5.5,13.5 + parent: 2 + - uid: 6532 components: - type: Transform - pos: 36.5,-9.5 - parent: 89 - - uid: 17199 + pos: 10.5,-15.5 + parent: 2 + - uid: 6533 components: - type: Transform - pos: 35.5,-9.5 - parent: 89 - - uid: 17200 + pos: -118.5,20.5 + parent: 2 + - uid: 6534 components: - type: Transform - pos: 38.5,-9.5 - parent: 89 - - uid: 17201 + pos: 9.5,-15.5 + parent: 2 + - uid: 6535 components: - type: Transform - pos: 37.5,-9.5 - parent: 89 - - uid: 17202 + pos: 33.5,26.5 + parent: 2 + - uid: 6536 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 - - uid: 17408 + pos: 47.5,13.5 + parent: 2 + - uid: 6537 components: - type: Transform - pos: -126.5,-19.5 - parent: 89 - - uid: 17409 + pos: 47.5,19.5 + parent: 2 + - uid: 6538 components: - type: Transform - pos: 40.5,26.5 - parent: 89 - - uid: 17412 + pos: -6.5,15.5 + parent: 2 + - uid: 6539 components: - type: Transform - pos: -128.5,-22.5 - parent: 89 - - uid: 18347 + pos: -6.5,16.5 + parent: 2 + - uid: 6540 components: - type: Transform - pos: -117.5,4.5 - parent: 89 - - uid: 18348 + pos: -7.5,16.5 + parent: 2 + - uid: 6541 components: - type: Transform - pos: -116.5,4.5 - parent: 89 - - uid: 18349 + pos: 47.5,18.5 + parent: 2 + - uid: 6542 components: - type: Transform - pos: -115.5,4.5 - parent: 89 - - uid: 18350 + pos: 11.5,-15.5 + parent: 2 + - uid: 6543 components: - type: Transform - pos: -114.5,4.5 - parent: 89 - - uid: 18351 + pos: 13.5,-15.5 + parent: 2 + - uid: 6544 components: - type: Transform - pos: -113.5,4.5 - parent: 89 - - uid: 18352 + pos: 47.5,15.5 + parent: 2 + - uid: 6545 components: - type: Transform - pos: -112.5,4.5 - parent: 89 - - uid: 18353 + pos: 47.5,16.5 + parent: 2 + - uid: 6546 components: - type: Transform - pos: -111.5,4.5 - parent: 89 - - uid: 18354 + pos: 47.5,17.5 + parent: 2 + - uid: 6547 components: - type: Transform - pos: -110.5,4.5 - parent: 89 - - uid: 18355 + pos: 45.5,19.5 + parent: 2 + - uid: 6548 components: - type: Transform - pos: -109.5,4.5 - parent: 89 - - uid: 18388 + pos: 46.5,19.5 + parent: 2 + - uid: 6549 components: - type: Transform - pos: 38.5,-13.5 - parent: 89 - - uid: 18390 + pos: 44.5,19.5 + parent: 2 + - uid: 6550 components: - type: Transform - pos: 38.5,-12.5 - parent: 89 - - uid: 18407 + pos: 44.5,20.5 + parent: 2 + - uid: 6551 components: - type: Transform - pos: 51.5,0.5 - parent: 89 - - uid: 18408 + pos: 14.5,19.5 + parent: 2 + - uid: 6552 components: - type: Transform - pos: 51.5,-0.5 - parent: 89 - - uid: 18409 + pos: 15.5,19.5 + parent: 2 + - uid: 6553 components: - type: Transform - pos: 51.5,-1.5 - parent: 89 - - uid: 18410 + pos: 4.5,13.5 + parent: 2 + - uid: 6554 components: - type: Transform - pos: 51.5,-2.5 - parent: 89 - - uid: 18411 + pos: 3.5,13.5 + parent: 2 + - uid: 6555 components: - type: Transform - pos: 52.5,-2.5 - parent: 89 - - uid: 18412 + pos: 2.5,13.5 + parent: 2 + - uid: 6556 components: - type: Transform - pos: 52.5,-3.5 - parent: 89 - - uid: 18413 + pos: 1.5,13.5 + parent: 2 + - uid: 6557 components: - type: Transform - pos: 52.5,-4.5 - parent: 89 - - uid: 18414 + pos: 0.5,13.5 + parent: 2 + - uid: 6558 components: - type: Transform - pos: 52.5,-5.5 - parent: 89 - - uid: 18415 + pos: 0.5,14.5 + parent: 2 + - uid: 6559 components: - type: Transform - pos: 52.5,-6.5 - parent: 89 - - uid: 18416 + pos: -4.5,12.5 + parent: 2 + - uid: 6560 components: - type: Transform - pos: 51.5,5.5 - parent: 89 - - uid: 18417 + pos: -5.5,12.5 + parent: 2 + - uid: 6561 components: - type: Transform - pos: 51.5,6.5 - parent: 89 - - uid: 18418 + pos: 7.5,-15.5 + parent: 2 + - uid: 6562 components: - type: Transform - pos: 51.5,7.5 - parent: 89 - - uid: 18419 + pos: 6.5,-15.5 + parent: 2 + - uid: 6563 components: - type: Transform - pos: 51.5,8.5 - parent: 89 - - uid: 18420 + pos: 6.5,-15.5 + parent: 2 + - uid: 6564 components: - type: Transform - pos: 51.5,9.5 - parent: 89 - - uid: 18421 + pos: 54.5,-23.5 + parent: 2 + - uid: 6565 components: - type: Transform - pos: 51.5,10.5 - parent: 89 - - uid: 18422 + pos: 53.5,-23.5 + parent: 2 + - uid: 6566 components: - type: Transform - pos: 51.5,11.5 - parent: 89 - - uid: 19807 + pos: 6.5,-16.5 + parent: 2 + - uid: 6567 components: - type: Transform - pos: -125.5,19.5 - parent: 89 - - uid: 19825 + pos: 45.5,-23.5 + parent: 2 + - uid: 6568 components: - type: Transform - pos: -120.5,17.5 - parent: 89 - - uid: 19827 + pos: 56.5,-23.5 + parent: 2 + - uid: 6569 components: - type: Transform - pos: -126.5,19.5 - parent: 89 - - uid: 20232 + pos: 57.5,-23.5 + parent: 2 + - uid: 6570 components: - type: Transform - pos: -128.5,-24.5 - parent: 89 - - uid: 20248 + pos: 57.5,-23.5 + parent: 2 + - uid: 6571 components: - type: Transform - pos: -128.5,-16.5 - parent: 89 - - uid: 20251 + pos: 57.5,-22.5 + parent: 2 + - uid: 6572 components: - type: Transform - pos: -128.5,-17.5 - parent: 89 - - uid: 20254 + pos: 57.5,-21.5 + parent: 2 + - uid: 6573 components: - type: Transform - pos: -135.5,-23.5 - parent: 89 - - uid: 20261 + pos: 57.5,-20.5 + parent: 2 + - uid: 6574 components: - type: Transform - pos: -128.5,-31.5 - parent: 89 - - uid: 20262 + pos: 57.5,-19.5 + parent: 2 + - uid: 6575 components: - type: Transform - pos: -128.5,-30.5 - parent: 89 - - uid: 20263 + pos: 57.5,-18.5 + parent: 2 + - uid: 6576 components: - type: Transform - pos: -130.5,-29.5 - parent: 89 - - uid: 20265 + pos: 57.5,-17.5 + parent: 2 + - uid: 6577 components: - type: Transform - pos: -126.5,-29.5 - parent: 89 - - uid: 20266 + pos: 52.5,-23.5 + parent: 2 + - uid: 6578 components: - type: Transform - pos: -128.5,-15.5 - parent: 89 - - uid: 20267 + pos: 51.5,-23.5 + parent: 2 + - uid: 6579 components: - type: Transform - pos: -128.5,-14.5 - parent: 89 - - uid: 20268 + pos: 50.5,-23.5 + parent: 2 + - uid: 6580 components: - type: Transform - pos: -134.5,-23.5 - parent: 89 - - uid: 20269 + pos: 49.5,-23.5 + parent: 2 + - uid: 6581 components: - type: Transform - pos: -128.5,-13.5 - parent: 89 - - uid: 20272 + pos: 48.5,-23.5 + parent: 2 + - uid: 6582 components: - type: Transform - pos: -130.5,-18.5 - parent: 89 - - uid: 20273 + pos: 47.5,-23.5 + parent: 2 + - uid: 6583 components: - type: Transform - pos: -131.5,-18.5 - parent: 89 - - uid: 20274 + pos: 46.5,-23.5 + parent: 2 + - uid: 6584 components: - type: Transform - pos: -132.5,-18.5 - parent: 89 - - uid: 20275 + pos: 45.5,-23.5 + parent: 2 + - uid: 6585 components: - type: Transform - pos: -133.5,-18.5 - parent: 89 - - uid: 20276 + pos: 45.5,-22.5 + parent: 2 + - uid: 6586 components: - type: Transform - pos: 36.5,27.5 - parent: 89 - - uid: 20278 + pos: 45.5,-21.5 + parent: 2 + - uid: 6587 components: - type: Transform - pos: -132.5,-20.5 - parent: 89 - - uid: 20279 + pos: 45.5,-20.5 + parent: 2 + - uid: 6588 components: - type: Transform - pos: -131.5,-20.5 - parent: 89 - - uid: 20280 + pos: 45.5,-19.5 + parent: 2 + - uid: 6589 components: - type: Transform - pos: -130.5,-20.5 - parent: 89 - - uid: 20281 + pos: 45.5,-18.5 + parent: 2 + - uid: 6590 components: - type: Transform - pos: -128.5,-23.5 - parent: 89 - - uid: 20282 + pos: 45.5,-18.5 + parent: 2 + - uid: 6591 components: - type: Transform - pos: -126.5,-18.5 - parent: 89 - - uid: 20283 + pos: 44.5,-18.5 + parent: 2 + - uid: 6592 components: - type: Transform - pos: -125.5,-18.5 - parent: 89 - - uid: 20284 + pos: 43.5,-18.5 + parent: 2 + - uid: 6593 components: - type: Transform - pos: -124.5,-18.5 - parent: 89 - - uid: 20286 + pos: 41.5,-18.5 + parent: 2 + - uid: 6594 components: - type: Transform - pos: -130.5,-19.5 - parent: 89 - - uid: 20287 + pos: 40.5,-18.5 + parent: 2 + - uid: 6595 components: - type: Transform - pos: -126.5,-20.5 - parent: 89 - - uid: 20288 + pos: 39.5,-18.5 + parent: 2 + - uid: 6596 components: - type: Transform - pos: -125.5,-20.5 - parent: 89 - - uid: 20289 + pos: 38.5,-18.5 + parent: 2 + - uid: 6597 components: - type: Transform - pos: -124.5,-20.5 - parent: 89 - - uid: 20290 + pos: 37.5,-18.5 + parent: 2 + - uid: 6598 components: - type: Transform - pos: -133.5,-20.5 - parent: 89 - - uid: 20294 + pos: 6.5,-17.5 + parent: 2 + - uid: 6599 components: - type: Transform - pos: -123.5,-20.5 - parent: 89 - - uid: 20300 + pos: 6.5,-18.5 + parent: 2 + - uid: 6600 components: - type: Transform - pos: -133.5,-23.5 - parent: 89 - - uid: 20301 + pos: 6.5,-18.5 + parent: 2 + - uid: 6601 components: - type: Transform - pos: -132.5,-23.5 - parent: 89 - - uid: 20302 + pos: 7.5,-18.5 + parent: 2 + - uid: 6602 components: - type: Transform - pos: -131.5,-23.5 - parent: 89 - - uid: 20303 + pos: 8.5,-18.5 + parent: 2 + - uid: 6603 components: - type: Transform - pos: -130.5,-23.5 - parent: 89 - - uid: 20304 + pos: 9.5,-18.5 + parent: 2 + - uid: 6604 components: - type: Transform - pos: -126.5,-24.5 - parent: 89 - - uid: 20305 + pos: 10.5,-18.5 + parent: 2 + - uid: 6605 components: - type: Transform - pos: -131.5,-25.5 - parent: 89 - - uid: 20306 + pos: 10.5,-18.5 + parent: 2 + - uid: 6606 components: - type: Transform - pos: -130.5,-25.5 - parent: 89 - - uid: 20308 + pos: 10.5,-19.5 + parent: 2 + - uid: 6607 components: - type: Transform - pos: -130.5,-24.5 - parent: 89 - - uid: 20309 + pos: 10.5,-19.5 + parent: 2 + - uid: 6608 components: - type: Transform - pos: -126.5,-25.5 - parent: 89 - - uid: 20310 + pos: 11.5,-19.5 + parent: 2 + - uid: 6609 components: - type: Transform - pos: -125.5,-25.5 - parent: 89 - - uid: 20311 + pos: 12.5,-19.5 + parent: 2 + - uid: 6610 components: - type: Transform - pos: -124.5,-25.5 - parent: 89 - - uid: 20312 + pos: 13.5,-19.5 + parent: 2 + - uid: 6611 components: - type: Transform - pos: -123.5,-25.5 - parent: 89 - - uid: 20313 + pos: 14.5,-19.5 + parent: 2 + - uid: 6612 components: - type: Transform - pos: -122.5,-25.5 - parent: 89 - - uid: 20315 + pos: 15.5,-19.5 + parent: 2 + - uid: 6613 components: - type: Transform - pos: -126.5,-23.5 - parent: 89 - - uid: 20316 + pos: 15.5,-18.5 + parent: 2 + - uid: 6614 components: - type: Transform - pos: -125.5,-23.5 - parent: 89 - - uid: 20317 + pos: 16.5,-18.5 + parent: 2 + - uid: 6615 components: - type: Transform - pos: -124.5,-23.5 - parent: 89 - - uid: 20318 + pos: 17.5,-18.5 + parent: 2 + - uid: 6616 components: - type: Transform - pos: -123.5,-23.5 - parent: 89 - - uid: 20319 + pos: 17.5,-17.5 + parent: 2 + - uid: 6617 components: - type: Transform - pos: -122.5,-23.5 - parent: 89 - - uid: 20323 + pos: 17.5,-16.5 + parent: 2 + - uid: 6618 components: - type: Transform - pos: -128.5,-21.5 - parent: 89 - - uid: 20324 + pos: 17.5,-16.5 + parent: 2 + - uid: 6619 components: - type: Transform - pos: -126.5,-28.5 - parent: 89 - - uid: 20325 + pos: 18.5,-16.5 + parent: 2 + - uid: 6620 components: - type: Transform - pos: -125.5,-28.5 - parent: 89 - - uid: 20326 + pos: 19.5,-16.5 + parent: 2 + - uid: 6621 components: - type: Transform - pos: -124.5,-28.5 - parent: 89 - - uid: 20327 + pos: 21.5,-16.5 + parent: 2 + - uid: 6622 components: - type: Transform - pos: -123.5,-28.5 - parent: 89 - - uid: 20328 + pos: 22.5,-16.5 + parent: 2 + - uid: 6623 components: - type: Transform - pos: -122.5,-28.5 - parent: 89 - - uid: 20329 + pos: 23.5,-16.5 + parent: 2 + - uid: 6624 components: - type: Transform - pos: -121.5,-28.5 - parent: 89 - - uid: 20331 + pos: 24.5,-16.5 + parent: 2 + - uid: 6625 components: - type: Transform - pos: -127.5,-30.5 - parent: 89 - - uid: 20332 + pos: 25.5,-16.5 + parent: 2 + - uid: 6626 components: - type: Transform - pos: -126.5,-30.5 - parent: 89 - - uid: 20333 + pos: 26.5,-16.5 + parent: 2 + - uid: 6627 components: - type: Transform - pos: -125.5,-30.5 - parent: 89 - - uid: 20334 + pos: 26.5,-17.5 + parent: 2 + - uid: 6628 components: - type: Transform - pos: -124.5,-30.5 - parent: 89 - - uid: 20335 + pos: -119.5,20.5 + parent: 2 + - uid: 6629 components: - type: Transform - pos: -123.5,-30.5 - parent: 89 - - uid: 20336 + pos: -120.5,20.5 + parent: 2 + - uid: 6630 components: - type: Transform - pos: -122.5,-30.5 - parent: 89 - - uid: 20337 + pos: -121.5,20.5 + parent: 2 + - uid: 6631 components: - type: Transform - pos: -121.5,-30.5 - parent: 89 - - uid: 20339 + pos: -122.5,20.5 + parent: 2 + - uid: 6632 components: - type: Transform - pos: -129.5,-30.5 - parent: 89 - - uid: 20340 + pos: -123.5,20.5 + parent: 2 + - uid: 6633 components: - type: Transform - pos: -130.5,-30.5 - parent: 89 - - uid: 20341 + pos: 37.5,-8.5 + parent: 2 + - uid: 6634 components: - type: Transform - pos: -131.5,-30.5 - parent: 89 - - uid: 20342 + pos: 37.5,-7.5 + parent: 2 + - uid: 6635 components: - type: Transform - pos: -132.5,-30.5 - parent: 89 - - uid: 20343 + pos: 37.5,-6.5 + parent: 2 + - uid: 6636 components: - type: Transform - pos: -133.5,-30.5 - parent: 89 - - uid: 20344 + pos: 38.5,-6.5 + parent: 2 + - uid: 6637 components: - type: Transform - pos: -134.5,-30.5 - parent: 89 - - uid: 20345 + pos: 39.5,-6.5 + parent: 2 + - uid: 6638 components: - type: Transform - pos: -135.5,-30.5 - parent: 89 - - uid: 20346 + pos: 40.5,-6.5 + parent: 2 + - uid: 6639 components: - type: Transform - pos: -136.5,-30.5 - parent: 89 - - uid: 20347 + pos: 41.5,-6.5 + parent: 2 + - uid: 6640 components: - type: Transform - pos: -128.5,-18.5 - parent: 89 - - uid: 20348 + pos: 42.5,-6.5 + parent: 2 + - uid: 6641 components: - type: Transform - pos: -130.5,-28.5 - parent: 89 - - uid: 20349 + pos: 43.5,-6.5 + parent: 2 + - uid: 6642 components: - type: Transform - pos: -131.5,-28.5 - parent: 89 - - uid: 20350 + pos: 43.5,-7.5 + parent: 2 + - uid: 6643 components: - type: Transform - pos: -132.5,-28.5 - parent: 89 - - uid: 20351 + pos: 16.5,-12.5 + parent: 2 + - uid: 6644 components: - type: Transform - pos: -133.5,-28.5 - parent: 89 - - uid: 20352 + pos: 12.5,-16.5 + parent: 2 + - uid: 6645 components: - type: Transform - pos: -134.5,-28.5 - parent: 89 - - uid: 20353 + pos: 16.5,-11.5 + parent: 2 + - uid: 6646 components: - type: Transform - pos: -135.5,-28.5 - parent: 89 - - uid: 20354 + pos: 16.5,-10.5 + parent: 2 + - uid: 6647 components: - type: Transform - pos: -136.5,-28.5 - parent: 89 - - uid: 20366 + pos: 15.5,-14.5 + parent: 2 + - uid: 6648 components: - type: Transform - pos: -128.5,-19.5 - parent: 89 - - uid: 20367 + pos: 13.5,-11.5 + parent: 2 + - uid: 6649 components: - type: Transform - pos: 36.5,26.5 - parent: 89 - - uid: 20368 + pos: 12.5,-11.5 + parent: 2 + - uid: 6650 components: - type: Transform - pos: 37.5,26.5 - parent: 89 - - uid: 20369 + pos: 11.5,-11.5 + parent: 2 + - uid: 6651 components: - type: Transform - pos: 38.5,26.5 - parent: 89 - - uid: 20371 + pos: 43.5,-19.5 + parent: 2 + - uid: 6652 components: - type: Transform - pos: 39.5,26.5 - parent: 89 - - uid: 20372 + pos: -11.5,-27.5 + parent: 2 + - uid: 6653 components: - type: Transform - pos: 38.5,-11.5 - parent: 89 - - uid: 20390 + pos: -12.5,-27.5 + parent: 2 + - uid: 6654 components: - type: Transform - pos: -128.5,-12.5 - parent: 89 - - uid: 20391 + pos: -13.5,-27.5 + parent: 2 + - uid: 6655 components: - type: Transform - pos: -129.5,-12.5 - parent: 89 - - uid: 20416 + pos: 41.5,-19.5 + parent: 2 + - uid: 6656 components: - type: Transform - pos: 38.5,-14.5 - parent: 89 - - uid: 20417 + pos: 42.5,-19.5 + parent: 2 + - uid: 6657 components: - type: Transform - pos: 38.5,-15.5 - parent: 89 - - uid: 20425 + pos: -11.5,-26.5 + parent: 2 + - uid: 6658 components: - type: Transform - pos: 50.5,39.5 - parent: 89 - - uid: 20428 + pos: -14.5,-27.5 + parent: 2 + - uid: 6659 components: - type: Transform - pos: 41.5,26.5 - parent: 89 - - uid: 20429 + pos: -14.5,-26.5 + parent: 2 + - uid: 6660 components: - type: Transform - pos: 42.5,26.5 - parent: 89 - - uid: 20430 + pos: -144.5,-14.5 + parent: 2 + - uid: 6661 components: - type: Transform - pos: 43.5,26.5 - parent: 89 - - uid: 20431 + pos: -136.5,-11.5 + parent: 2 + - uid: 6662 components: - type: Transform - pos: 44.5,26.5 - parent: 89 - - uid: 20432 + pos: -137.5,-0.5 + parent: 2 + - uid: 6663 components: - type: Transform - pos: 45.5,26.5 - parent: 89 - - uid: 20433 + pos: -136.5,-0.5 + parent: 2 + - uid: 6664 components: - type: Transform - pos: 46.5,26.5 - parent: 89 - - uid: 20434 + pos: -138.5,-0.5 + parent: 2 + - uid: 6665 components: - type: Transform - pos: 47.5,26.5 - parent: 89 - - uid: 20435 + pos: -136.5,-12.5 + parent: 2 + - uid: 6666 components: - type: Transform - pos: 48.5,26.5 - parent: 89 - - uid: 20457 + pos: -146.5,-14.5 + parent: 2 + - uid: 6667 components: - type: Transform - pos: 53.5,40.5 - parent: 89 - - uid: 20458 + pos: -146.5,-0.5 + parent: 2 + - uid: 6668 components: - type: Transform - pos: 53.5,41.5 - parent: 89 - - uid: 20459 + pos: -111.5,25.5 + parent: 2 + - uid: 6669 components: - type: Transform - pos: 53.5,42.5 - parent: 89 - - uid: 20460 + pos: -108.5,25.5 + parent: 2 + - uid: 6670 components: - type: Transform - pos: 56.5,34.5 - parent: 89 - - uid: 20461 + pos: -110.5,25.5 + parent: 2 + - uid: 6671 components: - type: Transform - pos: 57.5,34.5 - parent: 89 - - uid: 20462 + pos: -147.5,-0.5 + parent: 2 + - uid: 6672 components: - type: Transform - pos: 57.5,35.5 - parent: 89 - - uid: 20463 + pos: -112.5,25.5 + parent: 2 + - uid: 6673 components: - type: Transform - pos: 58.5,35.5 - parent: 89 - - uid: 20464 + pos: -105.5,23.5 + parent: 2 + - uid: 6674 components: - type: Transform - pos: 59.5,35.5 - parent: 89 - - uid: 20465 + pos: -148.5,-14.5 + parent: 2 + - uid: 6675 components: - type: Transform - pos: 60.5,35.5 - parent: 89 - - uid: 20466 + pos: -136.5,-3.5 + parent: 2 + - uid: 6676 components: - type: Transform - pos: 61.5,35.5 - parent: 89 - - uid: 20467 + pos: -147.5,-14.5 + parent: 2 + - uid: 6677 components: - type: Transform - pos: 57.5,33.5 - parent: 89 - - uid: 20468 + pos: -136.5,-13.5 + parent: 2 + - uid: 6678 components: - type: Transform - pos: 58.5,33.5 - parent: 89 - - uid: 20469 + pos: -136.5,-14.5 + parent: 2 + - uid: 6679 components: - type: Transform - pos: 59.5,33.5 - parent: 89 - - uid: 20470 + pos: -139.5,-14.5 + parent: 2 + - uid: 6680 components: - type: Transform - pos: 60.5,33.5 - parent: 89 - - uid: 20471 + pos: -113.5,25.5 + parent: 2 + - uid: 6681 components: - type: Transform - pos: 61.5,33.5 - parent: 89 - - uid: 20472 + pos: -113.5,24.5 + parent: 2 + - uid: 6682 components: - type: Transform - pos: 56.5,31.5 - parent: 89 - - uid: 20477 + pos: -149.5,-1.5 + parent: 2 + - uid: 6683 components: - type: Transform - pos: 56.5,30.5 - parent: 89 - - uid: 20478 + pos: -150.5,-1.5 + parent: 2 + - uid: 6684 components: - type: Transform - pos: 57.5,31.5 - parent: 89 - - uid: 20479 + pos: -149.5,-14.5 + parent: 2 + - uid: 6685 components: - type: Transform - pos: 58.5,31.5 - parent: 89 - - uid: 20480 + pos: -149.5,-13.5 + parent: 2 + - uid: 6686 components: - type: Transform - pos: 59.5,31.5 - parent: 89 - - uid: 20481 + pos: -137.5,-14.5 + parent: 2 + - uid: 6687 components: - type: Transform - pos: 60.5,31.5 - parent: 89 - - uid: 20482 + pos: -105.5,25.5 + parent: 2 + - uid: 6688 components: - type: Transform - pos: 56.5,29.5 - parent: 89 - - uid: 20483 + pos: -104.5,23.5 + parent: 2 + - uid: 6689 components: - type: Transform - pos: 57.5,29.5 - parent: 89 - - uid: 20484 + pos: -110.5,23.5 + parent: 2 + - uid: 6690 components: - type: Transform - pos: 58.5,29.5 - parent: 89 - - uid: 20485 + pos: -107.5,23.5 + parent: 2 + - uid: 6691 components: - type: Transform - pos: 59.5,29.5 - parent: 89 - - uid: 20486 + pos: -103.5,23.5 + parent: 2 + - uid: 6692 components: - type: Transform - pos: 60.5,29.5 - parent: 89 - - uid: 20489 + pos: -106.5,25.5 + parent: 2 + - uid: 6693 components: - type: Transform - pos: 56.5,37.5 - parent: 89 - - uid: 20490 + pos: -139.5,-0.5 + parent: 2 + - uid: 6694 components: - type: Transform - pos: 57.5,37.5 - parent: 89 - - uid: 20491 + pos: -111.5,23.5 + parent: 2 + - uid: 6695 components: - type: Transform - pos: 58.5,37.5 - parent: 89 - - uid: 20492 + pos: -104.5,25.5 + parent: 2 + - uid: 6696 components: - type: Transform - pos: 59.5,37.5 - parent: 89 - - uid: 20493 + pos: -106.5,23.5 + parent: 2 + - uid: 6697 components: - type: Transform - pos: 60.5,37.5 - parent: 89 - - uid: 20494 + pos: -109.5,23.5 + parent: 2 + - uid: 6698 components: - type: Transform - pos: 56.5,39.5 - parent: 89 - - uid: 20495 + pos: -102.5,23.5 + parent: 2 + - uid: 6699 components: - type: Transform - pos: 57.5,39.5 - parent: 89 - - uid: 20496 + pos: -102.5,27.5 + parent: 2 + - uid: 6700 components: - type: Transform - pos: 58.5,39.5 - parent: 89 - - uid: 20497 + pos: -103.5,27.5 + parent: 2 + - uid: 6701 components: - type: Transform - pos: 59.5,39.5 - parent: 89 - - uid: 20498 + pos: -104.5,27.5 + parent: 2 + - uid: 6702 components: - type: Transform - pos: 60.5,39.5 - parent: 89 - - uid: 20510 + pos: -105.5,27.5 + parent: 2 + - uid: 6703 components: - type: Transform - pos: 49.5,39.5 - parent: 89 - - uid: 20511 + pos: -106.5,27.5 + parent: 2 + - uid: 6704 components: - type: Transform - pos: 48.5,39.5 - parent: 89 - - uid: 20512 + pos: -107.5,27.5 + parent: 2 + - uid: 6705 components: - type: Transform - pos: 47.5,39.5 - parent: 89 - - uid: 20513 + pos: -108.5,27.5 + parent: 2 + - uid: 6706 components: - type: Transform - pos: 46.5,39.5 - parent: 89 - - uid: 20514 + pos: -109.5,27.5 + parent: 2 + - uid: 6707 components: - type: Transform - pos: 46.5,37.5 - parent: 89 - - uid: 20515 + pos: -110.5,27.5 + parent: 2 + - uid: 6708 components: - type: Transform - pos: 47.5,37.5 - parent: 89 - - uid: 20516 + pos: -111.5,27.5 + parent: 2 + - uid: 6709 components: - type: Transform - pos: 48.5,37.5 - parent: 89 - - uid: 20517 + pos: -112.5,27.5 + parent: 2 + - uid: 6710 components: - type: Transform - pos: 49.5,37.5 - parent: 89 - - uid: 20518 + pos: -107.5,26.5 + parent: 2 + - uid: 6711 components: - type: Transform - pos: 50.5,37.5 - parent: 89 - - uid: 20520 + pos: -107.5,24.5 + parent: 2 + - uid: 6712 components: - type: Transform - pos: 50.5,38.5 - parent: 89 - - uid: 20528 + pos: -83.5,-11.5 + parent: 2 + - uid: 6713 components: - type: Transform - pos: 49.5,33.5 - parent: 89 - - uid: 20529 + pos: -82.5,-11.5 + parent: 2 + - uid: 6714 components: - type: Transform - pos: 48.5,33.5 - parent: 89 - - uid: 20530 + pos: -87.5,-13.5 + parent: 2 + - uid: 6715 components: - type: Transform - pos: 47.5,33.5 - parent: 89 - - uid: 20531 + pos: -87.5,-12.5 + parent: 2 + - uid: 6716 components: - type: Transform - pos: 46.5,33.5 - parent: 89 - - uid: 20532 + pos: -88.5,-11.5 + parent: 2 + - uid: 6717 components: - type: Transform - pos: 45.5,33.5 - parent: 89 - - uid: 20533 + pos: -136.5,-7.5 + parent: 2 + - uid: 6718 components: - type: Transform - pos: 45.5,35.5 - parent: 89 - - uid: 20534 + pos: -136.5,-10.5 + parent: 2 + - uid: 6719 components: - type: Transform - pos: 46.5,35.5 - parent: 89 - - uid: 20535 + pos: -135.5,-10.5 + parent: 2 + - uid: 6720 components: - type: Transform - pos: 47.5,35.5 - parent: 89 - - uid: 20536 + pos: -134.5,-10.5 + parent: 2 + - uid: 6721 components: - type: Transform - pos: 48.5,35.5 - parent: 89 - - uid: 20537 + pos: -136.5,-2.5 + parent: 2 + - uid: 6722 components: - type: Transform - pos: 49.5,35.5 - parent: 89 - - uid: 20540 + pos: -136.5,-1.5 + parent: 2 + - uid: 6723 components: - type: Transform - pos: 49.5,34.5 - parent: 89 - - uid: 20541 + pos: -132.5,-10.5 + parent: 2 + - uid: 6724 components: - type: Transform - pos: 50.5,34.5 - parent: 89 - - uid: 20549 + pos: -131.5,-10.5 + parent: 2 + - uid: 6725 components: - type: Transform - pos: 50.5,30.5 - parent: 89 - - uid: 20551 + pos: -136.5,-6.5 + parent: 2 + - uid: 6726 components: - type: Transform - pos: 50.5,29.5 - parent: 89 - - uid: 20552 + pos: -136.5,-8.5 + parent: 2 + - uid: 6727 components: - type: Transform - pos: 49.5,29.5 - parent: 89 - - uid: 20553 + pos: -108.5,-14.5 + parent: 2 + - uid: 6728 components: - type: Transform - pos: 48.5,29.5 - parent: 89 - - uid: 20554 + pos: -84.5,-11.5 + parent: 2 + - uid: 6729 components: - type: Transform - pos: 47.5,29.5 - parent: 89 - - uid: 20555 + pos: -106.5,-14.5 + parent: 2 + - uid: 6730 components: - type: Transform - pos: 46.5,29.5 - parent: 89 - - uid: 20558 + pos: -87.5,-14.5 + parent: 2 + - uid: 6731 components: - type: Transform - pos: 46.5,31.5 - parent: 89 - - uid: 20559 + pos: -87.5,-15.5 + parent: 2 + - uid: 6732 components: - type: Transform - pos: 47.5,31.5 - parent: 89 - - uid: 20560 + pos: -88.5,-15.5 + parent: 2 + - uid: 6733 components: - type: Transform - pos: 48.5,31.5 - parent: 89 - - uid: 20561 + pos: -89.5,-15.5 + parent: 2 + - uid: 6734 components: - type: Transform - pos: 49.5,31.5 - parent: 89 - - uid: 20562 + pos: -90.5,-15.5 + parent: 2 + - uid: 6735 components: - type: Transform - pos: 50.5,31.5 - parent: 89 - - uid: 20570 + pos: -91.5,-15.5 + parent: 2 + - uid: 6736 components: - type: Transform - pos: 56.5,38.5 - parent: 89 - - uid: 20803 + pos: -92.5,-15.5 + parent: 2 + - uid: 6737 components: - type: Transform - pos: -128.5,-11.5 - parent: 89 - - uid: 20985 + pos: -93.5,-15.5 + parent: 2 + - uid: 6738 components: - type: Transform - pos: 50.5,11.5 - parent: 89 - - uid: 20986 + pos: -94.5,-15.5 + parent: 2 + - uid: 6739 components: - type: Transform - pos: 49.5,11.5 - parent: 89 - - uid: 20987 + pos: -94.5,-14.5 + parent: 2 + - uid: 6740 components: - type: Transform - pos: 48.5,11.5 - parent: 89 - - uid: 20988 + pos: -95.5,-14.5 + parent: 2 + - uid: 6741 components: - type: Transform - pos: 47.5,11.5 - parent: 89 - - uid: 20989 + pos: -96.5,-14.5 + parent: 2 + - uid: 6742 components: - type: Transform - pos: 47.5,12.5 - parent: 89 - - uid: 20990 + pos: -97.5,-14.5 + parent: 2 + - uid: 6743 components: - type: Transform - pos: 47.5,13.5 - parent: 89 - - uid: 20991 + pos: -98.5,-14.5 + parent: 2 + - uid: 6744 components: - type: Transform - pos: 47.5,14.5 - parent: 89 - - uid: 20992 + pos: -99.5,-14.5 + parent: 2 + - uid: 6745 components: - type: Transform - pos: 47.5,15.5 - parent: 89 - - uid: 20993 + pos: -100.5,-14.5 + parent: 2 + - uid: 6746 components: - type: Transform - pos: 47.5,16.5 - parent: 89 - - uid: 20994 + pos: -101.5,-14.5 + parent: 2 + - uid: 6747 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21048 + pos: -101.5,-13.5 + parent: 2 + - uid: 6748 components: - type: Transform - pos: 44.5,19.5 - parent: 89 - - uid: 21049 + pos: -101.5,-12.5 + parent: 2 + - uid: 6749 components: - type: Transform - pos: 44.5,20.5 - parent: 89 - - uid: 21050 + pos: -100.5,-12.5 + parent: 2 + - uid: 6750 components: - type: Transform - pos: 45.5,19.5 - parent: 89 - - uid: 21051 + pos: -100.5,-11.5 + parent: 2 + - uid: 6751 components: - type: Transform - pos: 46.5,19.5 - parent: 89 - - uid: 21052 + pos: -12.5,-8.5 + parent: 2 + - uid: 6752 components: - type: Transform - pos: 47.5,19.5 - parent: 89 - - uid: 21053 + pos: -12.5,-9.5 + parent: 2 + - uid: 6753 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21142 + pos: -11.5,-9.5 + parent: 2 + - uid: 6754 components: - type: Transform - pos: -39.5,-2.5 - parent: 89 - - uid: 21144 + pos: -10.5,-9.5 + parent: 2 + - uid: 6755 components: - type: Transform - pos: -39.5,-0.5 - parent: 89 - - uid: 21145 + pos: -9.5,-9.5 + parent: 2 + - uid: 6756 components: - type: Transform - pos: -39.5,-1.5 - parent: 89 - - uid: 21150 + pos: -8.5,-9.5 + parent: 2 + - uid: 6757 components: - type: Transform - pos: -39.5,-3.5 - parent: 89 - - uid: 21151 + pos: -7.5,-9.5 + parent: 2 + - uid: 6758 components: - type: Transform - pos: -39.5,0.5 - parent: 89 - - uid: 21158 + pos: -6.5,-9.5 + parent: 2 + - uid: 6759 components: - type: Transform - pos: -17.5,3.5 - parent: 89 - - uid: 21159 + pos: -5.5,-9.5 + parent: 2 + - uid: 6760 components: - type: Transform - pos: -39.5,1.5 - parent: 89 - - uid: 21163 + pos: -4.5,-9.5 + parent: 2 + - uid: 6761 components: - type: Transform - pos: -39.5,2.5 - parent: 89 - - uid: 21164 + pos: -4.5,-10.5 + parent: 2 + - uid: 6762 components: - type: Transform - pos: -39.5,3.5 - parent: 89 - - uid: 21165 + pos: 10.5,-7.5 + parent: 2 + - uid: 6763 components: - type: Transform - pos: -38.5,3.5 - parent: 89 - - uid: 21166 + pos: 49.5,0.5 + parent: 2 + - uid: 6764 components: - type: Transform - pos: -37.5,3.5 - parent: 89 - - uid: 21167 + pos: 49.5,-0.5 + parent: 2 + - uid: 6765 components: - type: Transform - pos: -36.5,3.5 - parent: 89 - - uid: 21168 + pos: 49.5,-1.5 + parent: 2 + - uid: 6766 components: - type: Transform - pos: -35.5,3.5 - parent: 89 - - uid: 21169 + pos: 50.5,-1.5 + parent: 2 + - uid: 6767 components: - type: Transform - pos: -34.5,3.5 - parent: 89 - - uid: 21170 + pos: 51.5,-1.5 + parent: 2 + - uid: 6768 components: - type: Transform - pos: -33.5,3.5 - parent: 89 - - uid: 21171 + pos: 53.5,-2.5 + parent: 2 + - uid: 6769 components: - type: Transform - pos: -32.5,3.5 - parent: 89 - - uid: 21172 + pos: 53.5,-1.5 + parent: 2 + - uid: 6770 components: - type: Transform - pos: -31.5,3.5 - parent: 89 - - uid: 21173 + pos: 53.5,-0.5 + parent: 2 + - uid: 6771 components: - type: Transform - pos: -30.5,3.5 - parent: 89 - - uid: 21174 + pos: -130.5,-5.5 + parent: 2 + - uid: 6772 components: - type: Transform - pos: -29.5,3.5 - parent: 89 - - uid: 21175 + pos: -128.5,-6.5 + parent: 2 + - uid: 6773 components: - type: Transform - pos: -28.5,3.5 - parent: 89 - - uid: 21176 + pos: -128.5,-5.5 + parent: 2 + - uid: 6774 components: - type: Transform - pos: -27.5,3.5 - parent: 89 - - uid: 21177 + pos: -129.5,-5.5 + parent: 2 + - uid: 6775 components: - type: Transform - pos: -26.5,3.5 - parent: 89 - - uid: 21181 + pos: -128.5,-7.5 + parent: 2 + - uid: 6776 components: - type: Transform - pos: -22.5,3.5 - parent: 89 - - uid: 21182 + pos: -127.5,-7.5 + parent: 2 + - uid: 6777 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - uid: 21183 + pos: -126.5,-7.5 + parent: 2 + - uid: 6778 components: - type: Transform - pos: -20.5,3.5 - parent: 89 - - uid: 21184 + pos: -125.5,-7.5 + parent: 2 + - uid: 6779 components: - type: Transform - pos: -19.5,3.5 - parent: 89 - - uid: 21185 + pos: -125.5,-6.5 + parent: 2 + - uid: 6780 components: - type: Transform - pos: -18.5,3.5 - parent: 89 - - uid: 21187 + pos: -125.5,-5.5 + parent: 2 + - uid: 6781 components: - type: Transform - pos: -16.5,3.5 - parent: 89 - - uid: 21188 + pos: -125.5,-4.5 + parent: 2 + - uid: 6782 components: - type: Transform - pos: -15.5,3.5 - parent: 89 - - uid: 21189 + pos: -125.5,-3.5 + parent: 2 + - uid: 6783 components: - type: Transform - pos: -14.5,3.5 - parent: 89 - - uid: 21191 + pos: -124.5,-3.5 + parent: 2 + - uid: 6784 components: - type: Transform - pos: -12.5,3.5 - parent: 89 - - uid: 21192 + pos: -124.5,-2.5 + parent: 2 + - uid: 6785 components: - type: Transform - pos: -13.5,3.5 - parent: 89 - - uid: 21193 + pos: -124.5,-1.5 + parent: 2 + - uid: 6786 components: - type: Transform - pos: -9.5,3.5 - parent: 89 - - uid: 21194 + pos: -123.5,-1.5 + parent: 2 + - uid: 6787 components: - type: Transform - pos: -8.5,3.5 - parent: 89 - - uid: 21195 + pos: -122.5,-1.5 + parent: 2 + - uid: 6788 components: - type: Transform - pos: -5.5,3.5 - parent: 89 - - uid: 21196 + pos: -121.5,-1.5 + parent: 2 + - uid: 6789 components: - type: Transform - pos: -4.5,3.5 - parent: 89 - - uid: 21283 + pos: -121.5,-0.5 + parent: 2 + - uid: 6790 components: - type: Transform - pos: 47.5,18.5 - parent: 89 - - uid: 21318 + pos: -121.5,0.5 + parent: 2 + - uid: 6791 components: - type: Transform - pos: 43.5,-18.5 - parent: 89 - - uid: 21319 + pos: -121.5,1.5 + parent: 2 + - uid: 6792 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 21320 + pos: -121.5,2.5 + parent: 2 + - uid: 6793 components: - type: Transform - pos: 41.5,-18.5 - parent: 89 - - uid: 21321 + pos: -121.5,3.5 + parent: 2 + - uid: 6794 components: - type: Transform - pos: 40.5,-18.5 - parent: 89 - - uid: 21322 + pos: -121.5,4.5 + parent: 2 + - uid: 6795 components: - type: Transform - pos: 39.5,-18.5 - parent: 89 - - uid: 21323 + pos: -121.5,5.5 + parent: 2 + - uid: 6796 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 21325 + pos: -121.5,6.5 + parent: 2 + - uid: 6797 components: - type: Transform - pos: 38.5,-17.5 - parent: 89 - - uid: 21326 + pos: -121.5,7.5 + parent: 2 + - uid: 6798 components: - type: Transform - pos: 38.5,-16.5 - parent: 89 - - uid: 21408 + pos: -121.5,8.5 + parent: 2 + - uid: 6799 components: - type: Transform - pos: -23.5,3.5 - parent: 89 - - uid: 21409 + pos: -121.5,9.5 + parent: 2 + - uid: 6800 components: - type: Transform - pos: -24.5,3.5 - parent: 89 - - uid: 21410 + pos: -120.5,9.5 + parent: 2 + - uid: 6801 components: - type: Transform - pos: -25.5,3.5 - parent: 89 - - uid: 21412 + pos: -87.5,-10.5 + parent: 2 + - uid: 6802 components: - type: Transform - pos: -84.5,-4.5 - parent: 89 - - uid: 21417 + pos: -87.5,-9.5 + parent: 2 + - uid: 6803 components: - type: Transform - pos: -1.5,2.5 - parent: 89 - - uid: 21418 + pos: -89.5,-9.5 + parent: 2 + - uid: 6804 components: - type: Transform - pos: -1.5,1.5 - parent: 89 - - uid: 21419 + pos: -88.5,-9.5 + parent: 2 + - uid: 6805 components: - type: Transform - pos: -1.5,0.5 - parent: 89 - - uid: 21420 + pos: -90.5,-9.5 + parent: 2 + - uid: 6806 components: - type: Transform - pos: -1.5,-0.5 - parent: 89 - - uid: 21421 + pos: -91.5,-9.5 + parent: 2 + - uid: 6807 components: - type: Transform - pos: -1.5,-1.5 - parent: 89 - - uid: 21422 + pos: -91.5,-8.5 + parent: 2 + - uid: 6808 components: - type: Transform - pos: -1.5,-2.5 - parent: 89 - - uid: 21423 + pos: -91.5,-7.5 + parent: 2 + - uid: 6809 components: - type: Transform - pos: -1.5,-3.5 - parent: 89 - - uid: 21424 + pos: -91.5,-6.5 + parent: 2 + - uid: 6810 components: - type: Transform - pos: -1.5,-4.5 - parent: 89 - - uid: 21425 + pos: -91.5,-5.5 + parent: 2 + - uid: 6811 components: - type: Transform - pos: -1.5,-5.5 - parent: 89 - - uid: 21426 + pos: -91.5,-4.5 + parent: 2 + - uid: 6812 components: - type: Transform - pos: -1.5,-6.5 - parent: 89 - - uid: 21427 + pos: -92.5,-4.5 + parent: 2 + - uid: 6813 components: - type: Transform - pos: -1.5,-7.5 - parent: 89 - - uid: 21428 + pos: -93.5,-4.5 + parent: 2 + - uid: 6814 components: - type: Transform - pos: -1.5,-8.5 - parent: 89 - - uid: 21429 + pos: -93.5,-3.5 + parent: 2 + - uid: 6815 components: - type: Transform - pos: -1.5,-9.5 - parent: 89 - - uid: 21430 + pos: -3.5,-38.5 + parent: 2 + - uid: 6816 components: - type: Transform - pos: -1.5,-10.5 - parent: 89 - - uid: 21431 + pos: 2.5,-22.5 + parent: 2 + - uid: 6817 components: - type: Transform - pos: -1.5,-11.5 - parent: 89 - - uid: 21432 + pos: -2.5,-38.5 + parent: 2 + - uid: 6818 components: - type: Transform - pos: -1.5,-12.5 - parent: 89 - - uid: 21433 + pos: -23.5,-17.5 + parent: 2 + - uid: 6819 components: - type: Transform - pos: -1.5,-13.5 - parent: 89 - - uid: 21434 + pos: -36.5,-5.5 + parent: 2 + - uid: 6820 components: - type: Transform - pos: -1.5,-14.5 - parent: 89 - - uid: 21435 + pos: -4.5,-30.5 + parent: 2 + - uid: 23779 components: - type: Transform - pos: -1.5,-15.5 - parent: 89 - - uid: 21436 + pos: 3.5,-10.5 + parent: 23711 + - uid: 23780 components: - type: Transform - pos: -0.5,-15.5 - parent: 89 - - uid: 21437 + pos: 2.5,-10.5 + parent: 23711 + - uid: 23781 components: - type: Transform - pos: 0.5,-15.5 - parent: 89 - - uid: 21438 + pos: 1.5,-11.5 + parent: 23711 + - uid: 23782 components: - type: Transform - pos: 1.5,-15.5 - parent: 89 - - uid: 21439 + pos: 1.5,-10.5 + parent: 23711 + - uid: 23783 components: - type: Transform - pos: 2.5,-15.5 - parent: 89 - - uid: 21440 + pos: 3.5,-10.5 + parent: 23711 + - uid: 23784 components: - type: Transform - pos: 3.5,-15.5 - parent: 89 - - uid: 21441 + pos: 4.5,-10.5 + parent: 23711 + - uid: 23785 components: - type: Transform - pos: 4.5,-15.5 - parent: 89 - - uid: 21442 + pos: 5.5,-10.5 + parent: 23711 + - uid: 24045 components: - type: Transform - pos: 5.5,-15.5 - parent: 89 - - uid: 21612 + pos: 4.5,1.5 + parent: 23919 + - uid: 24046 components: - type: Transform - pos: -128.5,-3.5 - parent: 89 - - uid: 21613 + pos: 2.5,-0.5 + parent: 23919 + - uid: 24047 components: - type: Transform - pos: -132.5,-9.5 - parent: 89 - - uid: 21616 + pos: 7.5,1.5 + parent: 23919 + - uid: 24048 components: - type: Transform - pos: -133.5,-8.5 - parent: 89 - - uid: 21617 + pos: 6.5,1.5 + parent: 23919 + - uid: 24049 components: - type: Transform - pos: -133.5,-7.5 - parent: 89 - - uid: 21618 + pos: 2.5,-1.5 + parent: 23919 + - uid: 24050 components: - type: Transform - pos: -133.5,-6.5 - parent: 89 - - uid: 21619 + pos: 2.5,-2.5 + parent: 23919 + - uid: 24051 components: - type: Transform - pos: -126.5,-3.5 - parent: 89 - - uid: 21655 + pos: 2.5,-3.5 + parent: 23919 + - uid: 24052 components: - type: Transform - pos: 2.5,-2.5 - parent: 21627 - - uid: 21656 + pos: 2.5,-4.5 + parent: 23919 + - uid: 24053 components: - type: Transform - pos: 2.5,-1.5 - parent: 21627 - - uid: 21657 + pos: 2.5,-5.5 + parent: 23919 + - uid: 24054 + components: + - type: Transform + pos: 2.5,-6.5 + parent: 23919 + - uid: 24055 components: - type: Transform - pos: -1.5,-2.5 - parent: 21627 - - uid: 21658 + pos: 3.5,-6.5 + parent: 23919 + - uid: 24056 components: - type: Transform - pos: -1.5,-1.5 - parent: 21627 - - uid: 21659 + pos: 2.5,0.5 + parent: 23919 + - uid: 24057 components: - type: Transform - pos: -0.5,-1.5 - parent: 21627 - - uid: 21660 + pos: 5.5,1.5 + parent: 23919 + - uid: 24058 components: - type: Transform - pos: 0.5,-1.5 - parent: 21627 - - uid: 21661 + pos: 3.5,1.5 + parent: 23919 + - uid: 24059 components: - type: Transform - pos: 1.5,-1.5 - parent: 21627 - - uid: 21662 + pos: 4.5,0.5 + parent: 23919 + - uid: 24060 components: - type: Transform - pos: 0.5,-0.5 - parent: 21627 - - uid: 21663 + pos: 3.5,0.5 + parent: 23919 + - uid: 24384 components: - type: Transform - pos: 0.5,0.5 - parent: 21627 - - uid: 21664 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24385 components: - type: Transform - pos: 0.5,-2.5 - parent: 21627 - - uid: 21665 + pos: 1.5,-3.5 + parent: 24340 + - uid: 25548 components: - type: Transform - pos: 0.5,-3.5 - parent: 21627 - - uid: 21666 + pos: -8.5,-17.5 + parent: 24450 + - uid: 25549 components: - type: Transform - pos: -0.5,-3.5 - parent: 21627 - - uid: 21667 + pos: -7.5,-17.5 + parent: 24450 + - uid: 25550 components: - type: Transform - pos: 1.5,-3.5 - parent: 21627 - - uid: 21668 + pos: -8.5,-18.5 + parent: 24450 + - uid: 25551 components: - type: Transform - pos: 2.5,-3.5 - parent: 21627 - - uid: 21669 + pos: -8.5,-21.5 + parent: 24450 + - uid: 25552 components: - type: Transform - pos: -1.5,-3.5 - parent: 21627 - - uid: 21670 + pos: -8.5,-19.5 + parent: 24450 + - uid: 25553 components: - type: Transform - pos: 1.5,-4.5 - parent: 21627 - - uid: 21966 + pos: -8.5,-20.5 + parent: 24450 + - uid: 25554 components: - type: Transform - pos: -135.5,-4.5 - parent: 89 - - uid: 21967 + pos: -8.5,-22.5 + parent: 24450 + - uid: 25555 components: - type: Transform - pos: -134.5,-4.5 - parent: 89 - - uid: 21969 + pos: -8.5,-23.5 + parent: 24450 + - uid: 25556 components: - type: Transform - pos: -135.5,-3.5 - parent: 89 - - uid: 21970 + pos: -8.5,-24.5 + parent: 24450 + - uid: 25557 components: - type: Transform - pos: -134.5,-3.5 - parent: 89 - - uid: 21972 + pos: -8.5,-25.5 + parent: 24450 + - uid: 25558 components: - type: Transform - pos: -134.5,-2.5 - parent: 89 - - uid: 21973 + pos: -7.5,-2.5 + parent: 24450 + - uid: 25559 components: - type: Transform - pos: -134.5,-2.5 - parent: 89 - - uid: 21976 + pos: -16.5,-2.5 + parent: 24450 + - uid: 25560 components: - type: Transform - pos: -135.5,-2.5 - parent: 89 - - uid: 21989 + pos: -15.5,-3.5 + parent: 24450 + - uid: 25561 components: - type: Transform - pos: -135.5,-12.5 - parent: 89 - - uid: 21994 + pos: -15.5,-2.5 + parent: 24450 + - uid: 25562 components: - type: Transform - pos: -134.5,-12.5 - parent: 89 - - uid: 21995 + pos: -8.5,-3.5 + parent: 24450 + - uid: 25563 components: - type: Transform - pos: -133.5,-12.5 - parent: 89 - - uid: 21996 + pos: -8.5,-2.5 + parent: 24450 + - uid: 25564 components: - type: Transform - pos: -134.5,-11.5 - parent: 89 - - uid: 21997 + pos: -18.5,2.5 + parent: 24450 + - uid: 25565 components: - type: Transform - pos: -135.5,-11.5 - parent: 89 - - uid: 21998 + pos: -20.5,2.5 + parent: 24450 + - uid: 25566 components: - type: Transform - pos: -134.5,-10.5 - parent: 89 - - uid: 21999 + pos: -23.5,2.5 + parent: 24450 + - uid: 25567 components: - type: Transform - pos: -135.5,-10.5 - parent: 89 - - uid: 22010 + pos: -25.5,2.5 + parent: 24450 + - uid: 25568 components: - type: Transform - pos: -131.5,-10.5 - parent: 89 - - uid: 22029 + pos: -27.5,2.5 + parent: 24450 + - uid: 25569 components: - type: Transform - pos: 57.5,-17.5 - parent: 89 - - uid: 22031 + pos: -15.5,-2.5 + parent: 24450 + - uid: 25570 components: - type: Transform - pos: 57.5,-18.5 - parent: 89 - - uid: 22032 + pos: -14.5,-2.5 + parent: 24450 + - uid: 25571 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 22033 + pos: -14.5,-2.5 + parent: 24450 + - uid: 25572 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 22034 + pos: -14.5,-1.5 + parent: 24450 + - uid: 25573 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 22035 + pos: -14.5,-0.5 + parent: 24450 + - uid: 25574 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 22036 + pos: -14.5,0.5 + parent: 24450 + - uid: 25575 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22037 + pos: -14.5,1.5 + parent: 24450 + - uid: 25576 components: - type: Transform - pos: 57.5,-24.5 - parent: 89 - - uid: 22038 + pos: -14.5,2.5 + parent: 24450 + - uid: 25577 components: - type: Transform - pos: 57.5,-25.5 - parent: 89 - - uid: 22039 + pos: -14.5,3.5 + parent: 24450 + - uid: 25578 components: - type: Transform - pos: 57.5,-26.5 - parent: 89 - - uid: 22040 + pos: -15.5,4.5 + parent: 24450 + - uid: 25579 components: - type: Transform - pos: 57.5,-27.5 - parent: 89 - - uid: 22041 + pos: -15.5,6.5 + parent: 24450 + - uid: 25580 components: - type: Transform - pos: 57.5,-28.5 - parent: 89 - - uid: 22042 + pos: -12.5,7.5 + parent: 24450 + - uid: 25581 components: - type: Transform - pos: 57.5,-29.5 - parent: 89 - - uid: 22043 + pos: -12.5,8.5 + parent: 24450 + - uid: 25582 components: - type: Transform - pos: 57.5,-30.5 - parent: 89 - - uid: 22045 + pos: -11.5,8.5 + parent: 24450 + - uid: 25583 components: - type: Transform - pos: 56.5,-30.5 - parent: 89 - - uid: 22046 + pos: -11.5,8.5 + parent: 24450 + - uid: 25584 components: - type: Transform - pos: 55.5,-30.5 - parent: 89 - - uid: 22047 + pos: -10.5,8.5 + parent: 24450 + - uid: 25585 components: - type: Transform - pos: 54.5,-30.5 - parent: 89 - - uid: 22048 + pos: -9.5,8.5 + parent: 24450 + - uid: 25586 components: - type: Transform - pos: 53.5,-30.5 - parent: 89 - - uid: 22049 + pos: -8.5,8.5 + parent: 24450 + - uid: 25587 components: - type: Transform - pos: 52.5,-30.5 - parent: 89 - - uid: 22050 + pos: -8.5,8.5 + parent: 24450 + - uid: 25588 components: - type: Transform - pos: 51.5,-30.5 - parent: 89 - - uid: 22051 + pos: -8.5,7.5 + parent: 24450 + - uid: 25589 components: - type: Transform - pos: 50.5,-30.5 - parent: 89 - - uid: 22052 + pos: -8.5,6.5 + parent: 24450 + - uid: 25590 components: - type: Transform - pos: 49.5,-30.5 - parent: 89 - - uid: 22053 + pos: -8.5,5.5 + parent: 24450 + - uid: 25591 components: - type: Transform - pos: 48.5,-30.5 - parent: 89 - - uid: 22054 + pos: -8.5,4.5 + parent: 24450 + - uid: 25592 components: - type: Transform - pos: 47.5,-30.5 - parent: 89 - - uid: 22055 + pos: -8.5,3.5 + parent: 24450 + - uid: 25593 components: - type: Transform - pos: 46.5,-30.5 - parent: 89 - - uid: 22056 + pos: -8.5,3.5 + parent: 24450 + - uid: 25594 components: - type: Transform - pos: 45.5,-30.5 - parent: 89 - - uid: 22057 + pos: -9.5,3.5 + parent: 24450 + - uid: 25595 components: - type: Transform - pos: 45.5,-29.5 - parent: 89 - - uid: 22058 + pos: -10.5,3.5 + parent: 24450 + - uid: 25596 components: - type: Transform - pos: 45.5,-28.5 - parent: 89 - - uid: 22059 + pos: -11.5,3.5 + parent: 24450 + - uid: 25597 components: - type: Transform - pos: 45.5,-27.5 - parent: 89 - - uid: 22060 + pos: -12.5,3.5 + parent: 24450 + - uid: 25598 components: - type: Transform - pos: 45.5,-26.5 - parent: 89 - - uid: 22061 + pos: -13.5,3.5 + parent: 24450 + - uid: 25599 components: - type: Transform - pos: 45.5,-25.5 - parent: 89 - - uid: 22062 + pos: -14.5,3.5 + parent: 24450 + - uid: 25600 components: - type: Transform - pos: 45.5,-24.5 - parent: 89 - - uid: 22063 + pos: -15.5,3.5 + parent: 24450 + - uid: 25601 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22064 + pos: -15.5,3.5 + parent: 24450 + - uid: 25602 components: - type: Transform - pos: 45.5,-22.5 - parent: 89 - - uid: 22065 + pos: -15.5,4.5 + parent: 24450 + - uid: 25603 components: - type: Transform - pos: 45.5,-21.5 - parent: 89 - - uid: 22066 + pos: -15.5,5.5 + parent: 24450 + - uid: 25604 components: - type: Transform - pos: 45.5,-20.5 - parent: 89 - - uid: 22067 + pos: -15.5,7.5 + parent: 24450 + - uid: 25605 components: - type: Transform - pos: 45.5,-19.5 - parent: 89 - - uid: 22068 + pos: -15.5,8.5 + parent: 24450 + - uid: 25606 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 - - uid: 22069 + pos: -14.5,8.5 + parent: 24450 + - uid: 25607 components: - type: Transform - pos: 44.5,-18.5 - parent: 89 - - uid: 22082 + pos: -13.5,8.5 + parent: 24450 + - uid: 25608 components: - type: Transform - pos: 59.5,-16.5 - parent: 89 - - uid: 22083 + pos: -12.5,5.5 + parent: 24450 + - uid: 25609 components: - type: Transform - pos: 60.5,-16.5 - parent: 89 - - uid: 22084 + pos: -12.5,4.5 + parent: 24450 + - uid: 25610 components: - type: Transform - pos: 58.5,-16.5 - parent: 89 - - uid: 22085 + pos: -12.5,6.5 + parent: 24450 + - uid: 27483 components: - type: Transform - pos: 57.5,-16.5 - parent: 89 - - uid: 22086 + pos: -0.5,-11.5 + parent: 27260 + - uid: 27484 components: - type: Transform - pos: 60.5,-17.5 - parent: 89 - - uid: 22087 + pos: 0.5,-11.5 + parent: 27260 + - uid: 27485 components: - type: Transform - pos: 60.5,-18.5 - parent: 89 - - uid: 22088 + pos: 0.5,-10.5 + parent: 27260 + - uid: 27486 components: - type: Transform - pos: 60.5,-18.5 - parent: 89 - - uid: 22089 + pos: 0.5,-9.5 + parent: 27260 + - uid: 27487 components: - type: Transform - pos: 61.5,-18.5 - parent: 89 - - uid: 22090 + pos: 0.5,-8.5 + parent: 27260 + - uid: 27488 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 22092 + pos: 0.5,-7.5 + parent: 27260 + - uid: 27489 components: - type: Transform - pos: 50.5,-37.5 - parent: 89 - - uid: 22093 + pos: -0.5,-7.5 + parent: 27260 + - uid: 27490 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 22094 + pos: -1.5,-7.5 + parent: 27260 + - uid: 27491 components: - type: Transform - pos: 62.5,-19.5 - parent: 89 - - uid: 22095 + pos: -2.5,-7.5 + parent: 27260 + - uid: 27492 components: - type: Transform - pos: 62.5,-20.5 - parent: 89 - - uid: 22096 + pos: 1.5,-7.5 + parent: 27260 + - uid: 27493 components: - type: Transform - pos: 62.5,-21.5 - parent: 89 - - uid: 22097 + pos: 2.5,-7.5 + parent: 27260 + - uid: 27494 components: - type: Transform - pos: 62.5,-22.5 - parent: 89 - - uid: 22098 + pos: 3.5,-7.5 + parent: 27260 +- proto: CableMVStack + entities: + - uid: 6821 components: - type: Transform - pos: 63.5,-24.5 - parent: 89 - - uid: 22099 + pos: -9.465677,-35.477985 + parent: 2 + - uid: 6822 components: - type: Transform - pos: 63.5,-25.5 - parent: 89 - - uid: 22100 + pos: -115.52017,14.53778 + parent: 2 + - uid: 6823 components: - type: Transform - pos: 63.5,-26.5 - parent: 89 - - uid: 22101 + pos: 35.409824,32.517487 + parent: 2 + - uid: 6824 components: - type: Transform - pos: 63.5,-27.5 - parent: 89 - - uid: 22102 + pos: 17.273815,-1.2010975 + parent: 2 + - uid: 6825 components: - type: Transform - pos: 63.5,-28.5 - parent: 89 - - uid: 22103 + pos: 17.273815,-1.2010975 + parent: 2 + - uid: 6826 components: - type: Transform - pos: 63.5,-29.5 - parent: 89 - - uid: 22104 + pos: 17.273815,-1.2010975 + parent: 2 + - uid: 6827 components: - type: Transform - pos: 62.5,-33.5 - parent: 89 - - uid: 22105 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6828 components: - type: Transform - pos: 62.5,-34.5 - parent: 89 - - uid: 22106 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6829 components: - type: Transform - pos: 62.5,-35.5 - parent: 89 - - uid: 22107 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6830 components: - type: Transform - pos: 62.5,-36.5 - parent: 89 - - uid: 22108 + pos: -119.475075,12.315424 + parent: 2 + - uid: 6831 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 22109 + pos: -115.50875,5.940868 + parent: 2 + - uid: 6832 components: - type: Transform - pos: 61.5,-37.5 - parent: 89 - - uid: 22110 + pos: -103.143776,-2.2963343 + parent: 2 + - uid: 6833 components: - type: Transform - pos: 60.5,-37.5 - parent: 89 - - uid: 22111 + pos: -102.487526,-2.2963343 + parent: 2 + - uid: 6834 components: - type: Transform - pos: 59.5,-37.5 - parent: 89 - - uid: 22112 + pos: 32.602047,6.400256 + parent: 2 + - uid: 27495 components: - type: Transform - pos: 58.5,-38.5 - parent: 89 - - uid: 22113 + pos: -1.4373322,-7.369629 + parent: 27260 +- proto: CableMVStack1 + entities: + - uid: 6835 components: - type: Transform - pos: 57.5,-38.5 - parent: 89 - - uid: 22114 + rot: 3.141592653589793 rad + pos: -3.2917204,32.569008 + parent: 2 +- proto: CableTerminal + entities: + - uid: 6836 components: - type: Transform - pos: 56.5,-38.5 - parent: 89 - - uid: 22115 + pos: -121.5,15.5 + parent: 2 + - uid: 6837 components: - type: Transform - pos: 55.5,-38.5 - parent: 89 - - uid: 22118 + rot: 3.141592653589793 rad + pos: -124.5,15.5 + parent: 2 + - uid: 6838 components: - type: Transform - pos: 57.5,-37.5 - parent: 89 - - uid: 22119 + rot: 3.141592653589793 rad + pos: -123.5,15.5 + parent: 2 + - uid: 6839 components: - type: Transform - pos: 57.5,-36.5 - parent: 89 - - uid: 22120 + rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 2 + - uid: 6840 components: - type: Transform - pos: 57.5,-35.5 - parent: 89 - - uid: 22124 + pos: -116.5,14.5 + parent: 2 + - uid: 6841 components: - type: Transform - pos: 56.5,-16.5 - parent: 89 - - uid: 22127 + rot: -1.5707963267948966 rad + pos: 36.5,27.5 + parent: 2 + - uid: 6842 components: - type: Transform - pos: 55.5,-16.5 - parent: 89 - - uid: 22133 + pos: -112.5,21.5 + parent: 2 + - uid: 6843 components: - type: Transform - pos: -132.5,-12.5 - parent: 89 - - uid: 22134 + rot: 3.141592653589793 rad + pos: -125.5,15.5 + parent: 2 + - uid: 6844 components: - type: Transform - pos: -132.5,-11.5 - parent: 89 - - uid: 22135 + pos: -130.5,-11.5 + parent: 2 + - uid: 6845 components: - type: Transform - pos: -131.5,-12.5 - parent: 89 - - uid: 22137 + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 2 + - uid: 6846 components: - type: Transform - pos: -131.5,-11.5 - parent: 89 - - uid: 22142 + pos: -123.5,18.5 + parent: 2 + - uid: 6847 components: - type: Transform - pos: 53.5,-38.5 - parent: 89 - - uid: 22143 + pos: -125.5,18.5 + parent: 2 + - uid: 6848 components: - type: Transform - pos: 52.5,-38.5 - parent: 89 - - uid: 22144 + rot: 1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 6849 components: - type: Transform - pos: 51.5,-38.5 - parent: 89 - - uid: 22145 + rot: 1.5707963267948966 rad + pos: -126.5,17.5 + parent: 2 + - uid: 6850 components: - type: Transform - pos: 50.5,-38.5 - parent: 89 - - uid: 22146 + pos: -124.5,18.5 + parent: 2 + - uid: 6851 components: - type: Transform - pos: 49.5,-38.5 - parent: 89 - - uid: 22147 + rot: 3.141592653589793 rad + pos: -122.5,15.5 + parent: 2 + - uid: 6852 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 22148 + pos: -122.5,18.5 + parent: 2 + - uid: 24061 components: - type: Transform - pos: 50.5,-36.5 - parent: 89 - - uid: 22149 + rot: 3.141592653589793 rad + pos: 7.5,0.5 + parent: 23919 + - uid: 25611 components: - type: Transform - pos: 50.5,-35.5 - parent: 89 - - uid: 22150 + pos: -5.5,-16.5 + parent: 24450 + - uid: 27496 components: - type: Transform - pos: 47.5,-38.5 - parent: 89 - - uid: 22151 + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 27260 +- proto: CandleGreenSmall + entities: + - uid: 6853 components: - type: Transform - pos: 46.5,-38.5 - parent: 89 - - uid: 22152 + rot: -1.5707963267948966 rad + pos: 34.749695,-2.0320969 + parent: 2 + - uid: 6854 components: - type: Transform - pos: 45.5,-38.5 - parent: 89 - - uid: 22153 + rot: -1.5707963267948966 rad + pos: 34.85907,-3.6570969 + parent: 2 +- proto: CandleRedSmall + entities: + - uid: 6855 components: - type: Transform - pos: 44.5,-38.5 - parent: 89 - - uid: 22154 + rot: -1.5707963267948966 rad + pos: 33.82782,-6.060961 + parent: 2 + - uid: 6856 components: - type: Transform - pos: 43.5,-38.5 - parent: 89 - - uid: 22155 + rot: -1.5707963267948966 rad + pos: 33.76532,-6.639086 + parent: 2 +- proto: CannabisSeeds + entities: + - uid: 6857 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 22156 + pos: -7.856884,37.448025 + parent: 2 + - uid: 6858 components: - type: Transform - pos: 41.5,-38.5 - parent: 89 - - uid: 22157 + pos: -7.888134,36.5574 + parent: 2 + - uid: 6859 components: - type: Transform - pos: 40.5,-38.5 - parent: 89 - - uid: 22158 + pos: -7.872509,35.635525 + parent: 2 +- proto: CapacitorStockPart + entities: + - uid: 6860 components: - type: Transform - pos: 39.5,-38.5 - parent: 89 - - uid: 22159 + pos: -16.616455,-15.321603 + parent: 2 + - uid: 6861 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 22160 + pos: -16.522705,-15.493478 + parent: 2 + - uid: 6862 components: - type: Transform - pos: 38.5,-37.5 - parent: 89 - - uid: 22161 + pos: -102.642654,-10.369977 + parent: 2 + - uid: 6863 components: - type: Transform - pos: 38.5,-36.5 - parent: 89 - - uid: 22162 + pos: -102.642654,-10.682477 + parent: 2 + - uid: 6864 components: - type: Transform - pos: 38.5,-35.5 - parent: 89 - - uid: 22164 + pos: -102.43953,-10.682477 + parent: 2 + - uid: 6865 components: - type: Transform - pos: 37.5,-35.5 - parent: 89 - - uid: 22165 + pos: -102.392654,-10.448102 + parent: 2 + - uid: 6866 components: - type: Transform - pos: 48.5,-35.5 - parent: 89 - - uid: 22166 + pos: -102.25203,-10.385602 + parent: 2 + - uid: 6867 components: - type: Transform - pos: 48.5,-36.5 - parent: 89 - - uid: 22167 + pos: -102.18953,-10.666852 + parent: 2 + - uid: 6868 components: - type: Transform - pos: 48.5,-37.5 - parent: 89 - - uid: 22168 + rot: 3.141592653589793 rad + pos: -102.48644,-10.473882 + parent: 2 +- proto: CaptainIDCard + entities: + - uid: 6869 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 22169 + pos: 47.43045,10.357418 + parent: 2 +- proto: CarbonDioxideCanister + entities: + - uid: 6870 components: - type: Transform - pos: 36.5,-35.5 - parent: 89 - - uid: 22170 + pos: -96.5,-23.5 + parent: 2 + - uid: 6871 components: - type: Transform - pos: 36.5,-34.5 - parent: 89 - - uid: 22171 + pos: -123.5,-0.5 + parent: 2 +- proto: CargoIDCard + entities: + - uid: 25612 components: - type: Transform - pos: 36.5,-33.5 - parent: 89 - - uid: 22172 + pos: 6.5659084,-1.4425423 + parent: 24450 +- proto: Carpet + entities: + - uid: 6872 components: - type: Transform - pos: 36.5,-32.5 - parent: 89 - - uid: 22173 + pos: 33.5,-1.5 + parent: 2 + - uid: 6873 components: - type: Transform - pos: 36.5,-31.5 - parent: 89 - - uid: 22174 + pos: 34.5,-2.5 + parent: 2 + - uid: 6874 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 22175 + pos: 34.5,-1.5 + parent: 2 + - uid: 6875 components: - type: Transform - pos: 49.5,-38.5 - parent: 89 - - uid: 22176 + pos: 34.5,-3.5 + parent: 2 + - uid: 6876 components: - type: Transform - pos: 50.5,-38.5 - parent: 89 - - uid: 22177 + pos: 33.5,-2.5 + parent: 2 + - uid: 6877 components: - type: Transform - pos: 51.5,-38.5 - parent: 89 - - uid: 22178 + pos: 33.5,-3.5 + parent: 2 + - uid: 6878 components: - type: Transform - pos: 52.5,-38.5 - parent: 89 - - uid: 22179 + pos: 32.5,-3.5 + parent: 2 + - uid: 6879 components: - type: Transform - pos: 53.5,-38.5 - parent: 89 - - uid: 22180 + pos: 32.5,-2.5 + parent: 2 + - uid: 6880 components: - type: Transform - pos: 37.5,-31.5 - parent: 89 - - uid: 22181 + pos: 32.5,-1.5 + parent: 2 + - uid: 6881 components: - type: Transform - pos: 37.5,-30.5 - parent: 89 - - uid: 22182 + pos: -30.5,-5.5 + parent: 2 + - uid: 6882 components: - type: Transform - pos: 37.5,-29.5 - parent: 89 - - uid: 22183 + pos: -30.5,-6.5 + parent: 2 + - uid: 6883 components: - type: Transform - pos: 37.5,-28.5 - parent: 89 - - uid: 22184 + pos: -30.5,-7.5 + parent: 2 + - uid: 6884 components: - type: Transform - pos: 42.5,-37.5 - parent: 89 - - uid: 22185 + pos: -29.5,-5.5 + parent: 2 + - uid: 6885 components: - type: Transform - pos: 42.5,-35.5 - parent: 89 - - uid: 22186 + pos: -29.5,-6.5 + parent: 2 + - uid: 6886 components: - type: Transform - pos: 42.5,-36.5 - parent: 89 - - uid: 22187 + pos: -29.5,-7.5 + parent: 2 + - uid: 6887 components: - type: Transform - pos: 42.5,-37.5 - parent: 89 - - uid: 22188 + pos: 22.5,5.5 + parent: 2 + - uid: 6888 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 22189 + pos: 22.5,6.5 + parent: 2 + - uid: 6889 components: - type: Transform - pos: 42.5,-36.5 - parent: 89 - - uid: 22190 + pos: 22.5,7.5 + parent: 2 + - uid: 6890 components: - type: Transform - pos: 42.5,-35.5 - parent: 89 - - uid: 22191 + pos: 21.5,5.5 + parent: 2 + - uid: 6891 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 22192 + pos: 21.5,6.5 + parent: 2 + - uid: 6892 components: - type: Transform - pos: 43.5,-38.5 - parent: 89 - - uid: 22193 + pos: 21.5,7.5 + parent: 2 + - uid: 6893 components: - type: Transform - pos: 44.5,-38.5 - parent: 89 - - uid: 22194 + pos: 20.5,5.5 + parent: 2 + - uid: 6894 components: - type: Transform - pos: 45.5,-38.5 - parent: 89 - - uid: 22195 + pos: 20.5,6.5 + parent: 2 + - uid: 6895 components: - type: Transform - pos: 46.5,-38.5 - parent: 89 - - uid: 22196 + pos: 20.5,7.5 + parent: 2 + - uid: 6896 components: - type: Transform - pos: 41.5,-38.5 - parent: 89 - - uid: 22197 + pos: -78.5,-0.5 + parent: 2 + - uid: 6897 components: - type: Transform - pos: 40.5,-38.5 - parent: 89 - - uid: 22198 + pos: -78.5,-1.5 + parent: 2 + - uid: 6898 components: - type: Transform - pos: 39.5,-38.5 - parent: 89 - - uid: 22199 + pos: -79.5,-0.5 + parent: 2 + - uid: 6899 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 22200 + pos: -79.5,-1.5 + parent: 2 +- proto: CarpetBlue + entities: + - uid: 6900 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 22201 + pos: 46.5,13.5 + parent: 2 + - uid: 6901 components: - type: Transform - pos: 38.5,-37.5 - parent: 89 - - uid: 22202 + pos: 18.5,17.5 + parent: 2 + - uid: 6902 components: - type: Transform - pos: 38.5,-36.5 - parent: 89 - - uid: 22203 + pos: 18.5,18.5 + parent: 2 + - uid: 6903 components: - type: Transform - pos: 38.5,-35.5 - parent: 89 - - uid: 22211 + pos: 18.5,19.5 + parent: 2 + - uid: 6904 components: - type: Transform - pos: -132.5,-3.5 - parent: 89 - - uid: 22212 + pos: 19.5,17.5 + parent: 2 + - uid: 6905 components: - type: Transform - pos: 59.5,-22.5 - parent: 89 - - uid: 22213 + pos: 19.5,18.5 + parent: 2 + - uid: 6906 components: - type: Transform - pos: 60.5,-22.5 - parent: 89 - - uid: 22214 + pos: 19.5,19.5 + parent: 2 + - uid: 6907 components: - type: Transform - pos: 61.5,-22.5 - parent: 89 - - uid: 22347 + pos: 20.5,17.5 + parent: 2 + - uid: 6908 components: - type: Transform - pos: -131.5,-4.5 - parent: 89 - - uid: 23588 + pos: 20.5,18.5 + parent: 2 + - uid: 6909 components: - type: Transform - pos: -1.5,-11.5 - parent: 22565 - - uid: 23589 + pos: 20.5,19.5 + parent: 2 + - uid: 27497 components: - type: Transform - pos: -5.5,-17.5 - parent: 22565 - - uid: 23590 + pos: -3.5,-5.5 + parent: 27260 + - uid: 27498 components: - type: Transform - pos: -6.5,-15.5 - parent: 22565 - - uid: 23591 + pos: -4.5,-5.5 + parent: 27260 + - uid: 27499 components: - type: Transform - pos: -4.5,-17.5 - parent: 22565 - - uid: 23592 + pos: -5.5,-5.5 + parent: 27260 + - uid: 27500 components: - type: Transform - pos: -6.5,-16.5 - parent: 22565 - - uid: 23593 + pos: -4.5,-6.5 + parent: 27260 + - uid: 27501 components: - type: Transform - pos: -6.5,-17.5 - parent: 22565 - - uid: 23594 + pos: -5.5,-6.5 + parent: 27260 +- proto: CarpetChapel + entities: + - uid: 6910 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 23595 + pos: -52.5,-1.5 + parent: 2 + - uid: 6911 components: - type: Transform - pos: -10.5,-12.5 - parent: 22565 - - uid: 23596 + pos: -52.5,0.5 + parent: 2 + - uid: 6912 components: - type: Transform - pos: -11.5,-12.5 - parent: 22565 - - uid: 23597 + pos: -48.5,-1.5 + parent: 2 + - uid: 6913 components: - type: Transform - pos: -5.5,-15.5 - parent: 22565 - - uid: 23598 + pos: -48.5,0.5 + parent: 2 + - uid: 6914 components: - type: Transform - pos: -17.5,-6.5 - parent: 22565 - - uid: 23599 + rot: -1.5707963267948966 rad + pos: -52.5,1.5 + parent: 2 + - uid: 6915 components: - type: Transform - pos: -0.5,-11.5 - parent: 22565 - - uid: 23600 + rot: -1.5707963267948966 rad + pos: -52.5,-0.5 + parent: 2 + - uid: 6916 components: - type: Transform - pos: 0.5,-11.5 - parent: 22565 - - uid: 23601 + rot: -1.5707963267948966 rad + pos: -48.5,1.5 + parent: 2 + - uid: 6917 components: - type: Transform - pos: -1.5,-12.5 - parent: 22565 - - uid: 23602 + rot: -1.5707963267948966 rad + pos: -48.5,-0.5 + parent: 2 + - uid: 6918 components: - type: Transform - pos: -1.5,-13.5 - parent: 22565 - - uid: 23603 + rot: 3.141592653589793 rad + pos: -47.5,1.5 + parent: 2 + - uid: 6919 components: - type: Transform - pos: -4.5,-11.5 - parent: 22565 - - uid: 23604 + rot: 3.141592653589793 rad + pos: -47.5,-0.5 + parent: 2 + - uid: 6920 components: - type: Transform - pos: -0.5,-12.5 - parent: 22565 - - uid: 23605 + rot: 3.141592653589793 rad + pos: -51.5,-0.5 + parent: 2 + - uid: 6921 components: - type: Transform - pos: -0.5,-13.5 - parent: 22565 - - uid: 23606 + rot: 3.141592653589793 rad + pos: -51.5,1.5 + parent: 2 + - uid: 6922 components: - type: Transform - pos: -3.5,-11.5 - parent: 22565 - - uid: 23607 + rot: 1.5707963267948966 rad + pos: -51.5,0.5 + parent: 2 + - uid: 6923 components: - type: Transform - pos: 0.5,-12.5 - parent: 22565 - - uid: 23608 + rot: 1.5707963267948966 rad + pos: -51.5,-1.5 + parent: 2 + - uid: 6924 components: - type: Transform - pos: 0.5,-13.5 - parent: 22565 - - uid: 23609 + rot: 1.5707963267948966 rad + pos: -47.5,-1.5 + parent: 2 + - uid: 6925 components: - type: Transform - pos: -2.5,-11.5 - parent: 22565 - - uid: 23610 + rot: 1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - uid: 6926 components: - type: Transform - pos: -4.5,-14.5 - parent: 22565 - - uid: 23611 + pos: -52.5,-3.5 + parent: 2 + - uid: 6927 components: - type: Transform - pos: -4.5,-13.5 - parent: 22565 - - uid: 23612 + rot: -1.5707963267948966 rad + pos: -52.5,-2.5 + parent: 2 + - uid: 6928 components: - type: Transform - pos: -4.5,-12.5 - parent: 22565 - - uid: 23613 + rot: -1.5707963267948966 rad + pos: -50.5,-2.5 + parent: 2 + - uid: 6929 components: - type: Transform - pos: -5.5,-14.5 - parent: 22565 - - uid: 23614 + rot: -1.5707963267948966 rad + pos: -48.5,-2.5 + parent: 2 + - uid: 6930 components: - type: Transform - pos: -5.5,-13.5 - parent: 22565 - - uid: 23615 + rot: 3.141592653589793 rad + pos: -47.5,-2.5 + parent: 2 + - uid: 6931 components: - type: Transform - pos: -5.5,-12.5 - parent: 22565 - - uid: 23616 + rot: 3.141592653589793 rad + pos: -49.5,-2.5 + parent: 2 + - uid: 6932 components: - type: Transform - pos: -6.5,-14.5 - parent: 22565 - - uid: 23617 + rot: 3.141592653589793 rad + pos: -51.5,-2.5 + parent: 2 + - uid: 6933 components: - type: Transform - pos: -6.5,-13.5 - parent: 22565 - - uid: 23618 + rot: 1.5707963267948966 rad + pos: -51.5,-3.5 + parent: 2 + - uid: 6934 components: - type: Transform - pos: -6.5,-12.5 - parent: 22565 - - uid: 23619 + rot: 1.5707963267948966 rad + pos: -49.5,-3.5 + parent: 2 + - uid: 6935 components: - type: Transform - pos: -4.5,-15.5 - parent: 22565 - - uid: 23620 + rot: 1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 2 + - uid: 6936 components: - type: Transform - pos: -6.5,-7.5 - parent: 22565 - - uid: 23621 + pos: -48.5,-3.5 + parent: 2 + - uid: 6937 components: - type: Transform - pos: -6.5,-8.5 - parent: 22565 - - uid: 23622 + pos: -50.5,-3.5 + parent: 2 +- proto: CarpetGreen + entities: + - uid: 6938 components: - type: Transform - pos: -6.5,-6.5 - parent: 22565 - - uid: 23623 + pos: -51.5,10.5 + parent: 2 + - uid: 6939 components: - type: Transform - pos: -7.5,-3.5 - parent: 22565 - - uid: 23624 + pos: -51.5,9.5 + parent: 2 + - uid: 6940 components: - type: Transform - pos: -6.5,-10.5 - parent: 22565 - - uid: 23625 + pos: -51.5,8.5 + parent: 2 + - uid: 6941 components: - type: Transform - pos: -6.5,-11.5 - parent: 22565 - - uid: 23626 + pos: -50.5,10.5 + parent: 2 + - uid: 6942 components: - type: Transform - pos: -6.5,-4.5 - parent: 22565 - - uid: 23627 + pos: -50.5,9.5 + parent: 2 + - uid: 6943 components: - type: Transform - pos: -6.5,-5.5 - parent: 22565 - - uid: 23628 + pos: -50.5,8.5 + parent: 2 + - uid: 6944 components: - type: Transform - pos: -8.5,-3.5 - parent: 22565 - - uid: 23629 + pos: -49.5,10.5 + parent: 2 + - uid: 6945 components: - type: Transform - pos: -6.5,-9.5 - parent: 22565 - - uid: 23630 + pos: -49.5,9.5 + parent: 2 + - uid: 6946 components: - type: Transform - pos: -6.5,-3.5 - parent: 22565 - - uid: 23631 + pos: -49.5,8.5 + parent: 2 + - uid: 6947 components: - type: Transform - pos: -7.5,-13.5 - parent: 22565 - - uid: 23632 + pos: -48.5,10.5 + parent: 2 + - uid: 6948 components: - type: Transform - pos: -8.5,-13.5 - parent: 22565 - - uid: 23633 + pos: -48.5,9.5 + parent: 2 + - uid: 6949 components: - type: Transform - pos: -9.5,-13.5 - parent: 22565 - - uid: 23634 + pos: -48.5,8.5 + parent: 2 + - uid: 6950 components: - type: Transform - pos: -10.5,-13.5 - parent: 22565 - - uid: 23635 + pos: -26.5,31.5 + parent: 2 + - uid: 6951 components: - type: Transform - pos: -15.5,-12.5 - parent: 22565 - - uid: 23636 + pos: -26.5,32.5 + parent: 2 +- proto: CarpetOrange + entities: + - uid: 6952 components: - type: Transform - pos: -17.5,-3.5 - parent: 22565 - - uid: 23637 + pos: -73.5,-17.5 + parent: 2 + - uid: 6953 components: - type: Transform - pos: -17.5,-4.5 - parent: 22565 - - uid: 23638 + pos: -49.5,1.5 + parent: 2 + - uid: 6954 components: - type: Transform - pos: -17.5,-5.5 - parent: 22565 - - uid: 23639 + pos: -50.5,0.5 + parent: 2 + - uid: 6955 components: - type: Transform - pos: -17.5,-7.5 - parent: 22565 - - uid: 23640 + pos: -50.5,-1.5 + parent: 2 + - uid: 6956 components: - type: Transform - pos: -17.5,-8.5 - parent: 22565 - - uid: 23641 + pos: -50.5,-0.5 + parent: 2 + - uid: 6957 components: - type: Transform - pos: -17.5,-9.5 - parent: 22565 - - uid: 23642 + pos: -49.5,0.5 + parent: 2 + - uid: 6958 components: - type: Transform - pos: -16.5,-3.5 - parent: 22565 - - uid: 23643 + pos: -49.5,-0.5 + parent: 2 + - uid: 6959 components: - type: Transform - pos: -15.5,-3.5 - parent: 22565 - - uid: 23644 + pos: -49.5,-1.5 + parent: 2 + - uid: 6960 components: - type: Transform - pos: -5.5,-11.5 - parent: 22565 - - uid: 23646 + pos: -50.5,1.5 + parent: 2 + - uid: 6961 components: - type: Transform - pos: -15.5,-9.5 - parent: 22565 - - uid: 23647 + pos: -73.5,-16.5 + parent: 2 + - uid: 6962 components: - type: Transform - pos: -14.5,-12.5 - parent: 22565 - - uid: 23648 + pos: -72.5,-16.5 + parent: 2 + - uid: 6963 components: - type: Transform - pos: -13.5,-12.5 - parent: 22565 - - uid: 23649 + pos: -72.5,-17.5 + parent: 2 + - uid: 6964 components: - type: Transform - pos: -12.5,-12.5 - parent: 22565 - - uid: 23650 + pos: -71.5,-16.5 + parent: 2 + - uid: 6965 components: - type: Transform - pos: -16.5,-12.5 - parent: 22565 - - uid: 23651 + pos: -71.5,-17.5 + parent: 2 + - uid: 6966 components: - type: Transform - pos: -17.5,-12.5 - parent: 22565 - - uid: 23652 + pos: -70.5,-16.5 + parent: 2 + - uid: 6967 components: - type: Transform - pos: -17.5,-12.5 - parent: 22565 - - uid: 23653 + pos: -70.5,-17.5 + parent: 2 +- proto: CarpetPurple + entities: + - uid: 6968 components: - type: Transform - pos: -17.5,-11.5 - parent: 22565 - - uid: 23654 + pos: 4.5,-31.5 + parent: 2 + - uid: 6969 components: - type: Transform - pos: -17.5,-10.5 - parent: 22565 - - uid: 25480 + pos: 4.5,-30.5 + parent: 2 + - uid: 6970 components: - type: Transform - pos: 1.5,-10.5 - parent: 18153 - - uid: 25481 + pos: 3.5,-30.5 + parent: 2 + - uid: 6971 components: - type: Transform - pos: 2.5,-10.5 - parent: 18153 - - uid: 25482 + pos: 3.5,-31.5 + parent: 2 + - uid: 6972 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25621 + pos: 2.5,-31.5 + parent: 2 + - uid: 6973 components: - type: Transform - pos: -5.5,-16.5 - parent: 22565 - - uid: 25860 + pos: 2.5,-30.5 + parent: 2 + - uid: 6974 components: - type: Transform - pos: -126.5,3.5 - parent: 89 - - uid: 25861 + pos: 1.5,-30.5 + parent: 2 + - uid: 6975 components: - type: Transform - pos: -125.5,4.5 - parent: 89 - - uid: 25862 + pos: 1.5,-31.5 + parent: 2 + - uid: 6976 components: - type: Transform - pos: -125.5,3.5 - parent: 89 - - uid: 25869 + rot: 3.141592653589793 rad + pos: -75.5,-3.5 + parent: 2 + - uid: 6977 components: - type: Transform - pos: -128.5,-2.5 - parent: 89 - - uid: 25870 + rot: 3.141592653589793 rad + pos: -77.5,-2.5 + parent: 2 + - uid: 6978 components: - type: Transform - pos: -119.5,14.5 - parent: 89 -- proto: CableHVStack - entities: - - uid: 9244 + rot: 3.141592653589793 rad + pos: -75.5,-2.5 + parent: 2 + - uid: 6979 components: - type: Transform - pos: -131.46945,-2.4058437 - parent: 89 - - uid: 10774 + rot: 3.141592653589793 rad + pos: -77.5,-3.5 + parent: 2 + - uid: 6980 components: - type: Transform - pos: -103.4719,-2.5463343 - parent: 89 - - uid: 10775 + rot: 3.141592653589793 rad + pos: -76.5,-3.5 + parent: 2 + - uid: 6981 components: - type: Transform - pos: -103.175026,-2.4682093 - parent: 89 - - uid: 15286 + rot: 3.141592653589793 rad + pos: -76.5,-2.5 + parent: 2 + - uid: 6982 components: - type: Transform - pos: -115.50455,15.490905 - parent: 89 - - uid: 19695 + pos: -46.5,9.5 + parent: 2 + - uid: 6983 components: - type: Transform - pos: 17.28944,-1.4667225 - parent: 89 - - uid: 19696 + pos: -46.5,8.5 + parent: 2 + - uid: 6984 components: - type: Transform - pos: 17.28944,-1.4667225 - parent: 89 - - uid: 19697 + pos: -45.5,9.5 + parent: 2 + - uid: 6985 components: - type: Transform - pos: 17.28944,-1.4667225 - parent: 89 - - uid: 19733 + pos: -53.5,9.5 + parent: 2 + - uid: 6986 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 19734 + pos: -53.5,8.5 + parent: 2 + - uid: 6987 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 19735 + pos: -46.5,7.5 + parent: 2 + - uid: 6988 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 19736 + pos: -45.5,8.5 + parent: 2 + - uid: 6989 components: - type: Transform - pos: -119.506325,12.502924 - parent: 89 - - uid: 20086 + pos: -45.5,7.5 + parent: 2 + - uid: 6990 components: - type: Transform - pos: -115.52195,5.4791265 - parent: 89 - - uid: 20364 + pos: -44.5,9.5 + parent: 2 + - uid: 6991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.57262,-11.463894 - parent: 89 - - uid: 20365 + pos: -44.5,8.5 + parent: 2 + - uid: 6992 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.69762,-11.620144 - parent: 89 - - uid: 20446 + pos: -44.5,7.5 + parent: 2 + - uid: 6993 components: - type: Transform - pos: 53.39606,26.518478 - parent: 89 -- proto: CableMV - entities: - - uid: 278 + pos: -43.5,9.5 + parent: 2 + - uid: 6994 components: - type: Transform - pos: -10.5,-18.5 - parent: 89 - - uid: 279 + pos: -43.5,8.5 + parent: 2 + - uid: 6995 components: - type: Transform - pos: 5.5,-29.5 - parent: 89 - - uid: 280 + pos: -43.5,7.5 + parent: 2 +- proto: CarpetSBlue + entities: + - uid: 6996 components: - type: Transform - pos: -5.5,-25.5 - parent: 89 - - uid: 299 + pos: 42.5,14.5 + parent: 2 + - uid: 6997 components: - type: Transform - pos: -8.5,-18.5 - parent: 89 - - uid: 304 + pos: 40.5,13.5 + parent: 2 + - uid: 6998 components: - type: Transform - pos: -8.5,-18.5 - parent: 89 - - uid: 305 + pos: 40.5,12.5 + parent: 2 + - uid: 6999 components: - type: Transform - pos: -10.5,-19.5 - parent: 89 - - uid: 336 + pos: 41.5,13.5 + parent: 2 + - uid: 7000 components: - type: Transform - pos: 44.5,9.5 - parent: 89 - - uid: 337 + pos: 41.5,12.5 + parent: 2 + - uid: 7001 components: - type: Transform - pos: 44.5,10.5 - parent: 89 - - uid: 338 + pos: 42.5,12.5 + parent: 2 + - uid: 7002 components: - type: Transform - pos: 44.5,11.5 - parent: 89 - - uid: 339 + pos: 41.5,14.5 + parent: 2 + - uid: 7003 components: - type: Transform - pos: 44.5,8.5 - parent: 89 - - uid: 349 + pos: 40.5,14.5 + parent: 2 + - uid: 7004 components: - type: Transform - pos: 63.5,3.5 - parent: 89 - - uid: 350 + pos: -74.5,-0.5 + parent: 2 + - uid: 7005 components: - type: Transform - pos: 62.5,3.5 - parent: 89 - - uid: 351 + pos: -74.5,-1.5 + parent: 2 + - uid: 7006 components: - type: Transform - pos: 64.5,6.5 - parent: 89 - - uid: 352 + pos: -73.5,-0.5 + parent: 2 + - uid: 7007 components: - type: Transform - pos: 64.5,7.5 - parent: 89 - - uid: 353 + pos: -73.5,-1.5 + parent: 2 + - uid: 7008 components: - type: Transform - pos: 64.5,8.5 - parent: 89 - - uid: 354 + pos: 58.5,4.5 + parent: 2 + - uid: 7009 components: - type: Transform - pos: 62.5,4.5 - parent: 89 - - uid: 361 + pos: 58.5,5.5 + parent: 2 + - uid: 7010 components: - type: Transform - pos: 64.5,0.5 - parent: 89 - - uid: 362 + pos: 58.5,6.5 + parent: 2 + - uid: 7011 components: - type: Transform - pos: 62.5,-0.5 - parent: 89 - - uid: 363 + pos: 58.5,3.5 + parent: 2 + - uid: 7012 components: - type: Transform - pos: 64.5,2.5 - parent: 89 - - uid: 364 + pos: 58.5,2.5 + parent: 2 + - uid: 7013 components: - type: Transform - pos: 62.5,0.5 - parent: 89 - - uid: 373 + pos: 57.5,5.5 + parent: 2 + - uid: 7014 components: - type: Transform - pos: 62.5,8.5 - parent: 89 - - uid: 374 + pos: 57.5,4.5 + parent: 2 + - uid: 7015 components: - type: Transform - pos: 64.5,1.5 - parent: 89 - - uid: 376 + pos: 57.5,3.5 + parent: 2 + - uid: 7016 components: - type: Transform - pos: 63.5,0.5 - parent: 89 - - uid: 384 + pos: 59.5,5.5 + parent: 2 + - uid: 7017 components: - type: Transform - pos: 63.5,10.5 - parent: 89 - - uid: 385 + pos: 59.5,4.5 + parent: 2 + - uid: 7018 components: - type: Transform - pos: 62.5,9.5 - parent: 89 - - uid: 386 + pos: 59.5,3.5 + parent: 2 + - uid: 7019 components: - type: Transform - pos: 64.5,3.5 - parent: 89 - - uid: 390 + pos: -23.5,9.5 + parent: 2 + - uid: 7020 components: - type: Transform - pos: 63.5,8.5 - parent: 89 - - uid: 404 + pos: -23.5,8.5 + parent: 2 + - uid: 7021 components: - type: Transform - pos: 65.5,13.5 - parent: 89 - - uid: 405 + pos: -22.5,8.5 + parent: 2 + - uid: 7022 components: - type: Transform - pos: 62.5,10.5 - parent: 89 - - uid: 416 + pos: -22.5,9.5 + parent: 2 + - uid: 7023 components: - type: Transform - pos: 65.5,14.5 - parent: 89 - - uid: 417 + pos: 25.5,43.5 + parent: 2 + - uid: 7024 components: - type: Transform - pos: 64.5,10.5 - parent: 89 - - uid: 426 + pos: 25.5,42.5 + parent: 2 + - uid: 7025 components: - type: Transform - pos: 64.5,14.5 - parent: 89 - - uid: 427 + pos: 24.5,43.5 + parent: 2 + - uid: 7026 components: - type: Transform - pos: 63.5,14.5 - parent: 89 - - uid: 428 + pos: 24.5,42.5 + parent: 2 + - uid: 7027 components: - type: Transform - pos: 61.5,13.5 - parent: 89 - - uid: 429 + pos: 23.5,43.5 + parent: 2 + - uid: 7028 components: - type: Transform - pos: 60.5,13.5 - parent: 89 - - uid: 430 + pos: 23.5,42.5 + parent: 2 + - uid: 7029 components: - type: Transform - pos: 52.5,13.5 - parent: 89 - - uid: 431 + pos: 42.5,13.5 + parent: 2 + - uid: 7030 components: - type: Transform - pos: 52.5,15.5 - parent: 89 - - uid: 432 + pos: -24.5,7.5 + parent: 2 + - uid: 7031 components: - type: Transform - pos: 59.5,16.5 - parent: 89 - - uid: 433 + pos: -24.5,8.5 + parent: 2 + - uid: 7032 components: - type: Transform - pos: 56.5,16.5 - parent: 89 - - uid: 437 + pos: -22.5,7.5 + parent: 2 + - uid: 7033 components: - type: Transform - pos: 42.5,13.5 - parent: 89 - - uid: 439 + pos: -23.5,7.5 + parent: 2 +- proto: Catwalk + entities: + - uid: 7034 components: - type: Transform - pos: 43.5,12.5 - parent: 89 - - uid: 467 + pos: -4.5,3.5 + parent: 2 + - uid: 7035 components: - type: Transform - pos: 49.5,-2.5 - parent: 89 - - uid: 535 + pos: -4.5,1.5 + parent: 2 + - uid: 7036 components: - type: Transform - pos: 63.5,5.5 - parent: 89 - - uid: 536 + pos: -4.5,2.5 + parent: 2 + - uid: 7037 components: - type: Transform - pos: 62.5,5.5 - parent: 89 - - uid: 538 + rot: -1.5707963267948966 rad + pos: -128.5,-12.5 + parent: 2 + - uid: 7038 components: - type: Transform - pos: 58.5,16.5 - parent: 89 - - uid: 539 + rot: -1.5707963267948966 rad + pos: -129.5,-10.5 + parent: 2 + - uid: 7039 components: - type: Transform - pos: 53.5,16.5 - parent: 89 - - uid: 540 + rot: -1.5707963267948966 rad + pos: -129.5,-7.5 + parent: 2 + - uid: 7040 components: - type: Transform - pos: 66.5,10.5 - parent: 89 - - uid: 541 + rot: -1.5707963267948966 rad + pos: -128.5,-7.5 + parent: 2 + - uid: 7041 components: - type: Transform - pos: 66.5,12.5 - parent: 89 - - uid: 542 + rot: -1.5707963267948966 rad + pos: -112.5,25.5 + parent: 2 + - uid: 7042 components: - type: Transform - pos: 66.5,13.5 - parent: 89 - - uid: 543 + rot: -1.5707963267948966 rad + pos: -108.5,23.5 + parent: 2 + - uid: 7043 components: - type: Transform - pos: 50.5,-2.5 - parent: 89 - - uid: 590 + rot: -1.5707963267948966 rad + pos: -105.5,23.5 + parent: 2 + - uid: 7044 components: - type: Transform - pos: 45.5,3.5 - parent: 89 - - uid: 591 + rot: -1.5707963267948966 rad + pos: -104.5,23.5 + parent: 2 + - uid: 7045 components: - type: Transform - pos: 44.5,3.5 - parent: 89 - - uid: 592 + rot: -1.5707963267948966 rad + pos: -103.5,23.5 + parent: 2 + - uid: 7046 components: - type: Transform - pos: 40.5,5.5 - parent: 89 - - uid: 593 + rot: -1.5707963267948966 rad + pos: -102.5,23.5 + parent: 2 + - uid: 7047 components: - type: Transform - pos: 40.5,8.5 - parent: 89 - - uid: 594 + rot: -1.5707963267948966 rad + pos: -106.5,23.5 + parent: 2 + - uid: 7048 components: - type: Transform - pos: 40.5,6.5 - parent: 89 - - uid: 595 + rot: -1.5707963267948966 rad + pos: -107.5,23.5 + parent: 2 + - uid: 7049 components: - type: Transform - pos: 41.5,8.5 - parent: 89 - - uid: 597 + pos: -108.5,22.5 + parent: 2 + - uid: 7050 components: - type: Transform - pos: 62.5,14.5 - parent: 89 - - uid: 612 + rot: -1.5707963267948966 rad + pos: -130.5,12.5 + parent: 2 + - uid: 7051 components: - type: Transform - pos: 52.5,4.5 - parent: 89 - - uid: 700 + rot: -1.5707963267948966 rad + pos: -121.5,14.5 + parent: 2 + - uid: 7052 components: - type: Transform - pos: 62.5,13.5 - parent: 89 - - uid: 701 + rot: -1.5707963267948966 rad + pos: -120.5,14.5 + parent: 2 + - uid: 7053 components: - type: Transform - pos: 59.5,13.5 - parent: 89 - - uid: 702 + rot: -1.5707963267948966 rad + pos: -126.5,13.5 + parent: 2 + - uid: 7054 components: - type: Transform - pos: 59.5,15.5 - parent: 89 - - uid: 703 + rot: 1.5707963267948966 rad + pos: -105.5,-22.5 + parent: 2 + - uid: 7055 components: - type: Transform - pos: 52.5,12.5 - parent: 89 - - uid: 704 + rot: 1.5707963267948966 rad + pos: -106.5,-22.5 + parent: 2 + - uid: 7056 components: - type: Transform - pos: 52.5,14.5 - parent: 89 - - uid: 705 + rot: 1.5707963267948966 rad + pos: -104.5,-21.5 + parent: 2 + - uid: 7057 components: - type: Transform - pos: 54.5,16.5 - parent: 89 - - uid: 706 + pos: -126.5,-7.5 + parent: 2 + - uid: 7058 components: - type: Transform - pos: 55.5,16.5 - parent: 89 - - uid: 708 + rot: 3.141592653589793 rad + pos: 15.5,-13.5 + parent: 2 + - uid: 7059 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 710 + rot: 3.141592653589793 rad + pos: 16.5,-12.5 + parent: 2 + - uid: 7060 components: - type: Transform - pos: 41.5,14.5 - parent: 89 - - uid: 711 + rot: 3.141592653589793 rad + pos: 16.5,-13.5 + parent: 2 + - uid: 7061 components: - type: Transform - pos: 42.5,14.5 - parent: 89 - - uid: 712 + pos: -96.5,22.5 + parent: 2 + - uid: 7062 components: - type: Transform - pos: 43.5,11.5 - parent: 89 - - uid: 715 + pos: -108.5,-13.5 + parent: 2 + - uid: 7063 components: - type: Transform - pos: 57.5,16.5 - parent: 89 - - uid: 789 + pos: -108.5,-12.5 + parent: 2 + - uid: 7064 components: - type: Transform - pos: 45.5,8.5 - parent: 89 - - uid: 818 + pos: -108.5,-11.5 + parent: 2 + - uid: 7065 components: - type: Transform - pos: 52.5,11.5 - parent: 89 - - uid: 820 + pos: -108.5,-10.5 + parent: 2 + - uid: 7066 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 824 + pos: -108.5,-9.5 + parent: 2 + - uid: 7067 components: - type: Transform - pos: 49.5,5.5 - parent: 89 - - uid: 825 + pos: -108.5,-7.5 + parent: 2 + - uid: 7068 components: - type: Transform - pos: 47.5,5.5 - parent: 89 - - uid: 826 + pos: -108.5,-6.5 + parent: 2 + - uid: 7069 components: - type: Transform - pos: 48.5,5.5 - parent: 89 - - uid: 827 + pos: -108.5,-5.5 + parent: 2 + - uid: 7070 components: - type: Transform - pos: 50.5,4.5 - parent: 89 - - uid: 828 + pos: -108.5,-4.5 + parent: 2 + - uid: 7071 components: - type: Transform - pos: 51.5,4.5 - parent: 89 - - uid: 829 + pos: -108.5,-3.5 + parent: 2 + - uid: 7072 components: - type: Transform - pos: 50.5,5.5 - parent: 89 - - uid: 831 + pos: -108.5,-2.5 + parent: 2 + - uid: 7073 components: - type: Transform - pos: 52.5,7.5 - parent: 89 - - uid: 832 + pos: -108.5,-1.5 + parent: 2 + - uid: 7074 components: - type: Transform - pos: 52.5,8.5 - parent: 89 - - uid: 833 + pos: -108.5,-0.5 + parent: 2 + - uid: 7075 components: - type: Transform - pos: 52.5,5.5 - parent: 89 - - uid: 834 + pos: -108.5,0.5 + parent: 2 + - uid: 7076 components: - type: Transform - pos: 52.5,6.5 - parent: 89 - - uid: 835 + pos: -108.5,1.5 + parent: 2 + - uid: 7077 components: - type: Transform - pos: 52.5,9.5 - parent: 89 - - uid: 836 + pos: -108.5,2.5 + parent: 2 + - uid: 7078 components: - type: Transform - pos: 52.5,10.5 - parent: 89 - - uid: 839 + pos: -108.5,3.5 + parent: 2 + - uid: 7079 components: - type: Transform - pos: 47.5,8.5 - parent: 89 - - uid: 840 + pos: -108.5,4.5 + parent: 2 + - uid: 7080 components: - type: Transform - pos: 49.5,8.5 - parent: 89 - - uid: 841 + pos: -108.5,5.5 + parent: 2 + - uid: 7081 components: - type: Transform - pos: 48.5,8.5 - parent: 89 - - uid: 842 + pos: -108.5,6.5 + parent: 2 + - uid: 7082 components: - type: Transform - pos: 50.5,8.5 - parent: 89 - - uid: 843 + pos: -108.5,7.5 + parent: 2 + - uid: 7083 components: - type: Transform - pos: 51.5,8.5 - parent: 89 - - uid: 846 + pos: -108.5,8.5 + parent: 2 + - uid: 7084 components: - type: Transform - pos: 46.5,8.5 - parent: 89 - - uid: 988 + pos: -108.5,9.5 + parent: 2 + - uid: 7085 components: - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 1113 + pos: -108.5,10.5 + parent: 2 + - uid: 7086 components: - type: Transform - pos: 52.5,3.5 - parent: 89 - - uid: 1114 + pos: -108.5,11.5 + parent: 2 + - uid: 7087 components: - type: Transform - pos: 52.5,2.5 - parent: 89 - - uid: 1115 + pos: -108.5,12.5 + parent: 2 + - uid: 7088 components: - type: Transform - pos: 52.5,1.5 - parent: 89 - - uid: 1116 + pos: -108.5,13.5 + parent: 2 + - uid: 7089 components: - type: Transform - pos: 52.5,0.5 - parent: 89 - - uid: 1134 + pos: -105.5,14.5 + parent: 2 + - uid: 7090 components: - type: Transform - pos: 44.5,2.5 - parent: 89 - - uid: 1199 + pos: -106.5,14.5 + parent: 2 + - uid: 7091 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 - - uid: 1225 + pos: -107.5,14.5 + parent: 2 + - uid: 7092 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 1246 + pos: -109.5,9.5 + parent: 2 + - uid: 7093 components: - type: Transform - pos: -11.5,-25.5 - parent: 89 - - uid: 1340 + pos: -110.5,9.5 + parent: 2 + - uid: 7094 components: - type: Transform - pos: 2.5,-41.5 - parent: 89 - - uid: 1341 + pos: -111.5,9.5 + parent: 2 + - uid: 7095 components: - type: Transform - pos: 1.5,-41.5 - parent: 89 - - uid: 1342 + pos: -111.5,-1.5 + parent: 2 + - uid: 7096 components: - type: Transform - pos: -1.5,-41.5 - parent: 89 - - uid: 1343 + pos: -110.5,-1.5 + parent: 2 + - uid: 7097 components: - type: Transform - pos: -1.5,-38.5 - parent: 89 - - uid: 1344 + pos: -109.5,-1.5 + parent: 2 + - uid: 7098 components: - type: Transform - pos: -1.5,-36.5 - parent: 89 - - uid: 1345 + pos: -107.5,4.5 + parent: 2 + - uid: 7099 components: - type: Transform - pos: -1.5,-30.5 - parent: 89 - - uid: 1346 + pos: -106.5,4.5 + parent: 2 + - uid: 7100 components: - type: Transform - pos: -1.5,-27.5 - parent: 89 - - uid: 1347 + pos: -105.5,4.5 + parent: 2 + - uid: 7101 components: - type: Transform - pos: -1.5,-26.5 - parent: 89 - - uid: 1348 + pos: -104.5,4.5 + parent: 2 + - uid: 7102 components: - type: Transform - pos: -1.5,-25.5 - parent: 89 - - uid: 1349 + pos: -103.5,4.5 + parent: 2 + - uid: 7103 components: - type: Transform - pos: -2.5,-25.5 - parent: 89 - - uid: 1350 + pos: -102.5,4.5 + parent: 2 + - uid: 7104 components: - type: Transform - pos: -3.5,-25.5 - parent: 89 - - uid: 1357 + pos: -101.5,4.5 + parent: 2 + - uid: 7105 components: - type: Transform - pos: -14.5,21.5 - parent: 89 - - uid: 1436 + pos: -100.5,4.5 + parent: 2 + - uid: 7106 components: - type: Transform - pos: 49.5,-3.5 - parent: 89 - - uid: 1439 + pos: -99.5,4.5 + parent: 2 + - uid: 7107 components: - type: Transform - pos: 41.5,6.5 - parent: 89 - - uid: 1441 + pos: -98.5,4.5 + parent: 2 + - uid: 7108 components: - type: Transform - pos: 40.5,7.5 - parent: 89 - - uid: 1444 + pos: -98.5,5.5 + parent: 2 + - uid: 7109 components: - type: Transform - pos: -10.5,-25.5 - parent: 89 - - uid: 1489 + pos: -98.5,6.5 + parent: 2 + - uid: 7110 components: - type: Transform - pos: 65.5,10.5 - parent: 89 - - uid: 1547 + pos: -98.5,7.5 + parent: 2 + - uid: 7111 components: - type: Transform - pos: 59.5,14.5 - parent: 89 - - uid: 1553 + pos: -98.5,8.5 + parent: 2 + - uid: 7112 components: - type: Transform - pos: 43.5,10.5 - parent: 89 - - uid: 1554 + pos: 48.5,4.5 + parent: 2 + - uid: 7113 components: - type: Transform - pos: 43.5,3.5 - parent: 89 - - uid: 1555 + pos: 49.5,4.5 + parent: 2 + - uid: 7114 components: - type: Transform - pos: 51.5,-2.5 - parent: 89 - - uid: 1640 + rot: 1.5707963267948966 rad + pos: -108.5,-23.5 + parent: 2 + - uid: 7115 components: - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 1670 + rot: 1.5707963267948966 rad + pos: -120.5,-21.5 + parent: 2 + - uid: 7116 components: - type: Transform - pos: -1.5,-37.5 - parent: 89 - - uid: 1691 + rot: 1.5707963267948966 rad + pos: -119.5,-21.5 + parent: 2 + - uid: 7117 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 1705 + rot: 1.5707963267948966 rad + pos: -113.5,-22.5 + parent: 2 + - uid: 7118 components: - type: Transform - pos: 3.5,-41.5 - parent: 89 - - uid: 1706 + rot: 1.5707963267948966 rad + pos: -118.5,-21.5 + parent: 2 + - uid: 7119 components: - type: Transform - pos: 1.5,-25.5 - parent: 89 - - uid: 1709 + rot: 1.5707963267948966 rad + pos: -109.5,-23.5 + parent: 2 + - uid: 7120 components: - type: Transform - pos: -7.5,-25.5 - parent: 89 - - uid: 1711 + rot: 1.5707963267948966 rad + pos: -121.5,-21.5 + parent: 2 + - uid: 7121 components: - type: Transform - pos: -7.5,-21.5 - parent: 89 - - uid: 1712 + rot: 1.5707963267948966 rad + pos: -107.5,-23.5 + parent: 2 + - uid: 7122 components: - type: Transform - pos: -7.5,-22.5 - parent: 89 - - uid: 1717 + pos: -123.5,9.5 + parent: 2 + - uid: 7123 components: - type: Transform - pos: -2.5,-23.5 - parent: 89 - - uid: 1718 + pos: -122.5,9.5 + parent: 2 + - uid: 7124 components: - type: Transform - pos: -4.5,-25.5 - parent: 89 - - uid: 1719 + pos: -121.5,7.5 + parent: 2 + - uid: 7125 components: - type: Transform - pos: -12.5,-25.5 - parent: 89 - - uid: 1724 + pos: -121.5,8.5 + parent: 2 + - uid: 7126 components: - type: Transform - pos: -1.5,-29.5 - parent: 89 - - uid: 1725 + pos: -121.5,9.5 + parent: 2 + - uid: 7127 components: - type: Transform - pos: -1.5,-32.5 - parent: 89 - - uid: 1726 + pos: -121.5,6.5 + parent: 2 + - uid: 7128 components: - type: Transform - pos: -1.5,-31.5 - parent: 89 - - uid: 1727 + pos: -121.5,5.5 + parent: 2 + - uid: 7129 components: - type: Transform - pos: -1.5,-34.5 - parent: 89 - - uid: 1728 + pos: 31.5,5.5 + parent: 2 + - uid: 7130 components: - type: Transform - pos: -1.5,-40.5 - parent: 89 - - uid: 1729 + rot: -1.5707963267948966 rad + pos: 31.5,8.5 + parent: 2 + - uid: 7131 components: - type: Transform - pos: -8.5,-19.5 - parent: 89 - - uid: 1730 + rot: -1.5707963267948966 rad + pos: 30.5,8.5 + parent: 2 + - uid: 7132 components: - type: Transform - pos: -0.5,-41.5 - parent: 89 - - uid: 1731 + rot: -1.5707963267948966 rad + pos: 30.5,6.5 + parent: 2 + - uid: 7133 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - uid: 1755 + rot: -1.5707963267948966 rad + pos: 32.5,8.5 + parent: 2 + - uid: 7134 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - uid: 1756 + pos: 31.5,6.5 + parent: 2 + - uid: 7135 components: - type: Transform - pos: -6.5,-25.5 - parent: 89 - - uid: 1757 + rot: -1.5707963267948966 rad + pos: 30.5,5.5 + parent: 2 + - uid: 7136 components: - type: Transform - pos: -9.5,-18.5 - parent: 89 - - uid: 1758 + rot: -1.5707963267948966 rad + pos: -83.5,-24.5 + parent: 2 + - uid: 7137 components: - type: Transform - pos: -1.5,-39.5 - parent: 89 - - uid: 1759 + rot: -1.5707963267948966 rad + pos: -83.5,-23.5 + parent: 2 + - uid: 7138 components: - type: Transform - pos: -1.5,-35.5 - parent: 89 - - uid: 1760 + rot: -1.5707963267948966 rad + pos: -83.5,-22.5 + parent: 2 + - uid: 7139 components: - type: Transform - pos: -1.5,-33.5 - parent: 89 - - uid: 1761 + rot: -1.5707963267948966 rad + pos: -83.5,-21.5 + parent: 2 + - uid: 7140 components: - type: Transform - pos: -1.5,-28.5 - parent: 89 - - uid: 1825 + rot: -1.5707963267948966 rad + pos: -82.5,-21.5 + parent: 2 + - uid: 7141 components: - type: Transform - pos: -29.5,17.5 - parent: 89 - - uid: 1829 + rot: -1.5707963267948966 rad + pos: -81.5,-21.5 + parent: 2 + - uid: 7142 components: - type: Transform - pos: -0.5,-25.5 - parent: 89 - - uid: 1830 + rot: -1.5707963267948966 rad + pos: -80.5,-21.5 + parent: 2 + - uid: 7143 components: - type: Transform - pos: 0.5,-25.5 - parent: 89 - - uid: 1831 + rot: -1.5707963267948966 rad + pos: -79.5,-21.5 + parent: 2 + - uid: 7144 components: - type: Transform - pos: 2.5,-27.5 - parent: 89 - - uid: 1834 + rot: -1.5707963267948966 rad + pos: -77.5,-21.5 + parent: 2 + - uid: 7145 components: - type: Transform - pos: 2.5,-25.5 - parent: 89 - - uid: 1835 + rot: -1.5707963267948966 rad + pos: -78.5,-21.5 + parent: 2 + - uid: 7146 components: - type: Transform - pos: 2.5,-29.5 - parent: 89 - - uid: 1836 + rot: 1.5707963267948966 rad + pos: -111.5,-22.5 + parent: 2 + - uid: 7147 components: - type: Transform - pos: 2.5,-26.5 - parent: 89 - - uid: 1837 + rot: 1.5707963267948966 rad + pos: -106.5,-23.5 + parent: 2 + - uid: 7148 components: - type: Transform - pos: 3.5,-29.5 - parent: 89 - - uid: 1840 + pos: 56.5,-8.5 + parent: 2 + - uid: 7149 components: - type: Transform - pos: 4.5,-29.5 - parent: 89 - - uid: 1851 + pos: 52.5,-8.5 + parent: 2 + - uid: 7150 components: - type: Transform - pos: -8.5,-20.5 - parent: 89 - - uid: 1852 + pos: 10.5,-19.5 + parent: 2 + - uid: 7151 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 - - uid: 1853 + rot: 3.141592653589793 rad + pos: 66.5,3.5 + parent: 2 + - uid: 7152 components: - type: Transform - pos: -7.5,-20.5 - parent: 89 - - uid: 1854 + rot: 3.141592653589793 rad + pos: 66.5,2.5 + parent: 2 + - uid: 7153 components: - type: Transform - pos: -7.5,-24.5 - parent: 89 - - uid: 2056 + rot: 3.141592653589793 rad + pos: 68.5,0.5 + parent: 2 + - uid: 7154 components: - type: Transform - pos: 35.5,3.5 - parent: 89 - - uid: 2374 + rot: 3.141592653589793 rad + pos: 68.5,1.5 + parent: 2 + - uid: 7155 components: - type: Transform - pos: 35.5,2.5 - parent: 89 - - uid: 2395 + rot: 3.141592653589793 rad + pos: 67.5,1.5 + parent: 2 + - uid: 7156 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 2396 + rot: 3.141592653589793 rad + pos: 66.5,1.5 + parent: 2 + - uid: 7157 components: - type: Transform - pos: 50.5,1.5 - parent: 89 - - uid: 2397 + rot: 3.141592653589793 rad + pos: 66.5,4.5 + parent: 2 + - uid: 7158 components: - type: Transform - pos: 49.5,1.5 - parent: 89 - - uid: 2398 + rot: 3.141592653589793 rad + pos: 66.5,5.5 + parent: 2 + - uid: 7159 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - uid: 2399 + rot: 3.141592653589793 rad + pos: 66.5,6.5 + parent: 2 + - uid: 7160 components: - type: Transform - pos: 47.5,1.5 - parent: 89 - - uid: 2400 + rot: 3.141592653589793 rad + pos: 66.5,7.5 + parent: 2 + - uid: 7161 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 2401 + rot: 3.141592653589793 rad + pos: 67.5,7.5 + parent: 2 + - uid: 7162 components: - type: Transform - pos: 45.5,1.5 - parent: 89 - - uid: 2402 + rot: 3.141592653589793 rad + pos: 68.5,7.5 + parent: 2 + - uid: 7163 components: - type: Transform - pos: 44.5,1.5 - parent: 89 - - uid: 2403 + rot: 3.141592653589793 rad + pos: 68.5,8.5 + parent: 2 + - uid: 7164 components: - type: Transform - pos: 43.5,1.5 - parent: 89 - - uid: 2404 + rot: 3.141592653589793 rad + pos: 68.5,9.5 + parent: 2 + - uid: 7165 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 2405 + rot: 3.141592653589793 rad + pos: 68.5,10.5 + parent: 2 + - uid: 7166 components: - type: Transform - pos: 41.5,1.5 - parent: 89 - - uid: 2406 + rot: 3.141592653589793 rad + pos: 68.5,11.5 + parent: 2 + - uid: 7167 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 2407 + rot: 3.141592653589793 rad + pos: 68.5,12.5 + parent: 2 + - uid: 7168 components: - type: Transform - pos: 39.5,1.5 - parent: 89 - - uid: 2408 + rot: 3.141592653589793 rad + pos: 68.5,13.5 + parent: 2 + - uid: 7169 components: - type: Transform - pos: 38.5,1.5 - parent: 89 - - uid: 2409 + rot: 3.141592653589793 rad + pos: 68.5,14.5 + parent: 2 + - uid: 7170 components: - type: Transform - pos: 37.5,1.5 - parent: 89 - - uid: 2410 + rot: 3.141592653589793 rad + pos: 68.5,15.5 + parent: 2 + - uid: 7171 components: - type: Transform - pos: 36.5,1.5 - parent: 89 - - uid: 2411 + rot: 3.141592653589793 rad + pos: 68.5,16.5 + parent: 2 + - uid: 7172 components: - type: Transform - pos: 35.5,1.5 - parent: 89 - - uid: 2412 + rot: 3.141592653589793 rad + pos: 67.5,16.5 + parent: 2 + - uid: 7173 components: - type: Transform - pos: 35.5,4.5 - parent: 89 - - uid: 2413 + rot: 3.141592653589793 rad + pos: 66.5,16.5 + parent: 2 + - uid: 7174 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 2414 + rot: 3.141592653589793 rad + pos: 65.5,16.5 + parent: 2 + - uid: 7175 components: - type: Transform - pos: 35.5,6.5 - parent: 89 - - uid: 2415 + rot: 3.141592653589793 rad + pos: 64.5,16.5 + parent: 2 + - uid: 7176 components: - type: Transform - pos: 35.5,7.5 - parent: 89 - - uid: 2416 + rot: 3.141592653589793 rad + pos: 63.5,16.5 + parent: 2 + - uid: 7177 components: - type: Transform - pos: 35.5,8.5 - parent: 89 - - uid: 2417 + rot: 3.141592653589793 rad + pos: 62.5,16.5 + parent: 2 + - uid: 7178 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 2418 + pos: -119.5,14.5 + parent: 2 + - uid: 7179 components: - type: Transform - pos: 35.5,10.5 - parent: 89 - - uid: 2419 + rot: 1.5707963267948966 rad + pos: -110.5,-23.5 + parent: 2 + - uid: 7180 components: - type: Transform - pos: 35.5,11.5 - parent: 89 - - uid: 2420 + rot: 1.5707963267948966 rad + pos: -121.5,-19.5 + parent: 2 + - uid: 7181 components: - type: Transform - pos: 35.5,12.5 - parent: 89 - - uid: 2421 + rot: 1.5707963267948966 rad + pos: -121.5,-20.5 + parent: 2 + - uid: 7182 components: - type: Transform - pos: 35.5,13.5 - parent: 89 - - uid: 2422 + rot: 1.5707963267948966 rad + pos: -115.5,-22.5 + parent: 2 + - uid: 7183 components: - type: Transform - pos: 35.5,14.5 - parent: 89 - - uid: 2423 + rot: 1.5707963267948966 rad + pos: -117.5,-22.5 + parent: 2 + - uid: 7184 components: - type: Transform - pos: 36.5,14.5 - parent: 89 - - uid: 2424 + pos: -119.5,13.5 + parent: 2 + - uid: 7185 components: - type: Transform - pos: 37.5,14.5 - parent: 89 - - uid: 2425 + pos: 10.5,-18.5 + parent: 2 + - uid: 7186 components: - type: Transform - pos: 38.5,14.5 - parent: 89 - - uid: 2426 + pos: 15.5,-19.5 + parent: 2 + - uid: 7187 components: - type: Transform - pos: 39.5,14.5 - parent: 89 - - uid: 2429 + pos: -48.5,-19.5 + parent: 2 + - uid: 7188 components: - type: Transform - pos: 32.5,4.5 - parent: 89 - - uid: 2431 + pos: -48.5,-20.5 + parent: 2 + - uid: 7189 components: - type: Transform - pos: 33.5,8.5 - parent: 89 - - uid: 2432 + pos: -47.5,-19.5 + parent: 2 + - uid: 7190 components: - type: Transform - pos: 34.5,3.5 - parent: 89 - - uid: 2433 + pos: -47.5,-20.5 + parent: 2 + - uid: 7191 components: - type: Transform - pos: 33.5,8.5 - parent: 89 - - uid: 2434 + pos: -46.5,-19.5 + parent: 2 + - uid: 7192 components: - type: Transform - pos: 33.5,3.5 - parent: 89 - - uid: 2435 + pos: -46.5,-20.5 + parent: 2 + - uid: 7193 components: - type: Transform - pos: 32.5,3.5 - parent: 89 - - uid: 2436 + pos: -45.5,-19.5 + parent: 2 + - uid: 7194 components: - type: Transform - pos: 32.5,5.5 - parent: 89 - - uid: 2437 + pos: -45.5,-20.5 + parent: 2 + - uid: 7195 components: - type: Transform - pos: 32.5,6.5 - parent: 89 - - uid: 2438 + pos: -44.5,-19.5 + parent: 2 + - uid: 7196 components: - type: Transform - pos: 32.5,7.5 - parent: 89 - - uid: 2439 + pos: -44.5,-20.5 + parent: 2 + - uid: 7197 components: - type: Transform - pos: 32.5,8.5 - parent: 89 - - uid: 2446 + pos: -43.5,-19.5 + parent: 2 + - uid: 7198 components: - type: Transform - pos: 40.5,2.5 - parent: 89 - - uid: 2478 + pos: -43.5,-20.5 + parent: 2 + - uid: 7199 components: - type: Transform - pos: 40.5,3.5 - parent: 89 - - uid: 2479 + pos: -42.5,-19.5 + parent: 2 + - uid: 7200 components: - type: Transform - pos: 40.5,4.5 - parent: 89 - - uid: 2480 + pos: -42.5,-20.5 + parent: 2 + - uid: 7201 components: - type: Transform - pos: 41.5,4.5 - parent: 89 - - uid: 2566 + pos: -47.5,-21.5 + parent: 2 + - uid: 7202 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 2655 + pos: -46.5,-21.5 + parent: 2 + - uid: 7203 components: - type: Transform - pos: 52.5,-5.5 - parent: 89 - - uid: 3136 + pos: -45.5,-21.5 + parent: 2 + - uid: 7204 components: - type: Transform - pos: 52.5,-7.5 - parent: 89 - - uid: 3209 + pos: -44.5,-21.5 + parent: 2 + - uid: 7205 components: - type: Transform - pos: 49.5,12.5 - parent: 89 - - uid: 3216 + pos: -43.5,-21.5 + parent: 2 + - uid: 7206 components: - type: Transform - pos: 64.5,5.5 - parent: 89 - - uid: 3253 + pos: -49.5,-19.5 + parent: 2 + - uid: 7207 components: - type: Transform - pos: 47.5,12.5 - parent: 89 - - uid: 3281 + pos: -49.5,-20.5 + parent: 2 + - uid: 7208 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 3290 + pos: -50.5,-19.5 + parent: 2 + - uid: 7209 components: - type: Transform - pos: 47.5,14.5 - parent: 89 - - uid: 3302 + pos: -50.5,-20.5 + parent: 2 + - uid: 7210 components: - type: Transform - pos: 52.5,-4.5 - parent: 89 - - uid: 3303 + pos: 23.5,-16.5 + parent: 2 + - uid: 7211 components: - type: Transform - pos: 52.5,-3.5 - parent: 89 - - uid: 3308 + pos: 20.5,-16.5 + parent: 2 + - uid: 7212 components: - type: Transform - pos: 52.5,16.5 - parent: 89 - - uid: 3311 + pos: 35.5,-16.5 + parent: 2 + - uid: 7213 components: - type: Transform - pos: 52.5,-2.5 - parent: 89 - - uid: 3312 + pos: -93.5,22.5 + parent: 2 + - uid: 7214 components: - type: Transform - pos: 52.5,-1.5 - parent: 89 - - uid: 3313 + pos: -90.5,22.5 + parent: 2 + - uid: 7215 components: - type: Transform - pos: 52.5,-0.5 - parent: 89 - - uid: 3325 + pos: 19.5,-16.5 + parent: 2 + - uid: 7216 components: - type: Transform - pos: 64.5,-5.5 - parent: 89 - - uid: 3327 + pos: 36.5,-16.5 + parent: 2 + - uid: 7217 components: - type: Transform - pos: 65.5,-5.5 - parent: 89 - - uid: 3330 + pos: -91.5,22.5 + parent: 2 + - uid: 7218 components: - type: Transform - pos: 65.5,-4.5 - parent: 89 - - uid: 3332 + pos: -94.5,22.5 + parent: 2 + - uid: 7219 components: - type: Transform - pos: 66.5,-4.5 - parent: 89 - - uid: 3334 + pos: -95.5,22.5 + parent: 2 + - uid: 7220 components: - type: Transform - pos: 66.5,-3.5 - parent: 89 - - uid: 4192 + pos: 28.5,22.5 + parent: 2 + - uid: 7221 components: - type: Transform - pos: 66.5,-2.5 - parent: 89 - - uid: 4193 + pos: -37.5,-7.5 + parent: 2 + - uid: 7222 components: - type: Transform - pos: 65.5,-1.5 - parent: 89 - - uid: 4194 + pos: -37.5,-4.5 + parent: 2 + - uid: 7223 components: - type: Transform - pos: 66.5,-1.5 - parent: 89 - - uid: 4323 + pos: -43.5,-6.5 + parent: 2 + - uid: 7224 components: - type: Transform - pos: 13.5,-14.5 - parent: 89 - - uid: 4619 + pos: -43.5,-7.5 + parent: 2 + - uid: 7225 components: - type: Transform - pos: -37.5,-9.5 - parent: 89 - - uid: 4980 + pos: -43.5,-11.5 + parent: 2 + - uid: 7226 components: - type: Transform - pos: -117.5,18.5 - parent: 89 - - uid: 5073 + pos: -43.5,-12.5 + parent: 2 + - uid: 7227 components: - type: Transform - pos: 63.5,-1.5 - parent: 89 - - uid: 5074 + pos: -43.5,-13.5 + parent: 2 + - uid: 7228 components: - type: Transform - pos: 62.5,-1.5 - parent: 89 - - uid: 5148 + pos: -42.5,-15.5 + parent: 2 + - uid: 7229 components: - type: Transform - pos: 52.5,-6.5 - parent: 89 - - uid: 5844 + pos: -41.5,-15.5 + parent: 2 + - uid: 7230 components: - type: Transform - pos: -4.5,23.5 - parent: 89 - - uid: 6014 + pos: -40.5,-15.5 + parent: 2 + - uid: 7231 components: - type: Transform - pos: 64.5,-1.5 - parent: 89 - - uid: 6133 + pos: -38.5,-15.5 + parent: 2 + - uid: 7232 components: - type: Transform - pos: -6.5,23.5 - parent: 89 - - uid: 6147 + pos: -37.5,-15.5 + parent: 2 + - uid: 7233 components: - type: Transform - pos: -70.5,-16.5 - parent: 89 - - uid: 6222 + pos: -30.5,-16.5 + parent: 2 + - uid: 7234 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 6223 + pos: -31.5,-16.5 + parent: 2 + - uid: 7235 components: - type: Transform - pos: -52.5,-11.5 - parent: 89 - - uid: 6224 + pos: -32.5,-16.5 + parent: 2 + - uid: 7236 components: - type: Transform - pos: -53.5,-11.5 - parent: 89 - - uid: 6225 + pos: -25.5,-16.5 + parent: 2 + - uid: 7237 components: - type: Transform - pos: 0.5,12.5 - parent: 89 - - uid: 6235 + pos: -25.5,-17.5 + parent: 2 + - uid: 7238 components: - type: Transform - pos: -82.5,-5.5 - parent: 89 - - uid: 6236 + pos: -25.5,-18.5 + parent: 2 + - uid: 7239 components: - type: Transform - pos: -73.5,-9.5 - parent: 89 - - uid: 6237 + pos: -25.5,-19.5 + parent: 2 + - uid: 7240 components: - type: Transform - pos: -70.5,-13.5 - parent: 89 - - uid: 6238 + pos: -25.5,-20.5 + parent: 2 + - uid: 7241 components: - type: Transform - pos: -70.5,-15.5 - parent: 89 - - uid: 6239 + pos: -25.5,-23.5 + parent: 2 + - uid: 7242 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 6241 + pos: -25.5,-24.5 + parent: 2 + - uid: 7243 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 6244 + pos: -25.5,-25.5 + parent: 2 + - uid: 7244 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - uid: 6245 + pos: -20.5,-26.5 + parent: 2 + - uid: 7245 components: - type: Transform - pos: -11.5,23.5 - parent: 89 - - uid: 6246 + pos: -19.5,-26.5 + parent: 2 + - uid: 7246 components: - type: Transform - pos: -73.5,-10.5 - parent: 89 - - uid: 6248 + pos: -18.5,-26.5 + parent: 2 + - uid: 7247 components: - type: Transform - pos: -69.5,-10.5 - parent: 89 - - uid: 6249 + pos: -17.5,-26.5 + parent: 2 + - uid: 7248 components: - type: Transform - pos: -72.5,-15.5 - parent: 89 - - uid: 6250 + pos: -14.5,-26.5 + parent: 2 + - uid: 7249 components: - type: Transform - pos: -67.5,-9.5 - parent: 89 - - uid: 6251 + pos: -12.5,-28.5 + parent: 2 + - uid: 7250 components: - type: Transform - pos: -67.5,-8.5 - parent: 89 - - uid: 6252 + pos: -12.5,-29.5 + parent: 2 + - uid: 7251 components: - type: Transform - pos: -68.5,-8.5 - parent: 89 - - uid: 6253 + pos: -12.5,-30.5 + parent: 2 + - uid: 7252 components: - type: Transform - pos: -44.5,-12.5 - parent: 89 - - uid: 6326 + pos: -12.5,-31.5 + parent: 2 + - uid: 7253 components: - type: Transform - pos: -1.5,12.5 - parent: 89 - - uid: 6327 + pos: 53.5,-8.5 + parent: 2 + - uid: 7254 components: - type: Transform - pos: -0.5,12.5 - parent: 89 - - uid: 6330 + pos: -42.5,-21.5 + parent: 2 + - uid: 7255 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 6338 + pos: 16.5,-18.5 + parent: 2 + - uid: 7256 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 6339 + pos: 15.5,-18.5 + parent: 2 + - uid: 7257 components: - type: Transform - pos: -80.5,-8.5 - parent: 89 - - uid: 6341 + pos: 18.5,-16.5 + parent: 2 + - uid: 7258 components: - type: Transform - pos: -119.5,14.5 - parent: 89 - - uid: 6343 + pos: 36.5,-17.5 + parent: 2 + - uid: 7259 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 6344 + pos: -99.5,26.5 + parent: 2 + - uid: 7260 components: - type: Transform - pos: -78.5,-9.5 - parent: 89 - - uid: 6345 + pos: -97.5,25.5 + parent: 2 + - uid: 7261 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 6346 + pos: -96.5,25.5 + parent: 2 + - uid: 7262 components: - type: Transform - pos: -81.5,-5.5 - parent: 89 - - uid: 6347 + pos: -95.5,25.5 + parent: 2 + - uid: 7263 components: - type: Transform - pos: -76.5,-9.5 - parent: 89 - - uid: 6348 + pos: 9.5,-18.5 + parent: 2 + - uid: 7264 components: - type: Transform - pos: -75.5,-9.5 - parent: 89 - - uid: 6349 + rot: -1.5707963267948966 rad + pos: -130.5,13.5 + parent: 2 + - uid: 7265 components: - type: Transform - pos: -74.5,-9.5 - parent: 89 - - uid: 6350 + pos: -129.5,12.5 + parent: 2 + - uid: 7266 components: - type: Transform - pos: -80.5,-5.5 - parent: 89 - - uid: 6351 + pos: -128.5,12.5 + parent: 2 + - uid: 7267 components: - type: Transform - pos: -80.5,-7.5 - parent: 89 - - uid: 6352 + rot: -1.5707963267948966 rad + pos: -127.5,11.5 + parent: 2 + - uid: 7268 components: - type: Transform - pos: -82.5,-6.5 - parent: 89 - - uid: 6353 + pos: -130.5,9.5 + parent: 2 + - uid: 7269 components: - type: Transform - pos: -82.5,-8.5 - parent: 89 - - uid: 6354 + pos: -129.5,9.5 + parent: 2 + - uid: 7270 components: - type: Transform - pos: -82.5,-7.5 - parent: 89 - - uid: 6355 + pos: -128.5,9.5 + parent: 2 + - uid: 7271 components: - type: Transform - pos: -82.5,-9.5 - parent: 89 - - uid: 6374 + pos: -127.5,9.5 + parent: 2 + - uid: 7272 components: - type: Transform - pos: -72.5,-10.5 - parent: 89 - - uid: 6375 + pos: -126.5,9.5 + parent: 2 + - uid: 7273 components: - type: Transform - pos: -71.5,-10.5 - parent: 89 - - uid: 6376 + pos: -125.5,9.5 + parent: 2 + - uid: 7274 components: - type: Transform - pos: -70.5,-10.5 - parent: 89 - - uid: 6382 + pos: -124.5,9.5 + parent: 2 + - uid: 7275 components: - type: Transform - pos: -14.5,22.5 - parent: 89 - - uid: 6512 + pos: -129.5,8.5 + parent: 2 + - uid: 7276 components: - type: Transform - pos: -132.5,-2.5 - parent: 89 - - uid: 6521 + pos: -129.5,7.5 + parent: 2 + - uid: 7277 components: - type: Transform - pos: -132.5,-4.5 - parent: 89 - - uid: 6535 + pos: -129.5,6.5 + parent: 2 + - uid: 7278 components: - type: Transform - pos: -128.5,-9.5 - parent: 89 - - uid: 6537 + pos: -129.5,5.5 + parent: 2 + - uid: 7279 components: - type: Transform - pos: -132.5,-5.5 - parent: 89 - - uid: 6538 + pos: -129.5,4.5 + parent: 2 + - uid: 7280 components: - type: Transform - pos: -131.5,-5.5 - parent: 89 - - uid: 6539 + pos: -129.5,3.5 + parent: 2 + - uid: 7281 components: - type: Transform - pos: -128.5,-7.5 - parent: 89 - - uid: 6540 + pos: -129.5,2.5 + parent: 2 + - uid: 7282 components: - type: Transform - pos: -128.5,-8.5 - parent: 89 - - uid: 6541 + pos: -129.5,1.5 + parent: 2 + - uid: 7283 components: - type: Transform - pos: -128.5,-5.5 - parent: 89 - - uid: 6542 + pos: -129.5,0.5 + parent: 2 + - uid: 7284 components: - type: Transform - pos: -128.5,-6.5 - parent: 89 - - uid: 6552 + pos: -129.5,-0.5 + parent: 2 + - uid: 7285 components: - type: Transform - pos: -130.5,-5.5 - parent: 89 - - uid: 6557 + pos: -129.5,-1.5 + parent: 2 + - uid: 7286 components: - type: Transform - pos: -129.5,-5.5 - parent: 89 - - uid: 6559 + pos: -129.5,-2.5 + parent: 2 + - uid: 7287 components: - type: Transform - pos: -128.5,-10.5 - parent: 89 - - uid: 6980 + pos: -129.5,-3.5 + parent: 2 + - uid: 7288 components: - type: Transform - pos: -117.5,19.5 - parent: 89 - - uid: 7141 + pos: -128.5,-3.5 + parent: 2 + - uid: 7289 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 7166 + pos: -127.5,-3.5 + parent: 2 + - uid: 7290 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 7307 + pos: -126.5,-3.5 + parent: 2 + - uid: 7291 components: - type: Transform - pos: -10.5,23.5 - parent: 89 - - uid: 7309 + pos: -125.5,-3.5 + parent: 2 + - uid: 7292 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 7310 + pos: -124.5,-3.5 + parent: 2 + - uid: 7293 components: - type: Transform - pos: -5.5,23.5 - parent: 89 - - uid: 7324 + pos: -124.5,-2.5 + parent: 2 + - uid: 7294 components: - type: Transform - pos: 34.5,27.5 - parent: 89 - - uid: 7576 + pos: -124.5,-1.5 + parent: 2 + - uid: 7295 components: - type: Transform - pos: 20.5,-16.5 - parent: 89 - - uid: 7854 + pos: -123.5,-1.5 + parent: 2 + - uid: 7296 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 7858 + pos: -122.5,-1.5 + parent: 2 + - uid: 7297 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 7971 + pos: -121.5,-1.5 + parent: 2 + - uid: 7298 components: - type: Transform - pos: 59.5,-7.5 - parent: 89 - - uid: 8004 + pos: -121.5,-0.5 + parent: 2 + - uid: 7299 components: - type: Transform - pos: 13.5,-15.5 - parent: 89 - - uid: 8014 + pos: -121.5,2.5 + parent: 2 + - uid: 7300 components: - type: Transform - pos: -3.5,23.5 - parent: 89 - - uid: 8218 + pos: -121.5,1.5 + parent: 2 + - uid: 7301 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8220 + pos: 24.5,7.5 + parent: 2 + - uid: 7302 components: - type: Transform - pos: -5.5,27.5 - parent: 89 - - uid: 8221 + pos: 28.5,8.5 + parent: 2 + - uid: 7303 components: - type: Transform - pos: -4.5,26.5 - parent: 89 - - uid: 8222 + pos: 27.5,8.5 + parent: 2 + - uid: 7304 components: - type: Transform - pos: -5.5,26.5 - parent: 89 - - uid: 8225 + pos: 26.5,8.5 + parent: 2 + - uid: 7305 components: - type: Transform - pos: -3.5,26.5 - parent: 89 - - uid: 8226 + pos: 25.5,8.5 + parent: 2 + - uid: 7306 components: - type: Transform - pos: -3.5,27.5 - parent: 89 - - uid: 8227 + pos: 25.5,6.5 + parent: 2 + - uid: 7307 components: - type: Transform - pos: -3.5,28.5 - parent: 89 - - uid: 8228 + pos: 26.5,6.5 + parent: 2 + - uid: 7308 components: - type: Transform - pos: -3.5,29.5 - parent: 89 - - uid: 8229 + pos: 27.5,6.5 + parent: 2 + - uid: 7309 components: - type: Transform - pos: -3.5,30.5 - parent: 89 - - uid: 8230 + pos: 29.5,6.5 + parent: 2 + - uid: 7310 components: - type: Transform - pos: -3.5,31.5 - parent: 89 - - uid: 8232 + pos: 24.5,8.5 + parent: 2 + - uid: 7311 components: - type: Transform - pos: -3.5,33.5 - parent: 89 - - uid: 8233 + pos: 24.5,6.5 + parent: 2 + - uid: 7312 components: - type: Transform - pos: -3.5,34.5 - parent: 89 - - uid: 8234 + pos: 24.5,5.5 + parent: 2 + - uid: 7313 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 8235 + pos: -97.5,22.5 + parent: 2 + - uid: 7314 components: - type: Transform - pos: -3.5,36.5 - parent: 89 - - uid: 8236 + pos: -108.5,14.5 + parent: 2 + - uid: 7315 components: - type: Transform - pos: -3.5,37.5 - parent: 89 - - uid: 8237 + pos: 17.5,26.5 + parent: 2 + - uid: 7316 components: - type: Transform - pos: -3.5,38.5 - parent: 89 - - uid: 8238 + pos: -119.5,16.5 + parent: 2 + - uid: 7317 components: - type: Transform - pos: -3.5,39.5 - parent: 89 - - uid: 8240 + rot: 1.5707963267948966 rad + pos: -109.5,1.5 + parent: 2 + - uid: 7318 components: - type: Transform - pos: -2.5,39.5 - parent: 89 - - uid: 8242 + rot: 1.5707963267948966 rad + pos: -117.5,-21.5 + parent: 2 + - uid: 7319 components: - type: Transform - pos: -2.5,38.5 - parent: 89 - - uid: 8846 + pos: 20.5,26.5 + parent: 2 + - uid: 7320 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 9239 + pos: -98.5,22.5 + parent: 2 + - uid: 7321 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 9242 + pos: -92.5,22.5 + parent: 2 + - uid: 7322 components: - type: Transform - pos: -132.5,-3.5 - parent: 89 - - uid: 9323 + pos: -89.5,22.5 + parent: 2 + - uid: 7323 components: - type: Transform - pos: 2.5,-28.5 - parent: 89 - - uid: 9336 + pos: -87.5,20.5 + parent: 2 + - uid: 7324 components: - type: Transform - pos: -80.5,-6.5 - parent: 89 - - uid: 9345 + pos: -87.5,19.5 + parent: 2 + - uid: 7325 components: - type: Transform - pos: -70.5,-14.5 - parent: 89 - - uid: 9348 + pos: -87.5,18.5 + parent: 2 + - uid: 7326 components: - type: Transform - pos: -70.5,-11.5 - parent: 89 - - uid: 9349 + pos: -104.5,17.5 + parent: 2 + - uid: 7327 components: - type: Transform - pos: -70.5,-12.5 - parent: 89 - - uid: 9395 + pos: -103.5,17.5 + parent: 2 + - uid: 7328 components: - type: Transform - pos: -47.5,-12.5 - parent: 89 - - uid: 9402 + pos: -102.5,17.5 + parent: 2 + - uid: 7329 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 9405 + pos: -101.5,17.5 + parent: 2 + - uid: 7330 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 9406 + pos: -100.5,19.5 + parent: 2 + - uid: 7331 components: - type: Transform - pos: -67.5,-10.5 - parent: 89 - - uid: 9407 + pos: -100.5,20.5 + parent: 2 + - uid: 7332 components: - type: Transform - pos: -68.5,-10.5 - parent: 89 - - uid: 9408 + pos: -93.5,29.5 + parent: 2 + - uid: 7333 components: - type: Transform - pos: -48.5,-12.5 - parent: 89 - - uid: 9409 + pos: -92.5,28.5 + parent: 2 + - uid: 7334 components: - type: Transform - pos: -43.5,-9.5 - parent: 89 - - uid: 9410 + pos: -92.5,29.5 + parent: 2 + - uid: 7335 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 9411 + pos: -91.5,29.5 + parent: 2 + - uid: 7336 components: - type: Transform - pos: -46.5,-12.5 - parent: 89 - - uid: 9412 + pos: -89.5,27.5 + parent: 2 + - uid: 7337 components: - type: Transform - pos: -45.5,-12.5 - parent: 89 - - uid: 9414 + pos: -89.5,28.5 + parent: 2 + - uid: 7338 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 9415 + pos: -88.5,28.5 + parent: 2 + - uid: 7339 components: - type: Transform - pos: -43.5,-8.5 - parent: 89 - - uid: 9617 + pos: -111.5,16.5 + parent: 2 + - uid: 7340 components: - type: Transform - pos: -43.5,-10.5 - parent: 89 - - uid: 10692 + pos: -111.5,14.5 + parent: 2 + - uid: 7341 components: - type: Transform - pos: -12.5,-26.5 - parent: 89 - - uid: 10693 + pos: -111.5,15.5 + parent: 2 + - uid: 7342 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 10695 + pos: -100.5,15.5 + parent: 2 + - uid: 7343 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 10696 + pos: -100.5,14.5 + parent: 2 + - uid: 7344 components: - type: Transform - pos: -15.5,-26.5 - parent: 89 - - uid: 10697 + rot: -1.5707963267948966 rad + pos: -99.5,13.5 + parent: 2 + - uid: 7345 components: - type: Transform - pos: -16.5,-26.5 - parent: 89 - - uid: 10698 + pos: -98.5,13.5 + parent: 2 + - uid: 7346 components: - type: Transform - pos: -9.5,-16.5 - parent: 89 - - uid: 10699 + pos: -97.5,13.5 + parent: 2 + - uid: 7347 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 10700 + pos: -85.5,-1.5 + parent: 2 + - uid: 7348 components: - type: Transform - pos: -9.5,-17.5 - parent: 89 - - uid: 10701 + pos: -80.5,-5.5 + parent: 2 + - uid: 7349 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 10702 + pos: -80.5,-6.5 + parent: 2 + - uid: 7350 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 10703 + pos: -80.5,-7.5 + parent: 2 + - uid: 7351 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 10704 + pos: -77.5,-9.5 + parent: 2 + - uid: 7352 components: - type: Transform - pos: -11.5,-16.5 - parent: 89 - - uid: 10705 + pos: -76.5,-9.5 + parent: 2 + - uid: 7353 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 10706 + pos: -75.5,-9.5 + parent: 2 + - uid: 7354 components: - type: Transform - pos: -20.5,-25.5 - parent: 89 - - uid: 10707 + pos: -81.5,2.5 + parent: 2 + - uid: 7355 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 10708 + pos: -81.5,3.5 + parent: 2 + - uid: 7356 components: - type: Transform - pos: -22.5,-25.5 - parent: 89 - - uid: 10709 + pos: 6.5,-17.5 + parent: 2 + - uid: 7357 components: - type: Transform - pos: -23.5,-25.5 - parent: 89 - - uid: 10710 + pos: 6.5,-18.5 + parent: 2 + - uid: 7358 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 - - uid: 10711 + pos: 6.5,-19.5 + parent: 2 + - uid: 7359 components: - type: Transform - pos: -13.5,-16.5 - parent: 89 - - uid: 10712 + pos: 6.5,-20.5 + parent: 2 + - uid: 7360 components: - type: Transform - pos: -16.5,-16.5 - parent: 89 - - uid: 10713 + pos: 6.5,-21.5 + parent: 2 + - uid: 7361 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 - - uid: 10714 + pos: 10.5,-15.5 + parent: 2 + - uid: 7362 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 - - uid: 10715 + pos: 11.5,-15.5 + parent: 2 + - uid: 7363 components: - type: Transform - pos: -23.5,-16.5 - parent: 89 - - uid: 10716 + pos: 12.5,-15.5 + parent: 2 + - uid: 7364 components: - type: Transform - pos: -22.5,-16.5 - parent: 89 - - uid: 10717 + pos: -77.5,16.5 + parent: 2 + - uid: 7365 components: - type: Transform - pos: -21.5,-16.5 - parent: 89 - - uid: 10718 + pos: -76.5,16.5 + parent: 2 + - uid: 7366 components: - type: Transform - pos: -20.5,-16.5 - parent: 89 - - uid: 10719 + pos: -76.5,17.5 + parent: 2 + - uid: 7367 components: - type: Transform - pos: -19.5,-16.5 - parent: 89 - - uid: 10720 + pos: -76.5,18.5 + parent: 2 + - uid: 7368 components: - type: Transform - pos: -18.5,-16.5 - parent: 89 - - uid: 10721 + pos: -73.5,20.5 + parent: 2 + - uid: 7369 components: - type: Transform - pos: -17.5,-16.5 - parent: 89 - - uid: 10722 + pos: -72.5,20.5 + parent: 2 + - uid: 7370 components: - type: Transform - pos: -15.5,-16.5 - parent: 89 - - uid: 10723 + pos: -71.5,20.5 + parent: 2 + - uid: 7371 components: - type: Transform - pos: -14.5,-16.5 - parent: 89 - - uid: 10724 + pos: -70.5,20.5 + parent: 2 + - uid: 7372 components: - type: Transform - pos: -12.5,-16.5 - parent: 89 - - uid: 10725 + pos: -65.5,21.5 + parent: 2 + - uid: 7373 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 10727 + pos: -43.5,20.5 + parent: 2 + - uid: 7374 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 10728 + pos: -37.5,13.5 + parent: 2 + - uid: 7375 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 10729 + pos: -36.5,13.5 + parent: 2 + - uid: 7376 components: - type: Transform - pos: -25.5,-22.5 - parent: 89 - - uid: 10730 + pos: -37.5,12.5 + parent: 2 + - uid: 7377 components: - type: Transform - pos: -25.5,-21.5 - parent: 89 - - uid: 10731 + pos: -39.5,11.5 + parent: 2 + - uid: 7378 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 10732 + pos: -40.5,11.5 + parent: 2 + - uid: 7379 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 10733 + pos: -3.5,34.5 + parent: 2 + - uid: 7380 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 10734 + pos: -53.5,29.5 + parent: 2 + - uid: 7381 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 10735 + pos: -53.5,23.5 + parent: 2 + - uid: 7382 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 10809 + pos: -53.5,27.5 + parent: 2 + - uid: 7383 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 10838 + pos: -36.5,20.5 + parent: 2 + - uid: 7384 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 10877 + pos: -53.5,20.5 + parent: 2 + - uid: 7385 components: - type: Transform - pos: -40.5,22.5 - parent: 89 - - uid: 10936 + pos: -52.5,20.5 + parent: 2 + - uid: 7386 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 10945 + pos: -51.5,20.5 + parent: 2 + - uid: 7387 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 10950 + pos: -4.5,30.5 + parent: 2 + - uid: 7388 components: - type: Transform - pos: 13.5,28.5 - parent: 89 - - uid: 11007 + pos: -3.5,30.5 + parent: 2 + - uid: 7389 components: - type: Transform - pos: 13.5,32.5 - parent: 89 - - uid: 11073 + pos: -48.5,20.5 + parent: 2 + - uid: 7390 components: - type: Transform - pos: -40.5,24.5 - parent: 89 - - uid: 11078 + pos: -47.5,20.5 + parent: 2 + - uid: 7391 components: - type: Transform - pos: 14.5,32.5 - parent: 89 - - uid: 11085 + pos: 1.5,30.5 + parent: 2 + - uid: 7392 components: - type: Transform - pos: -40.5,23.5 - parent: 89 - - uid: 11097 + pos: -39.5,20.5 + parent: 2 + - uid: 7393 components: - type: Transform - pos: -3.5,25.5 - parent: 89 - - uid: 11102 + pos: -44.5,20.5 + parent: 2 + - uid: 7394 components: - type: Transform - pos: -29.5,18.5 - parent: 89 - - uid: 11104 + pos: -42.5,20.5 + parent: 2 + - uid: 7395 components: - type: Transform - pos: -29.5,16.5 - parent: 89 - - uid: 11155 + pos: -53.5,31.5 + parent: 2 + - uid: 7396 components: - type: Transform - pos: 15.5,32.5 - parent: 89 - - uid: 11160 + pos: -52.5,31.5 + parent: 2 + - uid: 7397 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 11161 + pos: -53.5,26.5 + parent: 2 + - uid: 7398 components: - type: Transform pos: -38.5,20.5 - parent: 89 - - uid: 11162 + parent: 2 + - uid: 7399 components: - type: Transform - pos: -37.5,20.5 - parent: 89 - - uid: 11163 + pos: -40.5,20.5 + parent: 2 + - uid: 7400 components: - type: Transform - pos: -36.5,20.5 - parent: 89 - - uid: 11164 + pos: -53.5,22.5 + parent: 2 + - uid: 7401 components: - type: Transform pos: -35.5,20.5 - parent: 89 - - uid: 11165 + parent: 2 + - uid: 7402 components: - type: Transform - pos: -34.5,20.5 - parent: 89 - - uid: 11166 + pos: -40.5,21.5 + parent: 2 + - uid: 7403 components: - type: Transform - pos: -33.5,20.5 - parent: 89 - - uid: 11167 + pos: -3.5,35.5 + parent: 2 + - uid: 7404 components: - type: Transform - pos: -32.5,20.5 - parent: 89 - - uid: 11168 + pos: -51.5,31.5 + parent: 2 + - uid: 7405 components: - type: Transform - pos: -31.5,20.5 - parent: 89 - - uid: 11169 + pos: -51.5,29.5 + parent: 2 + - uid: 7406 components: - type: Transform - pos: -30.5,20.5 - parent: 89 - - uid: 11170 + pos: -51.5,30.5 + parent: 2 + - uid: 7407 components: - type: Transform - pos: -29.5,20.5 - parent: 89 - - uid: 11171 + pos: -3.5,36.5 + parent: 2 + - uid: 7408 components: - type: Transform - pos: -28.5,20.5 - parent: 89 - - uid: 11172 + pos: -37.5,22.5 + parent: 2 + - uid: 7409 components: - type: Transform - pos: -27.5,20.5 - parent: 89 - - uid: 11173 + pos: -37.5,23.5 + parent: 2 + - uid: 7410 components: - type: Transform - pos: -27.5,21.5 - parent: 89 - - uid: 11174 + pos: -37.5,24.5 + parent: 2 + - uid: 7411 components: - type: Transform - pos: -27.5,22.5 - parent: 89 - - uid: 11175 + rot: 1.5707963267948966 rad + pos: -23.5,20.5 + parent: 2 + - uid: 7412 components: - type: Transform - pos: -29.5,15.5 - parent: 89 - - uid: 11176 + rot: 1.5707963267948966 rad + pos: -22.5,20.5 + parent: 2 + - uid: 7413 components: - type: Transform - pos: -29.5,14.5 - parent: 89 - - uid: 11177 + rot: 1.5707963267948966 rad + pos: -19.5,20.5 + parent: 2 + - uid: 7414 components: - type: Transform - pos: -29.5,13.5 - parent: 89 - - uid: 11178 + rot: 1.5707963267948966 rad + pos: -17.5,20.5 + parent: 2 + - uid: 7415 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 11179 + rot: 1.5707963267948966 rad + pos: -16.5,20.5 + parent: 2 + - uid: 7416 components: - type: Transform - pos: -27.5,13.5 - parent: 89 - - uid: 11180 + rot: 1.5707963267948966 rad + pos: -3.5,24.5 + parent: 2 + - uid: 7417 components: - type: Transform - pos: -27.5,14.5 - parent: 89 - - uid: 11181 + rot: 1.5707963267948966 rad + pos: -14.5,16.5 + parent: 2 + - uid: 7418 components: - type: Transform - pos: -27.5,15.5 - parent: 89 - - uid: 11219 + rot: 1.5707963267948966 rad + pos: -14.5,18.5 + parent: 2 + - uid: 7419 components: - type: Transform - pos: -117.5,14.5 - parent: 89 - - uid: 11222 + rot: 1.5707963267948966 rad + pos: -14.5,14.5 + parent: 2 + - uid: 7420 components: - type: Transform - pos: -36.5,6.5 - parent: 89 - - uid: 11227 + rot: 1.5707963267948966 rad + pos: -14.5,15.5 + parent: 2 + - uid: 7421 components: - type: Transform - pos: -39.5,23.5 - parent: 89 - - uid: 11276 + rot: 1.5707963267948966 rad + pos: -16.5,14.5 + parent: 2 + - uid: 7422 components: - type: Transform - pos: -21.5,19.5 - parent: 89 - - uid: 11277 + rot: 1.5707963267948966 rad + pos: -19.5,14.5 + parent: 2 + - uid: 7423 components: - type: Transform - pos: -21.5,20.5 - parent: 89 - - uid: 11278 + rot: 1.5707963267948966 rad + pos: -19.5,12.5 + parent: 2 + - uid: 7424 components: - type: Transform - pos: -22.5,20.5 - parent: 89 - - uid: 11279 + rot: 1.5707963267948966 rad + pos: -19.5,13.5 + parent: 2 + - uid: 7425 components: - type: Transform - pos: -23.5,20.5 - parent: 89 - - uid: 11280 + pos: 16.5,26.5 + parent: 2 + - uid: 7426 components: - type: Transform - pos: -24.5,20.5 - parent: 89 - - uid: 11281 + pos: 18.5,26.5 + parent: 2 + - uid: 7427 components: - type: Transform - pos: -25.5,20.5 - parent: 89 - - uid: 11282 + rot: 1.5707963267948966 rad + pos: 14.5,41.5 + parent: 2 + - uid: 7428 components: - type: Transform - pos: -26.5,20.5 - parent: 89 - - uid: 11382 + rot: 1.5707963267948966 rad + pos: 12.5,45.5 + parent: 2 + - uid: 7429 components: - type: Transform - pos: -36.5,7.5 - parent: 89 - - uid: 11383 + rot: 1.5707963267948966 rad + pos: 11.5,45.5 + parent: 2 + - uid: 7430 components: - type: Transform - pos: 16.5,-12.5 - parent: 89 - - uid: 11392 + rot: 1.5707963267948966 rad + pos: 14.5,43.5 + parent: 2 + - uid: 7431 components: - type: Transform - pos: -14.5,17.5 - parent: 89 - - uid: 11393 + rot: 1.5707963267948966 rad + pos: 14.5,42.5 + parent: 2 + - uid: 7432 components: - type: Transform - pos: -14.5,16.5 - parent: 89 - - uid: 11394 + rot: 1.5707963267948966 rad + pos: 14.5,44.5 + parent: 2 + - uid: 7433 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 11395 + rot: 3.141592653589793 rad + pos: -121.5,-10.5 + parent: 2 + - uid: 7434 components: - type: Transform - pos: -14.5,14.5 - parent: 89 - - uid: 11396 + rot: 3.141592653589793 rad + pos: -122.5,-10.5 + parent: 2 + - uid: 7435 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - uid: 11397 + rot: 3.141592653589793 rad + pos: -123.5,-10.5 + parent: 2 + - uid: 7436 components: - type: Transform - pos: -14.5,12.5 - parent: 89 - - uid: 11408 + rot: 3.141592653589793 rad + pos: -124.5,-10.5 + parent: 2 + - uid: 7437 components: - type: Transform - pos: -14.5,20.5 - parent: 89 - - uid: 11409 + rot: 3.141592653589793 rad + pos: -125.5,-10.5 + parent: 2 + - uid: 7438 components: - type: Transform - pos: -14.5,18.5 - parent: 89 - - uid: 11836 + rot: 3.141592653589793 rad + pos: -125.5,-9.5 + parent: 2 + - uid: 7439 components: - type: Transform - pos: -117.5,13.5 - parent: 89 - - uid: 11837 + rot: 3.141592653589793 rad + pos: -125.5,-8.5 + parent: 2 + - uid: 7440 components: - type: Transform - pos: 15.5,-13.5 - parent: 89 - - uid: 11838 + rot: 3.141592653589793 rad + pos: -125.5,-7.5 + parent: 2 + - uid: 7441 components: - type: Transform - pos: 14.5,-13.5 - parent: 89 - - uid: 11839 + rot: 3.141592653589793 rad + pos: -125.5,-6.5 + parent: 2 + - uid: 7442 components: - type: Transform - pos: 13.5,-13.5 - parent: 89 - - uid: 11840 + rot: 3.141592653589793 rad + pos: -125.5,-5.5 + parent: 2 + - uid: 7443 components: - type: Transform - pos: 13.5,-12.5 - parent: 89 - - uid: 11841 + rot: 3.141592653589793 rad + pos: -125.5,-4.5 + parent: 2 + - uid: 7444 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 11842 + rot: 3.141592653589793 rad + pos: -125.5,12.5 + parent: 2 + - uid: 7445 components: - type: Transform - pos: 13.5,-10.5 - parent: 89 - - uid: 11920 + rot: 3.141592653589793 rad + pos: -125.5,11.5 + parent: 2 + - uid: 7446 components: - type: Transform - pos: -36.5,8.5 - parent: 89 - - uid: 11930 + rot: 3.141592653589793 rad + pos: -125.5,10.5 + parent: 2 + - uid: 7447 components: - type: Transform - pos: -119.5,13.5 - parent: 89 - - uid: 11931 + rot: 3.141592653589793 rad + pos: -119.5,15.5 + parent: 2 + - uid: 7448 components: - type: Transform - pos: -119.5,12.5 - parent: 89 - - uid: 11932 + pos: -113.5,-10.5 + parent: 2 + - uid: 7449 components: - type: Transform - pos: -119.5,11.5 - parent: 89 - - uid: 11933 + pos: -114.5,-10.5 + parent: 2 + - uid: 7450 components: - type: Transform - pos: -119.5,10.5 - parent: 89 - - uid: 11934 + pos: -112.5,-10.5 + parent: 2 + - uid: 7451 components: - type: Transform - pos: -119.5,9.5 - parent: 89 - - uid: 11935 + pos: -111.5,-9.5 + parent: 2 + - uid: 7452 components: - type: Transform - pos: -118.5,9.5 - parent: 89 - - uid: 11936 + pos: -111.5,-8.5 + parent: 2 + - uid: 7453 components: - type: Transform - pos: -117.5,9.5 - parent: 89 - - uid: 11937 + pos: -111.5,-7.5 + parent: 2 + - uid: 7454 components: - type: Transform - pos: -116.5,9.5 - parent: 89 - - uid: 11938 + pos: -111.5,-6.5 + parent: 2 + - uid: 7455 components: - type: Transform - pos: -115.5,9.5 - parent: 89 - - uid: 11939 + pos: -111.5,-5.5 + parent: 2 + - uid: 7456 components: - type: Transform - pos: -114.5,9.5 - parent: 89 - - uid: 11940 + pos: -36.5,-16.5 + parent: 2 + - uid: 7457 components: - type: Transform - pos: -113.5,9.5 - parent: 89 - - uid: 11941 + pos: 29.5,22.5 + parent: 2 + - uid: 7458 components: - type: Transform - pos: -112.5,9.5 - parent: 89 - - uid: 11942 + pos: 30.5,22.5 + parent: 2 + - uid: 7459 + components: + - type: Transform + pos: 31.5,22.5 + parent: 2 + - uid: 7460 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 11943 + pos: 32.5,22.5 + parent: 2 + - uid: 7461 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 11944 + pos: 57.5,-22.5 + parent: 2 + - uid: 7462 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 11945 + pos: -35.5,-16.5 + parent: 2 + - uid: 7463 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 11946 + pos: -34.5,-16.5 + parent: 2 + - uid: 7464 components: - type: Transform - pos: -108.5,10.5 - parent: 89 - - uid: 11947 + rot: 1.5707963267948966 rad + pos: -111.5,29.5 + parent: 2 + - uid: 7465 components: - type: Transform - pos: -108.5,11.5 - parent: 89 - - uid: 11948 + rot: 1.5707963267948966 rad + pos: -136.5,11.5 + parent: 2 + - uid: 7466 components: - type: Transform - pos: -108.5,12.5 - parent: 89 - - uid: 11949 + rot: 1.5707963267948966 rad + pos: -134.5,22.5 + parent: 2 + - uid: 7467 components: - type: Transform - pos: -108.5,13.5 - parent: 89 - - uid: 11950 + rot: 1.5707963267948966 rad + pos: -135.5,26.5 + parent: 2 + - uid: 7468 components: - type: Transform - pos: -108.5,14.5 - parent: 89 - - uid: 11951 + rot: 1.5707963267948966 rad + pos: -134.5,26.5 + parent: 2 + - uid: 7469 components: - type: Transform - pos: -105.5,14.5 - parent: 89 - - uid: 11952 + rot: 1.5707963267948966 rad + pos: -133.5,26.5 + parent: 2 + - uid: 7470 components: - type: Transform - pos: -106.5,14.5 - parent: 89 - - uid: 11953 + rot: 1.5707963267948966 rad + pos: -132.5,26.5 + parent: 2 + - uid: 7471 components: - type: Transform - pos: -107.5,14.5 - parent: 89 - - uid: 11954 + rot: 1.5707963267948966 rad + pos: -136.5,17.5 + parent: 2 + - uid: 7472 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 11955 + rot: 1.5707963267948966 rad + pos: -135.5,16.5 + parent: 2 + - uid: 7473 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 11956 + rot: 1.5707963267948966 rad + pos: -138.5,15.5 + parent: 2 + - uid: 7474 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 11957 + rot: 1.5707963267948966 rad + pos: -138.5,16.5 + parent: 2 + - uid: 7475 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 11958 + rot: 1.5707963267948966 rad + pos: -138.5,17.5 + parent: 2 + - uid: 7476 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 11959 + rot: 1.5707963267948966 rad + pos: -133.5,25.5 + parent: 2 + - uid: 7477 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 11960 + rot: 1.5707963267948966 rad + pos: -136.5,16.5 + parent: 2 + - uid: 7478 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 11961 + pos: -123.5,23.5 + parent: 2 + - uid: 7479 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 11962 + pos: -128.5,26.5 + parent: 2 + - uid: 7480 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 11963 + pos: -130.5,26.5 + parent: 2 + - uid: 7481 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 11964 + pos: -126.5,24.5 + parent: 2 + - uid: 7482 components: - type: Transform - pos: -108.5,-1.5 - parent: 89 - - uid: 11965 + pos: -126.5,25.5 + parent: 2 + - uid: 7483 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 11966 + pos: -126.5,26.5 + parent: 2 + - uid: 7484 components: - type: Transform - pos: -108.5,-3.5 - parent: 89 - - uid: 11967 + pos: -127.5,26.5 + parent: 2 + - uid: 7485 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 11968 + pos: -122.5,24.5 + parent: 2 + - uid: 7486 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 11969 + rot: 1.5707963267948966 rad + pos: -104.5,29.5 + parent: 2 + - uid: 7487 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 11970 + rot: 1.5707963267948966 rad + pos: -113.5,29.5 + parent: 2 + - uid: 7488 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 11971 + rot: 1.5707963267948966 rad + pos: -110.5,29.5 + parent: 2 + - uid: 7489 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 11972 + pos: -123.5,24.5 + parent: 2 + - uid: 7490 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 11973 + pos: -124.5,24.5 + parent: 2 + - uid: 7491 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 11974 + pos: -106.5,29.5 + parent: 2 + - uid: 7492 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 11975 + pos: -107.5,29.5 + parent: 2 + - uid: 7493 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 11976 + pos: -129.5,25.5 + parent: 2 + - uid: 7494 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 11977 + pos: -129.5,26.5 + parent: 2 + - uid: 7495 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 11978 + rot: 1.5707963267948966 rad + pos: -136.5,15.5 + parent: 2 + - uid: 7496 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 11979 + rot: 1.5707963267948966 rad + pos: -135.5,22.5 + parent: 2 + - uid: 7497 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 11980 + rot: 1.5707963267948966 rad + pos: -135.5,23.5 + parent: 2 + - uid: 7498 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 11981 + rot: 1.5707963267948966 rad + pos: -135.5,21.5 + parent: 2 + - uid: 7499 components: - type: Transform - pos: -109.5,-1.5 - parent: 89 - - uid: 11982 + rot: 1.5707963267948966 rad + pos: -104.5,30.5 + parent: 2 + - uid: 7500 components: - type: Transform - pos: -110.5,-1.5 - parent: 89 - - uid: 11983 + rot: 1.5707963267948966 rad + pos: -103.5,30.5 + parent: 2 + - uid: 7501 components: - type: Transform - pos: -111.5,-1.5 - parent: 89 - - uid: 11984 + rot: 1.5707963267948966 rad + pos: -11.5,44.5 + parent: 2 + - uid: 7502 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 11985 + rot: 1.5707963267948966 rad + pos: -11.5,45.5 + parent: 2 + - uid: 7503 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 11986 + rot: 1.5707963267948966 rad + pos: -16.5,35.5 + parent: 2 + - uid: 7504 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 11987 + rot: 1.5707963267948966 rad + pos: -13.5,43.5 + parent: 2 + - uid: 7505 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 11988 + rot: 1.5707963267948966 rad + pos: -17.5,35.5 + parent: 2 + - uid: 7506 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 11989 + rot: 1.5707963267948966 rad + pos: -18.5,35.5 + parent: 2 + - uid: 7507 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 11990 + rot: 1.5707963267948966 rad + pos: -11.5,43.5 + parent: 2 + - uid: 7508 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 11991 + rot: 1.5707963267948966 rad + pos: -20.5,36.5 + parent: 2 + - uid: 7509 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 11992 + rot: 1.5707963267948966 rad + pos: -21.5,36.5 + parent: 2 + - uid: 7510 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 11993 + rot: 1.5707963267948966 rad + pos: -22.5,36.5 + parent: 2 + - uid: 7511 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 11995 + rot: 1.5707963267948966 rad + pos: -13.5,44.5 + parent: 2 + - uid: 7512 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 11996 + rot: 1.5707963267948966 rad + pos: -12.5,29.5 + parent: 2 + - uid: 7513 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 11997 + rot: 1.5707963267948966 rad + pos: -11.5,40.5 + parent: 2 + - uid: 7514 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 11998 + rot: 1.5707963267948966 rad + pos: -11.5,39.5 + parent: 2 + - uid: 7515 components: - type: Transform - pos: -98.5,8.5 - parent: 89 - - uid: 12004 + rot: 1.5707963267948966 rad + pos: -11.5,38.5 + parent: 2 + - uid: 7516 components: - type: Transform - pos: -107.5,-3.5 - parent: 89 - - uid: 12005 + rot: 1.5707963267948966 rad + pos: -11.5,36.5 + parent: 2 + - uid: 7517 components: - type: Transform - pos: -106.5,-3.5 - parent: 89 - - uid: 12008 + rot: 1.5707963267948966 rad + pos: -11.5,35.5 + parent: 2 + - uid: 7518 components: - type: Transform - pos: -106.5,-2.5 - parent: 89 - - uid: 12039 + rot: 1.5707963267948966 rad + pos: -11.5,34.5 + parent: 2 + - uid: 7519 components: - type: Transform - pos: -107.5,-17.5 - parent: 89 - - uid: 12040 + rot: 1.5707963267948966 rad + pos: -11.5,33.5 + parent: 2 + - uid: 7520 components: - type: Transform - pos: -106.5,-17.5 - parent: 89 - - uid: 12041 + rot: 1.5707963267948966 rad + pos: -15.5,33.5 + parent: 2 + - uid: 7521 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 - - uid: 12042 + rot: 1.5707963267948966 rad + pos: -14.5,33.5 + parent: 2 + - uid: 7522 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 - - uid: 12043 + rot: 1.5707963267948966 rad + pos: -13.5,33.5 + parent: 2 + - uid: 7523 components: - type: Transform - pos: -105.5,-15.5 - parent: 89 - - uid: 12044 + rot: 1.5707963267948966 rad + pos: -13.5,29.5 + parent: 2 + - uid: 7524 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 - - uid: 12045 + rot: 1.5707963267948966 rad + pos: -14.5,29.5 + parent: 2 + - uid: 7525 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 - - uid: 12046 + rot: 1.5707963267948966 rad + pos: -15.5,29.5 + parent: 2 + - uid: 7526 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 - - uid: 12047 + rot: 1.5707963267948966 rad + pos: -14.5,30.5 + parent: 2 + - uid: 7527 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 12133 + rot: 1.5707963267948966 rad + pos: -14.5,31.5 + parent: 2 + - uid: 7528 components: - type: Transform - pos: -97.5,8.5 - parent: 89 - - uid: 12134 + rot: 1.5707963267948966 rad + pos: -16.5,26.5 + parent: 2 + - uid: 7529 components: - type: Transform - pos: -96.5,8.5 - parent: 89 - - uid: 12135 + rot: 1.5707963267948966 rad + pos: -15.5,26.5 + parent: 2 + - uid: 7530 components: - type: Transform - pos: -95.5,8.5 - parent: 89 - - uid: 12136 + rot: 1.5707963267948966 rad + pos: -12.5,26.5 + parent: 2 + - uid: 7531 components: - type: Transform - pos: -94.5,8.5 - parent: 89 - - uid: 12137 + rot: 1.5707963267948966 rad + pos: -11.5,26.5 + parent: 2 + - uid: 7532 components: - type: Transform - pos: -94.5,7.5 - parent: 89 - - uid: 12138 + rot: 1.5707963267948966 rad + pos: -47.5,47.5 + parent: 2 + - uid: 7533 components: - type: Transform - pos: -94.5,6.5 - parent: 89 - - uid: 12139 + rot: 1.5707963267948966 rad + pos: -35.5,36.5 + parent: 2 + - uid: 7534 components: - type: Transform - pos: -94.5,5.5 - parent: 89 - - uid: 12140 + rot: 1.5707963267948966 rad + pos: -35.5,37.5 + parent: 2 + - uid: 7535 components: - type: Transform - pos: -94.5,4.5 - parent: 89 - - uid: 12141 + rot: 1.5707963267948966 rad + pos: -35.5,35.5 + parent: 2 + - uid: 7536 components: - type: Transform - pos: -94.5,3.5 - parent: 89 - - uid: 12142 + rot: 1.5707963267948966 rad + pos: -34.5,36.5 + parent: 2 + - uid: 7537 components: - type: Transform - pos: -95.5,3.5 - parent: 89 - - uid: 12143 + rot: 1.5707963267948966 rad + pos: -33.5,36.5 + parent: 2 + - uid: 7538 components: - type: Transform - pos: -96.5,3.5 - parent: 89 - - uid: 12196 + rot: 1.5707963267948966 rad + pos: -33.5,37.5 + parent: 2 + - uid: 7539 components: - type: Transform - pos: -102.5,5.5 - parent: 89 - - uid: 12197 + rot: 1.5707963267948966 rad + pos: -24.5,37.5 + parent: 2 + - uid: 7540 components: - type: Transform - pos: -102.5,6.5 - parent: 89 - - uid: 12198 + rot: 1.5707963267948966 rad + pos: -24.5,36.5 + parent: 2 + - uid: 7541 components: - type: Transform - pos: -102.5,7.5 - parent: 89 - - uid: 12199 + rot: 1.5707963267948966 rad + pos: -24.5,35.5 + parent: 2 + - uid: 7542 components: - type: Transform - pos: -102.5,8.5 - parent: 89 - - uid: 12200 + rot: 1.5707963267948966 rad + pos: -26.5,36.5 + parent: 2 + - uid: 7543 components: - type: Transform - pos: -102.5,9.5 - parent: 89 - - uid: 12201 + rot: 1.5707963267948966 rad + pos: -39.5,37.5 + parent: 2 + - uid: 7544 components: - type: Transform - pos: -101.5,9.5 - parent: 89 - - uid: 12203 + rot: 1.5707963267948966 rad + pos: -39.5,36.5 + parent: 2 + - uid: 7545 components: - type: Transform - pos: -100.5,9.5 - parent: 89 - - uid: 12221 + rot: 1.5707963267948966 rad + pos: -39.5,35.5 + parent: 2 + - uid: 7546 components: - type: Transform - pos: -110.5,1.5 - parent: 89 - - uid: 12222 + rot: 1.5707963267948966 rad + pos: -40.5,36.5 + parent: 2 + - uid: 7547 components: - type: Transform - pos: -109.5,1.5 - parent: 89 - - uid: 12223 + rot: 1.5707963267948966 rad + pos: -42.5,35.5 + parent: 2 + - uid: 7548 components: - type: Transform - pos: -111.5,1.5 - parent: 89 - - uid: 12255 + rot: 1.5707963267948966 rad + pos: -42.5,34.5 + parent: 2 + - uid: 7549 components: - type: Transform - pos: -37.5,8.5 - parent: 89 - - uid: 12332 + rot: 1.5707963267948966 rad + pos: -43.5,34.5 + parent: 2 + - uid: 7550 components: - type: Transform - pos: -119.5,16.5 - parent: 89 - - uid: 12333 + rot: 1.5707963267948966 rad + pos: -43.5,33.5 + parent: 2 + - uid: 7551 components: - type: Transform - pos: -119.5,17.5 - parent: 89 - - uid: 12334 + rot: 1.5707963267948966 rad + pos: -47.5,46.5 + parent: 2 + - uid: 7552 components: - type: Transform - pos: -118.5,17.5 - parent: 89 - - uid: 12335 + rot: 1.5707963267948966 rad + pos: -47.5,45.5 + parent: 2 + - uid: 7553 components: - type: Transform - pos: -117.5,17.5 - parent: 89 - - uid: 12336 + rot: 1.5707963267948966 rad + pos: -47.5,44.5 + parent: 2 + - uid: 7554 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 12337 + rot: 1.5707963267948966 rad + pos: -49.5,24.5 + parent: 2 + - uid: 7555 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 12338 + rot: 1.5707963267948966 rad + pos: -47.5,40.5 + parent: 2 + - uid: 7556 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 12339 + rot: 1.5707963267948966 rad + pos: -47.5,39.5 + parent: 2 + - uid: 7557 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 12340 + rot: 1.5707963267948966 rad + pos: -47.5,38.5 + parent: 2 + - uid: 7558 components: - type: Transform - pos: -112.5,17.5 - parent: 89 - - uid: 12341 + rot: 1.5707963267948966 rad + pos: -47.5,37.5 + parent: 2 + - uid: 7559 components: - type: Transform - pos: -111.5,17.5 - parent: 89 - - uid: 12342 + rot: 1.5707963267948966 rad + pos: -48.5,35.5 + parent: 2 + - uid: 7560 components: - type: Transform - pos: -110.5,17.5 - parent: 89 - - uid: 12343 + rot: 1.5707963267948966 rad + pos: -48.5,34.5 + parent: 2 + - uid: 7561 components: - type: Transform - pos: -109.5,17.5 - parent: 89 - - uid: 12344 + rot: 1.5707963267948966 rad + pos: -48.5,33.5 + parent: 2 + - uid: 7562 components: - type: Transform - pos: -108.5,17.5 - parent: 89 - - uid: 12345 + rot: 1.5707963267948966 rad + pos: -48.5,32.5 + parent: 2 + - uid: 7563 components: - type: Transform - pos: -108.5,18.5 - parent: 89 - - uid: 12346 + rot: 1.5707963267948966 rad + pos: -48.5,31.5 + parent: 2 + - uid: 7564 components: - type: Transform - pos: -108.5,19.5 - parent: 89 - - uid: 12347 + rot: 1.5707963267948966 rad + pos: -48.5,24.5 + parent: 2 + - uid: 7565 components: - type: Transform - pos: -108.5,20.5 - parent: 89 - - uid: 12348 + rot: 1.5707963267948966 rad + pos: -48.5,25.5 + parent: 2 + - uid: 7566 components: - type: Transform - pos: -108.5,21.5 - parent: 89 - - uid: 12349 + rot: 1.5707963267948966 rad + pos: -47.5,24.5 + parent: 2 + - uid: 7567 components: - type: Transform - pos: -107.5,21.5 - parent: 89 - - uid: 12350 + rot: 1.5707963267948966 rad + pos: -49.5,27.5 + parent: 2 + - uid: 7568 components: - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 12396 + rot: 1.5707963267948966 rad + pos: -48.5,27.5 + parent: 2 + - uid: 7569 components: - type: Transform - pos: -107.5,17.5 - parent: 89 - - uid: 12397 + rot: 1.5707963267948966 rad + pos: -43.5,27.5 + parent: 2 + - uid: 7570 components: - type: Transform - pos: -106.5,17.5 - parent: 89 - - uid: 12398 + rot: 1.5707963267948966 rad + pos: -43.5,26.5 + parent: 2 + - uid: 7571 components: - type: Transform - pos: -105.5,17.5 - parent: 89 - - uid: 12399 + rot: 1.5707963267948966 rad + pos: -34.5,38.5 + parent: 2 + - uid: 7572 components: - type: Transform - pos: -104.5,17.5 - parent: 89 - - uid: 12400 + rot: 1.5707963267948966 rad + pos: -10.5,49.5 + parent: 2 + - uid: 7573 components: - type: Transform - pos: -103.5,17.5 - parent: 89 - - uid: 12401 + rot: 1.5707963267948966 rad + pos: -9.5,49.5 + parent: 2 + - uid: 7574 components: - type: Transform - pos: -102.5,17.5 - parent: 89 - - uid: 12402 + rot: 1.5707963267948966 rad + pos: -8.5,49.5 + parent: 2 + - uid: 7575 components: - type: Transform - pos: -101.5,17.5 - parent: 89 - - uid: 12403 + rot: 1.5707963267948966 rad + pos: -7.5,49.5 + parent: 2 + - uid: 7576 components: - type: Transform - pos: -100.5,17.5 - parent: 89 - - uid: 12404 + rot: 1.5707963267948966 rad + pos: -7.5,48.5 + parent: 2 + - uid: 7577 components: - type: Transform - pos: -100.5,18.5 - parent: 89 - - uid: 12405 + rot: 1.5707963267948966 rad + pos: -4.5,49.5 + parent: 2 + - uid: 7578 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 12406 + rot: 1.5707963267948966 rad + pos: -4.5,48.5 + parent: 2 + - uid: 7579 components: - type: Transform - pos: -100.5,20.5 - parent: 89 - - uid: 12407 + rot: 1.5707963267948966 rad + pos: -3.5,49.5 + parent: 2 + - uid: 7580 components: - type: Transform - pos: -100.5,21.5 - parent: 89 - - uid: 12408 + rot: 1.5707963267948966 rad + pos: -2.5,49.5 + parent: 2 + - uid: 7581 components: - type: Transform - pos: -100.5,22.5 - parent: 89 - - uid: 12409 + rot: 1.5707963267948966 rad + pos: -1.5,49.5 + parent: 2 + - uid: 7582 components: - type: Transform - pos: -99.5,22.5 - parent: 89 - - uid: 12410 + rot: 1.5707963267948966 rad + pos: -0.5,49.5 + parent: 2 + - uid: 7583 components: - type: Transform - pos: -99.5,23.5 - parent: 89 - - uid: 12411 + rot: 1.5707963267948966 rad + pos: -1.5,48.5 + parent: 2 + - uid: 7584 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 12412 + rot: 1.5707963267948966 rad + pos: 0.5,48.5 + parent: 2 + - uid: 7585 components: - type: Transform - pos: -99.5,25.5 - parent: 89 - - uid: 12413 + rot: 1.5707963267948966 rad + pos: 0.5,49.5 + parent: 2 + - uid: 7586 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 12414 + rot: 1.5707963267948966 rad + pos: 2.5,49.5 + parent: 2 + - uid: 7587 components: - type: Transform - pos: -101.5,25.5 - parent: 89 - - uid: 12431 + rot: 1.5707963267948966 rad + pos: 3.5,49.5 + parent: 2 + - uid: 7588 components: - type: Transform - pos: -118.5,14.5 - parent: 89 - - uid: 12609 + rot: 1.5707963267948966 rad + pos: 4.5,49.5 + parent: 2 + - uid: 7589 components: - type: Transform - pos: -9.5,23.5 - parent: 89 - - uid: 12622 + rot: 1.5707963267948966 rad + pos: 5.5,49.5 + parent: 2 + - uid: 7590 components: - type: Transform - pos: -37.5,9.5 - parent: 89 - - uid: 12651 + rot: 1.5707963267948966 rad + pos: 6.5,49.5 + parent: 2 + - uid: 7591 components: - type: Transform - pos: -36.5,11.5 - parent: 89 - - uid: 12662 + rot: 1.5707963267948966 rad + pos: 6.5,48.5 + parent: 2 + - uid: 7592 components: - type: Transform - pos: -35.5,11.5 - parent: 89 - - uid: 12777 + rot: 1.5707963267948966 rad + pos: 6.5,47.5 + parent: 2 + - uid: 7593 components: - type: Transform - pos: 55.5,-7.5 - parent: 89 - - uid: 12822 + rot: 1.5707963267948966 rad + pos: 6.5,46.5 + parent: 2 + - uid: 7594 components: - type: Transform - pos: 22.5,31.5 - parent: 89 - - uid: 13118 + rot: 1.5707963267948966 rad + pos: 6.5,45.5 + parent: 2 + - uid: 7595 components: - type: Transform - pos: -15.5,14.5 - parent: 89 - - uid: 13119 + rot: 1.5707963267948966 rad + pos: 6.5,44.5 + parent: 2 + - uid: 7596 components: - type: Transform - pos: -16.5,14.5 - parent: 89 - - uid: 13120 + rot: 1.5707963267948966 rad + pos: 6.5,43.5 + parent: 2 + - uid: 7597 components: - type: Transform - pos: -17.5,14.5 - parent: 89 - - uid: 13121 + rot: 1.5707963267948966 rad + pos: 5.5,45.5 + parent: 2 + - uid: 7598 components: - type: Transform - pos: -18.5,14.5 - parent: 89 - - uid: 13122 + rot: 1.5707963267948966 rad + pos: 5.5,47.5 + parent: 2 + - uid: 7599 components: - type: Transform - pos: -19.5,14.5 - parent: 89 - - uid: 13123 + rot: 1.5707963267948966 rad + pos: 7.5,45.5 + parent: 2 + - uid: 7600 components: - type: Transform - pos: -19.5,13.5 - parent: 89 - - uid: 13124 + rot: 1.5707963267948966 rad + pos: 5.5,42.5 + parent: 2 + - uid: 7601 components: - type: Transform - pos: -19.5,12.5 - parent: 89 - - uid: 13125 + rot: 1.5707963267948966 rad + pos: 6.5,42.5 + parent: 2 + - uid: 7602 components: - type: Transform - pos: -19.5,11.5 - parent: 89 - - uid: 13126 + rot: 1.5707963267948966 rad + pos: 5.5,40.5 + parent: 2 + - uid: 7603 components: - type: Transform - pos: -19.5,10.5 - parent: 89 - - uid: 13127 + rot: 1.5707963267948966 rad + pos: 6.5,40.5 + parent: 2 + - uid: 7604 components: - type: Transform - pos: -18.5,10.5 - parent: 89 - - uid: 13140 + rot: 1.5707963267948966 rad + pos: 6.5,41.5 + parent: 2 + - uid: 7605 components: - type: Transform - pos: -14.5,11.5 - parent: 89 - - uid: 13141 + rot: 1.5707963267948966 rad + pos: 14.5,40.5 + parent: 2 + - uid: 7606 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 13142 + rot: 1.5707963267948966 rad + pos: 14.5,39.5 + parent: 2 + - uid: 7607 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 13143 + rot: 1.5707963267948966 rad + pos: 34.5,32.5 + parent: 2 + - uid: 7608 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 13144 + rot: 1.5707963267948966 rad + pos: 35.5,32.5 + parent: 2 + - uid: 7609 components: - type: Transform - pos: -14.5,7.5 - parent: 89 - - uid: 13145 + rot: 1.5707963267948966 rad + pos: 35.5,31.5 + parent: 2 + - uid: 7610 components: - type: Transform - pos: -14.5,6.5 - parent: 89 - - uid: 13146 + rot: 1.5707963267948966 rad + pos: 35.5,30.5 + parent: 2 + - uid: 7611 components: - type: Transform - pos: -13.5,6.5 - parent: 89 - - uid: 13147 + rot: 1.5707963267948966 rad + pos: 35.5,29.5 + parent: 2 + - uid: 7612 components: - type: Transform - pos: -12.5,6.5 - parent: 89 - - uid: 13148 + rot: 1.5707963267948966 rad + pos: 36.5,30.5 + parent: 2 + - uid: 7613 components: - type: Transform - pos: -11.5,6.5 - parent: 89 - - uid: 13149 + rot: 3.141592653589793 rad + pos: -24.5,-30.5 + parent: 2 + - uid: 7614 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 13150 + rot: 1.5707963267948966 rad + pos: 68.5,-2.5 + parent: 2 + - uid: 7615 components: - type: Transform - pos: -10.5,5.5 - parent: 89 - - uid: 13188 + rot: 1.5707963267948966 rad + pos: 68.5,-3.5 + parent: 2 + - uid: 7616 components: - type: Transform - pos: -11.5,7.5 - parent: 89 - - uid: 13189 + rot: 1.5707963267948966 rad + pos: 67.5,-0.5 + parent: 2 + - uid: 7617 components: - type: Transform - pos: -10.5,7.5 - parent: 89 - - uid: 13190 + rot: 1.5707963267948966 rad + pos: 67.5,-1.5 + parent: 2 + - uid: 7618 components: - type: Transform - pos: -9.5,7.5 - parent: 89 - - uid: 13191 + rot: 1.5707963267948966 rad + pos: 67.5,-2.5 + parent: 2 + - uid: 7619 components: - type: Transform - pos: -8.5,7.5 - parent: 89 - - uid: 13192 + rot: 1.5707963267948966 rad + pos: 67.5,-4.5 + parent: 2 + - uid: 7620 components: - type: Transform - pos: -7.5,7.5 - parent: 89 - - uid: 13193 + rot: 1.5707963267948966 rad + pos: 67.5,-5.5 + parent: 2 + - uid: 7621 components: - type: Transform - pos: -6.5,7.5 - parent: 89 - - uid: 13194 + rot: 1.5707963267948966 rad + pos: 64.5,-7.5 + parent: 2 + - uid: 7622 components: - type: Transform - pos: -6.5,8.5 - parent: 89 - - uid: 13195 + rot: 1.5707963267948966 rad + pos: 63.5,-7.5 + parent: 2 + - uid: 7623 components: - type: Transform - pos: -6.5,9.5 - parent: 89 - - uid: 13196 + rot: 1.5707963267948966 rad + pos: 62.5,-7.5 + parent: 2 + - uid: 7624 components: - type: Transform - pos: -6.5,10.5 - parent: 89 - - uid: 13197 + rot: 1.5707963267948966 rad + pos: 62.5,-8.5 + parent: 2 + - uid: 7625 components: - type: Transform - pos: -6.5,11.5 - parent: 89 - - uid: 13198 + rot: 1.5707963267948966 rad + pos: 62.5,-9.5 + parent: 2 + - uid: 7626 components: - type: Transform - pos: -6.5,12.5 - parent: 89 - - uid: 13199 + rot: 1.5707963267948966 rad + pos: 61.5,-9.5 + parent: 2 + - uid: 7627 components: - type: Transform - pos: -6.5,13.5 - parent: 89 - - uid: 13200 + rot: 1.5707963267948966 rad + pos: 60.5,-9.5 + parent: 2 + - uid: 7628 components: - type: Transform - pos: -6.5,14.5 - parent: 89 - - uid: 13211 + rot: 1.5707963267948966 rad + pos: 60.5,-8.5 + parent: 2 + - uid: 7629 components: - type: Transform - pos: -29.5,-0.5 - parent: 89 - - uid: 13212 + rot: 3.141592653589793 rad + pos: 33.5,-19.5 + parent: 2 + - uid: 7630 components: - type: Transform - pos: -28.5,-0.5 - parent: 89 - - uid: 13213 + pos: 29.5,-16.5 + parent: 2 + - uid: 7631 components: - type: Transform - pos: -28.5,0.5 - parent: 89 - - uid: 13308 + rot: 3.141592653589793 rad + pos: 9.5,-31.5 + parent: 2 + - uid: 7632 components: - type: Transform - pos: -82.5,-4.5 - parent: 89 - - uid: 13309 + rot: 3.141592653589793 rad + pos: 11.5,-21.5 + parent: 2 + - uid: 7633 components: - type: Transform - pos: -82.5,-3.5 - parent: 89 - - uid: 13310 + rot: 3.141592653589793 rad + pos: 11.5,-22.5 + parent: 2 + - uid: 7634 components: - type: Transform - pos: -82.5,-2.5 - parent: 89 - - uid: 13311 + rot: 3.141592653589793 rad + pos: 11.5,-23.5 + parent: 2 + - uid: 7635 components: - type: Transform - pos: -82.5,-1.5 - parent: 89 - - uid: 13312 + rot: 3.141592653589793 rad + pos: 10.5,-25.5 + parent: 2 + - uid: 7636 components: - type: Transform - pos: -82.5,-0.5 - parent: 89 - - uid: 13313 + rot: 3.141592653589793 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 7637 components: - type: Transform - pos: -82.5,0.5 - parent: 89 - - uid: 13314 + rot: 3.141592653589793 rad + pos: 11.5,-25.5 + parent: 2 + - uid: 7638 components: - type: Transform - pos: -81.5,0.5 - parent: 89 - - uid: 13315 + rot: 3.141592653589793 rad + pos: 9.5,-25.5 + parent: 2 + - uid: 7639 components: - type: Transform - pos: -81.5,1.5 - parent: 89 - - uid: 13316 + rot: 3.141592653589793 rad + pos: 9.5,-28.5 + parent: 2 + - uid: 7640 components: - type: Transform - pos: -81.5,2.5 - parent: 89 - - uid: 13317 + rot: 3.141592653589793 rad + pos: 11.5,-28.5 + parent: 2 + - uid: 7641 components: - type: Transform - pos: -81.5,3.5 - parent: 89 - - uid: 13318 + rot: 3.141592653589793 rad + pos: 10.5,-28.5 + parent: 2 + - uid: 7642 components: - type: Transform - pos: -81.5,4.5 - parent: 89 - - uid: 13319 + rot: 3.141592653589793 rad + pos: 11.5,-27.5 + parent: 2 + - uid: 7643 components: - type: Transform - pos: -80.5,4.5 - parent: 89 - - uid: 13320 + rot: 3.141592653589793 rad + pos: 11.5,-26.5 + parent: 2 + - uid: 7644 components: - type: Transform - pos: -79.5,4.5 - parent: 89 - - uid: 13321 + rot: 3.141592653589793 rad + pos: 11.5,-30.5 + parent: 2 + - uid: 7645 components: - type: Transform - pos: -78.5,4.5 - parent: 89 - - uid: 13322 + rot: 3.141592653589793 rad + pos: 11.5,-31.5 + parent: 2 + - uid: 7646 components: - type: Transform - pos: -77.5,4.5 - parent: 89 - - uid: 13323 + rot: 3.141592653589793 rad + pos: 8.5,-31.5 + parent: 2 + - uid: 7647 components: - type: Transform - pos: -76.5,4.5 - parent: 89 - - uid: 13324 + rot: 3.141592653589793 rad + pos: 8.5,-32.5 + parent: 2 + - uid: 7648 components: - type: Transform - pos: -76.5,3.5 - parent: 89 - - uid: 13325 + rot: 3.141592653589793 rad + pos: 8.5,-33.5 + parent: 2 + - uid: 7649 components: - type: Transform - pos: -76.5,2.5 - parent: 89 - - uid: 13326 + rot: 3.141592653589793 rad + pos: 7.5,-33.5 + parent: 2 + - uid: 7650 components: - type: Transform - pos: -76.5,1.5 - parent: 89 - - uid: 13327 + rot: 3.141592653589793 rad + pos: 7.5,-34.5 + parent: 2 + - uid: 7651 components: - type: Transform - pos: -77.5,1.5 - parent: 89 - - uid: 13328 + rot: 3.141592653589793 rad + pos: 6.5,-34.5 + parent: 2 + - uid: 7652 components: - type: Transform - pos: -78.5,1.5 - parent: 89 - - uid: 13329 + rot: 3.141592653589793 rad + pos: 5.5,-34.5 + parent: 2 + - uid: 7653 components: - type: Transform - pos: -79.5,1.5 - parent: 89 - - uid: 13330 + rot: 3.141592653589793 rad + pos: 4.5,-34.5 + parent: 2 + - uid: 7654 components: - type: Transform - pos: -79.5,2.5 - parent: 89 - - uid: 13462 + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 7655 components: - type: Transform - pos: -51.5,28.5 - parent: 89 - - uid: 13463 + rot: 3.141592653589793 rad + pos: 3.5,-34.5 + parent: 2 + - uid: 7656 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 13464 + rot: 3.141592653589793 rad + pos: 1.5,-34.5 + parent: 2 + - uid: 7657 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 13465 + rot: 3.141592653589793 rad + pos: 2.5,-34.5 + parent: 2 + - uid: 7658 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 13466 + rot: 3.141592653589793 rad + pos: 3.5,-35.5 + parent: 2 + - uid: 7659 components: - type: Transform - pos: -52.5,29.5 - parent: 89 - - uid: 13467 + rot: 3.141592653589793 rad + pos: 3.5,-36.5 + parent: 2 + - uid: 7660 components: - type: Transform - pos: -52.5,31.5 - parent: 89 - - uid: 13468 + rot: 3.141592653589793 rad + pos: 5.5,-35.5 + parent: 2 + - uid: 7661 components: - type: Transform - pos: -52.5,32.5 - parent: 89 - - uid: 13469 + rot: 3.141592653589793 rad + pos: 5.5,-36.5 + parent: 2 + - uid: 7662 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 13470 + rot: 3.141592653589793 rad + pos: 5.5,-37.5 + parent: 2 + - uid: 7663 components: - type: Transform - pos: -52.5,34.5 - parent: 89 - - uid: 13471 + rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 2 + - uid: 7664 components: - type: Transform - pos: -52.5,35.5 - parent: 89 - - uid: 13472 + rot: 3.141592653589793 rad + pos: 5.5,-38.5 + parent: 2 + - uid: 7665 components: - type: Transform - pos: -53.5,35.5 - parent: 89 - - uid: 13473 + rot: 3.141592653589793 rad + pos: 5.5,-40.5 + parent: 2 + - uid: 7666 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 13474 + rot: 3.141592653589793 rad + pos: 5.5,-41.5 + parent: 2 + - uid: 7667 components: - type: Transform - pos: -55.5,35.5 - parent: 89 - - uid: 13475 + rot: 3.141592653589793 rad + pos: 5.5,-43.5 + parent: 2 + - uid: 7668 components: - type: Transform - pos: -56.5,35.5 - parent: 89 - - uid: 13476 + rot: 3.141592653589793 rad + pos: 5.5,-45.5 + parent: 2 + - uid: 7669 components: - type: Transform - pos: -56.5,34.5 - parent: 89 - - uid: 13477 + rot: 3.141592653589793 rad + pos: 5.5,-44.5 + parent: 2 + - uid: 7670 components: - type: Transform - pos: -56.5,33.5 - parent: 89 - - uid: 13478 + rot: 3.141592653589793 rad + pos: 5.5,-48.5 + parent: 2 + - uid: 7671 components: - type: Transform - pos: -57.5,33.5 - parent: 89 - - uid: 13479 + rot: 3.141592653589793 rad + pos: 3.5,-48.5 + parent: 2 + - uid: 7672 components: - type: Transform - pos: -58.5,33.5 - parent: 89 - - uid: 13480 + rot: 3.141592653589793 rad + pos: -10.5,-44.5 + parent: 2 + - uid: 7673 components: - type: Transform - pos: -59.5,33.5 - parent: 89 - - uid: 13481 + rot: 3.141592653589793 rad + pos: 1.5,-48.5 + parent: 2 + - uid: 7674 components: - type: Transform - pos: -59.5,32.5 - parent: 89 - - uid: 13482 + rot: 3.141592653589793 rad + pos: -0.5,-48.5 + parent: 2 + - uid: 7675 components: - type: Transform - pos: -59.5,31.5 - parent: 89 - - uid: 13483 + rot: 3.141592653589793 rad + pos: -2.5,-48.5 + parent: 2 + - uid: 7676 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 13634 + rot: 3.141592653589793 rad + pos: -6.5,-48.5 + parent: 2 + - uid: 7677 components: - type: Transform - pos: -67.5,15.5 - parent: 89 - - uid: 13635 + rot: 3.141592653589793 rad + pos: 2.5,-48.5 + parent: 2 + - uid: 7678 components: - type: Transform - pos: -67.5,14.5 - parent: 89 - - uid: 13636 + rot: 3.141592653589793 rad + pos: 0.5,-48.5 + parent: 2 + - uid: 7679 components: - type: Transform - pos: -67.5,13.5 - parent: 89 - - uid: 13637 + rot: 3.141592653589793 rad + pos: 3.5,-47.5 + parent: 2 + - uid: 7680 components: - type: Transform - pos: -67.5,12.5 - parent: 89 - - uid: 13638 + rot: 3.141592653589793 rad + pos: -1.5,-48.5 + parent: 2 + - uid: 7681 components: - type: Transform - pos: -67.5,11.5 - parent: 89 - - uid: 13639 + rot: 3.141592653589793 rad + pos: -9.5,-48.5 + parent: 2 + - uid: 7682 components: - type: Transform - pos: -67.5,10.5 - parent: 89 - - uid: 13640 + rot: 3.141592653589793 rad + pos: -5.5,-48.5 + parent: 2 + - uid: 7683 components: - type: Transform - pos: -67.5,9.5 - parent: 89 - - uid: 13641 + rot: 3.141592653589793 rad + pos: -5.5,-47.5 + parent: 2 + - uid: 7684 components: - type: Transform - pos: -68.5,9.5 - parent: 89 - - uid: 13642 + rot: 3.141592653589793 rad + pos: -4.5,-48.5 + parent: 2 + - uid: 7685 components: - type: Transform - pos: -69.5,9.5 - parent: 89 - - uid: 13643 + rot: 3.141592653589793 rad + pos: -7.5,-48.5 + parent: 2 + - uid: 7686 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 13644 + rot: 3.141592653589793 rad + pos: -10.5,-48.5 + parent: 2 + - uid: 7687 components: - type: Transform - pos: -71.5,9.5 - parent: 89 - - uid: 13645 + rot: 3.141592653589793 rad + pos: -10.5,-47.5 + parent: 2 + - uid: 7688 components: - type: Transform - pos: -72.5,9.5 - parent: 89 - - uid: 13646 + rot: 3.141592653589793 rad + pos: -10.5,-46.5 + parent: 2 + - uid: 7689 components: - type: Transform - pos: -72.5,10.5 - parent: 89 - - uid: 13647 + rot: 3.141592653589793 rad + pos: -9.5,-46.5 + parent: 2 + - uid: 7690 components: - type: Transform - pos: -72.5,11.5 - parent: 89 - - uid: 13648 + rot: 3.141592653589793 rad + pos: -9.5,-43.5 + parent: 2 + - uid: 7691 components: - type: Transform - pos: -72.5,12.5 - parent: 89 - - uid: 13649 + rot: 3.141592653589793 rad + pos: -10.5,-43.5 + parent: 2 + - uid: 7692 components: - type: Transform - pos: -72.5,13.5 - parent: 89 - - uid: 13650 + rot: 3.141592653589793 rad + pos: -10.5,-40.5 + parent: 2 + - uid: 7693 components: - type: Transform - pos: -72.5,14.5 - parent: 89 - - uid: 13651 + rot: 3.141592653589793 rad + pos: -10.5,-41.5 + parent: 2 + - uid: 7694 components: - type: Transform - pos: -72.5,15.5 - parent: 89 - - uid: 13652 + rot: 3.141592653589793 rad + pos: -10.5,-42.5 + parent: 2 + - uid: 7695 components: - type: Transform - pos: -72.5,16.5 - parent: 89 - - uid: 13653 + rot: 3.141592653589793 rad + pos: -10.5,-39.5 + parent: 2 + - uid: 7696 components: - type: Transform - pos: -73.5,16.5 - parent: 89 - - uid: 13654 + rot: 3.141592653589793 rad + pos: -9.5,-39.5 + parent: 2 + - uid: 7697 components: - type: Transform - pos: -74.5,16.5 - parent: 89 - - uid: 13655 + rot: 3.141592653589793 rad + pos: -12.5,-39.5 + parent: 2 + - uid: 7698 components: - type: Transform - pos: -75.5,16.5 - parent: 89 - - uid: 13656 + rot: 3.141592653589793 rad + pos: -14.5,-37.5 + parent: 2 + - uid: 7699 components: - type: Transform - pos: -76.5,16.5 - parent: 89 - - uid: 13657 + rot: 3.141592653589793 rad + pos: -13.5,-39.5 + parent: 2 + - uid: 7700 components: - type: Transform - pos: -77.5,16.5 - parent: 89 - - uid: 13658 + rot: 3.141592653589793 rad + pos: -13.5,-38.5 + parent: 2 + - uid: 7701 components: - type: Transform - pos: -78.5,16.5 - parent: 89 - - uid: 13659 + rot: 3.141592653589793 rad + pos: -14.5,-39.5 + parent: 2 + - uid: 7702 components: - type: Transform - pos: -79.5,16.5 - parent: 89 - - uid: 13660 + rot: 3.141592653589793 rad + pos: -15.5,-39.5 + parent: 2 + - uid: 7703 components: - type: Transform - pos: -80.5,16.5 - parent: 89 - - uid: 13661 + rot: 3.141592653589793 rad + pos: -15.5,-38.5 + parent: 2 + - uid: 7704 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 13662 + rot: 3.141592653589793 rad + pos: -15.5,-37.5 + parent: 2 + - uid: 7705 components: - type: Transform - pos: -81.5,15.5 - parent: 89 - - uid: 13663 + rot: 3.141592653589793 rad + pos: -15.5,-34.5 + parent: 2 + - uid: 7706 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - uid: 13664 + rot: 3.141592653589793 rad + pos: -14.5,-34.5 + parent: 2 + - uid: 7707 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 13665 + rot: 3.141592653589793 rad + pos: -15.5,-33.5 + parent: 2 + - uid: 7708 components: - type: Transform - pos: -82.5,13.5 - parent: 89 - - uid: 13666 + rot: 3.141592653589793 rad + pos: -15.5,-35.5 + parent: 2 + - uid: 7709 components: - type: Transform - pos: -83.5,13.5 - parent: 89 - - uid: 13667 + rot: 3.141592653589793 rad + pos: -15.5,-31.5 + parent: 2 + - uid: 7710 components: - type: Transform - pos: -84.5,13.5 - parent: 89 - - uid: 13668 + rot: 3.141592653589793 rad + pos: -15.5,-30.5 + parent: 2 + - uid: 7711 components: - type: Transform - pos: -85.5,13.5 - parent: 89 - - uid: 13669 + rot: 3.141592653589793 rad + pos: -14.5,-30.5 + parent: 2 + - uid: 7712 components: - type: Transform - pos: -85.5,14.5 - parent: 89 - - uid: 13670 + rot: 3.141592653589793 rad + pos: -15.5,-29.5 + parent: 2 + - uid: 7713 components: - type: Transform - pos: -85.5,15.5 - parent: 89 - - uid: 13671 + rot: 3.141592653589793 rad + pos: -16.5,-30.5 + parent: 2 + - uid: 7714 components: - type: Transform - pos: -87.5,16.5 - parent: 89 - - uid: 13672 + rot: 3.141592653589793 rad + pos: -17.5,-30.5 + parent: 2 + - uid: 7715 components: - type: Transform - pos: -86.5,16.5 - parent: 89 - - uid: 13673 + rot: 3.141592653589793 rad + pos: -18.5,-30.5 + parent: 2 + - uid: 7716 components: - type: Transform - pos: -86.5,15.5 - parent: 89 - - uid: 13674 + rot: 3.141592653589793 rad + pos: -18.5,-29.5 + parent: 2 + - uid: 7717 components: - type: Transform - pos: -87.5,17.5 - parent: 89 - - uid: 13675 + rot: 3.141592653589793 rad + pos: -19.5,-30.5 + parent: 2 + - uid: 7718 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 13676 + rot: 3.141592653589793 rad + pos: -20.5,-30.5 + parent: 2 + - uid: 7719 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 13677 + rot: 3.141592653589793 rad + pos: -22.5,-30.5 + parent: 2 + - uid: 7720 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 13678 + rot: 3.141592653589793 rad + pos: -38.5,-20.5 + parent: 2 + - uid: 7721 components: - type: Transform - pos: -88.5,20.5 - parent: 89 - - uid: 13679 + rot: 3.141592653589793 rad + pos: -23.5,-29.5 + parent: 2 + - uid: 7722 components: - type: Transform - pos: -89.5,20.5 - parent: 89 - - uid: 13680 + rot: 3.141592653589793 rad + pos: -23.5,-30.5 + parent: 2 + - uid: 7723 components: - type: Transform - pos: -90.5,20.5 - parent: 89 - - uid: 13756 + rot: 3.141592653589793 rad + pos: -25.5,-30.5 + parent: 2 + - uid: 7724 components: - type: Transform - pos: -75.5,4.5 - parent: 89 - - uid: 13757 + rot: 3.141592653589793 rad + pos: -27.5,-29.5 + parent: 2 + - uid: 7725 components: - type: Transform - pos: -74.5,4.5 - parent: 89 - - uid: 13758 + rot: 3.141592653589793 rad + pos: -27.5,-30.5 + parent: 2 + - uid: 7726 components: - type: Transform - pos: -73.5,4.5 - parent: 89 - - uid: 13759 + rot: 3.141592653589793 rad + pos: -28.5,-30.5 + parent: 2 + - uid: 7727 components: - type: Transform - pos: -72.5,4.5 - parent: 89 - - uid: 13760 + rot: 3.141592653589793 rad + pos: -29.5,-27.5 + parent: 2 + - uid: 7728 components: - type: Transform - pos: -71.5,4.5 - parent: 89 - - uid: 13761 + rot: 3.141592653589793 rad + pos: -29.5,-28.5 + parent: 2 + - uid: 7729 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13779 + rot: 3.141592653589793 rad + pos: -28.5,-27.5 + parent: 2 + - uid: 7730 components: - type: Transform - pos: -70.5,4.5 - parent: 89 - - uid: 13780 + rot: 3.141592653589793 rad + pos: -29.5,-26.5 + parent: 2 + - uid: 7731 components: - type: Transform - pos: -69.5,4.5 - parent: 89 - - uid: 13781 + rot: 3.141592653589793 rad + pos: -28.5,-23.5 + parent: 2 + - uid: 7732 components: - type: Transform - pos: -68.5,4.5 - parent: 89 - - uid: 13782 + rot: 3.141592653589793 rad + pos: -29.5,-23.5 + parent: 2 + - uid: 7733 components: - type: Transform - pos: -67.5,4.5 - parent: 89 - - uid: 13783 + rot: 3.141592653589793 rad + pos: -29.5,-24.5 + parent: 2 + - uid: 7734 components: - type: Transform - pos: -66.5,4.5 - parent: 89 - - uid: 13784 + rot: 3.141592653589793 rad + pos: -29.5,-22.5 + parent: 2 + - uid: 7735 components: - type: Transform - pos: -65.5,4.5 - parent: 89 - - uid: 13785 + rot: 3.141592653589793 rad + pos: -29.5,-20.5 + parent: 2 + - uid: 7736 components: - type: Transform - pos: -64.5,4.5 - parent: 89 - - uid: 13786 + rot: 3.141592653589793 rad + pos: -28.5,-20.5 + parent: 2 + - uid: 7737 components: - type: Transform - pos: -64.5,5.5 - parent: 89 - - uid: 13787 + rot: 3.141592653589793 rad + pos: -29.5,-19.5 + parent: 2 + - uid: 7738 components: - type: Transform - pos: -64.5,6.5 - parent: 89 - - uid: 13850 + rot: 3.141592653589793 rad + pos: -39.5,-19.5 + parent: 2 + - uid: 7739 components: - type: Transform - pos: -37.5,-8.5 - parent: 89 - - uid: 13851 + rot: 3.141592653589793 rad + pos: -39.5,-20.5 + parent: 2 + - uid: 7740 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 13852 + rot: 3.141592653589793 rad + pos: -37.5,-20.5 + parent: 2 + - uid: 7741 components: - type: Transform - pos: -37.5,-6.5 - parent: 89 - - uid: 13853 + rot: 3.141592653589793 rad + pos: -36.5,-20.5 + parent: 2 + - uid: 7742 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 13854 + rot: 3.141592653589793 rad + pos: -33.5,-20.5 + parent: 2 + - uid: 7743 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 13855 + rot: 3.141592653589793 rad + pos: -32.5,-20.5 + parent: 2 + - uid: 7744 components: - type: Transform - pos: -38.5,-4.5 - parent: 89 - - uid: 13856 + rot: 3.141592653589793 rad + pos: -31.5,-20.5 + parent: 2 + - uid: 7745 components: - type: Transform - pos: -39.5,-4.5 - parent: 89 - - uid: 13857 + rot: 3.141592653589793 rad + pos: -31.5,-19.5 + parent: 2 + - uid: 7746 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 - - uid: 13858 + rot: 3.141592653589793 rad + pos: -34.5,-22.5 + parent: 2 + - uid: 7747 components: - type: Transform - pos: -41.5,-4.5 - parent: 89 - - uid: 13859 + rot: 3.141592653589793 rad + pos: -32.5,-22.5 + parent: 2 + - uid: 7748 components: - type: Transform - pos: -42.5,-4.5 - parent: 89 - - uid: 13860 + pos: 57.5,-19.5 + parent: 2 + - uid: 7749 components: - type: Transform - pos: -43.5,-4.5 - parent: 89 - - uid: 13861 + pos: 57.5,-20.5 + parent: 2 + - uid: 7750 components: - type: Transform - pos: -43.5,-5.5 - parent: 89 - - uid: 13862 + pos: 57.5,-18.5 + parent: 2 + - uid: 7751 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 13863 + pos: -99.5,25.5 + parent: 2 + - uid: 7752 components: - type: Transform - pos: -44.5,-6.5 - parent: 89 - - uid: 13864 + pos: -100.5,25.5 + parent: 2 + - uid: 7753 components: - type: Transform - pos: -45.5,-6.5 - parent: 89 - - uid: 13865 + pos: 5.5,26.5 + parent: 2 + - uid: 7754 components: - type: Transform - pos: -46.5,-6.5 - parent: 89 - - uid: 13866 + pos: 6.5,26.5 + parent: 2 + - uid: 7755 components: - type: Transform - pos: -46.5,-5.5 - parent: 89 - - uid: 13867 + pos: -14.5,23.5 + parent: 2 + - uid: 7756 components: - type: Transform - pos: -49.5,-12.5 - parent: 89 - - uid: 13868 + pos: -13.5,23.5 + parent: 2 + - uid: 7757 components: - type: Transform - pos: -50.5,-12.5 - parent: 89 - - uid: 13869 + pos: -12.5,23.5 + parent: 2 + - uid: 7758 components: - type: Transform - pos: -51.5,-12.5 - parent: 89 - - uid: 13870 + pos: -8.5,23.5 + parent: 2 + - uid: 7759 components: - type: Transform - pos: -52.5,-12.5 - parent: 89 - - uid: 14002 + pos: -7.5,23.5 + parent: 2 + - uid: 7760 components: - type: Transform - pos: 56.5,-7.5 - parent: 89 - - uid: 14003 + pos: 7.5,26.5 + parent: 2 + - uid: 7761 components: - type: Transform - pos: 57.5,-7.5 - parent: 89 - - uid: 14004 + pos: 10.5,26.5 + parent: 2 + - uid: 7762 components: - type: Transform - pos: 58.5,-7.5 - parent: 89 - - uid: 14005 + pos: 33.5,35.5 + parent: 2 + - uid: 7763 components: - type: Transform - pos: 53.5,-7.5 - parent: 89 - - uid: 14063 + pos: 9.5,26.5 + parent: 2 + - uid: 7764 components: - type: Transform - pos: -37.5,10.5 - parent: 89 - - uid: 14086 + pos: 33.5,34.5 + parent: 2 + - uid: 7765 components: - type: Transform - pos: 54.5,-7.5 - parent: 89 - - uid: 14095 + pos: 30.5,35.5 + parent: 2 + - uid: 7766 components: - type: Transform - pos: 61.5,-4.5 - parent: 89 - - uid: 14096 + pos: 31.5,35.5 + parent: 2 + - uid: 7767 components: - type: Transform - pos: 62.5,-4.5 - parent: 89 - - uid: 14097 + pos: 32.5,35.5 + parent: 2 + - uid: 7768 components: - type: Transform - pos: 59.5,-5.5 - parent: 89 - - uid: 14099 + rot: -1.5707963267948966 rad + pos: -131.5,13.5 + parent: 2 + - uid: 7769 components: - type: Transform - pos: 59.5,-4.5 - parent: 89 - - uid: 14100 + rot: -1.5707963267948966 rad + pos: -119.5,12.5 + parent: 2 + - uid: 7770 components: - type: Transform - pos: 60.5,-4.5 - parent: 89 - - uid: 14101 + pos: 29.5,36.5 + parent: 2 + - uid: 7771 components: - type: Transform - pos: 59.5,-6.5 - parent: 89 - - uid: 14102 + pos: 29.5,37.5 + parent: 2 + - uid: 7772 components: - type: Transform - pos: 63.5,-5.5 - parent: 89 - - uid: 14281 + pos: 29.5,35.5 + parent: 2 + - uid: 7773 components: - type: Transform - pos: 66.5,11.5 - parent: 89 - - uid: 14286 + pos: 29.5,38.5 + parent: 2 + - uid: 7774 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 - - uid: 14287 + pos: 29.5,39.5 + parent: 2 + - uid: 7775 components: - type: Transform - pos: 13.5,-8.5 - parent: 89 - - uid: 14288 + pos: 29.5,40.5 + parent: 2 + - uid: 7776 components: - type: Transform - pos: 13.5,-7.5 - parent: 89 - - uid: 14289 + pos: 28.5,40.5 + parent: 2 + - uid: 7777 components: - type: Transform - pos: 13.5,-6.5 - parent: 89 - - uid: 14290 + pos: 28.5,41.5 + parent: 2 + - uid: 7778 components: - type: Transform - pos: 14.5,-9.5 - parent: 89 - - uid: 14291 + pos: 17.5,35.5 + parent: 2 + - uid: 7779 components: - type: Transform - pos: 12.5,-6.5 - parent: 89 - - uid: 14292 + pos: 18.5,35.5 + parent: 2 + - uid: 7780 components: - type: Transform - pos: 11.5,-6.5 - parent: 89 - - uid: 14293 + pos: 19.5,35.5 + parent: 2 + - uid: 7781 components: - type: Transform - pos: 10.5,-6.5 - parent: 89 - - uid: 14296 + pos: 19.5,36.5 + parent: 2 + - uid: 7782 components: - type: Transform - pos: 15.5,-9.5 - parent: 89 - - uid: 14297 + pos: 19.5,37.5 + parent: 2 + - uid: 7783 components: - type: Transform - pos: 16.5,-9.5 - parent: 89 - - uid: 14298 + pos: 19.5,38.5 + parent: 2 + - uid: 7784 components: - type: Transform - pos: 17.5,-9.5 - parent: 89 - - uid: 14299 + pos: 19.5,39.5 + parent: 2 + - uid: 7785 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 - - uid: 14300 + pos: 19.5,40.5 + parent: 2 + - uid: 7786 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 - - uid: 14301 + pos: 20.5,40.5 + parent: 2 + - uid: 7787 components: - type: Transform - pos: 20.5,-9.5 - parent: 89 - - uid: 14302 + pos: 20.5,41.5 + parent: 2 + - uid: 7788 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 - - uid: 14303 + rot: 1.5707963267948966 rad + pos: 41.5,26.5 + parent: 2 + - uid: 7789 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 - - uid: 14304 + rot: 1.5707963267948966 rad + pos: 40.5,26.5 + parent: 2 + - uid: 7790 components: - type: Transform - pos: 23.5,-9.5 - parent: 89 - - uid: 14305 + pos: 10.5,-20.5 + parent: 2 + - uid: 7791 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 - - uid: 14306 + pos: 30.5,-16.5 + parent: 2 + - uid: 7792 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 - - uid: 14307 + rot: 3.141592653589793 rad + pos: 38.5,19.5 + parent: 2 + - uid: 7793 components: - type: Transform - pos: 26.5,-9.5 - parent: 89 - - uid: 14308 + rot: 3.141592653589793 rad + pos: 37.5,19.5 + parent: 2 + - uid: 7794 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 - - uid: 14309 + rot: 3.141592653589793 rad + pos: 40.5,19.5 + parent: 2 + - uid: 7795 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 - - uid: 14310 + rot: 3.141592653589793 rad + pos: 41.5,19.5 + parent: 2 + - uid: 7796 components: - type: Transform - pos: 29.5,-9.5 - parent: 89 - - uid: 14311 + pos: 60.5,-7.5 + parent: 2 + - uid: 7797 components: - type: Transform - pos: 30.5,-9.5 - parent: 89 - - uid: 14312 + pos: 66.5,-0.5 + parent: 2 + - uid: 7798 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 14313 + rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - uid: 7799 components: - type: Transform - pos: 32.5,-9.5 - parent: 89 - - uid: 14314 + rot: 1.5707963267948966 rad + pos: 44.5,20.5 + parent: 2 + - uid: 7800 components: - type: Transform - pos: 33.5,-9.5 - parent: 89 - - uid: 14315 + rot: 1.5707963267948966 rad + pos: 10.5,45.5 + parent: 2 + - uid: 7801 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 14316 + rot: 1.5707963267948966 rad + pos: 9.5,45.5 + parent: 2 + - uid: 7802 components: - type: Transform - pos: 35.5,-9.5 - parent: 89 - - uid: 14317 + rot: -1.5707963267948966 rad + pos: -10.5,27.5 + parent: 2 + - uid: 7803 components: - type: Transform - pos: 36.5,-9.5 - parent: 89 - - uid: 14318 + rot: -1.5707963267948966 rad + pos: -17.5,27.5 + parent: 2 + - uid: 7804 components: - type: Transform - pos: 37.5,-9.5 - parent: 89 - - uid: 14319 + rot: -1.5707963267948966 rad + pos: 29.5,34.5 + parent: 2 + - uid: 7805 components: - type: Transform - pos: 38.5,-9.5 - parent: 89 - - uid: 14320 + rot: -1.5707963267948966 rad + pos: 28.5,35.5 + parent: 2 + - uid: 7806 components: - type: Transform - pos: 38.5,-8.5 - parent: 89 - - uid: 14321 + rot: 3.141592653589793 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 7807 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 14388 + pos: 28.5,6.5 + parent: 2 + - uid: 7808 components: - type: Transform - pos: -57.5,8.5 - parent: 89 - - uid: 14390 + pos: 29.5,8.5 + parent: 2 + - uid: 7809 components: - type: Transform - pos: -56.5,8.5 - parent: 89 - - uid: 14391 + rot: 1.5707963267948966 rad + pos: -104.5,-21.5 + parent: 2 + - uid: 7810 components: - type: Transform - pos: -55.5,8.5 - parent: 89 - - uid: 14392 + rot: -1.5707963267948966 rad + pos: -124.5,15.5 + parent: 2 + - uid: 7811 components: - type: Transform - pos: -55.5,9.5 - parent: 89 - - uid: 14393 + pos: -123.5,18.5 + parent: 2 + - uid: 7812 components: - type: Transform - pos: -55.5,10.5 - parent: 89 - - uid: 14394 + rot: -1.5707963267948966 rad + pos: -103.5,25.5 + parent: 2 + - uid: 7813 components: - type: Transform - pos: -54.5,10.5 - parent: 89 - - uid: 14395 + rot: -1.5707963267948966 rad + pos: -111.5,23.5 + parent: 2 + - uid: 7814 components: - type: Transform - pos: -53.5,10.5 - parent: 89 - - uid: 14396 + rot: -1.5707963267948966 rad + pos: -112.5,23.5 + parent: 2 + - uid: 7815 components: - type: Transform - pos: -52.5,10.5 - parent: 89 - - uid: 14397 + rot: -1.5707963267948966 rad + pos: -123.5,14.5 + parent: 2 + - uid: 7816 components: - type: Transform - pos: -51.5,10.5 - parent: 89 - - uid: 14398 + rot: -1.5707963267948966 rad + pos: -104.5,27.5 + parent: 2 + - uid: 7817 components: - type: Transform - pos: -51.5,9.5 - parent: 89 - - uid: 14399 + rot: -1.5707963267948966 rad + pos: -112.5,20.5 + parent: 2 + - uid: 7818 components: - type: Transform - pos: -51.5,8.5 - parent: 89 - - uid: 14400 + rot: -1.5707963267948966 rad + pos: -112.5,21.5 + parent: 2 + - uid: 7819 components: - type: Transform - pos: -50.5,10.5 - parent: 89 - - uid: 14401 + rot: -1.5707963267948966 rad + pos: -105.5,27.5 + parent: 2 + - uid: 7820 components: - type: Transform - pos: -49.5,10.5 - parent: 89 - - uid: 14402 + rot: 3.141592653589793 rad + pos: -113.5,25.5 + parent: 2 + - uid: 7821 components: - type: Transform - pos: -48.5,10.5 - parent: 89 - - uid: 14403 + rot: 3.141592653589793 rad + pos: -114.5,23.5 + parent: 2 + - uid: 7822 components: - type: Transform - pos: -47.5,10.5 - parent: 89 - - uid: 14404 + rot: 3.141592653589793 rad + pos: -114.5,24.5 + parent: 2 + - uid: 7823 components: - type: Transform - pos: -46.5,10.5 - parent: 89 - - uid: 14405 + rot: 3.141592653589793 rad + pos: -116.5,23.5 + parent: 2 + - uid: 7824 components: - type: Transform - pos: -45.5,10.5 - parent: 89 - - uid: 14406 + pos: -109.5,29.5 + parent: 2 + - uid: 7825 components: - type: Transform - pos: -44.5,10.5 - parent: 89 - - uid: 14407 + rot: 3.141592653589793 rad + pos: -115.5,23.5 + parent: 2 + - uid: 7826 components: - type: Transform - pos: -44.5,11.5 - parent: 89 - - uid: 14408 + rot: 3.141592653589793 rad + pos: -117.5,23.5 + parent: 2 + - uid: 7827 components: - type: Transform - pos: -43.5,11.5 - parent: 89 - - uid: 14409 + rot: 3.141592653589793 rad + pos: -114.5,25.5 + parent: 2 + - uid: 7828 components: - type: Transform - pos: -42.5,11.5 - parent: 89 - - uid: 14410 + rot: -1.5707963267948966 rad + pos: -111.5,21.5 + parent: 2 + - uid: 7829 components: - type: Transform - pos: -41.5,11.5 - parent: 89 - - uid: 14411 + rot: -1.5707963267948966 rad + pos: -111.5,20.5 + parent: 2 + - uid: 7830 components: - type: Transform - pos: -40.5,11.5 - parent: 89 - - uid: 14412 + pos: -108.5,29.5 + parent: 2 + - uid: 7831 components: - type: Transform - pos: -39.5,11.5 - parent: 89 - - uid: 14413 + rot: -1.5707963267948966 rad + pos: -123.5,13.5 + parent: 2 + - uid: 7832 components: - type: Transform - pos: -38.5,11.5 - parent: 89 - - uid: 14414 + rot: -1.5707963267948966 rad + pos: -107.5,25.5 + parent: 2 + - uid: 7833 components: - type: Transform - pos: -37.5,11.5 - parent: 89 - - uid: 14432 + rot: -1.5707963267948966 rad + pos: -123.5,15.5 + parent: 2 + - uid: 7834 components: - type: Transform - pos: 9.5,-6.5 - parent: 89 - - uid: 14433 + rot: -1.5707963267948966 rad + pos: -109.5,27.5 + parent: 2 + - uid: 7835 components: - type: Transform - pos: 8.5,-6.5 - parent: 89 - - uid: 14434 + rot: -1.5707963267948966 rad + pos: -110.5,27.5 + parent: 2 + - uid: 7836 components: - type: Transform - pos: 7.5,-6.5 - parent: 89 - - uid: 14435 + rot: 1.5707963267948966 rad + pos: -103.5,-21.5 + parent: 2 + - uid: 7837 components: - type: Transform - pos: 6.5,-6.5 - parent: 89 - - uid: 14436 + rot: -1.5707963267948966 rad + pos: -107.5,27.5 + parent: 2 + - uid: 7838 components: - type: Transform - pos: 5.5,-6.5 - parent: 89 - - uid: 14437 + rot: -1.5707963267948966 rad + pos: -108.5,27.5 + parent: 2 + - uid: 7839 components: - type: Transform - pos: 4.5,-6.5 - parent: 89 - - uid: 14438 + rot: -1.5707963267948966 rad + pos: -106.5,27.5 + parent: 2 + - uid: 7840 components: - type: Transform - pos: 3.5,-6.5 - parent: 89 - - uid: 14439 + rot: 3.141592653589793 rad + pos: -107.5,24.5 + parent: 2 + - uid: 7841 components: - type: Transform - pos: 3.5,-7.5 - parent: 89 - - uid: 14440 + rot: 3.141592653589793 rad + pos: -107.5,26.5 + parent: 2 + - uid: 7842 components: - type: Transform - pos: 3.5,-8.5 - parent: 89 - - uid: 14441 + rot: -1.5707963267948966 rad + pos: -108.5,25.5 + parent: 2 + - uid: 7843 components: - type: Transform - pos: 3.5,-9.5 - parent: 89 - - uid: 14442 + rot: -1.5707963267948966 rad + pos: -131.5,15.5 + parent: 2 + - uid: 7844 components: - type: Transform - pos: 3.5,-10.5 - parent: 89 - - uid: 14443 + rot: -1.5707963267948966 rad + pos: -130.5,16.5 + parent: 2 + - uid: 7845 components: - type: Transform - pos: 2.5,-10.5 - parent: 89 - - uid: 14444 + rot: -1.5707963267948966 rad + pos: -129.5,16.5 + parent: 2 + - uid: 7846 components: - type: Transform - pos: 1.5,-10.5 - parent: 89 - - uid: 14445 + rot: -1.5707963267948966 rad + pos: -129.5,15.5 + parent: 2 + - uid: 7847 components: - type: Transform - pos: 0.5,-10.5 - parent: 89 - - uid: 14446 + rot: -1.5707963267948966 rad + pos: -111.5,27.5 + parent: 2 + - uid: 7848 components: - type: Transform - pos: -0.5,-10.5 - parent: 89 - - uid: 14447 + rot: -1.5707963267948966 rad + pos: -105.5,25.5 + parent: 2 + - uid: 7849 components: - type: Transform - pos: -0.5,-9.5 - parent: 89 - - uid: 14448 + rot: -1.5707963267948966 rad + pos: -131.5,14.5 + parent: 2 + - uid: 7850 components: - type: Transform - pos: -0.5,-8.5 - parent: 89 - - uid: 14449 + rot: -1.5707963267948966 rad + pos: -131.5,16.5 + parent: 2 + - uid: 7851 components: - type: Transform - pos: -0.5,-7.5 - parent: 89 - - uid: 14450 + rot: -1.5707963267948966 rad + pos: -110.5,25.5 + parent: 2 + - uid: 7852 components: - type: Transform - pos: -0.5,-6.5 - parent: 89 - - uid: 14451 + pos: -105.5,29.5 + parent: 2 + - uid: 7853 components: - type: Transform - pos: -0.5,-5.5 - parent: 89 - - uid: 14452 + rot: 1.5707963267948966 rad + pos: -111.5,-23.5 + parent: 2 + - uid: 7854 components: - type: Transform - pos: -0.5,-4.5 - parent: 89 - - uid: 14453 + rot: -1.5707963267948966 rad + pos: -112.5,27.5 + parent: 2 + - uid: 7855 components: - type: Transform - pos: -0.5,-3.5 - parent: 89 - - uid: 14454 + rot: -1.5707963267948966 rad + pos: -104.5,25.5 + parent: 2 + - uid: 7856 components: - type: Transform - pos: 0.5,-3.5 - parent: 89 - - uid: 14455 + rot: -1.5707963267948966 rad + pos: -102.5,25.5 + parent: 2 + - uid: 7857 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 14604 + rot: -1.5707963267948966 rad + pos: -129.5,13.5 + parent: 2 + - uid: 7858 components: - type: Transform - pos: -31.5,51.5 - parent: 89 - - uid: 14609 + rot: -1.5707963267948966 rad + pos: -129.5,14.5 + parent: 2 + - uid: 7859 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 14622 + rot: -1.5707963267948966 rad + pos: -127.5,12.5 + parent: 2 + - uid: 7860 components: - type: Transform - pos: 55.5,-23.5 - parent: 89 - - uid: 14638 + rot: -1.5707963267948966 rad + pos: -127.5,13.5 + parent: 2 + - uid: 7861 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14646 + rot: -1.5707963267948966 rad + pos: -126.5,11.5 + parent: 2 + - uid: 7862 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 14800 + rot: -1.5707963267948966 rad + pos: -125.5,13.5 + parent: 2 + - uid: 7863 components: - type: Transform - pos: 8.5,-15.5 - parent: 89 - - uid: 14916 + rot: -1.5707963267948966 rad + pos: -124.5,12.5 + parent: 2 + - uid: 7864 components: - type: Transform - pos: -12.5,-37.5 - parent: 89 - - uid: 14917 + rot: -1.5707963267948966 rad + pos: -123.5,12.5 + parent: 2 + - uid: 7865 components: - type: Transform - pos: -12.5,-36.5 - parent: 89 - - uid: 14918 + pos: -127.5,-7.5 + parent: 2 + - uid: 7866 components: - type: Transform - pos: -12.5,-35.5 - parent: 89 - - uid: 14919 + rot: -1.5707963267948966 rad + pos: -103.5,27.5 + parent: 2 + - uid: 7867 components: - type: Transform - pos: -12.5,-34.5 - parent: 89 - - uid: 14920 + rot: -1.5707963267948966 rad + pos: -102.5,27.5 + parent: 2 + - uid: 7868 components: - type: Transform - pos: -12.5,-33.5 - parent: 89 - - uid: 14921 + rot: 1.5707963267948966 rad + pos: -109.5,-20.5 + parent: 2 + - uid: 7869 components: - type: Transform - pos: -12.5,-32.5 - parent: 89 - - uid: 14922 + rot: 1.5707963267948966 rad + pos: -108.5,-20.5 + parent: 2 + - uid: 7870 components: - type: Transform - pos: -12.5,-31.5 - parent: 89 - - uid: 14923 + rot: -1.5707963267948966 rad + pos: -110.5,23.5 + parent: 2 + - uid: 7871 components: - type: Transform - pos: -12.5,-30.5 - parent: 89 - - uid: 14924 + rot: -1.5707963267948966 rad + pos: -109.5,23.5 + parent: 2 + - uid: 7872 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 14925 + rot: -1.5707963267948966 rad + pos: -111.5,25.5 + parent: 2 + - uid: 7873 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 15042 + rot: -1.5707963267948966 rad + pos: -109.5,25.5 + parent: 2 + - uid: 7874 components: - type: Transform - pos: -117.5,20.5 - parent: 89 - - uid: 15063 + rot: -1.5707963267948966 rad + pos: -106.5,25.5 + parent: 2 + - uid: 7875 components: - type: Transform - pos: 23.5,31.5 - parent: 89 - - uid: 15123 + pos: -111.5,-10.5 + parent: 2 + - uid: 7876 components: - type: Transform - pos: 24.5,30.5 - parent: 89 - - uid: 15149 + rot: -1.5707963267948966 rad + pos: -131.5,-11.5 + parent: 2 + - uid: 7877 components: - type: Transform - pos: 24.5,31.5 - parent: 89 - - uid: 15171 + rot: -1.5707963267948966 rad + pos: -130.5,-10.5 + parent: 2 + - uid: 7878 components: - type: Transform - pos: -14.5,19.5 - parent: 89 - - uid: 15448 + rot: -1.5707963267948966 rad + pos: -130.5,-11.5 + parent: 2 + - uid: 7879 components: - type: Transform - pos: 13.5,29.5 - parent: 89 - - uid: 15541 + rot: -1.5707963267948966 rad + pos: -130.5,-12.5 + parent: 2 + - uid: 7880 components: - type: Transform - pos: 13.5,30.5 - parent: 89 - - uid: 15637 + rot: -1.5707963267948966 rad + pos: -131.5,-12.5 + parent: 2 + - uid: 7881 components: - type: Transform - pos: -111.5,-13.5 - parent: 89 - - uid: 15642 + rot: -1.5707963267948966 rad + pos: -127.5,-7.5 + parent: 2 + - uid: 7882 components: - type: Transform - pos: -111.5,-14.5 - parent: 89 - - uid: 15643 + rot: -1.5707963267948966 rad + pos: -128.5,-14.5 + parent: 2 + - uid: 7883 components: - type: Transform - pos: -111.5,-15.5 - parent: 89 - - uid: 15750 + rot: -1.5707963267948966 rad + pos: -128.5,-13.5 + parent: 2 + - uid: 7884 components: - type: Transform - pos: -30.5,21.5 - parent: 89 - - uid: 15783 + rot: -1.5707963267948966 rad + pos: -128.5,-11.5 + parent: 2 + - uid: 7885 components: - type: Transform - pos: -30.5,22.5 - parent: 89 - - uid: 15856 + rot: 3.141592653589793 rad + pos: -88.5,-5.5 + parent: 2 + - uid: 7886 components: - type: Transform - pos: -30.5,23.5 - parent: 89 - - uid: 15888 + rot: 3.141592653589793 rad + pos: -88.5,-4.5 + parent: 2 + - uid: 7887 components: - type: Transform - pos: -30.5,24.5 - parent: 89 - - uid: 15891 + rot: -1.5707963267948966 rad + pos: -128.5,-10.5 + parent: 2 + - uid: 7888 components: - type: Transform - pos: -30.5,25.5 - parent: 89 - - uid: 15901 + rot: 3.141592653589793 rad + pos: -87.5,-5.5 + parent: 2 + - uid: 7889 components: - type: Transform - pos: -30.5,26.5 - parent: 89 - - uid: 15928 + rot: 3.141592653589793 rad + pos: -87.5,-4.5 + parent: 2 + - uid: 7890 components: - type: Transform - pos: 6.5,13.5 - parent: 89 - - uid: 15929 + rot: 3.141592653589793 rad + pos: -86.5,-4.5 + parent: 2 + - uid: 7891 components: - type: Transform - pos: 7.5,13.5 - parent: 89 - - uid: 15930 + rot: 3.141592653589793 rad + pos: -86.5,-5.5 + parent: 2 + - uid: 7892 components: - type: Transform - pos: 8.5,13.5 - parent: 89 - - uid: 15931 + pos: -44.5,-14.5 + parent: 2 + - uid: 7893 components: - type: Transform - pos: 9.5,13.5 - parent: 89 - - uid: 15932 + rot: -1.5707963267948966 rad + pos: -122.5,-5.5 + parent: 2 + - uid: 7894 components: - type: Transform - pos: 10.5,13.5 - parent: 89 - - uid: 15933 + rot: 3.141592653589793 rad + pos: -87.5,-6.5 + parent: 2 + - uid: 7895 components: - type: Transform - pos: 11.5,13.5 - parent: 89 - - uid: 15934 + pos: -76.5,-21.5 + parent: 2 + - uid: 7896 components: - type: Transform - pos: 12.5,13.5 - parent: 89 - - uid: 15935 + rot: 3.141592653589793 rad + pos: -86.5,-6.5 + parent: 2 + - uid: 7897 components: - type: Transform - pos: 13.5,13.5 - parent: 89 - - uid: 15936 + rot: 3.141592653589793 rad + pos: -88.5,-6.5 + parent: 2 + - uid: 7898 components: - type: Transform - pos: 14.5,13.5 - parent: 89 - - uid: 15937 + rot: 3.141592653589793 rad + pos: -85.5,-4.5 + parent: 2 + - uid: 7899 components: - type: Transform - pos: 13.5,14.5 - parent: 89 - - uid: 15938 + pos: 1.5,3.5 + parent: 2 + - uid: 7900 components: - type: Transform - pos: 13.5,15.5 - parent: 89 - - uid: 15939 + pos: 1.5,2.5 + parent: 2 + - uid: 7901 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 15940 + pos: 1.5,1.5 + parent: 2 + - uid: 7902 components: - type: Transform - pos: 13.5,17.5 - parent: 89 - - uid: 15941 + pos: 33.5,3.5 + parent: 2 + - uid: 7903 components: - type: Transform - pos: 13.5,18.5 - parent: 89 - - uid: 15942 + pos: 33.5,2.5 + parent: 2 + - uid: 7904 components: - type: Transform - pos: 13.5,19.5 - parent: 89 - - uid: 15943 + pos: 33.5,1.5 + parent: 2 + - uid: 7905 components: - type: Transform - pos: 13.5,20.5 - parent: 89 - - uid: 15944 + pos: -4.5,-11.5 + parent: 2 + - uid: 7906 components: - type: Transform - pos: 13.5,21.5 - parent: 89 - - uid: 15945 + pos: -4.5,-12.5 + parent: 2 + - uid: 7907 components: - type: Transform - pos: 13.5,22.5 - parent: 89 - - uid: 15946 + pos: -4.5,-13.5 + parent: 2 + - uid: 7908 components: - type: Transform - pos: 13.5,23.5 - parent: 89 - - uid: 15947 + pos: -21.5,3.5 + parent: 2 + - uid: 7909 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 15948 + pos: -21.5,2.5 + parent: 2 + - uid: 7910 components: - type: Transform - pos: 13.5,25.5 - parent: 89 - - uid: 15949 + pos: -21.5,1.5 + parent: 2 + - uid: 7911 components: - type: Transform - pos: 13.5,26.5 - parent: 89 - - uid: 15950 + pos: -21.5,3.5 + parent: 2 + - uid: 7912 components: - type: Transform - pos: 13.5,27.5 - parent: 89 - - uid: 15953 + pos: -21.5,2.5 + parent: 2 + - uid: 7913 components: - type: Transform - pos: 15.5,13.5 - parent: 89 - - uid: 15954 + pos: -21.5,1.5 + parent: 2 + - uid: 7914 components: - type: Transform - pos: 15.5,14.5 - parent: 89 - - uid: 15955 + pos: -28.5,4.5 + parent: 2 + - uid: 7915 components: - type: Transform - pos: 16.5,14.5 - parent: 89 - - uid: 15956 + pos: -28.5,3.5 + parent: 2 + - uid: 7916 components: - type: Transform - pos: 17.5,14.5 - parent: 89 - - uid: 15957 + pos: -30.5,6.5 + parent: 2 + - uid: 7917 components: - type: Transform - pos: 18.5,14.5 - parent: 89 - - uid: 15958 + pos: -31.5,6.5 + parent: 2 + - uid: 7918 components: - type: Transform - pos: 19.5,14.5 - parent: 89 - - uid: 15959 + pos: -32.5,6.5 + parent: 2 + - uid: 7919 components: - type: Transform - pos: 20.5,14.5 - parent: 89 - - uid: 15960 + pos: -38.5,4.5 + parent: 2 + - uid: 7920 components: - type: Transform - pos: 21.5,14.5 - parent: 89 - - uid: 15961 + pos: -38.5,3.5 + parent: 2 + - uid: 7921 components: - type: Transform - pos: 22.5,14.5 - parent: 89 - - uid: 15962 + pos: -42.5,5.5 + parent: 2 + - uid: 7922 components: - type: Transform - pos: 23.5,14.5 - parent: 89 - - uid: 15963 + pos: -42.5,4.5 + parent: 2 + - uid: 7923 components: - type: Transform - pos: 24.5,14.5 - parent: 89 - - uid: 15964 + pos: -42.5,3.5 + parent: 2 + - uid: 7924 components: - type: Transform - pos: 25.5,14.5 - parent: 89 - - uid: 15965 + pos: -38.5,-11.5 + parent: 2 + - uid: 7925 components: - type: Transform - pos: 26.5,14.5 - parent: 89 - - uid: 15966 + pos: -38.5,-12.5 + parent: 2 + - uid: 7926 components: - type: Transform - pos: 27.5,14.5 - parent: 89 - - uid: 15967 + pos: -38.5,-13.5 + parent: 2 + - uid: 7927 components: - type: Transform - pos: 27.5,15.5 - parent: 89 - - uid: 15968 + pos: -65.5,6.5 + parent: 2 + - uid: 7928 components: - type: Transform - pos: 27.5,16.5 - parent: 89 - - uid: 15969 + pos: -66.5,6.5 + parent: 2 + - uid: 7929 components: - type: Transform - pos: 27.5,17.5 - parent: 89 - - uid: 15970 + pos: -65.5,13.5 + parent: 2 + - uid: 7930 components: - type: Transform - pos: 27.5,18.5 - parent: 89 - - uid: 15971 + pos: -65.5,14.5 + parent: 2 + - uid: 7931 components: - type: Transform - pos: 26.5,18.5 - parent: 89 - - uid: 15972 + pos: -70.5,10.5 + parent: 2 + - uid: 7932 components: - type: Transform - pos: 26.5,19.5 - parent: 89 - - uid: 15973 + pos: -70.5,9.5 + parent: 2 + - uid: 7933 components: - type: Transform - pos: 26.5,20.5 - parent: 89 - - uid: 15974 + pos: -76.5,8.5 + parent: 2 + - uid: 7934 components: - type: Transform - pos: 26.5,21.5 - parent: 89 - - uid: 15975 + pos: -76.5,9.5 + parent: 2 + - uid: 7935 components: - type: Transform - pos: 24.5,15.5 - parent: 89 - - uid: 15976 + pos: -70.5,16.5 + parent: 2 + - uid: 7936 components: - type: Transform - pos: 24.5,16.5 - parent: 89 - - uid: 15977 + pos: -70.5,17.5 + parent: 2 + - uid: 7937 components: - type: Transform - pos: 24.5,17.5 - parent: 89 - - uid: 15978 + pos: -70.5,18.5 + parent: 2 + - uid: 7938 components: - type: Transform - pos: 24.5,18.5 - parent: 89 - - uid: 15979 + pos: -50.5,16.5 + parent: 2 + - uid: 7939 components: - type: Transform - pos: 24.5,19.5 - parent: 89 - - uid: 15980 + pos: -50.5,17.5 + parent: 2 + - uid: 7940 components: - type: Transform - pos: 24.5,20.5 - parent: 89 - - uid: 15981 + pos: -50.5,18.5 + parent: 2 + - uid: 7941 components: - type: Transform - pos: 24.5,21.5 - parent: 89 - - uid: 15982 + pos: -46.5,18.5 + parent: 2 + - uid: 7942 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 15983 + pos: -46.5,17.5 + parent: 2 + - uid: 7943 components: - type: Transform - pos: 24.5,23.5 - parent: 89 - - uid: 15984 + pos: -46.5,16.5 + parent: 2 + - uid: 7944 components: - type: Transform - pos: 24.5,24.5 - parent: 89 - - uid: 15985 + pos: -55.5,19.5 + parent: 2 + - uid: 7945 components: - type: Transform - pos: 24.5,25.5 - parent: 89 - - uid: 15986 + pos: -56.5,19.5 + parent: 2 + - uid: 7946 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 15987 + pos: -57.5,19.5 + parent: 2 + - uid: 7947 components: - type: Transform - pos: 24.5,27.5 - parent: 89 - - uid: 15988 + pos: -82.5,11.5 + parent: 2 + - uid: 7948 components: - type: Transform - pos: 24.5,28.5 - parent: 89 - - uid: 16201 + pos: -81.5,11.5 + parent: 2 + - uid: 7949 components: - type: Transform - pos: -30.5,-0.5 - parent: 89 - - uid: 16202 + pos: -80.5,11.5 + parent: 2 + - uid: 7950 components: - type: Transform - pos: -31.5,-0.5 - parent: 89 - - uid: 16203 + pos: -89.5,0.5 + parent: 2 + - uid: 7951 components: - type: Transform - pos: -32.5,-0.5 - parent: 89 - - uid: 16204 + pos: -88.5,0.5 + parent: 2 + - uid: 7952 components: - type: Transform - pos: -33.5,-0.5 - parent: 89 - - uid: 16205 + pos: -45.5,-12.5 + parent: 2 + - uid: 7953 components: - type: Transform - pos: -34.5,-0.5 - parent: 89 - - uid: 16206 + pos: -43.5,-16.5 + parent: 2 + - uid: 7954 components: - type: Transform - pos: -35.5,-0.5 - parent: 89 - - uid: 16207 + pos: -27.5,-16.5 + parent: 2 + - uid: 7955 components: - type: Transform - pos: -36.5,-0.5 - parent: 89 - - uid: 16208 + pos: -24.5,-19.5 + parent: 2 + - uid: 7956 components: - type: Transform - pos: -37.5,-0.5 - parent: 89 - - uid: 16209 + pos: -64.5,-13.5 + parent: 2 + - uid: 7957 components: - type: Transform - pos: -37.5,-1.5 - parent: 89 - - uid: 16210 + pos: -64.5,-12.5 + parent: 2 + - uid: 7958 components: - type: Transform - pos: -37.5,-2.5 - parent: 89 - - uid: 16211 + pos: -64.5,-11.5 + parent: 2 + - uid: 7959 components: - type: Transform - pos: -37.5,-3.5 - parent: 89 - - uid: 16213 + pos: -64.5,-10.5 + parent: 2 + - uid: 7960 components: - type: Transform - pos: -28.5,-1.5 - parent: 89 - - uid: 16214 + pos: -64.5,-9.5 + parent: 2 + - uid: 7961 components: - type: Transform - pos: -27.5,-1.5 - parent: 89 - - uid: 16215 + pos: -65.5,-13.5 + parent: 2 + - uid: 7962 components: - type: Transform - pos: -26.5,-1.5 - parent: 89 - - uid: 16216 + pos: -65.5,-12.5 + parent: 2 + - uid: 7963 components: - type: Transform - pos: -25.5,-1.5 - parent: 89 - - uid: 16217 + pos: -65.5,-11.5 + parent: 2 + - uid: 7964 components: - type: Transform - pos: -24.5,-1.5 - parent: 89 - - uid: 16218 + pos: -65.5,-10.5 + parent: 2 + - uid: 7965 components: - type: Transform - pos: -23.5,-1.5 - parent: 89 - - uid: 16219 + pos: -65.5,-9.5 + parent: 2 + - uid: 7966 components: - type: Transform - pos: -22.5,-1.5 - parent: 89 - - uid: 16220 + pos: -66.5,-13.5 + parent: 2 + - uid: 7967 components: - type: Transform - pos: -21.5,-1.5 - parent: 89 - - uid: 16221 + pos: -66.5,-12.5 + parent: 2 + - uid: 7968 components: - type: Transform - pos: -20.5,-1.5 - parent: 89 - - uid: 16222 + pos: -66.5,-11.5 + parent: 2 + - uid: 7969 components: - type: Transform - pos: -19.5,-1.5 - parent: 89 - - uid: 16223 + pos: -66.5,-10.5 + parent: 2 + - uid: 7970 components: - type: Transform - pos: -18.5,-1.5 - parent: 89 - - uid: 16224 + pos: -66.5,-9.5 + parent: 2 + - uid: 7971 components: - type: Transform - pos: -17.5,-1.5 - parent: 89 - - uid: 16225 + pos: -61.5,-13.5 + parent: 2 + - uid: 7972 components: - type: Transform - pos: -17.5,-2.5 - parent: 89 - - uid: 16226 + pos: -61.5,-12.5 + parent: 2 + - uid: 7973 components: - type: Transform - pos: -17.5,-3.5 - parent: 89 - - uid: 16227 + pos: -61.5,-11.5 + parent: 2 + - uid: 7974 components: - type: Transform - pos: -17.5,-4.5 - parent: 89 - - uid: 16228 + pos: -61.5,-10.5 + parent: 2 + - uid: 7975 components: - type: Transform - pos: -17.5,-5.5 - parent: 89 - - uid: 16229 + pos: -61.5,-9.5 + parent: 2 + - uid: 7976 components: - type: Transform - pos: -17.5,-6.5 - parent: 89 - - uid: 16230 + pos: -60.5,-13.5 + parent: 2 + - uid: 7977 components: - type: Transform - pos: -17.5,-7.5 - parent: 89 - - uid: 16231 + pos: -60.5,-12.5 + parent: 2 + - uid: 7978 components: - type: Transform - pos: -16.5,-7.5 - parent: 89 - - uid: 16232 + pos: -60.5,-11.5 + parent: 2 + - uid: 7979 components: - type: Transform - pos: -15.5,-7.5 - parent: 89 - - uid: 16233 + pos: -60.5,-10.5 + parent: 2 + - uid: 7980 components: - type: Transform - pos: -14.5,-7.5 - parent: 89 - - uid: 16234 + pos: -60.5,-9.5 + parent: 2 + - uid: 7981 components: - type: Transform - pos: -13.5,-7.5 - parent: 89 - - uid: 16235 + pos: -59.5,-13.5 + parent: 2 + - uid: 7982 components: - type: Transform - pos: -12.5,-7.5 - parent: 89 - - uid: 16236 + pos: -59.5,-12.5 + parent: 2 + - uid: 7983 components: - type: Transform - pos: -11.5,-7.5 - parent: 89 - - uid: 16237 + pos: -59.5,-11.5 + parent: 2 + - uid: 7984 components: - type: Transform - pos: -10.5,-7.5 - parent: 89 - - uid: 16238 + pos: -59.5,-10.5 + parent: 2 + - uid: 7985 components: - type: Transform - pos: -10.5,-6.5 - parent: 89 - - uid: 16247 + pos: -59.5,-9.5 + parent: 2 + - uid: 7986 components: - type: Transform - pos: 6.5,12.5 - parent: 89 - - uid: 16248 + pos: 34.5,24.5 + parent: 2 + - uid: 7987 components: - type: Transform - pos: 6.5,11.5 - parent: 89 - - uid: 16249 + pos: 34.5,25.5 + parent: 2 + - uid: 7988 components: - type: Transform - pos: 6.5,10.5 - parent: 89 - - uid: 16250 + pos: 34.5,26.5 + parent: 2 + - uid: 7989 components: - type: Transform - pos: 6.5,9.5 - parent: 89 - - uid: 16251 + pos: 36.5,26.5 + parent: 2 + - uid: 7990 components: - type: Transform - pos: 6.5,8.5 - parent: 89 - - uid: 16252 + pos: 36.5,27.5 + parent: 2 + - uid: 7991 components: - type: Transform - pos: 6.5,7.5 - parent: 89 - - uid: 16253 + pos: 37.5,26.5 + parent: 2 + - uid: 7992 components: - type: Transform - pos: 7.5,7.5 - parent: 89 - - uid: 16254 + pos: 38.5,26.5 + parent: 2 + - uid: 7993 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - uid: 16255 + pos: 39.5,26.5 + parent: 2 + - uid: 7994 components: - type: Transform - pos: 9.5,7.5 - parent: 89 - - uid: 16256 + pos: -149.5,-0.5 + parent: 2 + - uid: 7995 components: - type: Transform - pos: 10.5,7.5 - parent: 89 - - uid: 16257 + rot: -1.5707963267948966 rad + pos: -134.5,-10.5 + parent: 2 + - uid: 7996 components: - type: Transform - pos: 11.5,7.5 - parent: 89 - - uid: 16258 + rot: -1.5707963267948966 rad + pos: -133.5,-10.5 + parent: 2 + - uid: 7997 components: - type: Transform - pos: 12.5,7.5 - parent: 89 - - uid: 16259 + rot: -1.5707963267948966 rad + pos: -135.5,-9.5 + parent: 2 + - uid: 7998 components: - type: Transform - pos: 13.5,7.5 - parent: 89 - - uid: 16260 + rot: -1.5707963267948966 rad + pos: -135.5,-10.5 + parent: 2 + - uid: 7999 components: - type: Transform - pos: 14.5,7.5 - parent: 89 - - uid: 16261 + rot: -1.5707963267948966 rad + pos: -135.5,-11.5 + parent: 2 + - uid: 8000 components: - type: Transform - pos: 15.5,7.5 - parent: 89 - - uid: 16262 + rot: -1.5707963267948966 rad + pos: -132.5,-9.5 + parent: 2 + - uid: 8001 components: - type: Transform - pos: 16.5,7.5 - parent: 89 - - uid: 16263 + rot: -1.5707963267948966 rad + pos: -132.5,-8.5 + parent: 2 + - uid: 8002 components: - type: Transform - pos: 17.5,7.5 - parent: 89 - - uid: 16264 + rot: -1.5707963267948966 rad + pos: -132.5,-6.5 + parent: 2 + - uid: 8003 components: - type: Transform - pos: 18.5,7.5 - parent: 89 - - uid: 16265 + rot: -1.5707963267948966 rad + pos: -132.5,-5.5 + parent: 2 + - uid: 8004 components: - type: Transform - pos: 19.5,7.5 - parent: 89 - - uid: 16266 + rot: -1.5707963267948966 rad + pos: -133.5,-4.5 + parent: 2 + - uid: 8005 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 16267 + rot: -1.5707963267948966 rad + pos: -134.5,-4.5 + parent: 2 + - uid: 8006 components: - type: Transform - pos: 20.5,8.5 - parent: 89 - - uid: 16268 + rot: -1.5707963267948966 rad + pos: -135.5,-5.5 + parent: 2 + - uid: 8007 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 16318 + rot: -1.5707963267948966 rad + pos: -135.5,-4.5 + parent: 2 + - uid: 8008 components: - type: Transform - pos: 26.5,22.5 - parent: 89 - - uid: 16319 + rot: -1.5707963267948966 rad + pos: -135.5,-3.5 + parent: 2 + - uid: 8009 components: - type: Transform - pos: 27.5,22.5 - parent: 89 - - uid: 16320 + rot: -1.5707963267948966 rad + pos: -135.5,-2.5 + parent: 2 + - uid: 8010 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 16321 + rot: -1.5707963267948966 rad + pos: -122.5,-6.5 + parent: 2 + - uid: 8011 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16322 + rot: -1.5707963267948966 rad + pos: -122.5,-7.5 + parent: 2 + - uid: 8012 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16323 + rot: -1.5707963267948966 rad + pos: -121.5,-5.5 + parent: 2 + - uid: 8013 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16324 + rot: -1.5707963267948966 rad + pos: -121.5,-6.5 + parent: 2 + - uid: 8014 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 16325 + rot: -1.5707963267948966 rad + pos: -121.5,-7.5 + parent: 2 + - uid: 8015 components: - type: Transform - pos: 33.5,22.5 - parent: 89 - - uid: 16326 + rot: -1.5707963267948966 rad + pos: -120.5,-5.5 + parent: 2 + - uid: 8016 components: - type: Transform - pos: 34.5,22.5 - parent: 89 - - uid: 16327 + rot: -1.5707963267948966 rad + pos: -120.5,-6.5 + parent: 2 + - uid: 8017 components: - type: Transform - pos: 34.5,23.5 - parent: 89 - - uid: 16328 + rot: -1.5707963267948966 rad + pos: -120.5,-7.5 + parent: 2 + - uid: 8018 components: - type: Transform - pos: 34.5,24.5 - parent: 89 - - uid: 16329 + rot: -1.5707963267948966 rad + pos: -119.5,-5.5 + parent: 2 + - uid: 8019 components: - type: Transform - pos: 34.5,25.5 - parent: 89 - - uid: 16330 + rot: -1.5707963267948966 rad + pos: -119.5,-6.5 + parent: 2 + - uid: 8020 components: - type: Transform - pos: 34.5,26.5 - parent: 89 - - uid: 16345 + rot: -1.5707963267948966 rad + pos: -119.5,-7.5 + parent: 2 + - uid: 8021 components: - type: Transform - pos: -3.5,12.5 - parent: 89 - - uid: 16346 + rot: -1.5707963267948966 rad + pos: -118.5,-5.5 + parent: 2 + - uid: 8022 components: - type: Transform - pos: -2.5,12.5 - parent: 89 - - uid: 16577 + rot: -1.5707963267948966 rad + pos: -118.5,-6.5 + parent: 2 + - uid: 8023 components: - type: Transform - pos: -30.5,27.5 - parent: 89 - - uid: 16613 + rot: -1.5707963267948966 rad + pos: -118.5,-7.5 + parent: 2 + - uid: 8024 components: - type: Transform - pos: -30.5,28.5 - parent: 89 - - uid: 16620 + rot: -1.5707963267948966 rad + pos: -117.5,-5.5 + parent: 2 + - uid: 8025 components: - type: Transform - pos: -30.5,29.5 - parent: 89 - - uid: 16637 + rot: -1.5707963267948966 rad + pos: -117.5,-6.5 + parent: 2 + - uid: 8026 components: - type: Transform - pos: -30.5,30.5 - parent: 89 - - uid: 16640 + rot: -1.5707963267948966 rad + pos: -117.5,-7.5 + parent: 2 + - uid: 8027 components: - type: Transform - pos: -30.5,31.5 - parent: 89 - - uid: 16643 + rot: -1.5707963267948966 rad + pos: -116.5,-5.5 + parent: 2 + - uid: 8028 components: - type: Transform - pos: -30.5,32.5 - parent: 89 - - uid: 16644 + rot: -1.5707963267948966 rad + pos: -116.5,-6.5 + parent: 2 + - uid: 8029 components: - type: Transform - pos: -30.5,33.5 - parent: 89 - - uid: 16645 + rot: -1.5707963267948966 rad + pos: -116.5,-7.5 + parent: 2 + - uid: 8030 components: - type: Transform - pos: -30.5,34.5 - parent: 89 - - uid: 16646 + rot: -1.5707963267948966 rad + pos: -115.5,-5.5 + parent: 2 + - uid: 8031 components: - type: Transform - pos: -30.5,35.5 - parent: 89 - - uid: 16647 + rot: -1.5707963267948966 rad + pos: -115.5,-6.5 + parent: 2 + - uid: 8032 components: - type: Transform - pos: -30.5,36.5 - parent: 89 - - uid: 16721 + rot: -1.5707963267948966 rad + pos: -115.5,-7.5 + parent: 2 + - uid: 8033 components: - type: Transform - pos: -10.5,-24.5 - parent: 89 - - uid: 16732 + rot: -1.5707963267948966 rad + pos: -128.5,-8.5 + parent: 2 + - uid: 8034 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - uid: 16733 + rot: -1.5707963267948966 rad + pos: -130.5,-7.5 + parent: 2 + - uid: 8035 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 16768 + rot: -1.5707963267948966 rad + pos: -131.5,-7.5 + parent: 2 + - uid: 8036 components: - type: Transform - pos: -30.5,37.5 - parent: 89 - - uid: 16798 + rot: -1.5707963267948966 rad + pos: -132.5,-7.5 + parent: 2 + - uid: 8037 components: - type: Transform - pos: -31.5,37.5 - parent: 89 - - uid: 16834 + rot: -1.5707963267948966 rad + pos: -133.5,-7.5 + parent: 2 + - uid: 8038 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 16835 + rot: -1.5707963267948966 rad + pos: -133.5,-6.5 + parent: 2 + - uid: 8039 components: - type: Transform - pos: -81.5,17.5 - parent: 89 - - uid: 16836 + rot: -1.5707963267948966 rad + pos: -133.5,-8.5 + parent: 2 + - uid: 8040 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - uid: 16837 + rot: 3.141592653589793 rad + pos: -85.5,-5.5 + parent: 2 + - uid: 8041 components: - type: Transform - pos: -81.5,19.5 - parent: 89 - - uid: 16838 + rot: 3.141592653589793 rad + pos: -85.5,-6.5 + parent: 2 + - uid: 8042 components: - type: Transform - pos: -81.5,20.5 - parent: 89 - - uid: 16839 + rot: 3.141592653589793 rad + pos: -84.5,-4.5 + parent: 2 + - uid: 8043 components: - type: Transform - pos: -82.5,20.5 - parent: 89 - - uid: 16840 + rot: 3.141592653589793 rad + pos: -84.5,-5.5 + parent: 2 + - uid: 8044 components: - type: Transform - pos: -83.5,20.5 - parent: 89 - - uid: 16841 + rot: 3.141592653589793 rad + pos: -84.5,-6.5 + parent: 2 + - uid: 8045 components: - type: Transform - pos: -84.5,20.5 - parent: 89 - - uid: 16842 + rot: 1.5707963267948966 rad + pos: -94.5,-12.5 + parent: 2 + - uid: 8046 components: - type: Transform - pos: -84.5,21.5 - parent: 89 - - uid: 16843 + rot: 1.5707963267948966 rad + pos: -94.5,-15.5 + parent: 2 + - uid: 8047 components: - type: Transform - pos: -84.5,22.5 - parent: 89 - - uid: 16844 + rot: 1.5707963267948966 rad + pos: -93.5,-15.5 + parent: 2 + - uid: 8048 components: - type: Transform - pos: -84.5,23.5 - parent: 89 - - uid: 16845 + rot: 1.5707963267948966 rad + pos: -92.5,-15.5 + parent: 2 + - uid: 8049 components: - type: Transform - pos: -84.5,24.5 - parent: 89 - - uid: 16846 + rot: 1.5707963267948966 rad + pos: -91.5,-15.5 + parent: 2 + - uid: 8050 components: - type: Transform - pos: -84.5,25.5 - parent: 89 - - uid: 16847 + rot: 1.5707963267948966 rad + pos: -90.5,-15.5 + parent: 2 + - uid: 8051 components: - type: Transform - pos: -84.5,26.5 - parent: 89 - - uid: 16848 + rot: 1.5707963267948966 rad + pos: -89.5,-15.5 + parent: 2 + - uid: 8052 components: - type: Transform - pos: -84.5,27.5 - parent: 89 - - uid: 16849 + rot: 1.5707963267948966 rad + pos: -88.5,-15.5 + parent: 2 + - uid: 8053 components: - type: Transform - pos: -84.5,28.5 - parent: 89 - - uid: 16850 + rot: 1.5707963267948966 rad + pos: -87.5,-15.5 + parent: 2 + - uid: 8054 components: - type: Transform - pos: -84.5,29.5 - parent: 89 - - uid: 16851 + rot: 1.5707963267948966 rad + pos: -86.5,-15.5 + parent: 2 + - uid: 8055 components: - type: Transform - pos: -84.5,30.5 - parent: 89 - - uid: 16852 + rot: 1.5707963267948966 rad + pos: -85.5,-15.5 + parent: 2 + - uid: 8056 components: - type: Transform - pos: -84.5,31.5 - parent: 89 - - uid: 16853 + rot: 1.5707963267948966 rad + pos: -84.5,-15.5 + parent: 2 + - uid: 8057 components: - type: Transform - pos: -84.5,32.5 - parent: 89 - - uid: 16854 + rot: 1.5707963267948966 rad + pos: -83.5,-15.5 + parent: 2 + - uid: 8058 components: - type: Transform - pos: -84.5,33.5 - parent: 89 - - uid: 16855 + rot: 1.5707963267948966 rad + pos: -83.5,-14.5 + parent: 2 + - uid: 8059 components: - type: Transform - pos: -84.5,34.5 - parent: 89 - - uid: 16856 + rot: 1.5707963267948966 rad + pos: -82.5,-14.5 + parent: 2 + - uid: 8060 components: - type: Transform - pos: -84.5,35.5 - parent: 89 - - uid: 16857 + rot: 1.5707963267948966 rad + pos: -81.5,-14.5 + parent: 2 + - uid: 8061 components: - type: Transform - pos: -85.5,35.5 - parent: 89 - - uid: 16858 + rot: 1.5707963267948966 rad + pos: -80.5,-14.5 + parent: 2 + - uid: 8062 components: - type: Transform - pos: -86.5,35.5 - parent: 89 - - uid: 16859 + rot: 1.5707963267948966 rad + pos: -96.5,-14.5 + parent: 2 + - uid: 8063 components: - type: Transform - pos: -86.5,36.5 - parent: 89 - - uid: 16884 + rot: 1.5707963267948966 rad + pos: -97.5,-14.5 + parent: 2 + - uid: 8064 components: - type: Transform - pos: -31.5,38.5 - parent: 89 - - uid: 16991 + rot: 1.5707963267948966 rad + pos: -98.5,-14.5 + parent: 2 + - uid: 8065 components: - type: Transform - pos: 62.5,-5.5 - parent: 89 - - uid: 17038 + rot: 1.5707963267948966 rad + pos: -100.5,-14.5 + parent: 2 + - uid: 8066 components: - type: Transform - pos: 24.5,29.5 - parent: 89 - - uid: 18393 + rot: 1.5707963267948966 rad + pos: -101.5,-14.5 + parent: 2 + - uid: 8067 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 - - uid: 18394 + rot: 1.5707963267948966 rad + pos: -101.5,-13.5 + parent: 2 + - uid: 8068 components: - type: Transform - pos: 38.5,-11.5 - parent: 89 - - uid: 18395 + rot: 1.5707963267948966 rad + pos: -104.5,-13.5 + parent: 2 + - uid: 8069 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 18396 + rot: 1.5707963267948966 rad + pos: -103.5,-15.5 + parent: 2 + - uid: 8070 components: - type: Transform - pos: 42.5,-11.5 - parent: 89 - - uid: 18397 + rot: 1.5707963267948966 rad + pos: -103.5,-16.5 + parent: 2 + - uid: 8071 components: - type: Transform - pos: 42.5,-12.5 - parent: 89 - - uid: 18398 + rot: 1.5707963267948966 rad + pos: -103.5,-17.5 + parent: 2 + - uid: 8072 components: - type: Transform - pos: 42.5,-13.5 - parent: 89 - - uid: 18399 + rot: 1.5707963267948966 rad + pos: -103.5,-18.5 + parent: 2 + - uid: 8073 components: - type: Transform - pos: 41.5,-13.5 - parent: 89 - - uid: 18400 + rot: 1.5707963267948966 rad + pos: -104.5,-18.5 + parent: 2 + - uid: 8074 components: - type: Transform - pos: 40.5,-13.5 - parent: 89 - - uid: 18401 + rot: 1.5707963267948966 rad + pos: -105.5,-18.5 + parent: 2 + - uid: 8075 components: - type: Transform - pos: 39.5,-13.5 - parent: 89 - - uid: 18402 + rot: 1.5707963267948966 rad + pos: -106.5,-18.5 + parent: 2 + - uid: 8076 components: - type: Transform - pos: 38.5,-13.5 - parent: 89 - - uid: 18403 + rot: 1.5707963267948966 rad + pos: -107.5,-18.5 + parent: 2 + - uid: 8077 components: - type: Transform - pos: 38.5,-12.5 - parent: 89 - - uid: 18661 + rot: 1.5707963267948966 rad + pos: -108.5,-18.5 + parent: 2 + - uid: 8078 components: - type: Transform - pos: 5.5,13.5 - parent: 89 - - uid: 19543 + rot: 1.5707963267948966 rad + pos: -109.5,-14.5 + parent: 2 + - uid: 8079 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 19672 + rot: 1.5707963267948966 rad + pos: -109.5,-15.5 + parent: 2 + - uid: 8080 components: - type: Transform - pos: -118.5,20.5 - parent: 89 - - uid: 19801 + rot: 1.5707963267948966 rad + pos: -108.5,-15.5 + parent: 2 + - uid: 8081 components: - type: Transform - pos: 9.5,-15.5 - parent: 89 - - uid: 20191 + rot: 1.5707963267948966 rad + pos: -107.5,-15.5 + parent: 2 + - uid: 8082 components: - type: Transform - pos: 33.5,26.5 - parent: 89 - - uid: 20322 + rot: 1.5707963267948966 rad + pos: -106.5,-15.5 + parent: 2 + - uid: 8083 components: - type: Transform - pos: 47.5,13.5 - parent: 89 - - uid: 20826 + rot: 1.5707963267948966 rad + pos: -105.5,-15.5 + parent: 2 + - uid: 8084 components: - type: Transform - pos: 47.5,19.5 - parent: 89 - - uid: 20830 + rot: 1.5707963267948966 rad + pos: -104.5,-15.5 + parent: 2 + - uid: 8085 components: - type: Transform - pos: -6.5,15.5 - parent: 89 - - uid: 20832 + rot: 1.5707963267948966 rad + pos: -109.5,-19.5 + parent: 2 + - uid: 8086 components: - type: Transform - pos: -6.5,16.5 - parent: 89 - - uid: 20833 + rot: 1.5707963267948966 rad + pos: -109.5,-20.5 + parent: 2 + - uid: 8087 components: - type: Transform - pos: -7.5,16.5 - parent: 89 - - uid: 20835 + rot: 1.5707963267948966 rad + pos: -109.5,-21.5 + parent: 2 + - uid: 8088 components: - type: Transform - pos: 47.5,18.5 - parent: 89 - - uid: 20909 + rot: 1.5707963267948966 rad + pos: -109.5,-22.5 + parent: 2 + - uid: 8089 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 20979 + rot: 1.5707963267948966 rad + pos: -108.5,-19.5 + parent: 2 + - uid: 8090 components: - type: Transform - pos: 13.5,-15.5 - parent: 89 - - uid: 20997 + rot: 1.5707963267948966 rad + pos: -108.5,-20.5 + parent: 2 + - uid: 8091 components: - type: Transform - pos: 47.5,15.5 - parent: 89 - - uid: 20998 + rot: 1.5707963267948966 rad + pos: -108.5,-21.5 + parent: 2 + - uid: 8092 components: - type: Transform - pos: 47.5,16.5 - parent: 89 - - uid: 20999 + rot: 1.5707963267948966 rad + pos: -108.5,-22.5 + parent: 2 + - uid: 8093 components: - type: Transform - pos: 47.5,17.5 - parent: 89 - - uid: 21268 + pos: -87.5,-14.5 + parent: 2 + - uid: 8094 components: - type: Transform - pos: 45.5,19.5 - parent: 89 - - uid: 21280 + pos: -87.5,-12.5 + parent: 2 + - uid: 8095 components: - type: Transform - pos: 46.5,19.5 - parent: 89 - - uid: 21281 + pos: -87.5,-11.5 + parent: 2 + - uid: 8096 components: - type: Transform - pos: 44.5,19.5 - parent: 89 - - uid: 21282 + pos: -87.5,-10.5 + parent: 2 + - uid: 8097 components: - type: Transform - pos: 44.5,20.5 - parent: 89 - - uid: 21308 + pos: -87.5,-9.5 + parent: 2 + - uid: 8098 components: - type: Transform - pos: 14.5,19.5 - parent: 89 - - uid: 21355 + pos: -86.5,-8.5 + parent: 2 + - uid: 8099 components: - type: Transform - pos: 15.5,19.5 - parent: 89 - - uid: 21600 + pos: -86.5,-9.5 + parent: 2 + - uid: 8100 components: - type: Transform - pos: 4.5,13.5 - parent: 89 - - uid: 21601 + pos: -86.5,-10.5 + parent: 2 + - uid: 8101 components: - type: Transform - pos: 3.5,13.5 - parent: 89 - - uid: 21602 + pos: -87.5,-8.5 + parent: 2 + - uid: 8102 components: - type: Transform - pos: 2.5,13.5 - parent: 89 - - uid: 21603 + pos: -87.5,-7.5 + parent: 2 + - uid: 8103 components: - type: Transform - pos: 1.5,13.5 - parent: 89 - - uid: 21604 + pos: -88.5,-7.5 + parent: 2 + - uid: 8104 components: - type: Transform - pos: 0.5,13.5 - parent: 89 - - uid: 21605 + pos: -87.5,-7.5 + parent: 2 + - uid: 8105 components: - type: Transform - pos: 0.5,14.5 - parent: 89 - - uid: 21608 + pos: -86.5,-7.5 + parent: 2 + - uid: 8106 components: - type: Transform - pos: -4.5,12.5 - parent: 89 - - uid: 21609 + pos: -85.5,-7.5 + parent: 2 + - uid: 8107 components: - type: Transform - pos: -5.5,12.5 - parent: 89 - - uid: 21671 + pos: -84.5,-7.5 + parent: 2 + - uid: 8108 components: - type: Transform - pos: 1.5,-4.5 - parent: 21627 - - uid: 21672 + pos: -136.5,-13.5 + parent: 2 + - uid: 8109 components: - type: Transform - pos: 1.5,-3.5 - parent: 21627 - - uid: 21724 + pos: -136.5,-14.5 + parent: 2 + - uid: 8110 components: - type: Transform - pos: 7.5,-15.5 - parent: 89 - - uid: 21725 + pos: -138.5,-14.5 + parent: 2 + - uid: 8111 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 21726 + pos: -138.5,-13.5 + parent: 2 + - uid: 8112 components: - type: Transform - pos: 6.5,-15.5 - parent: 89 - - uid: 21952 + pos: -139.5,-13.5 + parent: 2 + - uid: 8113 components: - type: Transform - pos: 54.5,-23.5 - parent: 89 - - uid: 22129 + pos: -140.5,-13.5 + parent: 2 + - uid: 8114 components: - type: Transform - pos: 53.5,-23.5 - parent: 89 - - uid: 22130 + pos: -140.5,-14.5 + parent: 2 + - uid: 8115 components: - type: Transform - pos: 6.5,-16.5 - parent: 89 - - uid: 22132 + pos: -141.5,-14.5 + parent: 2 + - uid: 8116 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22139 + pos: -142.5,-14.5 + parent: 2 + - uid: 8117 components: - type: Transform - pos: 56.5,-23.5 - parent: 89 - - uid: 22226 + pos: -143.5,-14.5 + parent: 2 + - uid: 8118 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22228 + pos: -144.5,-14.5 + parent: 2 + - uid: 8119 components: - type: Transform - pos: 57.5,-23.5 - parent: 89 - - uid: 22229 + pos: -145.5,-14.5 + parent: 2 + - uid: 8120 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 22230 + pos: -146.5,-14.5 + parent: 2 + - uid: 8121 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 22231 + pos: -146.5,-13.5 + parent: 2 + - uid: 8122 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 22232 + pos: -147.5,-13.5 + parent: 2 + - uid: 8123 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 22233 + pos: -148.5,-13.5 + parent: 2 + - uid: 8124 components: - type: Transform - pos: 57.5,-18.5 - parent: 89 - - uid: 22234 + pos: -148.5,-14.5 + parent: 2 + - uid: 8125 components: - type: Transform - pos: 57.5,-17.5 - parent: 89 - - uid: 22237 + pos: -149.5,-13.5 + parent: 2 + - uid: 8126 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 22238 + pos: -150.5,-12.5 + parent: 2 + - uid: 8127 components: - type: Transform - pos: 51.5,-23.5 - parent: 89 - - uid: 22239 + pos: -149.5,-12.5 + parent: 2 + - uid: 8128 components: - - type: Transform - pos: 50.5,-23.5 - parent: 89 - - uid: 22240 + - type: Transform + pos: -149.5,-11.5 + parent: 2 + - uid: 8129 components: - type: Transform - pos: 49.5,-23.5 - parent: 89 - - uid: 22241 + pos: -149.5,-10.5 + parent: 2 + - uid: 8130 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 - - uid: 22242 + pos: -150.5,-10.5 + parent: 2 + - uid: 8131 components: - type: Transform - pos: 47.5,-23.5 - parent: 89 - - uid: 22243 + pos: -150.5,-9.5 + parent: 2 + - uid: 8132 components: - type: Transform - pos: 46.5,-23.5 - parent: 89 - - uid: 22244 + pos: -150.5,-8.5 + parent: 2 + - uid: 8133 components: - type: Transform - pos: 45.5,-23.5 - parent: 89 - - uid: 22245 + pos: -150.5,-7.5 + parent: 2 + - uid: 8134 components: - type: Transform - pos: 45.5,-22.5 - parent: 89 - - uid: 22246 + pos: -150.5,-6.5 + parent: 2 + - uid: 8135 components: - type: Transform - pos: 45.5,-21.5 - parent: 89 - - uid: 22247 + pos: -150.5,-5.5 + parent: 2 + - uid: 8136 components: - type: Transform - pos: 45.5,-20.5 - parent: 89 - - uid: 22248 + pos: -150.5,-4.5 + parent: 2 + - uid: 8137 components: - type: Transform - pos: 45.5,-19.5 - parent: 89 - - uid: 22249 + pos: -149.5,-4.5 + parent: 2 + - uid: 8138 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 - - uid: 22250 + pos: -149.5,-3.5 + parent: 2 + - uid: 8139 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 - - uid: 22251 + pos: -149.5,-2.5 + parent: 2 + - uid: 8140 components: - type: Transform - pos: 44.5,-18.5 - parent: 89 - - uid: 22252 + pos: -149.5,-1.5 + parent: 2 + - uid: 8141 components: - type: Transform - pos: 43.5,-18.5 - parent: 89 - - uid: 22253 + pos: -148.5,-0.5 + parent: 2 + - uid: 8142 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 22254 + pos: -148.5,-1.5 + parent: 2 + - uid: 8143 components: - type: Transform - pos: 41.5,-18.5 - parent: 89 - - uid: 22255 + pos: -147.5,-1.5 + parent: 2 + - uid: 8144 components: - type: Transform - pos: 40.5,-18.5 - parent: 89 - - uid: 22256 + pos: -146.5,-1.5 + parent: 2 + - uid: 8145 components: - type: Transform - pos: 39.5,-18.5 - parent: 89 - - uid: 22257 + pos: -146.5,-0.5 + parent: 2 + - uid: 8146 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 - - uid: 22258 + pos: -145.5,-0.5 + parent: 2 + - uid: 8147 components: - type: Transform - pos: 37.5,-18.5 - parent: 89 - - uid: 22544 + pos: -144.5,-0.5 + parent: 2 + - uid: 8148 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 22559 + pos: -143.5,-0.5 + parent: 2 + - uid: 8149 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 22561 + pos: -142.5,-0.5 + parent: 2 + - uid: 8150 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 23655 + pos: -141.5,-0.5 + parent: 2 + - uid: 8151 components: - type: Transform - pos: -8.5,-17.5 - parent: 22565 - - uid: 23656 + pos: -140.5,-0.5 + parent: 2 + - uid: 8152 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 23657 + pos: -140.5,-1.5 + parent: 2 + - uid: 8153 components: - type: Transform - pos: -8.5,-18.5 - parent: 22565 - - uid: 23658 + pos: -139.5,-1.5 + parent: 2 + - uid: 8154 components: - type: Transform - pos: -8.5,-21.5 - parent: 22565 - - uid: 23659 + pos: -138.5,-1.5 + parent: 2 + - uid: 8155 components: - type: Transform - pos: -8.5,-19.5 - parent: 22565 - - uid: 23660 + pos: -138.5,-0.5 + parent: 2 + - uid: 8156 components: - type: Transform - pos: -8.5,-20.5 - parent: 22565 - - uid: 23661 + pos: -137.5,-1.5 + parent: 2 + - uid: 8157 components: - type: Transform - pos: -8.5,-22.5 - parent: 22565 - - uid: 23662 + pos: -136.5,-2.5 + parent: 2 + - uid: 8158 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 23663 + pos: -137.5,-2.5 + parent: 2 + - uid: 8159 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 23664 + pos: -137.5,-3.5 + parent: 2 + - uid: 8160 components: - type: Transform - pos: -8.5,-25.5 - parent: 22565 - - uid: 23665 + pos: -137.5,-4.5 + parent: 2 + - uid: 8161 components: - type: Transform - pos: -7.5,-2.5 - parent: 22565 - - uid: 23666 + pos: -136.5,-4.5 + parent: 2 + - uid: 8162 components: - type: Transform - pos: -16.5,-2.5 - parent: 22565 - - uid: 23667 + pos: -136.5,-5.5 + parent: 2 + - uid: 8163 components: - type: Transform - pos: -15.5,-3.5 - parent: 22565 - - uid: 23668 + pos: -136.5,-6.5 + parent: 2 + - uid: 8164 components: - type: Transform - pos: -15.5,-2.5 - parent: 22565 - - uid: 23669 + pos: -136.5,-7.5 + parent: 2 + - uid: 8165 components: - type: Transform - pos: -8.5,-3.5 - parent: 22565 - - uid: 23670 + pos: -136.5,-8.5 + parent: 2 + - uid: 8166 components: - type: Transform - pos: -8.5,-2.5 - parent: 22565 - - uid: 23671 + pos: -136.5,-9.5 + parent: 2 + - uid: 8167 components: - type: Transform - pos: -18.5,2.5 - parent: 22565 - - uid: 23672 + pos: -136.5,-10.5 + parent: 2 + - uid: 8168 components: - type: Transform - pos: -20.5,2.5 - parent: 22565 - - uid: 23673 + pos: -137.5,-10.5 + parent: 2 + - uid: 8169 components: - type: Transform - pos: -23.5,2.5 - parent: 22565 - - uid: 23674 + pos: -137.5,-11.5 + parent: 2 + - uid: 8170 components: - type: Transform - pos: -25.5,2.5 - parent: 22565 - - uid: 23675 + pos: -137.5,-12.5 + parent: 2 + - uid: 8171 components: - type: Transform - pos: -27.5,2.5 - parent: 22565 - - uid: 23676 + pos: -137.5,-13.5 + parent: 2 + - uid: 8172 components: - type: Transform - pos: -15.5,-2.5 - parent: 22565 - - uid: 23677 + rot: 3.141592653589793 rad + pos: -80.5,-15.5 + parent: 2 + - uid: 8173 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 23678 + rot: 3.141592653589793 rad + pos: -79.5,-15.5 + parent: 2 + - uid: 8174 components: - type: Transform - pos: -14.5,-2.5 - parent: 22565 - - uid: 23679 + rot: 3.141592653589793 rad + pos: -78.5,-15.5 + parent: 2 + - uid: 8175 components: - type: Transform - pos: -14.5,-1.5 - parent: 22565 - - uid: 23680 + rot: 3.141592653589793 rad + pos: -78.5,-16.5 + parent: 2 + - uid: 8176 components: - type: Transform - pos: -14.5,-0.5 - parent: 22565 - - uid: 23681 + rot: 3.141592653589793 rad + pos: -78.5,-17.5 + parent: 2 + - uid: 8177 components: - type: Transform - pos: -14.5,0.5 - parent: 22565 - - uid: 23682 + rot: 3.141592653589793 rad + pos: -78.5,-18.5 + parent: 2 + - uid: 8178 components: - type: Transform - pos: -14.5,1.5 - parent: 22565 - - uid: 23683 + rot: 3.141592653589793 rad + pos: -76.5,-20.5 + parent: 2 + - uid: 8179 components: - type: Transform - pos: -14.5,2.5 - parent: 22565 - - uid: 23684 + rot: 3.141592653589793 rad + pos: -76.5,-19.5 + parent: 2 + - uid: 8180 components: - type: Transform - pos: -14.5,3.5 - parent: 22565 - - uid: 23685 + rot: 3.141592653589793 rad + pos: -77.5,-19.5 + parent: 2 + - uid: 8181 components: - type: Transform - pos: -15.5,4.5 - parent: 22565 - - uid: 23686 + rot: 3.141592653589793 rad + pos: -76.5,-18.5 + parent: 2 + - uid: 8182 components: - type: Transform - pos: -15.5,6.5 - parent: 22565 - - uid: 23687 + rot: 3.141592653589793 rad + pos: -76.5,-17.5 + parent: 2 + - uid: 8183 components: - type: Transform - pos: -12.5,7.5 - parent: 22565 - - uid: 23688 + rot: 3.141592653589793 rad + pos: 45.5,0.5 + parent: 2 + - uid: 8184 components: - type: Transform - pos: -12.5,8.5 - parent: 22565 - - uid: 23689 + rot: 3.141592653589793 rad + pos: 45.5,1.5 + parent: 2 + - uid: 8185 components: - type: Transform - pos: -11.5,8.5 - parent: 22565 - - uid: 23690 + rot: 3.141592653589793 rad + pos: 47.5,7.5 + parent: 2 + - uid: 8186 components: - type: Transform - pos: -11.5,8.5 - parent: 22565 - - uid: 23691 + rot: 3.141592653589793 rad + pos: 47.5,8.5 + parent: 2 + - uid: 8187 components: - type: Transform - pos: -10.5,8.5 - parent: 22565 - - uid: 23692 + pos: -114.5,29.5 + parent: 2 + - uid: 8188 components: - type: Transform - pos: -9.5,8.5 - parent: 22565 - - uid: 23693 + pos: -120.5,24.5 + parent: 2 + - uid: 8189 components: - type: Transform - pos: -8.5,8.5 - parent: 22565 - - uid: 23694 + rot: 3.141592653589793 rad + pos: 47.5,4.5 + parent: 2 + - uid: 8190 components: - type: Transform - pos: -8.5,8.5 - parent: 22565 - - uid: 23695 + rot: 3.141592653589793 rad + pos: -102.5,-13.5 + parent: 2 + - uid: 8191 components: - type: Transform - pos: -8.5,7.5 - parent: 22565 - - uid: 23696 + pos: -94.5,-14.5 + parent: 2 + - uid: 8192 components: - type: Transform - pos: -8.5,6.5 - parent: 22565 - - uid: 23697 + pos: -118.5,27.5 + parent: 2 + - uid: 8193 components: - type: Transform - pos: -8.5,5.5 - parent: 22565 - - uid: 23698 + pos: -95.5,-14.5 + parent: 2 + - uid: 8194 components: - type: Transform - pos: -8.5,4.5 - parent: 22565 - - uid: 23699 + pos: -116.5,27.5 + parent: 2 + - uid: 8195 components: - type: Transform - pos: -8.5,3.5 - parent: 22565 - - uid: 23700 + pos: -119.5,26.5 + parent: 2 + - uid: 8196 components: - type: Transform - pos: -8.5,3.5 - parent: 22565 - - uid: 23701 + pos: -94.5,-13.5 + parent: 2 + - uid: 8197 components: - type: Transform - pos: -9.5,3.5 - parent: 22565 - - uid: 23702 + pos: -115.5,27.5 + parent: 2 + - uid: 8198 components: - type: Transform - pos: -10.5,3.5 - parent: 22565 - - uid: 23703 + rot: 3.141592653589793 rad + pos: -99.5,-14.5 + parent: 2 + - uid: 8199 components: - type: Transform - pos: -11.5,3.5 - parent: 22565 - - uid: 23704 + pos: -114.5,28.5 + parent: 2 + - uid: 8200 components: - type: Transform - pos: -12.5,3.5 - parent: 22565 - - uid: 23705 + rot: 3.141592653589793 rad + pos: -103.5,-14.5 + parent: 2 + - uid: 8201 components: - type: Transform - pos: -13.5,3.5 - parent: 22565 - - uid: 23706 + rot: 3.141592653589793 rad + pos: -103.5,-13.5 + parent: 2 + - uid: 8202 components: - type: Transform - pos: -14.5,3.5 - parent: 22565 - - uid: 23707 + pos: -119.5,24.5 + parent: 2 + - uid: 8203 components: - type: Transform - pos: -15.5,3.5 - parent: 22565 - - uid: 23708 + pos: -122.5,18.5 + parent: 2 + - uid: 8204 components: - type: Transform - pos: -15.5,3.5 - parent: 22565 - - uid: 23709 + rot: 1.5707963267948966 rad + pos: -125.5,15.5 + parent: 2 + - uid: 8205 components: - type: Transform - pos: -15.5,4.5 - parent: 22565 - - uid: 23710 + rot: 1.5707963267948966 rad + pos: -126.5,17.5 + parent: 2 + - uid: 8206 components: - type: Transform - pos: -15.5,5.5 - parent: 22565 - - uid: 23711 + rot: 1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - uid: 8207 components: - type: Transform - pos: -15.5,7.5 - parent: 22565 - - uid: 23712 + pos: -126.5,15.5 + parent: 2 + - uid: 8208 components: - type: Transform - pos: -15.5,8.5 - parent: 22565 - - uid: 23713 + pos: -124.5,18.5 + parent: 2 + - uid: 8209 components: - type: Transform - pos: -14.5,8.5 - parent: 22565 - - uid: 23714 + pos: -126.5,18.5 + parent: 2 + - uid: 8210 components: - type: Transform - pos: -13.5,8.5 - parent: 22565 - - uid: 24729 + pos: -125.5,18.5 + parent: 2 + - uid: 8211 components: - type: Transform - pos: 7.5,-18.5 - parent: 89 - - uid: 24731 + pos: -122.5,15.5 + parent: 2 + - uid: 8212 components: - type: Transform - pos: 8.5,-18.5 - parent: 89 - - uid: 24734 + pos: -121.5,16.5 + parent: 2 + - uid: 24062 components: - type: Transform - pos: 9.5,-18.5 - parent: 89 - - uid: 24735 + rot: 1.5707963267948966 rad + pos: 5.5,-12.5 + parent: 23919 + - uid: 24063 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 24736 + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 23919 + - uid: 27502 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 24737 + rot: 3.141592653589793 rad + pos: -11.5,-11.5 + parent: 27260 + - uid: 27503 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 24738 + rot: 3.141592653589793 rad + pos: -11.5,-12.5 + parent: 27260 + - uid: 27504 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 24739 + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 27260 + - uid: 27505 components: - type: Transform - pos: 11.5,-19.5 - parent: 89 - - uid: 24740 + rot: 3.141592653589793 rad + pos: -9.5,-15.5 + parent: 27260 + - uid: 27506 components: - type: Transform - pos: 12.5,-19.5 - parent: 89 - - uid: 24741 + rot: 3.141592653589793 rad + pos: 12.5,-11.5 + parent: 27260 + - uid: 27507 components: - type: Transform - pos: 13.5,-19.5 - parent: 89 - - uid: 24742 + rot: 3.141592653589793 rad + pos: 12.5,-12.5 + parent: 27260 + - uid: 27508 components: - type: Transform - pos: 14.5,-19.5 - parent: 89 - - uid: 24743 + rot: 3.141592653589793 rad + pos: 10.5,-15.5 + parent: 27260 + - uid: 27509 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - uid: 24744 + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 27260 + - uid: 27510 components: - type: Transform - pos: 15.5,-18.5 - parent: 89 - - uid: 24745 + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 27260 + - uid: 27511 components: - type: Transform - pos: 16.5,-18.5 - parent: 89 - - uid: 24746 + rot: -1.5707963267948966 rad + pos: 8.5,7.5 + parent: 27260 + - uid: 27512 components: - type: Transform - pos: 17.5,-18.5 - parent: 89 - - uid: 24747 + rot: -1.5707963267948966 rad + pos: -7.5,-2.5 + parent: 27260 + - uid: 27513 components: - type: Transform - pos: 17.5,-17.5 - parent: 89 - - uid: 24748 + rot: -1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 27260 + - uid: 27514 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24751 + rot: -1.5707963267948966 rad + pos: -7.5,-0.5 + parent: 27260 + - uid: 27515 components: - type: Transform - pos: 17.5,-16.5 - parent: 89 - - uid: 24752 + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 27260 + - uid: 27516 components: - type: Transform - pos: 18.5,-16.5 - parent: 89 - - uid: 24753 + pos: -0.5,-15.5 + parent: 27260 + - uid: 27517 components: - type: Transform - pos: 19.5,-16.5 - parent: 89 - - uid: 24754 + pos: 0.5,-15.5 + parent: 27260 + - uid: 27518 components: - type: Transform - pos: 21.5,-16.5 - parent: 89 - - uid: 24755 + pos: 1.5,-15.5 + parent: 27260 + - uid: 27519 components: - type: Transform - pos: 22.5,-16.5 - parent: 89 - - uid: 24756 + rot: -1.5707963267948966 rad + pos: 8.5,-0.5 + parent: 27260 + - uid: 27520 components: - type: Transform - pos: 23.5,-16.5 - parent: 89 - - uid: 24757 + rot: -1.5707963267948966 rad + pos: 8.5,-2.5 + parent: 27260 + - uid: 27521 components: - type: Transform - pos: 24.5,-16.5 - parent: 89 - - uid: 24758 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 27260 + - uid: 27522 components: - type: Transform - pos: 25.5,-16.5 - parent: 89 - - uid: 24759 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 27260 + - uid: 27523 components: - type: Transform - pos: 26.5,-16.5 - parent: 89 - - uid: 24760 + rot: 3.141592653589793 rad + pos: -0.5,-11.5 + parent: 27260 + - uid: 27524 components: - type: Transform - pos: 26.5,-17.5 - parent: 89 - - uid: 25483 + rot: 3.141592653589793 rad + pos: -0.5,-12.5 + parent: 27260 + - uid: 27525 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25484 + pos: 5.5,-0.5 + parent: 27260 + - uid: 27526 components: - type: Transform - pos: 2.5,-10.5 - parent: 18153 - - uid: 25485 + pos: 5.5,-2.5 + parent: 27260 + - uid: 27527 components: - type: Transform - pos: 1.5,-11.5 - parent: 18153 - - uid: 25486 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 27260 + - uid: 27528 components: - type: Transform - pos: 1.5,-10.5 - parent: 18153 - - uid: 25487 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 27260 + - uid: 27529 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 - - uid: 25488 + pos: -9.5,-5.5 + parent: 27260 + - uid: 27530 components: - type: Transform - pos: 4.5,-10.5 - parent: 18153 - - uid: 25489 + pos: -10.5,-3.5 + parent: 27260 + - uid: 27531 components: - type: Transform - pos: 5.5,-10.5 - parent: 18153 - - uid: 25654 + pos: -10.5,0.5 + parent: 27260 + - uid: 27532 components: - type: Transform - pos: -12.5,5.5 - parent: 22565 - - uid: 25655 + pos: -8.5,0.5 + parent: 27260 + - uid: 27533 components: - type: Transform - pos: -12.5,4.5 - parent: 22565 - - uid: 25656 + pos: -8.5,-3.5 + parent: 27260 + - uid: 27534 components: - type: Transform - pos: -12.5,6.5 - parent: 22565 - - uid: 25675 + pos: 9.5,-3.5 + parent: 27260 + - uid: 27535 components: - type: Transform - pos: -119.5,20.5 - parent: 89 - - uid: 25855 + pos: 9.5,2.5 + parent: 27260 + - uid: 27536 components: - type: Transform - pos: -120.5,20.5 - parent: 89 - - uid: 25856 + pos: 11.5,2.5 + parent: 27260 + - uid: 27537 components: - type: Transform - pos: -121.5,20.5 - parent: 89 - - uid: 25857 + pos: 11.5,-3.5 + parent: 27260 + - uid: 27538 components: - type: Transform - pos: -122.5,20.5 - parent: 89 - - uid: 25858 + pos: 10.5,-0.5 + parent: 27260 + - uid: 27539 components: - type: Transform - pos: -123.5,20.5 - parent: 89 -- proto: CableMVStack + pos: 10.5,-6.5 + parent: 27260 +- proto: Cautery entities: - - uid: 14944 + - uid: 8213 components: - type: Transform - pos: -9.465677,-35.477985 - parent: 89 - - uid: 15045 + pos: -12.431932,21.596758 + parent: 2 + - uid: 8214 components: - type: Transform - pos: -133.55994,-2.31929 - parent: 89 - - uid: 15288 + pos: -1.7167411,15.760399 + parent: 2 +- proto: CentcomComputerComms + entities: + - uid: 24064 components: - type: Transform - pos: -115.52017,14.53778 - parent: 89 - - uid: 18186 + pos: 3.5,6.5 + parent: 23919 +- proto: Chair + entities: + - uid: 8215 components: - type: Transform - pos: -133.73679,-2.6017027 - parent: 89 - - uid: 18250 + rot: -1.5707963267948966 rad + pos: -28.5,-17.5 + parent: 2 + - uid: 8216 components: - type: Transform - pos: 35.409824,32.517487 - parent: 89 - - uid: 19704 + rot: 1.5707963267948966 rad + pos: -30.5,-17.5 + parent: 2 + - uid: 8217 components: - type: Transform - pos: 17.273815,-1.2010975 - parent: 89 - - uid: 19705 + rot: -1.5707963267948966 rad + pos: -4.5,-21.5 + parent: 2 + - uid: 8218 components: - type: Transform - pos: 17.273815,-1.2010975 - parent: 89 - - uid: 19706 + rot: -1.5707963267948966 rad + pos: -4.5,-22.5 + parent: 2 + - uid: 8219 components: - type: Transform - pos: 17.273815,-1.2010975 - parent: 89 - - uid: 19737 + rot: 3.141592653589793 rad + pos: -62.5,43.5 + parent: 2 + - uid: 8220 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 19738 + rot: 1.5707963267948966 rad + pos: -9.5,-21.5 + parent: 2 + - uid: 8221 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 19739 + pos: -77.5,-23.5 + parent: 2 + - uid: 8222 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 19740 + rot: 3.141592653589793 rad + pos: -77.5,-25.5 + parent: 2 + - uid: 8223 components: - type: Transform - pos: -119.475075,12.315424 - parent: 89 - - uid: 20084 + rot: 1.5707963267948966 rad + pos: -71.5,-13.5 + parent: 2 + - uid: 8224 components: - type: Transform - pos: -115.50875,5.940868 - parent: 89 - - uid: 21095 + pos: -66.5,1.5 + parent: 2 + - uid: 8225 components: - type: Transform - pos: -103.143776,-2.2963343 - parent: 89 - - uid: 21096 + pos: -65.5,1.5 + parent: 2 + - uid: 8226 components: - type: Transform - pos: -102.487526,-2.2963343 - parent: 89 -- proto: CableMVStack1 - entities: - - uid: 8340 + pos: -63.5,1.5 + parent: 2 + - uid: 8227 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.2917204,32.569008 - parent: 89 -- proto: CableTerminal - entities: - - uid: 490 + pos: -62.5,1.5 + parent: 2 + - uid: 8228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-3.5 - parent: 89 - - uid: 8563 + pos: -60.5,1.5 + parent: 2 + - uid: 8229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,17.5 - parent: 89 - - uid: 8566 + pos: -59.5,1.5 + parent: 2 + - uid: 8230 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,17.5 - parent: 89 - - uid: 8568 + pos: -105.5,8.5 + parent: 2 + - uid: 8231 components: - type: Transform rot: 3.141592653589793 rad - pos: -123.5,17.5 - parent: 89 - - uid: 11666 + pos: -103.5,8.5 + parent: 2 + - uid: 8232 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,3.5 - parent: 89 - - uid: 15859 + pos: -100.5,-1.5 + parent: 2 + - uid: 8233 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,17.5 - parent: 89 - - uid: 15881 + pos: -101.5,-1.5 + parent: 2 + - uid: 8234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,17.5 - parent: 89 - - uid: 16511 + pos: -102.5,-1.5 + parent: 2 + - uid: 8235 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,17.5 - parent: 89 - - uid: 16582 + pos: -100.5,-3.5 + parent: 2 + - uid: 8236 components: - type: Transform - pos: -116.5,14.5 - parent: 89 - - uid: 20277 + rot: 3.141592653589793 rad + pos: -101.5,-3.5 + parent: 2 + - uid: 8237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,27.5 - parent: 89 - - uid: 22122 + rot: 3.141592653589793 rad + pos: -102.5,-3.5 + parent: 2 + - uid: 8238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-12.5 - parent: 89 - - uid: 22123 + rot: 3.141592653589793 rad + pos: -103.5,-3.5 + parent: 2 + - uid: 8239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-11.5 - parent: 89 - - uid: 22361 + pos: -103.5,-1.5 + parent: 2 + - uid: 8240 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,-4.5 - parent: 89 - - uid: 23715 + pos: -104.5,-2.5 + parent: 2 + - uid: 8241 components: - type: Transform - pos: -5.5,-16.5 - parent: 22565 -- proto: CannabisSeeds - entities: - - uid: 8060 + rot: -1.5707963267948966 rad + pos: -91.5,3.5 + parent: 2 + - uid: 8242 components: - type: Transform - pos: -7.856884,37.448025 - parent: 89 - - uid: 8061 + rot: -1.5707963267948966 rad + pos: -91.5,2.5 + parent: 2 + - uid: 8243 components: - type: Transform - pos: -7.888134,36.5574 - parent: 89 - - uid: 8062 + rot: -1.5707963267948966 rad + pos: -51.5,45.5 + parent: 2 + - uid: 8244 components: - type: Transform - pos: -7.872509,35.635525 - parent: 89 -- proto: CapacitorStockPart - entities: - - uid: 84 + rot: -1.5707963267948966 rad + pos: -51.5,41.5 + parent: 2 + - uid: 8245 components: - type: Transform - pos: -16.616455,-15.321603 - parent: 89 - - uid: 88 + rot: 1.5707963267948966 rad + pos: -62.5,35.5 + parent: 2 + - uid: 8246 components: - type: Transform - pos: -16.522705,-15.493478 - parent: 89 - - uid: 7056 + rot: 1.5707963267948966 rad + pos: -62.5,34.5 + parent: 2 + - uid: 8247 components: - type: Transform - pos: -102.642654,-10.369977 - parent: 89 - - uid: 7057 + rot: 1.5707963267948966 rad + pos: -62.5,33.5 + parent: 2 + - uid: 8248 components: - type: Transform - pos: -102.642654,-10.682477 - parent: 89 - - uid: 7058 + rot: -1.5707963267948966 rad + pos: -64.5,32.5 + parent: 2 + - uid: 8249 components: - type: Transform - pos: -102.43953,-10.682477 - parent: 89 - - uid: 7059 + rot: -1.5707963267948966 rad + pos: -64.5,33.5 + parent: 2 + - uid: 8250 components: - type: Transform - pos: -102.392654,-10.448102 - parent: 89 - - uid: 7060 + rot: -1.5707963267948966 rad + pos: -64.5,34.5 + parent: 2 + - uid: 8251 components: - type: Transform - pos: -102.25203,-10.385602 - parent: 89 - - uid: 7061 + rot: -1.5707963267948966 rad + pos: -64.5,35.5 + parent: 2 + - uid: 8252 components: - type: Transform - pos: -102.18953,-10.666852 - parent: 89 - - uid: 20791 + rot: -1.5707963267948966 rad + pos: -64.5,36.5 + parent: 2 + - uid: 8253 components: - type: Transform rot: 3.141592653589793 rad - pos: -102.48644,-10.473882 - parent: 89 -- proto: CaptainIDCard - entities: - - uid: 838 - components: - - type: Transform - pos: 47.43045,10.357418 - parent: 89 -- proto: CarbonDioxideCanister - entities: - - uid: 1139 + pos: -60.5,28.5 + parent: 2 + - uid: 8254 components: - type: Transform - pos: -96.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: CargoIDCard - entities: - - uid: 23716 + rot: 3.141592653589793 rad + pos: -59.5,28.5 + parent: 2 + - uid: 8255 components: - type: Transform - pos: 6.5659084,-1.4425423 - parent: 22565 -- proto: Carpet - entities: - - uid: 2843 + rot: 3.141592653589793 rad + pos: -58.5,28.5 + parent: 2 + - uid: 8256 components: - type: Transform - pos: 33.5,-1.5 - parent: 89 - - uid: 2847 + rot: 3.141592653589793 rad + pos: -57.5,28.5 + parent: 2 + - uid: 8257 components: - type: Transform - pos: 34.5,-2.5 - parent: 89 - - uid: 3032 + rot: 1.5707963267948966 rad + pos: -67.5,41.5 + parent: 2 + - uid: 8258 components: - type: Transform - pos: 34.5,-1.5 - parent: 89 - - uid: 3041 + rot: 1.5707963267948966 rad + pos: -67.5,42.5 + parent: 2 + - uid: 8259 components: - type: Transform - pos: 34.5,-3.5 - parent: 89 - - uid: 3043 + rot: 1.5707963267948966 rad + pos: -67.5,43.5 + parent: 2 + - uid: 8260 components: - type: Transform - pos: 33.5,-2.5 - parent: 89 - - uid: 3064 + rot: 1.5707963267948966 rad + pos: -67.5,44.5 + parent: 2 + - uid: 8261 components: - type: Transform - pos: 33.5,-3.5 - parent: 89 - - uid: 3065 + pos: -62.5,45.5 + parent: 2 + - uid: 8262 components: - type: Transform - pos: 32.5,-3.5 - parent: 89 - - uid: 3066 + pos: -61.5,45.5 + parent: 2 + - uid: 8263 components: - type: Transform - pos: 32.5,-2.5 - parent: 89 - - uid: 3067 + pos: -60.5,45.5 + parent: 2 + - uid: 8264 components: - type: Transform - pos: 32.5,-1.5 - parent: 89 - - uid: 3980 + rot: 1.5707963267948966 rad + pos: -89.5,7.5 + parent: 2 + - uid: 8265 components: - type: Transform - pos: -30.5,-5.5 - parent: 89 - - uid: 3981 + rot: 1.5707963267948966 rad + pos: -89.5,8.5 + parent: 2 + - uid: 8266 components: - type: Transform - pos: -30.5,-6.5 - parent: 89 - - uid: 3982 + pos: -63.5,5.5 + parent: 2 + - uid: 8267 components: - type: Transform - pos: -30.5,-7.5 - parent: 89 - - uid: 3983 + rot: 1.5707963267948966 rad + pos: -69.5,12.5 + parent: 2 + - uid: 8268 components: - type: Transform - pos: -29.5,-5.5 - parent: 89 - - uid: 3984 + rot: 1.5707963267948966 rad + pos: -69.5,13.5 + parent: 2 + - uid: 8269 components: - type: Transform - pos: -29.5,-6.5 - parent: 89 - - uid: 3985 + pos: -62.5,5.5 + parent: 2 + - uid: 8270 components: - type: Transform - pos: -29.5,-7.5 - parent: 89 - - uid: 10474 + pos: -69.5,5.5 + parent: 2 + - uid: 8271 components: - type: Transform - pos: 22.5,5.5 - parent: 89 - - uid: 10475 + pos: -68.5,5.5 + parent: 2 + - uid: 8272 components: - type: Transform - pos: 22.5,6.5 - parent: 89 - - uid: 10476 + pos: -98.5,18.5 + parent: 2 + - uid: 8273 components: - type: Transform - pos: 22.5,7.5 - parent: 89 - - uid: 10477 + pos: -97.5,18.5 + parent: 2 + - uid: 8274 components: - type: Transform - pos: 21.5,5.5 - parent: 89 - - uid: 10478 + rot: 3.141592653589793 rad + pos: -122.5,21.5 + parent: 2 + - uid: 8275 components: - type: Transform - pos: 21.5,6.5 - parent: 89 - - uid: 10479 + rot: 3.141592653589793 rad + pos: -121.5,21.5 + parent: 2 + - uid: 8276 components: - type: Transform - pos: 21.5,7.5 - parent: 89 - - uid: 10480 + rot: -1.5707963267948966 rad + pos: -43.5,21.5 + parent: 2 + - uid: 8277 components: - type: Transform - pos: 20.5,5.5 - parent: 89 - - uid: 10481 + rot: 1.5707963267948966 rad + pos: -45.5,21.5 + parent: 2 + - uid: 8278 components: - type: Transform - pos: 20.5,6.5 - parent: 89 - - uid: 10482 + rot: 3.141592653589793 rad + pos: -79.5,7.5 + parent: 2 + - uid: 8279 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 17078 + rot: 3.141592653589793 rad + pos: -78.5,7.5 + parent: 2 + - uid: 8280 components: - type: Transform - pos: -78.5,-0.5 - parent: 89 - - uid: 17079 + rot: 1.5707963267948966 rad + pos: -89.5,9.5 + parent: 2 + - uid: 8281 components: - type: Transform - pos: -78.5,-1.5 - parent: 89 - - uid: 17080 + rot: -1.5707963267948966 rad + pos: -72.5,7.5 + parent: 2 + - uid: 8282 components: - type: Transform - pos: -79.5,-0.5 - parent: 89 - - uid: 17081 + rot: 1.5707963267948966 rad + pos: -75.5,7.5 + parent: 2 + - uid: 8283 components: - type: Transform - pos: -79.5,-1.5 - parent: 89 -- proto: CarpetBlue - entities: - - uid: 793 + rot: 1.5707963267948966 rad + pos: -86.5,33.5 + parent: 2 + - uid: 8284 components: - type: Transform - pos: 46.5,13.5 - parent: 89 - - uid: 21558 + rot: 3.141592653589793 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 8285 components: - type: Transform - pos: 18.5,17.5 - parent: 89 - - uid: 21559 + rot: 3.141592653589793 rad + pos: 3.5,-25.5 + parent: 2 + - uid: 8286 components: - type: Transform - pos: 18.5,18.5 - parent: 89 - - uid: 21560 + pos: -2.5,-27.5 + parent: 2 + - uid: 8287 components: - type: Transform - pos: 18.5,19.5 - parent: 89 - - uid: 21561 + rot: 3.141592653589793 rad + pos: -2.5,-29.5 + parent: 2 + - uid: 8288 components: - type: Transform - pos: 19.5,17.5 - parent: 89 - - uid: 21562 + pos: -0.5,-27.5 + parent: 2 + - uid: 8289 components: - type: Transform - pos: 19.5,18.5 - parent: 89 - - uid: 21563 + rot: 3.141592653589793 rad + pos: -0.5,-29.5 + parent: 2 + - uid: 8290 components: - type: Transform - pos: 19.5,19.5 - parent: 89 - - uid: 21564 + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - uid: 8291 components: - type: Transform - pos: 20.5,17.5 - parent: 89 - - uid: 21566 + rot: 1.5707963267948966 rad + pos: -15.5,-21.5 + parent: 2 + - uid: 8292 components: - type: Transform - pos: 20.5,18.5 - parent: 89 - - uid: 21568 + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - uid: 8293 components: - type: Transform - pos: 20.5,19.5 - parent: 89 -- proto: CarpetChapel - entities: - - uid: 6754 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - uid: 8294 components: - type: Transform - pos: -52.5,-1.5 - parent: 89 - - uid: 6755 + pos: 4.5,-10.5 + parent: 2 + - uid: 8295 components: - type: Transform - pos: -52.5,0.5 - parent: 89 - - uid: 6756 + rot: -1.5707963267948966 rad + pos: -64.5,41.5 + parent: 2 + - uid: 8296 components: - type: Transform - pos: -48.5,-1.5 - parent: 89 - - uid: 6757 + rot: 1.5707963267948966 rad + pos: -60.5,42.5 + parent: 2 + - uid: 8297 components: - type: Transform - pos: -48.5,0.5 - parent: 89 - - uid: 6758 + rot: 3.141592653589793 rad + pos: -63.5,43.5 + parent: 2 + - uid: 8298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,1.5 - parent: 89 - - uid: 6759 + rot: 3.141592653589793 rad + pos: -61.5,43.5 + parent: 2 + - uid: 8299 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-0.5 - parent: 89 - - uid: 6760 + pos: -33.5,-14.5 + parent: 2 + - uid: 8300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,1.5 - parent: 89 - - uid: 6761 + rot: 1.5707963267948966 rad + pos: -35.5,-14.5 + parent: 2 + - uid: 8301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,-0.5 - parent: 89 - - uid: 6762 + rot: 1.5707963267948966 rad + pos: -41.5,-7.5 + parent: 2 + - uid: 8302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,1.5 - parent: 89 - - uid: 6763 + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - uid: 8303 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-0.5 - parent: 89 - - uid: 6764 + pos: -14.5,24.5 + parent: 2 + - uid: 8304 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,-0.5 - parent: 89 - - uid: 6765 + pos: -13.5,24.5 + parent: 2 + - uid: 8305 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,1.5 - parent: 89 - - uid: 6766 + pos: 13.5,3.5 + parent: 2 + - uid: 8306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,0.5 - parent: 89 - - uid: 6767 + pos: 12.5,3.5 + parent: 2 + - uid: 8307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-1.5 - parent: 89 - - uid: 6768 + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 2 + - uid: 8308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-1.5 - parent: 89 - - uid: 6770 + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 2 + - uid: 8309 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,0.5 - parent: 89 - - uid: 6773 + pos: 47.5,-30.5 + parent: 2 + - uid: 8310 components: - type: Transform - pos: -52.5,-3.5 - parent: 89 - - uid: 6774 + rot: -1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 + - uid: 8311 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-2.5 - parent: 89 - - uid: 6775 + pos: 36.5,-27.5 + parent: 2 + - uid: 8312 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,-2.5 - parent: 89 - - uid: 6776 + pos: 36.5,-26.5 + parent: 2 + - uid: 8313 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-2.5 - parent: 89 - - uid: 6777 + pos: 36.5,-25.5 + parent: 2 + - uid: 8314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,-2.5 - parent: 89 - - uid: 6778 + rot: -1.5707963267948966 rad + pos: 36.5,-24.5 + parent: 2 + - uid: 8315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-2.5 - parent: 89 - - uid: 6779 + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 8316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-2.5 - parent: 89 - - uid: 6780 + pos: 4.5,-0.5 + parent: 2 + - uid: 8317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-3.5 - parent: 89 - - uid: 6781 + pos: 5.5,-0.5 + parent: 2 + - uid: 8318 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,-3.5 - parent: 89 - - uid: 6782 + pos: 2.5,-1.5 + parent: 2 + - uid: 8319 components: - type: Transform rot: 1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 89 - - uid: 6783 + pos: 2.5,-2.5 + parent: 2 + - uid: 8320 components: - type: Transform - pos: -48.5,-3.5 - parent: 89 - - uid: 6785 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 2 + - uid: 8321 components: - type: Transform - pos: -50.5,-3.5 - parent: 89 -- proto: CarpetGreen - entities: - - uid: 9973 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 2 + - uid: 8322 components: - type: Transform - pos: -51.5,10.5 - parent: 89 - - uid: 9974 + rot: 3.141592653589793 rad + pos: -5.5,-8.5 + parent: 2 + - uid: 8323 components: - type: Transform - pos: -51.5,9.5 - parent: 89 - - uid: 9975 + pos: -5.5,-6.5 + parent: 2 + - uid: 25613 components: - type: Transform - pos: -51.5,8.5 - parent: 89 - - uid: 9976 + rot: 1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 24450 + - uid: 25614 components: - type: Transform - pos: -50.5,10.5 - parent: 89 - - uid: 9977 + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 24450 + - uid: 25615 components: - type: Transform - pos: -50.5,9.5 - parent: 89 - - uid: 9978 + rot: -1.5707963267948966 rad + pos: -17.5,-24.5 + parent: 24450 + - uid: 25616 components: - type: Transform - pos: -50.5,8.5 - parent: 89 - - uid: 9979 + rot: -1.5707963267948966 rad + pos: -17.5,-23.5 + parent: 24450 + - uid: 25617 components: - type: Transform - pos: -49.5,10.5 - parent: 89 - - uid: 9980 + pos: -30.5,12.5 + parent: 24450 + - uid: 25618 components: - type: Transform - pos: -49.5,9.5 - parent: 89 - - uid: 9981 + rot: 3.141592653589793 rad + pos: -30.5,10.5 + parent: 24450 + - uid: 25619 components: - type: Transform - pos: -49.5,8.5 - parent: 89 - - uid: 9982 + pos: 6.5,12.5 + parent: 24450 + - uid: 25620 components: - type: Transform - pos: -48.5,10.5 - parent: 89 - - uid: 9983 + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 24450 + - uid: 25621 components: - type: Transform - pos: -48.5,9.5 - parent: 89 - - uid: 9984 + rot: -1.5707963267948966 rad + pos: -34.5,9.5 + parent: 24450 + - uid: 25622 components: - type: Transform - pos: -48.5,8.5 - parent: 89 - - uid: 10114 + rot: 1.5707963267948966 rad + pos: 10.5,11.5 + parent: 24450 + - uid: 25623 components: - type: Transform - pos: -26.5,31.5 - parent: 89 - - uid: 10265 + rot: 1.5707963267948966 rad + pos: 10.5,9.5 + parent: 24450 + - uid: 25624 components: - type: Transform - pos: -26.5,32.5 - parent: 89 -- proto: CarpetOrange - entities: - - uid: 4513 + rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 24450 + - uid: 25625 components: - type: Transform - pos: -73.5,-17.5 - parent: 89 - - uid: 4575 + rot: 1.5707963267948966 rad + pos: 10.5,5.5 + parent: 24450 + - uid: 25626 components: - type: Transform - pos: -49.5,1.5 - parent: 89 - - uid: 4644 + rot: -1.5707963267948966 rad + pos: -34.5,11.5 + parent: 24450 + - uid: 25627 components: - type: Transform - pos: -50.5,0.5 - parent: 89 - - uid: 4645 + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 24450 + - uid: 25628 components: - type: Transform - pos: -50.5,-1.5 - parent: 89 - - uid: 4646 + rot: 3.141592653589793 rad + pos: -0.5,6.5 + parent: 24450 + - uid: 25629 components: - type: Transform - pos: -50.5,-0.5 - parent: 89 - - uid: 4647 + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 24450 + - uid: 25630 components: - type: Transform - pos: -49.5,0.5 - parent: 89 - - uid: 4648 + rot: 3.141592653589793 rad + pos: 1.5,6.5 + parent: 24450 + - uid: 25631 components: - type: Transform - pos: -49.5,-0.5 - parent: 89 - - uid: 4649 + rot: 3.141592653589793 rad + pos: -18.5,6.5 + parent: 24450 + - uid: 25632 components: - type: Transform - pos: -49.5,-1.5 - parent: 89 - - uid: 5113 + rot: 3.141592653589793 rad + pos: -23.5,6.5 + parent: 24450 + - uid: 25633 components: - type: Transform - pos: -50.5,1.5 - parent: 89 - - uid: 6043 + rot: 3.141592653589793 rad + pos: -25.5,6.5 + parent: 24450 + - uid: 25634 components: - type: Transform - pos: -73.5,-16.5 - parent: 89 - - uid: 6113 + rot: 3.141592653589793 rad + pos: -24.5,6.5 + parent: 24450 + - uid: 25635 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 6114 + rot: 3.141592653589793 rad + pos: -19.5,6.5 + parent: 24450 + - uid: 25636 components: - type: Transform - pos: -72.5,-17.5 - parent: 89 - - uid: 6115 + rot: 3.141592653589793 rad + pos: -4.5,6.5 + parent: 24450 + - uid: 25637 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 6116 + rot: 3.141592653589793 rad + pos: 0.5,6.5 + parent: 24450 +- proto: ChairCarp + entities: + - uid: 8324 components: - type: Transform - pos: -71.5,-17.5 - parent: 89 - - uid: 6117 + rot: 3.141592653589793 rad + pos: -76.5,-3.5 + parent: 2 + - uid: 8325 components: - type: Transform - pos: -70.5,-16.5 - parent: 89 - - uid: 6118 + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 + - uid: 8326 components: - type: Transform - pos: -70.5,-17.5 - parent: 89 -- proto: CarpetPurple + rot: 1.5707963267948966 rad + pos: -24.5,8.5 + parent: 2 +- proto: ChairFolding entities: - - uid: 171 + - uid: 8327 components: - type: Transform - pos: 4.5,-31.5 - parent: 89 - - uid: 172 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 2 + - uid: 8328 components: - type: Transform - pos: 4.5,-30.5 - parent: 89 - - uid: 173 + rot: 1.5707963267948966 rad + pos: -8.5,41.5 + parent: 2 + - uid: 8329 components: - type: Transform - pos: 3.5,-30.5 - parent: 89 - - uid: 174 + pos: -7.5,42.5 + parent: 2 + - uid: 8330 components: - type: Transform - pos: 3.5,-31.5 - parent: 89 - - uid: 175 + pos: -6.5,42.5 + parent: 2 + - uid: 8331 components: - type: Transform - pos: 2.5,-31.5 - parent: 89 - - uid: 176 + rot: 1.5707963267948966 rad + pos: 2.5,41.5 + parent: 2 + - uid: 8332 components: - type: Transform - pos: 2.5,-30.5 - parent: 89 - - uid: 177 + pos: -13.5,9.5 + parent: 2 + - uid: 8333 components: - type: Transform - pos: 1.5,-30.5 - parent: 89 - - uid: 178 + rot: -1.5707963267948966 rad + pos: -5.5,6.5 + parent: 2 + - uid: 8334 components: - type: Transform - pos: 1.5,-31.5 - parent: 89 - - uid: 4564 + pos: -12.5,9.5 + parent: 2 + - uid: 8335 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-3.5 - parent: 89 - - uid: 4880 + pos: -10.5,6.5 + parent: 2 + - uid: 8336 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,-2.5 - parent: 89 - - uid: 4881 + pos: -13.5,6.5 + parent: 2 + - uid: 8337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-2.5 - parent: 89 - - uid: 5005 + rot: 1.5707963267948966 rad + pos: -7.5,9.5 + parent: 2 + - uid: 8338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-3.5 - parent: 89 - - uid: 5006 + rot: -1.5707963267948966 rad + pos: -5.5,9.5 + parent: 2 + - uid: 8339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-3.5 - parent: 89 - - uid: 5489 + rot: 1.5707963267948966 rad + pos: -7.5,6.5 + parent: 2 + - uid: 8340 components: - type: Transform rot: 3.141592653589793 rad - pos: -76.5,-2.5 - parent: 89 - - uid: 9942 + pos: -0.5,11.5 + parent: 2 + - uid: 8341 components: - type: Transform - pos: -46.5,9.5 - parent: 89 - - uid: 9943 + pos: 6.5,14.5 + parent: 2 + - uid: 8342 components: - type: Transform - pos: -46.5,8.5 - parent: 89 - - uid: 9985 + pos: 10.5,14.5 + parent: 2 + - uid: 8343 components: - type: Transform - pos: -45.5,9.5 - parent: 89 - - uid: 9986 + rot: 3.141592653589793 rad + pos: 8.5,11.5 + parent: 2 + - uid: 8344 components: - type: Transform - pos: -53.5,9.5 - parent: 89 - - uid: 9987 + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - uid: 8345 components: - type: Transform - pos: -53.5,8.5 - parent: 89 - - uid: 9988 + pos: -0.5,13.5 + parent: 2 + - uid: 8346 components: - type: Transform - pos: -46.5,7.5 - parent: 89 - - uid: 9993 + rot: -1.5707963267948966 rad + pos: -36.5,25.5 + parent: 2 + - uid: 8347 components: - type: Transform - pos: -45.5,8.5 - parent: 89 - - uid: 9994 + rot: -1.5707963267948966 rad + pos: -36.5,24.5 + parent: 2 + - uid: 8348 components: - type: Transform - pos: -45.5,7.5 - parent: 89 - - uid: 9995 + rot: -1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 + - uid: 8349 components: - type: Transform - pos: -44.5,9.5 - parent: 89 - - uid: 9996 + rot: 1.5707963267948966 rad + pos: -6.5,20.5 + parent: 2 + - uid: 8350 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 9997 + rot: 1.5707963267948966 rad + pos: -80.52398,-2.1615353 + parent: 2 + - uid: 8351 components: - type: Transform - pos: -44.5,7.5 - parent: 89 - - uid: 9998 + pos: 44.5,-37.5 + parent: 2 + - uid: 8352 components: - type: Transform - pos: -43.5,9.5 - parent: 89 - - uid: 9999 + rot: -1.5707963267948966 rad + pos: 28.5,17.5 + parent: 2 + - uid: 8353 components: - type: Transform - pos: -43.5,8.5 - parent: 89 - - uid: 10000 + rot: -1.5707963267948966 rad + pos: 28.5,16.5 + parent: 2 + - uid: 8354 components: - type: Transform - pos: -43.5,7.5 - parent: 89 -- proto: CarpetSBlue - entities: - - uid: 792 + rot: -1.5707963267948966 rad + pos: 28.5,18.5 + parent: 2 + - uid: 8355 components: - type: Transform - pos: 42.5,14.5 - parent: 89 - - uid: 1866 + rot: 3.141592653589793 rad + pos: 25.5,35.5 + parent: 2 + - uid: 8356 components: - type: Transform - pos: 40.5,13.5 - parent: 89 - - uid: 1867 + rot: 3.141592653589793 rad + pos: 47.5,22.5 + parent: 2 + - uid: 8357 components: - type: Transform - pos: 40.5,12.5 - parent: 89 - - uid: 1868 + rot: 3.141592653589793 rad + pos: 48.5,22.5 + parent: 2 + - uid: 8358 components: - type: Transform - pos: 41.5,13.5 - parent: 89 - - uid: 1869 + rot: 1.5707963267948966 rad + pos: -6.5,19.5 + parent: 2 + - uid: 8359 components: - type: Transform - pos: 41.5,12.5 - parent: 89 - - uid: 3197 + rot: -1.5707963267948966 rad + pos: -4.5,16.5 + parent: 2 + - uid: 8360 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 3205 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 + parent: 2 + - uid: 8361 components: - type: Transform - pos: 41.5,14.5 - parent: 89 - - uid: 3283 + rot: 1.5707963267948966 rad + pos: 44.5,-30.5 + parent: 2 + - uid: 8362 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 17082 + rot: -1.5707963267948966 rad + pos: 55.5,-13.5 + parent: 2 + - uid: 8363 components: - type: Transform - pos: -74.5,-0.5 - parent: 89 - - uid: 17083 + pos: 46.5,-37.5 + parent: 2 + - uid: 25638 components: - type: Transform - pos: -74.5,-1.5 - parent: 89 - - uid: 17084 + pos: 1.5,10.5 + parent: 24450 + - uid: 25639 components: - type: Transform - pos: -73.5,-0.5 - parent: 89 - - uid: 17085 + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 24450 +- proto: ChairFoldingSpawnFolded + entities: + - uid: 8364 components: - type: Transform - pos: -73.5,-1.5 - parent: 89 - - uid: 17255 + rot: 3.141592653589793 rad + pos: 11.471899,11.74773 + parent: 2 + - uid: 8365 components: - type: Transform - pos: 58.5,4.5 - parent: 89 - - uid: 17257 + pos: -95.61365,13.948328 + parent: 2 + - uid: 8366 components: - type: Transform - pos: 58.5,5.5 - parent: 89 - - uid: 17258 + pos: -95.22208,13.431689 + parent: 2 + - uid: 8367 components: - type: Transform - pos: 58.5,6.5 - parent: 89 - - uid: 17259 + pos: -5.5526714,40.87957 + parent: 2 + - uid: 8368 components: - type: Transform - pos: 58.5,3.5 - parent: 89 - - uid: 17260 + rot: 3.141592653589793 rad + pos: 11.471899,11.669605 + parent: 2 + - uid: 8369 components: - type: Transform - pos: 58.5,2.5 - parent: 89 - - uid: 17261 + rot: 3.141592653589793 rad + pos: 11.471899,11.74773 + parent: 2 + - uid: 8370 components: - type: Transform - pos: 57.5,5.5 - parent: 89 - - uid: 17262 + rot: 3.141592653589793 rad + pos: 11.518774,11.59148 + parent: 2 +- proto: ChairOfficeDark + entities: + - uid: 8371 components: - type: Transform - pos: 57.5,4.5 - parent: 89 - - uid: 17263 + rot: -1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 2 + - uid: 8372 components: - type: Transform - pos: 57.5,3.5 - parent: 89 - - uid: 17264 + pos: -15.5,-19.5 + parent: 2 + - uid: 8373 components: - type: Transform - pos: 59.5,5.5 - parent: 89 - - uid: 17265 + rot: 1.5707963267948966 rad + pos: 43.5,5.5 + parent: 2 + - uid: 8374 components: - type: Transform - pos: 59.5,4.5 - parent: 89 - - uid: 17266 + rot: -1.5707963267948966 rad + pos: 42.5,9.5 + parent: 2 + - uid: 8375 components: - type: Transform - pos: 59.5,3.5 - parent: 89 - - uid: 17941 + rot: 3.141592653589793 rad + pos: 34.5,-13.5 + parent: 2 + - uid: 8376 components: - type: Transform - pos: -23.5,9.5 - parent: 89 - - uid: 19522 + pos: 25.5,-4.5 + parent: 2 + - uid: 8377 components: - type: Transform - pos: -23.5,8.5 - parent: 89 - - uid: 19523 + rot: -1.5707963267948966 rad + pos: 35.5,-3.5 + parent: 2 + - uid: 8378 components: - type: Transform - pos: -22.5,8.5 - parent: 89 - - uid: 19524 + rot: -1.5707963267948966 rad + pos: 35.5,-2.5 + parent: 2 + - uid: 8379 components: - type: Transform - pos: -22.5,9.5 - parent: 89 - - uid: 19965 + rot: -1.5707963267948966 rad + pos: 13.5,-1.5 + parent: 2 + - uid: 8380 components: - type: Transform - pos: 25.5,43.5 - parent: 89 - - uid: 19966 + rot: 3.141592653589793 rad + pos: -62.5,-4.5 + parent: 2 + - uid: 8381 components: - type: Transform - pos: 25.5,42.5 - parent: 89 - - uid: 19967 + rot: -1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - uid: 8382 components: - type: Transform - pos: 24.5,43.5 - parent: 89 - - uid: 19968 + pos: -44.5,9.5 + parent: 2 + - uid: 8383 components: - type: Transform - pos: 24.5,42.5 - parent: 89 - - uid: 19969 + rot: 3.141592653589793 rad + pos: -44.5,7.5 + parent: 2 + - uid: 8384 components: - type: Transform - pos: 23.5,43.5 - parent: 89 - - uid: 19970 + rot: 1.5707963267948966 rad + pos: -46.5,8.5 + parent: 2 + - uid: 8385 components: - type: Transform - pos: 23.5,42.5 - parent: 89 - - uid: 20719 + pos: -19.5,6.5 + parent: 2 + - uid: 8386 components: - type: Transform - pos: 42.5,13.5 - parent: 89 -- proto: Catwalk - entities: - - uid: 727 + rot: 1.5707963267948966 rad + pos: -16.5,7.5 + parent: 2 + - uid: 8387 components: - type: Transform - pos: -96.5,22.5 - parent: 89 - - uid: 730 + rot: 3.141592653589793 rad + pos: -44.5,1.5 + parent: 2 + - uid: 8388 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 731 + pos: -104.5,10.5 + parent: 2 + - uid: 8389 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 733 + rot: -1.5707963267948966 rad + pos: -99.5,-2.5 + parent: 2 + - uid: 8390 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 734 + pos: -85.5,12.5 + parent: 2 + - uid: 8391 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 735 + rot: 3.141592653589793 rad + pos: -88.5,13.5 + parent: 2 + - uid: 8392 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 736 + pos: -60.5,8.5 + parent: 2 + - uid: 8393 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 737 + rot: 1.5707963267948966 rad + pos: -59.5,8.5 + parent: 2 + - uid: 8394 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 738 + rot: 1.5707963267948966 rad + pos: -59.5,21.5 + parent: 2 + - uid: 8395 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 740 + rot: 3.141592653589793 rad + pos: -61.5,21.5 + parent: 2 + - uid: 8396 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 741 + rot: 3.141592653589793 rad + pos: -118.5,5.5 + parent: 2 + - uid: 8397 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 742 + rot: 3.141592653589793 rad + pos: -104.5,20.5 + parent: 2 + - uid: 8398 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 743 + pos: -79.5,-0.5 + parent: 2 + - uid: 8399 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 744 + pos: -78.5,-0.5 + parent: 2 + - uid: 8400 components: - type: Transform - pos: -108.5,-3.5 - parent: 89 - - uid: 745 + rot: 3.141592653589793 rad + pos: -72.5,-6.5 + parent: 2 + - uid: 8401 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 746 + rot: 1.5707963267948966 rad + pos: -20.5,28.5 + parent: 2 + - uid: 8402 components: - type: Transform - pos: -108.5,-1.5 - parent: 89 - - uid: 747 + rot: -1.5707963267948966 rad + pos: 21.5,6.5 + parent: 2 + - uid: 8403 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 748 + rot: 1.5707963267948966 rad + pos: 19.5,6.5 + parent: 2 + - uid: 8404 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 749 + rot: 1.5707963267948966 rad + pos: 19.5,7.5 + parent: 2 + - uid: 8405 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 750 + rot: 1.5707963267948966 rad + pos: -84.5,16.5 + parent: 2 + - uid: 8406 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 751 + pos: 13.5,6.5 + parent: 2 + - uid: 8407 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 752 + rot: 3.141592653589793 rad + pos: -5.5,-28.5 + parent: 2 + - uid: 8408 components: - type: Transform - pos: -108.5,4.5 - parent: 89 - - uid: 753 + rot: 3.141592653589793 rad + pos: 18.5,10.5 + parent: 2 + - uid: 8409 components: - type: Transform - pos: -108.5,5.5 - parent: 89 - - uid: 754 + pos: 18.5,12.5 + parent: 2 + - uid: 8410 components: - type: Transform - pos: -108.5,6.5 - parent: 89 - - uid: 755 + rot: 1.5707963267948966 rad + pos: -75.5,-6.5 + parent: 2 + - uid: 8411 components: - type: Transform - pos: -108.5,7.5 - parent: 89 - - uid: 756 + rot: 1.5707963267948966 rad + pos: -23.5,22.5 + parent: 2 + - uid: 8412 components: - type: Transform - pos: -108.5,8.5 - parent: 89 - - uid: 757 + rot: 1.5707963267948966 rad + pos: -23.5,23.5 + parent: 2 + - uid: 8413 components: - type: Transform - pos: -108.5,9.5 - parent: 89 - - uid: 758 + rot: 1.5707963267948966 rad + pos: -23.5,24.5 + parent: 2 + - uid: 8414 components: - type: Transform - pos: -108.5,10.5 - parent: 89 - - uid: 759 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 2 + - uid: 8415 components: - type: Transform - pos: -108.5,11.5 - parent: 89 - - uid: 760 + rot: 3.141592653589793 rad + pos: 25.5,28.5 + parent: 2 + - uid: 8416 components: - type: Transform - pos: -108.5,12.5 - parent: 89 - - uid: 761 + rot: -1.5707963267948966 rad + pos: -112.5,-6.5 + parent: 2 + - uid: 8417 components: - type: Transform - pos: -108.5,13.5 - parent: 89 - - uid: 766 + pos: -118.5,2.5 + parent: 2 + - uid: 8418 components: - type: Transform - pos: -105.5,14.5 - parent: 89 - - uid: 767 + rot: 3.141592653589793 rad + pos: -27.5,8.5 + parent: 2 + - uid: 8419 components: - type: Transform - pos: -106.5,14.5 - parent: 89 - - uid: 768 + rot: 1.5707963267948966 rad + pos: 35.5,25.5 + parent: 2 + - uid: 8420 components: - type: Transform - pos: -107.5,14.5 - parent: 89 - - uid: 769 + pos: 34.5,-26.5 + parent: 2 + - uid: 8421 components: - type: Transform - pos: -109.5,9.5 - parent: 89 - - uid: 770 + rot: -1.5707963267948966 rad + pos: 8.667198,-0.4799447 + parent: 2 + - uid: 8422 components: - type: Transform - pos: -110.5,9.5 - parent: 89 - - uid: 771 + rot: 3.141592653589793 rad + pos: 32.6637,-6.297804 + parent: 2 + - uid: 8423 components: - type: Transform - pos: -111.5,9.5 - parent: 89 - - uid: 772 + rot: 3.141592653589793 rad + pos: 31.5117,-6.2267814 + parent: 2 + - uid: 8424 components: - type: Transform - pos: -111.5,-1.5 - parent: 89 - - uid: 773 + rot: -1.5707963267948966 rad + pos: 8.5943165,-2.3581014 + parent: 2 + - uid: 8425 components: - type: Transform - pos: -110.5,-1.5 - parent: 89 - - uid: 774 + rot: -1.5707963267948966 rad + pos: 8.5630665,-1.3268514 + parent: 2 + - uid: 8426 components: - type: Transform - pos: -109.5,-1.5 - parent: 89 - - uid: 775 + rot: 3.141592653589793 rad + pos: -94.52728,-4.3229737 + parent: 2 + - uid: 8427 components: - type: Transform - pos: -107.5,4.5 - parent: 89 - - uid: 776 + rot: 1.5707963267948966 rad + pos: -97.44916,5.549966 + parent: 2 + - uid: 8428 components: - type: Transform - pos: -106.5,4.5 - parent: 89 - - uid: 777 + rot: -1.5707963267948966 rad + pos: -92.4298,-4.5519886 + parent: 2 + - uid: 8429 components: - type: Transform - pos: -105.5,4.5 - parent: 89 - - uid: 778 + rot: -1.5707963267948966 rad + pos: -92.39855,-5.4269886 + parent: 2 + - uid: 8430 components: - type: Transform - pos: -104.5,4.5 - parent: 89 - - uid: 779 + rot: 1.5707963267948966 rad + pos: -94.53918,-5.5519886 + parent: 2 + - uid: 25640 components: - type: Transform - pos: -103.5,4.5 - parent: 89 - - uid: 780 + pos: -13.5,-26.5 + parent: 24450 + - uid: 25641 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - uid: 781 + rot: -1.5707963267948966 rad + pos: -13.5,5.5 + parent: 24450 + - uid: 25642 components: - type: Transform - pos: -101.5,4.5 - parent: 89 - - uid: 782 + rot: 1.5707963267948966 rad + pos: -10.5,6.5 + parent: 24450 +- proto: ChairOfficeLight + entities: + - uid: 8431 components: - type: Transform - pos: -100.5,4.5 - parent: 89 - - uid: 783 + pos: -11.5,11.5 + parent: 2 + - uid: 8432 components: - type: Transform - pos: -99.5,4.5 - parent: 89 - - uid: 784 + rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - uid: 8433 components: - type: Transform - pos: -98.5,4.5 - parent: 89 - - uid: 785 + pos: -45.5,9.5 + parent: 2 + - uid: 8434 components: - type: Transform - pos: -98.5,5.5 - parent: 89 - - uid: 786 + rot: 3.141592653589793 rad + pos: -45.5,7.5 + parent: 2 + - uid: 8435 components: - type: Transform - pos: -98.5,6.5 - parent: 89 - - uid: 787 + pos: -74.5,-0.5 + parent: 2 + - uid: 8436 components: - type: Transform - pos: -98.5,7.5 - parent: 89 - - uid: 788 + pos: -73.5,-0.5 + parent: 2 + - uid: 8437 components: - type: Transform - pos: -98.5,8.5 - parent: 89 - - uid: 847 + rot: 1.5707963267948966 rad + pos: -9.5,13.5 + parent: 2 + - uid: 8438 components: - type: Transform - pos: 48.5,4.5 - parent: 89 - - uid: 854 + pos: -1.5,20.5 + parent: 2 + - uid: 8439 components: - type: Transform - pos: 49.5,4.5 - parent: 89 - - uid: 911 + pos: 15.5,12.5 + parent: 2 + - uid: 8440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-9.5 - parent: 89 - - uid: 913 + rot: -1.5707963267948966 rad + pos: 20.5,18.5 + parent: 2 + - uid: 8441 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-9.5 - parent: 89 - - uid: 960 + pos: 25.5,12.5 + parent: 2 + - uid: 8442 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-10.5 - parent: 89 - - uid: 963 + pos: -8.5,-16.5 + parent: 2 + - uid: 8443 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-8.5 - parent: 89 - - uid: 964 + pos: -2.5,8.5 + parent: 2 + - uid: 8444 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-9.5 - parent: 89 - - uid: 1996 + pos: -8.5,21.5 + parent: 2 + - uid: 8445 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-8.5 - parent: 89 - - uid: 2016 + pos: 25.5,37.5 + parent: 2 + - uid: 8446 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-11.5 - parent: 89 - - uid: 2018 + rot: 1.5707963267948966 rad + pos: 24.5,40.5 + parent: 2 + - uid: 8447 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-10.5 - parent: 89 - - uid: 2090 + pos: -0.5,6.5 + parent: 2 + - uid: 27540 components: - type: Transform - pos: -123.5,9.5 - parent: 89 - - uid: 2093 + pos: -4.5,-12.5 + parent: 27260 +- proto: ChairPilotSeat + entities: + - uid: 8448 components: - type: Transform - pos: -122.5,9.5 - parent: 89 - - uid: 2094 + pos: 55.5,-5.5 + parent: 2 + - uid: 8449 components: - type: Transform - pos: -121.5,7.5 - parent: 89 - - uid: 2095 + pos: 59.5,-5.5 + parent: 2 + - uid: 8450 components: - type: Transform - pos: -121.5,8.5 - parent: 89 - - uid: 2096 + pos: 52.5,-5.5 + parent: 2 + - uid: 8451 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 2097 + rot: 1.5707963267948966 rad + pos: 62.5,1.5 + parent: 2 + - uid: 8452 components: - type: Transform - pos: -121.5,6.5 - parent: 89 - - uid: 2098 + rot: 1.5707963267948966 rad + pos: 58.5,3.5 + parent: 2 + - uid: 8453 components: - type: Transform - pos: -121.5,5.5 - parent: 89 - - uid: 2180 + rot: 1.5707963267948966 rad + pos: 62.5,2.5 + parent: 2 + - uid: 8454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,5.5 - parent: 89 - - uid: 2206 + rot: 1.5707963267948966 rad + pos: 58.5,5.5 + parent: 2 + - uid: 8455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,6.5 - parent: 89 - - uid: 2207 + rot: 1.5707963267948966 rad + pos: 58.5,4.5 + parent: 2 + - uid: 8456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,7.5 - parent: 89 - - uid: 2208 + rot: 1.5707963267948966 rad + pos: 62.5,7.5 + parent: 2 + - uid: 8457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,8.5 - parent: 89 - - uid: 2210 + rot: 1.5707963267948966 rad + pos: 62.5,6.5 + parent: 2 + - uid: 8458 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,8.5 - parent: 89 - - uid: 2211 + rot: 3.141592653589793 rad + pos: 54.5,9.5 + parent: 2 + - uid: 8459 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,6.5 - parent: 89 - - uid: 2212 + rot: 3.141592653589793 rad + pos: 57.5,9.5 + parent: 2 + - uid: 8460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 89 - - uid: 2213 + rot: 3.141592653589793 rad + pos: 52.5,14.5 + parent: 2 + - uid: 8461 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,6.5 - parent: 89 - - uid: 2214 + rot: 3.141592653589793 rad + pos: 55.5,14.5 + parent: 2 + - uid: 8462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,5.5 - parent: 89 - - uid: 2239 + rot: 3.141592653589793 rad + pos: 56.5,14.5 + parent: 2 + - uid: 8463 components: - type: Transform - pos: 31.5,9.5 - parent: 89 - - uid: 2337 + rot: 3.141592653589793 rad + pos: 59.5,14.5 + parent: 2 + - uid: 8464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-24.5 - parent: 89 - - uid: 2345 + rot: 1.5707963267948966 rad + pos: 64.5,12.5 + parent: 2 + - uid: 8465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-23.5 - parent: 89 - - uid: 2347 + rot: 1.5707963267948966 rad + pos: 64.5,11.5 + parent: 2 + - uid: 8466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-22.5 - parent: 89 - - uid: 2348 + pos: 56.5,-5.5 + parent: 2 + - uid: 8467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-21.5 - parent: 89 - - uid: 2350 + pos: 54.5,-0.5 + parent: 2 + - uid: 8468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-21.5 - parent: 89 - - uid: 2351 + pos: 57.5,-0.5 + parent: 2 + - uid: 8469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-21.5 - parent: 89 - - uid: 2353 + pos: -44.5,-19.5 + parent: 2 + - uid: 8470 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-21.5 - parent: 89 - - uid: 2354 + pos: -43.5,-19.5 + parent: 2 + - uid: 8471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-21.5 - parent: 89 - - uid: 2355 + pos: -43.5,-19.5 + parent: 2 + - uid: 8472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-21.5 - parent: 89 - - uid: 2356 + pos: -42.5,-19.5 + parent: 2 + - uid: 8473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-21.5 - parent: 89 - - uid: 2358 + rot: 1.5707963267948966 rad + pos: 64.5,-3.5 + parent: 2 + - uid: 8474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-21.5 - parent: 89 - - uid: 2503 + rot: 1.5707963267948966 rad + pos: 64.5,-2.5 + parent: 2 + - uid: 23786 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-7.5 - parent: 89 - - uid: 2555 + pos: 2.5,-6.5 + parent: 23711 + - uid: 23787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 23711 + - uid: 23788 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-11.5 - parent: 89 - - uid: 3096 + pos: 3.5,-2.5 + parent: 23711 + - uid: 23789 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 3130 + pos: 1.5,-4.5 + parent: 23711 + - uid: 23790 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,3.5 - parent: 89 - - uid: 3134 + pos: 2.5,-4.5 + parent: 23711 + - uid: 23791 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,2.5 - parent: 89 - - uid: 3163 + pos: 1.5,-7.5 + parent: 23711 + - uid: 23792 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,0.5 - parent: 89 - - uid: 3164 + pos: 1.5,-6.5 + parent: 23711 + - uid: 23793 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,1.5 - parent: 89 - - uid: 3166 + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 23711 + - uid: 23794 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,1.5 - parent: 89 - - uid: 3167 + pos: 2.5,-7.5 + parent: 23711 + - uid: 23795 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,1.5 - parent: 89 - - uid: 3168 + pos: 1.5,-9.5 + parent: 23711 + - uid: 23796 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,4.5 - parent: 89 - - uid: 3169 + pos: 2.5,-9.5 + parent: 23711 + - uid: 24065 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,5.5 - parent: 89 - - uid: 3170 + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 23919 + - uid: 24066 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,6.5 - parent: 89 - - uid: 3171 + rot: -1.5707963267948966 rad + pos: 7.5,-8.5 + parent: 23919 + - uid: 24067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,7.5 - parent: 89 - - uid: 3172 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 23919 + - uid: 24068 components: - type: Transform - rot: 3.141592653589793 rad - pos: 67.5,7.5 - parent: 89 - - uid: 3173 + rot: 1.5707963267948966 rad + pos: 1.5,-8.5 + parent: 23919 + - uid: 24069 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,7.5 - parent: 89 - - uid: 3176 + pos: 7.5,3.5 + parent: 23919 + - uid: 24070 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,8.5 - parent: 89 - - uid: 3177 + pos: 3.5,5.5 + parent: 23919 + - uid: 24071 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,9.5 - parent: 89 - - uid: 3178 + pos: 1.5,3.5 + parent: 23919 + - uid: 24072 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,10.5 - parent: 89 - - uid: 3179 + pos: 4.5,5.5 + parent: 23919 + - uid: 24073 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,11.5 - parent: 89 - - uid: 3180 + pos: 5.5,5.5 + parent: 23919 + - uid: 24386 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,12.5 - parent: 89 - - uid: 3181 + pos: -0.5,-2.5 + parent: 24340 + - uid: 24387 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,13.5 - parent: 89 - - uid: 3182 + pos: 1.5,-2.5 + parent: 24340 + - uid: 24388 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,14.5 - parent: 89 - - uid: 3183 + pos: 0.5,-0.5 + parent: 24340 +- proto: ChairRitual + entities: + - uid: 8475 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,15.5 - parent: 89 - - uid: 3184 + rot: -1.5707963267948966 rad + pos: -18.443472,17.699806 + parent: 2 + - uid: 8476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,16.5 - parent: 89 - - uid: 3185 + rot: -1.5707963267948966 rad + pos: -18.516855,16.74582 + parent: 2 + - uid: 8477 components: - type: Transform rot: 3.141592653589793 rad - pos: 67.5,16.5 - parent: 89 - - uid: 3186 + pos: -19.48919,16.635744 + parent: 2 + - uid: 8478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,16.5 - parent: 89 - - uid: 3187 + pos: -19.544226,18.525372 + parent: 2 + - uid: 8479 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -20.498213,17.736498 + parent: 2 + - uid: 8480 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.49851,18.617102 + parent: 2 +- proto: ChairWood + entities: + - uid: 8481 + components: + - type: Transform + pos: -52.5,0.5 + parent: 2 + - uid: 8482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,16.5 - parent: 89 - - uid: 3188 + pos: -47.5,-1.5 + parent: 2 + - uid: 8483 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,16.5 - parent: 89 - - uid: 3189 + rot: -1.5707963267948966 rad + pos: -25.5,-8.5 + parent: 2 + - uid: 8484 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,16.5 - parent: 89 - - uid: 3191 + pos: -51.5,-1.5 + parent: 2 + - uid: 8485 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,16.5 - parent: 89 - - uid: 3256 + pos: -52.5,-1.5 + parent: 2 + - uid: 8486 components: - type: Transform - pos: -119.5,14.5 - parent: 89 - - uid: 3338 + rot: 1.5707963267948966 rad + pos: -20.5,-2.5 + parent: 2 + - uid: 8487 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-7.5 - parent: 89 - - uid: 3350 + pos: -51.5,0.5 + parent: 2 + - uid: 8488 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-11.5 - parent: 89 - - uid: 3351 + pos: -51.5,-0.5 + parent: 2 + - uid: 8489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-11.5 - parent: 89 - - uid: 3353 + rot: 1.5707963267948966 rad + pos: -20.5,-3.5 + parent: 2 + - uid: 8490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-8.5 - parent: 89 - - uid: 3354 + rot: 1.5707963267948966 rad + pos: -24.5,-6.5 + parent: 2 + - uid: 8491 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-8.5 - parent: 89 - - uid: 3549 - components: - - type: Transform - pos: -119.5,13.5 - parent: 89 - - uid: 4241 + pos: -22.5,-7.5 + parent: 2 + - uid: 8492 components: - type: Transform - pos: 10.5,-18.5 - parent: 89 - - uid: 4257 + pos: -19.5,-1.5 + parent: 2 + - uid: 8493 components: - type: Transform - pos: 15.5,-19.5 - parent: 89 - - uid: 4297 + rot: -1.5707963267948966 rad + pos: -18.5,-5.5 + parent: 2 + - uid: 8494 components: - type: Transform - pos: -48.5,-19.5 - parent: 89 - - uid: 4298 + rot: -1.5707963267948966 rad + pos: -18.5,-6.5 + parent: 2 + - uid: 8495 components: - type: Transform - pos: -48.5,-20.5 - parent: 89 - - uid: 4299 + rot: 3.141592653589793 rad + pos: -23.5,-7.5 + parent: 2 + - uid: 8496 components: - type: Transform - pos: -47.5,-19.5 - parent: 89 - - uid: 4300 + rot: 3.141592653589793 rad + pos: -19.5,-7.5 + parent: 2 + - uid: 8497 components: - type: Transform - pos: -47.5,-20.5 - parent: 89 - - uid: 4301 + pos: -47.5,-0.5 + parent: 2 + - uid: 8498 components: - type: Transform - pos: -46.5,-19.5 - parent: 89 - - uid: 4302 + pos: -48.5,-1.5 + parent: 2 + - uid: 8499 components: - type: Transform - pos: -46.5,-20.5 - parent: 89 - - uid: 4303 + pos: -52.5,-0.5 + parent: 2 + - uid: 8500 components: - type: Transform - pos: -45.5,-19.5 - parent: 89 - - uid: 4304 + pos: -48.5,0.5 + parent: 2 + - uid: 8501 components: - type: Transform - pos: -45.5,-20.5 - parent: 89 - - uid: 4305 + pos: -47.5,0.5 + parent: 2 + - uid: 8502 components: - type: Transform - pos: -44.5,-19.5 - parent: 89 - - uid: 4306 + pos: -48.5,-0.5 + parent: 2 + - uid: 8503 components: - type: Transform - pos: -44.5,-20.5 - parent: 89 - - uid: 4307 + pos: -75.5,1.5 + parent: 2 + - uid: 8504 components: - type: Transform - pos: -43.5,-19.5 - parent: 89 - - uid: 4308 + pos: -79.5,1.5 + parent: 2 + - uid: 8505 components: - type: Transform - pos: -43.5,-20.5 - parent: 89 - - uid: 4309 + pos: -78.5,1.5 + parent: 2 + - uid: 8506 components: - type: Transform - pos: -42.5,-19.5 - parent: 89 - - uid: 4310 + pos: -77.5,1.5 + parent: 2 + - uid: 8507 components: - type: Transform - pos: -42.5,-20.5 - parent: 89 - - uid: 4311 + pos: -74.5,1.5 + parent: 2 + - uid: 8508 components: - type: Transform - pos: -47.5,-21.5 - parent: 89 - - uid: 4312 + pos: -73.5,1.5 + parent: 2 + - uid: 8509 components: - type: Transform - pos: -46.5,-21.5 - parent: 89 - - uid: 4313 + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - uid: 8510 components: - type: Transform - pos: -45.5,-21.5 - parent: 89 - - uid: 4314 + rot: -1.5707963267948966 rad + pos: 7.5,-24.5 + parent: 2 + - uid: 8511 components: - type: Transform - pos: -44.5,-21.5 - parent: 89 - - uid: 4315 + rot: -1.5707963267948966 rad + pos: 7.5,-23.5 + parent: 2 + - uid: 8512 components: - type: Transform - pos: -43.5,-21.5 - parent: 89 - - uid: 4316 + rot: 1.5707963267948966 rad + pos: 17.5,21.5 + parent: 2 + - uid: 8513 components: - type: Transform - pos: -49.5,-19.5 - parent: 89 - - uid: 4317 + pos: -26.5,-5.5 + parent: 2 + - uid: 8514 components: - type: Transform - pos: -49.5,-20.5 - parent: 89 - - uid: 4318 + rot: -1.5707963267948966 rad + pos: 52.5,-30.5 + parent: 2 + - uid: 8515 components: - type: Transform - pos: -50.5,-19.5 - parent: 89 - - uid: 4319 + rot: -1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 +- proto: CheapLighter + entities: + - uid: 8516 components: - type: Transform - pos: -50.5,-20.5 - parent: 89 - - uid: 4321 + pos: -120.64618,21.483479 + parent: 2 +- proto: CheapRollerBed + entities: + - uid: 8517 components: - type: Transform - pos: 23.5,-16.5 - parent: 89 - - uid: 4322 + pos: -4.5048585,20.65735 + parent: 2 +- proto: CheapRollerBedSpawnFolded + entities: + - uid: 8518 components: - type: Transform - pos: 20.5,-16.5 - parent: 89 - - uid: 4981 + pos: -4.322945,19.72414 + parent: 2 +- proto: CheckerBoard + entities: + - uid: 8519 components: - type: Transform - pos: 35.5,-16.5 - parent: 89 - - uid: 5078 + rot: 3.141592653589793 rad + pos: -45.522533,8.605168 + parent: 2 + - uid: 8520 components: - type: Transform - pos: -93.5,22.5 - parent: 89 - - uid: 5079 + pos: -2.4906597,-28.383318 + parent: 2 + - uid: 8521 components: - type: Transform - pos: -90.5,22.5 - parent: 89 - - uid: 5213 + rot: 1.5707963267948966 rad + pos: -34.51852,-14.432817 + parent: 2 +- proto: chem_master + entities: + - uid: 8522 components: - type: Transform - pos: 19.5,-16.5 - parent: 89 - - uid: 5318 + pos: -2.5,9.5 + parent: 2 + - uid: 8523 components: - type: Transform - pos: 36.5,-16.5 - parent: 89 - - uid: 5396 + pos: 0.5,5.5 + parent: 2 + - uid: 27541 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 5417 + pos: -5.5,-13.5 + parent: 27260 +- proto: ChemDispenser + entities: + - uid: 8524 components: - type: Transform - pos: -91.5,22.5 - parent: 89 - - uid: 5836 + pos: -3.5,9.5 + parent: 2 + - uid: 27542 components: - type: Transform - pos: -94.5,22.5 - parent: 89 - - uid: 6130 + pos: -4.5,-13.5 + parent: 27260 +- proto: ChemDispenserEmpty + entities: + - uid: 8525 components: - type: Transform - pos: -95.5,22.5 - parent: 89 - - uid: 6485 + pos: -0.5,5.5 + parent: 2 +- proto: ChemicalPayload + entities: + - uid: 8526 components: - type: Transform - pos: 28.5,22.5 - parent: 89 - - uid: 6704 + pos: -14.19345,-15.127384 + parent: 2 + - uid: 8527 components: - type: Transform - pos: -37.5,-7.5 - parent: 89 - - uid: 6706 + pos: -13.9767065,-15.464462 + parent: 2 + - uid: 27543 components: - type: Transform - pos: -37.5,-4.5 - parent: 89 - - uid: 6707 + rot: -1.5707963267948966 rad + pos: -3.3637543,-13.543121 + parent: 27260 +- proto: ChemistryHotplate + entities: + - uid: 8528 components: - type: Transform - pos: -43.5,-6.5 - parent: 89 - - uid: 6708 + pos: 4.5,-18.5 + parent: 2 + - type: ItemPlacer + placedEntities: + - 10566 + - type: PlaceableSurface + isPlaceable: False + - uid: 8529 components: - type: Transform - pos: -43.5,-7.5 - parent: 89 - - uid: 6709 + pos: -2.5,5.5 + parent: 2 +- proto: ChessBoard + entities: + - uid: 8530 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 6710 + rot: 3.141592653589793 rad + pos: -44.56941,8.605168 + parent: 2 +- proto: ChurchOrganInstrument + entities: + - uid: 8531 components: - type: Transform - pos: -43.5,-12.5 - parent: 89 - - uid: 6711 + rot: -1.5707963267948966 rad + pos: -49.5,-3.5 + parent: 2 +- proto: CigaretteSyndicate + entities: + - uid: 8532 components: - type: Transform - pos: -43.5,-13.5 - parent: 89 - - uid: 6712 + pos: -87.7599,27.81324 + parent: 2 + - uid: 8533 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 6713 + pos: -87.7599,27.90699 + parent: 2 + - uid: 8534 components: - type: Transform - pos: -41.5,-15.5 - parent: 89 - - uid: 6714 + pos: -87.7599,28.00074 + parent: 2 +- proto: CigarGold + entities: + - uid: 8535 components: - type: Transform - pos: -40.5,-15.5 - parent: 89 - - uid: 6715 + pos: 20.468182,7.551762 + parent: 2 + - uid: 8536 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 6716 + pos: -98.620224,17.58848 + parent: 2 +- proto: CigarGoldSpent + entities: + - uid: 8537 components: - type: Transform - pos: -37.5,-15.5 - parent: 89 - - uid: 6721 + rot: -1.5707963267948966 rad + pos: 47.87538,22.994505 + parent: 2 +- proto: CigCartonBlack + entities: + - uid: 25643 components: - type: Transform - pos: -30.5,-16.5 - parent: 89 - - uid: 6722 + pos: -14.517942,7.518115 + parent: 24450 +- proto: CigCartonRed + entities: + - uid: 8538 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 6723 + pos: -97.5623,12.583653 + parent: 2 +- proto: CigPackBlack + entities: + - uid: 8539 components: - type: Transform - pos: -32.5,-16.5 - parent: 89 - - uid: 6726 + pos: -117.54554,-14.493891 + parent: 2 +- proto: CigPackBlue + entities: + - uid: 8540 components: - type: Transform - pos: -25.5,-16.5 - parent: 89 - - uid: 6727 + pos: -120.92743,21.530354 + parent: 2 + - uid: 8541 components: - type: Transform - pos: -25.5,-17.5 - parent: 89 - - uid: 6728 + pos: 5.6514907,-1.2318032 + parent: 2 +- proto: CigPackSyndicate + entities: + - uid: 25645 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 6729 + parent: 25644 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CircuitImprinter + entities: + - uid: 8542 components: - type: Transform - pos: -25.5,-19.5 - parent: 89 - - uid: 6730 + pos: -14.5,-18.5 + parent: 2 + - uid: 25647 components: - type: Transform - pos: -25.5,-20.5 - parent: 89 - - uid: 6731 + pos: -27.5,3.5 + parent: 24450 + - uid: 25648 components: - type: Transform - pos: -25.5,-23.5 - parent: 89 - - uid: 6732 + pos: 3.5,3.5 + parent: 24450 +- proto: ClarinetInstrument + entities: + - uid: 8543 components: - type: Transform - pos: -25.5,-24.5 - parent: 89 - - uid: 6733 + pos: -35.620186,-5.4584527 + parent: 2 +- proto: CleanerDispenser + entities: + - uid: 8544 components: - type: Transform - pos: -25.5,-25.5 - parent: 89 - - uid: 6738 + pos: -40.5,9.5 + parent: 2 +- proto: ClockworkGrille + entities: + - uid: 8545 components: - type: Transform - pos: -20.5,-26.5 - parent: 89 - - uid: 6739 + pos: 4.5,-9.5 + parent: 2 + - uid: 8546 components: - type: Transform - pos: -19.5,-26.5 - parent: 89 - - uid: 6740 + pos: 7.5,-7.5 + parent: 2 + - uid: 8547 components: - type: Transform - pos: -18.5,-26.5 - parent: 89 - - uid: 6741 + pos: 6.5,-10.5 + parent: 2 + - uid: 8548 components: - type: Transform - pos: -17.5,-26.5 - parent: 89 - - uid: 6742 + pos: 12.5,-4.5 + parent: 2 + - uid: 8549 components: - type: Transform - pos: -14.5,-26.5 - parent: 89 - - uid: 6743 + pos: 13.5,-4.5 + parent: 2 + - uid: 8550 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 6744 + pos: 14.5,-4.5 + parent: 2 + - uid: 8551 components: - type: Transform - pos: -12.5,-28.5 - parent: 89 - - uid: 6745 + pos: 15.5,-4.5 + parent: 2 + - uid: 8552 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 6746 + pos: 28.5,-7.5 + parent: 2 + - uid: 8553 components: - type: Transform - pos: -12.5,-30.5 - parent: 89 - - uid: 6747 + pos: 24.5,-11.5 + parent: 2 + - uid: 8554 components: - type: Transform - pos: -12.5,-31.5 - parent: 89 - - uid: 7135 + pos: 18.5,-11.5 + parent: 2 + - uid: 8555 components: - type: Transform - pos: -42.5,-21.5 - parent: 89 - - uid: 7320 + pos: 11.5,-11.5 + parent: 2 + - uid: 8556 components: - type: Transform - pos: 16.5,-18.5 - parent: 89 - - uid: 7331 + pos: 41.5,-14.5 + parent: 2 + - uid: 8557 components: - type: Transform - pos: 15.5,-18.5 - parent: 89 - - uid: 7350 + pos: 42.5,-19.5 + parent: 2 + - uid: 8558 components: - type: Transform - pos: 18.5,-16.5 - parent: 89 - - uid: 7635 + pos: 35.5,-4.5 + parent: 2 + - uid: 8559 components: - type: Transform - pos: 36.5,-17.5 - parent: 89 - - uid: 7684 + pos: 32.5,-4.5 + parent: 2 + - uid: 8560 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 7686 + pos: 39.5,-31.5 + parent: 2 + - uid: 8561 components: - type: Transform - pos: -99.5,26.5 - parent: 89 - - uid: 7688 + pos: 39.5,-32.5 + parent: 2 + - uid: 8562 components: - type: Transform - pos: -98.5,28.5 - parent: 89 - - uid: 7689 + pos: 39.5,-29.5 + parent: 2 + - uid: 8563 components: - type: Transform - pos: -97.5,28.5 - parent: 89 - - uid: 7690 + rot: 3.141592653589793 rad + pos: 59.5,-31.5 + parent: 2 + - uid: 8564 components: - type: Transform - pos: -96.5,28.5 - parent: 89 - - uid: 7691 + rot: 3.141592653589793 rad + pos: 56.5,-34.5 + parent: 2 + - uid: 8565 components: - type: Transform - pos: -97.5,25.5 - parent: 89 - - uid: 7692 + pos: 43.5,-19.5 + parent: 2 + - uid: 8566 components: - type: Transform - pos: -96.5,25.5 - parent: 89 - - uid: 7693 + rot: 3.141592653589793 rad + pos: 59.5,-31.5 + parent: 2 + - uid: 8567 components: - type: Transform - pos: -95.5,25.5 - parent: 89 - - uid: 8381 + rot: 3.141592653589793 rad + pos: 58.5,-34.5 + parent: 2 + - uid: 8568 components: - type: Transform - pos: 9.5,-18.5 - parent: 89 - - uid: 8468 + pos: 39.5,-30.5 + parent: 2 + - uid: 8569 components: - type: Transform - pos: -130.5,12.5 - parent: 89 - - uid: 8469 + pos: 8.5,-7.5 + parent: 2 + - uid: 8570 components: - type: Transform - pos: -130.5,13.5 - parent: 89 - - uid: 8470 + pos: 6.5,-12.5 + parent: 2 + - uid: 8571 components: - type: Transform - pos: -130.5,14.5 - parent: 89 - - uid: 8471 + pos: 21.5,-11.5 + parent: 2 + - uid: 8572 components: - type: Transform - pos: -130.5,15.5 - parent: 89 - - uid: 8472 + pos: 25.5,-7.5 + parent: 2 + - uid: 8573 components: - type: Transform - pos: -130.5,16.5 - parent: 89 - - uid: 8524 + pos: 27.5,-11.5 + parent: 2 + - uid: 8574 components: - type: Transform - pos: -129.5,12.5 - parent: 89 - - uid: 8525 + pos: 34.5,-4.5 + parent: 2 + - uid: 8575 components: - type: Transform - pos: -128.5,12.5 - parent: 89 - - uid: 8526 + pos: 41.5,-12.5 + parent: 2 + - uid: 8576 components: - type: Transform - pos: -127.5,12.5 - parent: 89 - - uid: 9191 + rot: 3.141592653589793 rad + pos: 55.5,-34.5 + parent: 2 + - uid: 8577 components: - type: Transform - pos: -130.5,9.5 - parent: 89 - - uid: 9192 + pos: 39.5,-33.5 + parent: 2 + - uid: 8578 components: - type: Transform - pos: -129.5,9.5 - parent: 89 - - uid: 9193 + pos: 33.5,-26.5 + parent: 2 + - uid: 8579 components: - type: Transform - pos: -128.5,9.5 - parent: 89 - - uid: 9194 + pos: 13.5,-11.5 + parent: 2 + - uid: 8580 components: - type: Transform - pos: -127.5,9.5 - parent: 89 - - uid: 9195 + pos: 41.5,-19.5 + parent: 2 + - uid: 8581 components: - type: Transform - pos: -126.5,9.5 - parent: 89 - - uid: 9196 + rot: 3.141592653589793 rad + pos: 59.5,-33.5 + parent: 2 + - uid: 8582 components: - type: Transform - pos: -125.5,9.5 - parent: 89 - - uid: 9197 + rot: 3.141592653589793 rad + pos: 57.5,-34.5 + parent: 2 + - uid: 8583 components: - type: Transform - pos: -124.5,9.5 - parent: 89 - - uid: 9198 + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 8584 components: - type: Transform - pos: -129.5,8.5 - parent: 89 - - uid: 9199 + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 8585 components: - type: Transform - pos: -129.5,7.5 - parent: 89 - - uid: 9200 + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 8586 components: - type: Transform - pos: -129.5,6.5 - parent: 89 - - uid: 9201 + pos: 39.5,-28.5 + parent: 2 + - uid: 8587 components: - type: Transform - pos: -129.5,5.5 - parent: 89 - - uid: 9202 + pos: 33.5,-27.5 + parent: 2 +- proto: CloningPodMachineCircuitboard + entities: + - uid: 8588 components: - type: Transform - pos: -129.5,4.5 - parent: 89 - - uid: 9203 + pos: 22.4702,35.513382 + parent: 2 +- proto: ClosetChefFilled + entities: + - uid: 8589 components: - type: Transform - pos: -129.5,3.5 - parent: 89 - - uid: 9204 + pos: -15.5,-0.5 + parent: 2 +- proto: ClosetEmergencyFilledRandom + entities: + - uid: 8590 components: - type: Transform - pos: -129.5,2.5 - parent: 89 - - uid: 9205 + pos: -45.5,-13.5 + parent: 2 + - uid: 8591 components: - type: Transform - pos: -129.5,1.5 - parent: 89 - - uid: 9206 + pos: -25.5,-15.5 + parent: 2 + - uid: 8592 components: - type: Transform - pos: -129.5,0.5 - parent: 89 - - uid: 9207 + pos: -1.5,-21.5 + parent: 2 + - uid: 8593 components: - type: Transform - pos: -129.5,-0.5 - parent: 89 - - uid: 9208 + pos: 38.5,9.5 + parent: 2 + - uid: 8594 components: - type: Transform - pos: -129.5,-1.5 - parent: 89 - - uid: 9209 + pos: 11.5,-7.5 + parent: 2 + - uid: 8595 components: - type: Transform - pos: -129.5,-2.5 - parent: 89 - - uid: 9210 + pos: 38.5,0.5 + parent: 2 + - uid: 8596 components: - type: Transform - pos: -129.5,-3.5 - parent: 89 - - uid: 9211 + pos: -91.5,0.5 + parent: 2 + - uid: 8597 components: - type: Transform - pos: -128.5,-3.5 - parent: 89 - - uid: 9212 + pos: -91.5,1.5 + parent: 2 + - uid: 8598 components: - type: Transform - pos: -127.5,-3.5 - parent: 89 - - uid: 9213 + pos: -67.5,33.5 + parent: 2 + - uid: 8599 components: - type: Transform - pos: -126.5,-3.5 - parent: 89 - - uid: 9214 + pos: -64.5,42.5 + parent: 2 + - uid: 8600 components: - type: Transform - pos: -125.5,-3.5 - parent: 89 - - uid: 9215 + pos: -63.5,45.5 + parent: 2 + - uid: 8601 components: - type: Transform - pos: -124.5,-3.5 - parent: 89 - - uid: 9217 + pos: -66.5,23.5 + parent: 2 + - uid: 8602 components: - type: Transform - pos: -124.5,-2.5 - parent: 89 - - uid: 9218 + pos: -55.5,28.5 + parent: 2 + - uid: 8603 components: - type: Transform - pos: -124.5,-1.5 - parent: 89 - - uid: 9219 + pos: -58.5,39.5 + parent: 2 + - uid: 8604 components: - type: Transform - pos: -123.5,-1.5 - parent: 89 - - uid: 9220 + pos: -62.5,32.5 + parent: 2 + - uid: 8605 components: - type: Transform - pos: -122.5,-1.5 - parent: 89 - - uid: 9221 + pos: -89.5,23.5 + parent: 2 + - uid: 8606 components: - type: Transform - pos: -121.5,-1.5 - parent: 89 - - uid: 9222 + pos: -85.5,47.5 + parent: 2 + - uid: 8607 components: - type: Transform - pos: -121.5,-0.5 - parent: 89 - - uid: 9225 + pos: -94.5,23.5 + parent: 2 + - uid: 8608 components: - type: Transform - pos: -121.5,2.5 - parent: 89 - - uid: 9226 + pos: -69.5,14.5 + parent: 2 + - uid: 8609 components: - type: Transform - pos: -121.5,1.5 - parent: 89 - - uid: 9256 + pos: -74.5,5.5 + parent: 2 + - uid: 8610 components: - type: Transform - pos: 24.5,7.5 - parent: 89 - - uid: 9278 + pos: -78.5,15.5 + parent: 2 + - uid: 8611 components: - type: Transform - pos: 28.5,8.5 - parent: 89 - - uid: 9279 + pos: -78.5,13.5 + parent: 2 + - uid: 8612 components: - type: Transform - pos: 27.5,8.5 - parent: 89 - - uid: 9280 + pos: -52.5,25.5 + parent: 2 + - uid: 8613 components: - type: Transform - pos: 26.5,8.5 - parent: 89 - - uid: 9281 + pos: -112.5,-2.5 + parent: 2 + - uid: 8614 components: - type: Transform - pos: 25.5,8.5 - parent: 89 - - uid: 9282 + pos: -41.5,-5.5 + parent: 2 + - uid: 8615 components: - type: Transform - pos: 25.5,6.5 - parent: 89 - - uid: 9283 + pos: -33.5,10.5 + parent: 2 + - uid: 8616 components: - type: Transform - pos: 26.5,6.5 - parent: 89 - - uid: 9284 + pos: -58.5,5.5 + parent: 2 + - uid: 8617 components: - type: Transform - pos: 27.5,6.5 - parent: 89 - - uid: 9285 + pos: 10.5,27.5 + parent: 2 + - uid: 8618 components: - type: Transform - pos: 28.5,6.5 - parent: 89 - - uid: 9286 + pos: -60.5,12.5 + parent: 2 + - uid: 8619 components: - type: Transform - pos: 24.5,8.5 - parent: 89 - - uid: 9320 + pos: 19.5,25.5 + parent: 2 + - uid: 8620 components: - type: Transform - pos: 24.5,6.5 - parent: 89 - - uid: 9321 + pos: -112.5,10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8621 components: - type: Transform - pos: 24.5,5.5 - parent: 89 - - uid: 10406 + pos: -17.5,22.5 + parent: 2 + - uid: 8622 components: - type: Transform - pos: -97.5,22.5 - parent: 89 - - uid: 10464 + pos: -33.5,5.5 + parent: 2 + - uid: 8623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-11.5 - parent: 89 - - uid: 10683 + pos: -101.5,2.5 + parent: 2 + - uid: 24074 components: - type: Transform - pos: -108.5,14.5 - parent: 89 - - uid: 11215 + pos: 4.5,-11.5 + parent: 23919 + - uid: 27544 components: - type: Transform - pos: 17.5,26.5 - parent: 89 - - uid: 12219 + pos: 0.5,-0.5 + parent: 27260 +- proto: ClosetFireFilled + entities: + - uid: 8624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,1.5 - parent: 89 - - uid: 12220 + pos: -45.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,1.5 - parent: 89 - - uid: 12840 + pos: -59.5,5.5 + parent: 2 + - uid: 8626 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-10.5 - parent: 89 - - uid: 12841 + pos: -27.5,-15.5 + parent: 2 + - uid: 8627 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-8.5 - parent: 89 - - uid: 12858 + pos: -67.5,40.5 + parent: 2 + - uid: 8628 components: - type: Transform - pos: 20.5,26.5 - parent: 89 - - uid: 14073 + pos: 39.5,0.5 + parent: 2 + - uid: 8629 components: - type: Transform - pos: -98.5,22.5 - parent: 89 - - uid: 14260 + pos: -8.5,26.5 + parent: 2 + - uid: 8630 components: - type: Transform - pos: -92.5,22.5 - parent: 89 - - uid: 14547 + pos: -90.5,18.5 + parent: 2 + - uid: 8631 components: - type: Transform - pos: -89.5,22.5 - parent: 89 - - uid: 14549 + pos: -112.5,0.5 + parent: 2 + - uid: 8632 components: - type: Transform - pos: -87.5,20.5 - parent: 89 - - uid: 14550 + pos: -112.5,7.5 + parent: 2 + - uid: 8633 components: - type: Transform - pos: -87.5,19.5 - parent: 89 - - uid: 14551 + pos: -111.5,7.5 + parent: 2 + - uid: 8634 components: - type: Transform - pos: -87.5,18.5 - parent: 89 - - uid: 14552 + pos: -67.5,34.5 + parent: 2 + - uid: 8635 components: - type: Transform - pos: -104.5,17.5 - parent: 89 - - uid: 14553 + pos: 23.5,23.5 + parent: 2 + - uid: 8636 components: - type: Transform - pos: -103.5,17.5 - parent: 89 - - uid: 14554 + pos: -61.5,28.5 + parent: 2 + - uid: 8637 components: - type: Transform - pos: -102.5,17.5 - parent: 89 - - uid: 14555 + pos: -62.5,11.5 + parent: 2 + - uid: 8638 components: - type: Transform - pos: -101.5,17.5 - parent: 89 - - uid: 14556 + pos: -69.5,11.5 + parent: 2 + - uid: 8639 components: - type: Transform - pos: -100.5,19.5 - parent: 89 - - uid: 14557 + pos: 9.5,27.5 + parent: 2 + - uid: 8640 components: - type: Transform - pos: -100.5,20.5 - parent: 89 - - uid: 14578 + pos: -17.5,23.5 + parent: 2 + - uid: 8641 components: - type: Transform - pos: -93.5,29.5 - parent: 89 - - uid: 14580 + pos: -33.5,11.5 + parent: 2 + - uid: 8642 components: - type: Transform - pos: -92.5,28.5 - parent: 89 - - uid: 14581 + pos: -75.5,15.5 + parent: 2 + - uid: 8643 components: - type: Transform - pos: -92.5,29.5 - parent: 89 - - uid: 14584 + pos: -111.5,0.5 + parent: 2 + - uid: 8644 components: - type: Transform - pos: -91.5,29.5 - parent: 89 - - uid: 14585 + pos: -52.5,26.5 + parent: 2 + - uid: 8645 components: - type: Transform - pos: -89.5,27.5 - parent: 89 - - uid: 14586 + pos: 11.5,-10.5 + parent: 2 + - uid: 8646 components: - type: Transform - pos: -89.5,28.5 - parent: 89 - - uid: 14589 + pos: -73.5,5.5 + parent: 2 + - uid: 8647 components: - type: Transform - pos: -88.5,28.5 - parent: 89 - - uid: 14590 + pos: -88.5,-2.5 + parent: 2 + - uid: 8648 components: - type: Transform - pos: -111.5,16.5 - parent: 89 - - uid: 14592 + pos: -89.5,-2.5 + parent: 2 + - uid: 8649 components: - type: Transform - pos: -111.5,14.5 - parent: 89 - - uid: 14593 + pos: -87.5,-2.5 + parent: 2 + - uid: 8650 components: - type: Transform - pos: -114.5,17.5 - parent: 89 - - uid: 14594 + pos: -83.5,47.5 + parent: 2 +- proto: ClosetJanitorFilled + entities: + - uid: 8651 components: - type: Transform - pos: -111.5,15.5 - parent: 89 - - uid: 14611 + pos: -39.5,9.5 + parent: 2 +- proto: ClosetL3JanitorFilled + entities: + - uid: 8652 components: - type: Transform - pos: -100.5,15.5 - parent: 89 - - uid: 14613 + pos: -38.5,9.5 + parent: 2 +- proto: ClosetL3ScienceFilled + entities: + - uid: 8653 components: - type: Transform - pos: -100.5,14.5 - parent: 89 - - uid: 14614 + pos: -1.5,-20.5 + parent: 2 + - uid: 8654 components: - type: Transform - pos: -116.5,17.5 - parent: 89 - - uid: 14615 + pos: -2.5,-33.5 + parent: 2 + - uid: 8655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,13.5 - parent: 89 - - uid: 14616 + pos: -0.5,-33.5 + parent: 2 +- proto: ClosetL3SecurityFilled + entities: + - uid: 8656 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 14617 + pos: 10.5,-1.5 + parent: 2 +- proto: ClosetL3VirologyFilled + entities: + - uid: 8657 components: - type: Transform - pos: -98.5,13.5 - parent: 89 - - uid: 14618 + pos: 11.5,30.5 + parent: 2 + - uid: 8658 components: - type: Transform - pos: -97.5,13.5 - parent: 89 - - uid: 14675 + pos: 10.5,30.5 + parent: 2 +- proto: ClosetLegalFilled + entities: + - uid: 8659 components: - type: Transform - pos: -85.5,-1.5 - parent: 89 - - uid: 14676 + pos: -73.5,-2.5 + parent: 2 + - uid: 8660 components: - type: Transform - pos: -85.5,-2.5 - parent: 89 - - uid: 14677 + pos: -73.5,-3.5 + parent: 2 +- proto: ClosetMaintenance + entities: + - uid: 25070 components: - type: Transform - pos: -85.5,-3.5 - parent: 89 - - uid: 14678 + pos: 9.5,12.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25071 + - 25075 + - 25077 + - 25072 + - 25076 + - 25073 + - 25074 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25078 components: - type: Transform - pos: -80.5,-5.5 - parent: 89 - - uid: 14679 + pos: 9.5,6.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25083 + - 25084 + - 25080 + - 25081 + - 25079 + - 25082 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25085 components: - type: Transform - pos: -80.5,-6.5 - parent: 89 - - uid: 14680 + pos: 9.5,9.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25090 + - 25091 + - 25088 + - 25087 + - 25086 + - 25089 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25092 components: - type: Transform - pos: -80.5,-7.5 - parent: 89 - - uid: 14681 + pos: -33.5,6.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25093 + - 25099 + - 25098 + - 25095 + - 25097 + - 25096 + - 25094 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25100 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 14682 + pos: -33.5,8.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25103 + - 25101 + - 25106 + - 25105 + - 25102 + - 25104 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25107 components: - type: Transform - pos: -76.5,-9.5 - parent: 89 - - uid: 14683 + pos: -33.5,12.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1497 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25110 + - 25111 + - 25114 + - 25113 + - 25109 + - 25108 + - 25112 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25649 components: - type: Transform - pos: -75.5,-9.5 - parent: 89 - - uid: 14684 + pos: 10.5,1.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 99.138466 + 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: + - 25655 + - 25658 + - 25654 + - 25657 + - 25653 + - 25656 + - 25651 + - 25650 + - 25652 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25659 components: - type: Transform - pos: -81.5,2.5 - parent: 89 - - uid: 14685 + pos: -34.5,1.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + 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: + - 25668 + - 25667 + - 25665 + - 25664 + - 25666 + - 25663 + - 25662 + - 25661 + - 25660 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: ClosetMaintenanceFilledRandom + entities: + - uid: 8661 components: - type: Transform - pos: -81.5,3.5 - parent: 89 - - uid: 14708 + pos: -97.5,11.5 + parent: 2 + - uid: 8662 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 14709 + pos: -26.5,-20.5 + parent: 2 + - uid: 8663 components: - type: Transform - pos: 6.5,-18.5 - parent: 89 - - uid: 14710 + pos: -45.5,-14.5 + parent: 2 + - uid: 8664 components: - type: Transform - pos: 6.5,-19.5 - parent: 89 - - uid: 14711 + pos: -15.5,-27.5 + parent: 2 + - uid: 8665 components: - type: Transform - pos: 6.5,-20.5 - parent: 89 - - uid: 14712 + pos: -16.5,-27.5 + parent: 2 + - uid: 8666 components: - type: Transform - pos: 6.5,-21.5 - parent: 89 - - uid: 14713 + pos: -95.5,15.5 + parent: 2 + - uid: 8667 components: - type: Transform - pos: 10.5,-15.5 - parent: 89 - - uid: 14714 + pos: -95.5,14.5 + parent: 2 + - uid: 8668 components: - type: Transform - pos: 11.5,-15.5 - parent: 89 - - uid: 14715 + pos: -1.5,32.5 + parent: 2 + - uid: 8669 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 14716 + pos: -1.5,31.5 + parent: 2 + - uid: 8670 components: - type: Transform - pos: 12.5,-14.5 - parent: 89 - - uid: 14749 + pos: -98.5,11.5 + parent: 2 + - uid: 8671 components: - type: Transform - pos: -77.5,16.5 - parent: 89 - - uid: 14750 + pos: -112.5,12.5 + parent: 2 + - uid: 8672 components: - type: Transform - pos: -76.5,16.5 - parent: 89 - - uid: 14751 + pos: -112.5,13.5 + parent: 2 + - uid: 8673 components: - type: Transform - pos: -76.5,17.5 - parent: 89 - - uid: 14752 + pos: -75.5,19.5 + parent: 2 + - uid: 8674 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 14753 + pos: -75.5,17.5 + parent: 2 + - uid: 8675 components: - type: Transform - pos: -73.5,20.5 - parent: 89 - - uid: 14754 + pos: -52.5,24.5 + parent: 2 + - uid: 8676 components: - type: Transform - pos: -72.5,20.5 - parent: 89 - - uid: 14755 + pos: -38.5,22.5 + parent: 2 + - uid: 8677 components: - type: Transform - pos: -71.5,20.5 - parent: 89 - - uid: 14756 + pos: -26.5,-15.5 + parent: 2 + - uid: 8678 components: - type: Transform - pos: -70.5,20.5 - parent: 89 - - uid: 14757 + pos: -17.5,-27.5 + parent: 2 + - uid: 8679 components: - type: Transform - pos: -65.5,21.5 - parent: 89 - - uid: 14782 + pos: -81.5,-0.5 + parent: 2 + - uid: 8680 components: - type: Transform - pos: -43.5,20.5 - parent: 89 - - uid: 14790 + pos: 18.5,25.5 + parent: 2 + - uid: 8681 components: - type: Transform - pos: -37.5,13.5 - parent: 89 - - uid: 14791 + pos: 5.5,27.5 + parent: 2 + - uid: 8682 components: - type: Transform - pos: -36.5,13.5 - parent: 89 - - uid: 14792 + pos: -17.5,24.5 + parent: 2 + - uid: 8683 components: - type: Transform - pos: -37.5,12.5 - parent: 89 - - uid: 14793 + pos: -87.5,23.5 + parent: 2 + - uid: 8684 components: - type: Transform - pos: -39.5,11.5 - parent: 89 - - uid: 14794 + pos: -116.5,21.5 + parent: 2 + - uid: 8685 components: - type: Transform - pos: -40.5,11.5 - parent: 89 - - uid: 14810 + pos: -117.5,21.5 + parent: 2 + - uid: 8686 components: - type: Transform - pos: -3.5,34.5 - parent: 89 - - uid: 14812 + pos: -99.5,11.5 + parent: 2 + - uid: 8687 components: - type: Transform - pos: -53.5,29.5 - parent: 89 - - uid: 14813 + pos: 56.5,-21.5 + parent: 2 + - uid: 25644 components: - type: Transform - pos: -53.5,23.5 - parent: 89 - - uid: 14814 + pos: -28.5,11.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + 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: + - 25645 + - 25646 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25669 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 14818 + pos: -28.5,10.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetRadiationSuitFilled + entities: + - uid: 8688 components: - type: Transform - pos: -36.5,20.5 - parent: 89 - - uid: 14821 + pos: -115.5,10.5 + parent: 2 + - uid: 8689 components: - type: Transform - pos: -53.5,20.5 - parent: 89 - - uid: 14824 + pos: -116.5,10.5 + parent: 2 + - uid: 8690 components: - type: Transform - pos: -52.5,20.5 - parent: 89 - - uid: 14825 + pos: -116.5,-2.5 + parent: 2 + - uid: 8691 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 14826 + pos: -115.5,-2.5 + parent: 2 + - uid: 8692 components: - type: Transform - pos: -4.5,30.5 - parent: 89 - - uid: 14827 + pos: -115.5,-0.5 + parent: 2 + - uid: 8693 components: - type: Transform - pos: -3.5,30.5 - parent: 89 - - uid: 14828 + pos: -116.5,-0.5 + parent: 2 + - uid: 8694 components: - type: Transform - pos: -48.5,20.5 - parent: 89 - - uid: 14829 + pos: -2.5,-36.5 + parent: 2 + - uid: 8695 components: - type: Transform - pos: -47.5,20.5 - parent: 89 - - uid: 14830 + pos: -0.5,-36.5 + parent: 2 + - uid: 8696 components: - type: Transform - pos: 1.5,30.5 - parent: 89 - - uid: 14831 + pos: -6.5,-27.5 + parent: 2 + - uid: 8697 components: - type: Transform - pos: -39.5,20.5 - parent: 89 - - uid: 14832 + pos: -116.5,8.5 + parent: 2 + - uid: 8698 components: - type: Transform - pos: -44.5,20.5 - parent: 89 - - uid: 14834 + pos: -115.5,8.5 + parent: 2 + - uid: 8699 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 14835 + pos: -122.5,-3.5 + parent: 2 + - uid: 8700 components: - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 14836 + pos: -121.5,-3.5 + parent: 2 + - uid: 8701 components: - type: Transform - pos: -52.5,31.5 - parent: 89 - - uid: 14837 + pos: -126.5,-5.5 + parent: 2 + - uid: 8702 components: - type: Transform - pos: -53.5,26.5 - parent: 89 - - uid: 14838 + pos: -126.5,-4.5 + parent: 2 +- proto: ClosetSteelBase + entities: + - uid: 8703 components: - type: Transform - pos: -38.5,20.5 - parent: 89 - - uid: 14839 + pos: 11.5,42.5 + parent: 2 + - uid: 8704 components: - type: Transform - pos: -40.5,20.5 - parent: 89 - - uid: 14840 + pos: 5.5,18.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 3.3493855 + - 12.60007 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: ClosetToolFilled + entities: + - uid: 8705 components: - type: Transform - pos: -53.5,22.5 - parent: 89 - - uid: 14841 + pos: -40.5,-17.5 + parent: 2 + - uid: 8706 components: - type: Transform - pos: -35.5,20.5 - parent: 89 - - uid: 14842 + pos: -8.5,25.5 + parent: 2 + - uid: 8707 components: - type: Transform - pos: -40.5,21.5 - parent: 89 - - uid: 14845 + pos: -16.5,12.5 + parent: 2 +- proto: ClosetWallEmergencyFilledRandom + entities: + - uid: 8708 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 14846 + rot: -1.5707963267948966 rad + pos: 15.5,33.5 + parent: 2 + - uid: 8709 components: - type: Transform - pos: -51.5,31.5 - parent: 89 - - uid: 14849 + pos: 9.5,43.5 + parent: 2 + - uid: 8710 components: - type: Transform - pos: -51.5,29.5 - parent: 89 - - uid: 14851 + rot: 1.5707963267948966 rad + pos: -87.5,33.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8711 components: - type: Transform - pos: -51.5,30.5 - parent: 89 - - uid: 14854 + rot: 1.5707963267948966 rad + pos: -86.5,20.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8712 components: - type: Transform - pos: -3.5,36.5 - parent: 89 - - uid: 14855 + rot: 1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 8713 components: - type: Transform - pos: -37.5,22.5 - parent: 89 - - uid: 14856 + pos: -7.5,0.5 + parent: 2 + - uid: 8714 components: - type: Transform - pos: -37.5,23.5 - parent: 89 - - uid: 14857 + rot: -1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 8715 components: - type: Transform - pos: -37.5,24.5 - parent: 89 - - uid: 14998 + rot: 3.141592653589793 rad + pos: 20.5,0.5 + parent: 2 + - uid: 24347 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,20.5 - parent: 89 - - uid: 14999 + pos: -0.5,-4.5 + parent: 24340 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24349 + - 24348 + - 24350 +- proto: ClosetWallFireFilledRandom + entities: + - uid: 8716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,20.5 - parent: 89 - - uid: 15000 + pos: -53.5,-4.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8717 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,20.5 - parent: 89 - - uid: 15001 + pos: -13.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8718 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,20.5 - parent: 89 - - uid: 15002 + pos: -87.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8719 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,20.5 - parent: 89 - - uid: 15017 + pos: -86.5,21.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 8720 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,24.5 - parent: 89 - - uid: 15018 + pos: -2.5,-6.5 + parent: 2 + - uid: 8721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,16.5 - parent: 89 - - uid: 15019 + rot: -1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 8722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,18.5 - parent: 89 - - uid: 15020 + rot: 3.141592653589793 rad + pos: 24.5,0.5 + parent: 2 + - uid: 8723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,14.5 - parent: 89 - - uid: 15021 + pos: -5.5,0.5 + parent: 2 +- proto: ClothingBackpackDuffelSalvage + entities: + - uid: 8724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,15.5 - parent: 89 - - uid: 15022 + rot: -1.5707963267948966 rad + pos: -46.265625,-9.4375 + parent: 2 +- proto: ClothingBackpackDuffelSyndicateMedicalBundleFilled + entities: + - uid: 8725 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,14.5 - parent: 89 - - uid: 15023 + pos: -2.5655928,-45.444603 + parent: 2 +- proto: ClothingBackpackMerc + entities: + - uid: 8726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,14.5 - parent: 89 - - uid: 15024 + pos: -125.666534,-12.781693 + parent: 2 +- proto: ClothingBackpackSatchelLeather + entities: + - uid: 8727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,12.5 - parent: 89 - - uid: 15025 + pos: 18.11255,19.774199 + parent: 2 +- proto: ClothingBackpackSatchelSalvage + entities: + - uid: 8728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,13.5 - parent: 89 - - uid: 15043 + pos: -46.67585,-9.307626 + parent: 2 + - uid: 8729 components: - type: Transform - pos: 16.5,26.5 - parent: 89 - - uid: 15058 + pos: -46.48835,-9.557626 + parent: 2 +- proto: ClothingBeltChampion + entities: + - uid: 8730 components: - type: Transform - pos: 18.5,26.5 - parent: 89 - - uid: 15089 + pos: 50.6875,-2.2932522 + parent: 2 +- proto: ClothingBeltJanitorFilled + entities: + - uid: 8731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,41.5 - parent: 89 - - uid: 15090 + pos: -36.594994,9.431238 + parent: 2 +- proto: ClothingBeltSalvageWebbing + entities: + - uid: 8732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,45.5 - parent: 89 - - uid: 15092 + pos: -46.33284,-10.549416 + parent: 2 + - uid: 8733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,45.5 - parent: 89 - - uid: 15154 + pos: -46.598465,-10.565041 + parent: 2 +- proto: ClothingBeltSuspenders + entities: + - uid: 8734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,43.5 - parent: 89 - - uid: 15192 + pos: 6.5650086,27.578575 + parent: 2 +- proto: ClothingBeltUtility + entities: + - uid: 8735 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,42.5 - parent: 89 - - uid: 15199 + pos: -12.5832405,-23.436749 + parent: 2 + - uid: 8736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,44.5 - parent: 89 - - uid: 15670 + pos: -90.483246,13.521247 + parent: 2 + - uid: 8737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-10.5 - parent: 89 - - uid: 15671 + pos: -11.502785,-31.531437 + parent: 2 + - uid: 25670 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-10.5 - parent: 89 - - uid: 15672 + pos: -25.504887,7.5219393 + parent: 24450 + - uid: 25671 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-10.5 - parent: 89 - - uid: 15673 + pos: -24.504887,7.5375643 + parent: 24450 + - uid: 25672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-10.5 - parent: 89 - - uid: 15674 + pos: -23.567387,7.5375643 + parent: 24450 + - uid: 25673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-10.5 - parent: 89 - - uid: 15675 + pos: -20.291004,7.4594393 + parent: 24450 + - uid: 25674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-9.5 - parent: 89 - - uid: 15676 + pos: -19.474846,7.4933014 + parent: 24450 + - uid: 25675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-8.5 - parent: 89 - - uid: 15677 + pos: -18.67797,7.5558014 + parent: 24450 + - uid: 25676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-7.5 - parent: 89 - - uid: 15678 + pos: -5.2654724,7.5089264 + parent: 24450 + - uid: 25677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-6.5 - parent: 89 - - uid: 15679 + pos: -4.4217224,7.4776764 + parent: 24450 + - uid: 25678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-5.5 - parent: 89 - - uid: 15680 + pos: -3.5467224,7.4933014 + parent: 24450 + - uid: 25679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-4.5 - parent: 89 - - uid: 15682 + pos: -0.32033086,7.5089264 + parent: 24450 + - uid: 25680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,12.5 - parent: 89 - - uid: 15683 + pos: 0.60154414,7.4620514 + parent: 24450 + - uid: 25681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,11.5 - parent: 89 - - uid: 15684 + pos: 1.4609191,7.4308014 + parent: 24450 +- proto: ClothingBeltUtilityEngineering + entities: + - uid: 8738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,10.5 - parent: 89 - - uid: 15685 + pos: 31.336422,7.572131 + parent: 2 + - uid: 8739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,12.5 - parent: 89 - - uid: 15694 + pos: 31.383297,7.572131 + parent: 2 + - uid: 8740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,15.5 - parent: 89 - - uid: 15695 + pos: 31.648922,7.603381 + parent: 2 + - uid: 8741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,16.5 - parent: 89 - - uid: 15717 + pos: 31.430172,7.540881 + parent: 2 + - uid: 8742 components: - type: Transform - pos: -113.5,-10.5 - parent: 89 - - uid: 15718 + pos: 31.352047,7.556506 + parent: 2 + - uid: 8743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-14.5 - parent: 89 - - uid: 15719 + pos: -132.49495,-2.4833856 + parent: 2 +- proto: ClothingBeltUtilityFilled + entities: + - uid: 8744 components: - type: Transform - pos: -114.5,-10.5 - parent: 89 - - uid: 15720 + pos: 1.4933057,-29.171928 + parent: 2 + - uid: 8745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-14.5 - parent: 89 - - uid: 15722 + pos: -6.5,-38.5 + parent: 2 + - uid: 8746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-14.5 - parent: 89 - - uid: 15724 + pos: -95.44649,17.646513 + parent: 2 +- proto: ClothingEyesBinoclardLenses + entities: + - uid: 8747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-14.5 - parent: 89 - - uid: 15726 + pos: -75.56238,-5.1952434 + parent: 2 +- proto: ClothingEyesGlasses + entities: + - uid: 8748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-14.5 - parent: 89 - - uid: 15727 + pos: 19.43496,18.059008 + parent: 2 + - uid: 8749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-15.5 - parent: 89 - - uid: 15728 + pos: 32.38131,20.658113 + parent: 2 + - uid: 8750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -114.5,-16.5 - parent: 89 - - uid: 15729 + pos: 32.334435,20.829988 + parent: 2 + - uid: 8751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -113.5,-16.5 - parent: 89 - - uid: 15730 + pos: 32.47506,20.486238 + parent: 2 + - uid: 8753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,-16.5 - parent: 89 - - uid: 16401 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesGarGiga + entities: + - uid: 8761 components: + - type: MetaData + desc: Интересной формы очки, серии Kamelot, что-бы это не значило. + name: причудливые очки серии Kamelot - type: Transform - pos: -112.5,-10.5 - parent: 89 - - uid: 16402 + pos: -41.48185,10.589271 + parent: 2 + - uid: 8762 components: - type: Transform - pos: -111.5,-10.5 - parent: 89 - - uid: 16403 + pos: -27.495356,28.748674 + parent: 2 + - uid: 8763 components: - type: Transform - pos: -111.5,-9.5 - parent: 89 - - uid: 16404 + pos: -44.306797,14.376387 + parent: 2 + - uid: 8764 components: - type: Transform - pos: -111.5,-8.5 - parent: 89 - - uid: 16405 + pos: -6.482778,40.52599 + parent: 2 + - uid: 8765 components: - type: Transform - pos: -111.5,-7.5 - parent: 89 - - uid: 16406 + pos: 0.51973057,43.37215 + parent: 2 +- proto: ClothingEyesGlassesJamjar + entities: + - uid: 8766 components: - type: Transform - pos: -111.5,-6.5 - parent: 89 - - uid: 16407 + pos: -73.79168,-1.4282905 + parent: 2 +- proto: ClothingEyesGlassesMeson + entities: + - uid: 8768 components: - type: Transform - pos: -111.5,-5.5 - parent: 89 - - uid: 16512 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8775 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,12.5 - parent: 89 - - uid: 16692 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8782 components: - type: Transform - pos: -36.5,-16.5 - parent: 89 - - uid: 16870 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingEyesGlassesOutlawGlasses + entities: + - uid: 8788 components: - type: Transform - pos: 29.5,22.5 - parent: 89 - - uid: 16872 + pos: -79.18537,-1.440521 + parent: 2 +- proto: ClothingEyesGlassesSecurity + entities: + - uid: 8789 components: - type: Transform - pos: 30.5,22.5 - parent: 89 - - uid: 16873 + pos: 21.488688,-3.148366 + parent: 2 +- proto: ClothingEyesHudBeer + entities: + - uid: 8790 components: - type: Transform - pos: 31.5,22.5 - parent: 89 - - uid: 16874 + pos: 21.488688,-3.413991 + parent: 2 + - uid: 8791 components: - type: Transform - pos: 32.5,22.5 - parent: 89 - - uid: 17096 + pos: 21.473063,-3.273366 + parent: 2 +- proto: ClothingEyesHudDiagnostic + entities: + - uid: 8792 components: - type: Transform - pos: 57.5,-22.5 - parent: 89 - - uid: 17304 + rot: -1.5707963267948966 rad + pos: -14.756002,-21.47323 + parent: 2 + - uid: 8793 components: - type: Transform - pos: -35.5,-16.5 - parent: 89 - - uid: 17307 + pos: -104.4267,9.473066 + parent: 2 +- proto: ClothingEyesHudMedical + entities: + - uid: 8794 components: - type: Transform - pos: -34.5,-16.5 - parent: 89 - - uid: 17312 + rot: 1.5707963267948966 rad + pos: 16.093824,11.569571 + parent: 2 + - uid: 8795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,29.5 - parent: 89 - - uid: 17313 + pos: 16.625074,12.069571 + parent: 2 + - uid: 8796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -111.5,29.5 - parent: 89 - - uid: 17314 + rot: -1.5707963267948966 rad + pos: 16.0782,11.475821 + parent: 2 + - uid: 8797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,11.5 - parent: 89 - - uid: 17316 + rot: 3.141592653589793 rad + pos: 16.468824,12.116446 + parent: 2 + - uid: 27545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,22.5 - parent: 89 - - uid: 17317 + pos: -2.5900269,-11.5877075 + parent: 27260 +- proto: ClothingEyesHudSecurity + entities: + - uid: 8798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,26.5 - parent: 89 - - uid: 17318 + pos: 26.980837,-0.48639452 + parent: 2 + - uid: 8799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,26.5 - parent: 89 - - uid: 17319 + pos: 26.996462,-0.31451952 + parent: 2 + - uid: 8800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,26.5 - parent: 89 - - uid: 17320 + pos: 28.012087,-0.5020195 + parent: 2 + - uid: 8801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,26.5 - parent: 89 - - uid: 17321 + pos: 28.012087,-0.31451952 + parent: 2 +- proto: ClothingHandsGlovesAerostatic + entities: + - uid: 8802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,17.5 - parent: 89 - - uid: 17322 + pos: -19.437286,27.58992 + parent: 2 +- proto: ClothingHandsGlovesBoxingBlue + entities: + - uid: 8803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,16.5 - parent: 89 - - uid: 17323 + pos: -1.468462,46.55005 + parent: 2 + - uid: 8804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,15.5 - parent: 89 - - uid: 17324 + pos: 19.002268,29.716091 + parent: 2 +- proto: ClothingHandsGlovesBoxingRed + entities: + - uid: 8805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,16.5 - parent: 89 - - uid: 17325 + pos: 17.674143,30.887966 + parent: 2 + - uid: 8806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,17.5 - parent: 89 - - uid: 17326 + pos: -5.452837,46.534424 + parent: 2 +- proto: ClothingHandsGlovesColorBlue + entities: + - uid: 8807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -133.5,25.5 - parent: 89 - - uid: 17327 + pos: 40.5,14.5 + parent: 2 + - uid: 8808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,16.5 - parent: 89 - - uid: 17360 + pos: -20.591122,23.817823 + parent: 2 +- proto: ClothingHandsGlovesColorGray + entities: + - uid: 8809 components: - type: Transform - pos: -123.5,23.5 - parent: 89 - - uid: 17365 + pos: 20.510513,7.296205 + parent: 2 +- proto: ClothingHandsGlovesColorWhite + entities: + - uid: 8810 components: - type: Transform - pos: -128.5,26.5 - parent: 89 - - uid: 17366 + pos: 13.742942,5.514955 + parent: 2 +- proto: ClothingHandsGlovesColorYellow + entities: + - uid: 8769 components: - type: Transform - pos: -116.5,24.5 - parent: 89 - - uid: 17367 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8776 components: - type: Transform - pos: -130.5,26.5 - parent: 89 - - uid: 17372 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,29.5 - parent: 89 - - uid: 17384 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8811 components: - type: Transform - pos: -126.5,24.5 - parent: 89 - - uid: 17385 + pos: -98.397224,9.416823 + parent: 2 + - uid: 8812 components: - type: Transform - pos: -126.5,25.5 - parent: 89 - - uid: 17386 + pos: -98.41285,9.729323 + parent: 2 + - uid: 8813 components: - type: Transform - pos: -126.5,26.5 - parent: 89 - - uid: 17387 + pos: 3.3797808,36.4109 + parent: 2 + - uid: 8814 components: - type: Transform - pos: -127.5,26.5 - parent: 89 - - uid: 17389 + pos: 32.570797,6.603381 + parent: 2 + - uid: 8815 components: - type: Transform - pos: -122.5,24.5 - parent: 89 - - uid: 17393 + pos: 32.508297,6.790881 + parent: 2 + - uid: 8816 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,29.5 - parent: 89 - - uid: 17396 + pos: 32.555172,6.665881 + parent: 2 + - uid: 8817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,28.5 - parent: 89 - - uid: 17397 + pos: 32.555172,6.806506 + parent: 2 + - uid: 8818 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,29.5 - parent: 89 - - uid: 17398 + pos: 32.555172,6.728381 + parent: 2 + - uid: 8820 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,27.5 - parent: 89 - - uid: 17399 + parent: 8819 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,28.5 - parent: 89 - - uid: 17400 + parent: 8821 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,29.5 - parent: 89 - - uid: 17401 + parent: 8823 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8826 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,29.5 - parent: 89 - - uid: 17402 + parent: 8825 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,29.5 - parent: 89 - - uid: 17416 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHandsGlovesColorYellowBudget + entities: + - uid: 8827 components: - type: Transform - pos: -123.5,24.5 - parent: 89 - - uid: 17420 + pos: -90.483246,12.677497 + parent: 2 + - uid: 8828 components: - type: Transform - pos: -118.5,23.5 - parent: 89 - - uid: 17421 + pos: -91.46152,23.723183 + parent: 2 + - uid: 8829 components: - type: Transform - pos: -124.5,24.5 - parent: 89 - - uid: 17422 + pos: 8.534033,-16.600626 + parent: 2 + - uid: 25682 components: - type: Transform - pos: -118.5,24.5 - parent: 89 - - uid: 17423 + pos: 5.594854,1.5872421 + parent: 24450 + - uid: 25683 components: - type: Transform - pos: -117.5,24.5 - parent: 89 - - uid: 17425 + pos: 6.297979,1.5247421 + parent: 24450 + - uid: 25684 components: - type: Transform - pos: -129.5,25.5 - parent: 89 - - uid: 17428 + pos: 7.032354,1.5403671 + parent: 24450 + - uid: 25685 components: - type: Transform - pos: -129.5,26.5 - parent: 89 - - uid: 17446 + pos: -31.132912,1.5716171 + parent: 24450 + - uid: 25686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,15.5 - parent: 89 - - uid: 17454 + pos: -30.320412,1.5247421 + parent: 24450 + - uid: 25687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,22.5 - parent: 89 - - uid: 17455 + pos: -29.617287,1.5247421 + parent: 24450 +- proto: ClothingHandsGlovesCombat + entities: + - uid: 8830 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,23.5 - parent: 89 - - uid: 17456 + pos: -46.476616,-9.521127 + parent: 2 +- proto: ClothingHandsGlovesLatex + entities: + - uid: 8754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,21.5 - parent: 89 - - uid: 17457 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,30.5 - parent: 89 - - uid: 17458 + pos: 18.379253,23.490591 + parent: 2 +- proto: ClothingHandsGlovesNitrile + entities: + - uid: 8832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,30.5 - parent: 89 - - uid: 17470 + pos: 9.748317,42.759 + parent: 2 + - uid: 8833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,44.5 - parent: 89 - - uid: 17472 + pos: 9.576442,42.66525 + parent: 2 + - uid: 8834 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,45.5 - parent: 89 - - uid: 17484 + pos: 9.46803,9.090267 + parent: 2 + - uid: 8835 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,35.5 - parent: 89 - - uid: 17487 + pos: -9.527635,20.493486 + parent: 2 +- proto: ClothingHeadCapCentcomBlack + entities: + - uid: 8836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,43.5 - parent: 89 - - uid: 17489 + pos: 47.618473,-6.3060718 + parent: 2 +- proto: ClothingHeadHatBunny + entities: + - uid: 8838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,35.5 - parent: 89 - - uid: 17490 + pos: 13.368769,5.764955 + parent: 2 +- proto: ClothingHeadHatCargosoftFlipped + entities: + - uid: 8839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,35.5 - parent: 89 - - uid: 17491 + pos: -61.638783,-4.495265 + parent: 2 +- proto: ClothingHeadHatCatEars + entities: + - uid: 8840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,43.5 - parent: 89 - - uid: 17492 + pos: 44.45559,17.498344 + parent: 2 +- proto: ClothingHeadHatChef + entities: + - uid: 8841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,36.5 - parent: 89 - - uid: 17493 + pos: 47.398846,-24.403196 + parent: 2 + - uid: 8842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,36.5 - parent: 89 - - uid: 17494 + pos: 47.72697,-24.637571 + parent: 2 +- proto: ClothingHeadHatERTLeaderBeret + entities: + - uid: 27547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,36.5 - parent: 89 - - uid: 17495 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHatHardhatArmored + entities: + - uid: 8843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,44.5 - parent: 89 - - uid: 17496 + pos: -25.51856,29.62787 + parent: 2 +- proto: ClothingHeadHatHardhatOrange + entities: + - uid: 25688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,29.5 - parent: 89 - - uid: 17497 + pos: -30.721146,1.5559921 + parent: 24450 + - uid: 25689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,40.5 - parent: 89 - - uid: 17498 + pos: -30.143023,1.5403671 + parent: 24450 + - uid: 25690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,39.5 - parent: 89 - - uid: 17499 + pos: -29.486773,1.5247421 + parent: 24450 + - uid: 25691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,38.5 - parent: 89 - - uid: 17500 + pos: 5.516729,1.5247421 + parent: 24450 + - uid: 25692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,36.5 - parent: 89 - - uid: 17501 + pos: 6.141729,1.5247421 + parent: 24450 + - uid: 25693 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,35.5 - parent: 89 - - uid: 17502 + pos: 6.735479,1.5091171 + parent: 24450 +- proto: ClothingHeadHatHoodBioGeneral + entities: + - uid: 8844 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,34.5 - parent: 89 - - uid: 17503 + pos: 27.533932,31.764072 + parent: 2 +- proto: ClothingHeadHatHoodGoliathCloak + entities: + - uid: 8845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,33.5 - parent: 89 - - uid: 17504 + pos: -68.53844,-19.214548 + parent: 2 +- proto: ClothingHeadHatPaper + entities: + - uid: 8846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,33.5 - parent: 89 - - uid: 17505 + pos: -27.262207,24.532402 + parent: 2 + - uid: 8847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,33.5 - parent: 89 - - uid: 17506 + pos: -27.652832,24.532402 + parent: 2 +- proto: ClothingHeadHatParamedicsoft + entities: + - uid: 8848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,33.5 - parent: 89 - - uid: 17507 + pos: 17.990076,23.53068 + parent: 2 +- proto: ClothingHeadHatPurplesoftFlipped + entities: + - uid: 8849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,29.5 - parent: 89 - - uid: 17508 + pos: -66.46791,1.4331145 + parent: 2 +- proto: ClothingHeadHatSurgcapBlue + entities: + - uid: 8851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,29.5 - parent: 89 - - uid: 17509 + pos: -9.563451,20.796513 + parent: 2 +- proto: ClothingHeadHatSyndie + entities: + - uid: 8852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,29.5 - parent: 89 - - uid: 17511 + pos: -112.51237,-23.449892 + parent: 2 +- proto: ClothingHeadHatTophat + entities: + - uid: 8853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,30.5 - parent: 89 - - uid: 17512 + pos: -26.41045,-3.4169827 + parent: 2 +- proto: ClothingHeadHatWelding + entities: + - uid: 8854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,31.5 - parent: 89 - - uid: 17513 + pos: -1.4408808,-2.2997437 + parent: 2 + - uid: 8855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,26.5 - parent: 89 - - uid: 17514 + pos: -41.526688,-11.524264 + parent: 2 +- proto: ClothingHeadHatWizard + entities: + - uid: 8856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,26.5 - parent: 89 - - uid: 17515 + pos: -34.465157,24.600704 + parent: 2 +- proto: ClothingHeadHelmetBasic + entities: + - uid: 8857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,26.5 - parent: 89 - - uid: 17516 + pos: 44.612514,-6.462657 + parent: 2 + - uid: 8858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,26.5 - parent: 89 - - uid: 17517 + pos: 44.320847,-6.4730735 + parent: 2 + - uid: 8859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,26.5 - parent: 89 - - uid: 17518 + pos: 44.820847,-6.462657 + parent: 2 +- proto: ClothingHeadHelmetERTLeader + entities: + - uid: 27548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,26.5 - parent: 89 - - uid: 17519 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetEVALarge + entities: + - uid: 8860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,47.5 - parent: 89 - - uid: 17520 + pos: 54.324352,-13.24983 + parent: 2 + - uid: 25072 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,36.5 - parent: 89 - - uid: 17521 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,37.5 - parent: 89 - - uid: 17522 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25087 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,35.5 - parent: 89 - - uid: 17523 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,36.5 - parent: 89 - - uid: 17524 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,36.5 - parent: 89 - - uid: 17525 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,35.5 - parent: 89 - - uid: 17526 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetRiot + entities: + - uid: 8861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,37.5 - parent: 89 - - uid: 17527 + pos: 46.504883,-6.2790465 + parent: 2 + - uid: 8862 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,37.5 - parent: 89 - - uid: 17528 + pos: 46.775715,-6.2269635 + parent: 2 + - uid: 8863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,36.5 - parent: 89 - - uid: 17529 + pos: 47.403194,-6.361627 + parent: 2 + - uid: 8864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,35.5 - parent: 89 - - uid: 17531 + pos: 46.359047,-6.2582135 + parent: 2 + - uid: 8865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,36.5 - parent: 89 - - uid: 17533 + pos: 47.785137,-6.361627 + parent: 2 + - uid: 8866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,37.5 - parent: 89 - - uid: 17534 + pos: 47.590694,-6.3685718 + parent: 2 + - uid: 24532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,36.5 - parent: 89 - - uid: 17535 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingHeadHelmetSwat + entities: + - uid: 8867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,35.5 - parent: 89 - - uid: 17536 + pos: 40.498325,-9.095125 + parent: 2 +- proto: ClothingHeadPyjamaSyndicateRed + entities: + - uid: 8868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,36.5 - parent: 89 - - uid: 17537 + pos: -87.24428,27.581451 + parent: 2 +- proto: ClothingHeadRastaHat + entities: + - uid: 8869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,35.5 - parent: 89 - - uid: 17538 + pos: -5.363779,-7.512106 + parent: 2 +- proto: ClothingMaskBreath + entities: + - uid: 8870 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,34.5 - parent: 89 - - uid: 17539 + pos: -93.74811,-9.168023 + parent: 2 +- proto: ClothingMaskBreathMedical + entities: + - uid: 8871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,34.5 - parent: 89 - - uid: 17540 + pos: -8.481108,17.56099 + parent: 2 + - uid: 8872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,33.5 - parent: 89 - - uid: 17541 + pos: -8.485481,17.643927 + parent: 2 +- proto: ClothingMaskBreathMedicalSecurity + entities: + - uid: 27554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,46.5 - parent: 89 - - uid: 17542 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskClown + entities: + - uid: 8873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,45.5 - parent: 89 - - uid: 17543 + pos: -35.60017,-3.048325 + parent: 2 +- proto: ClothingMaskClownBanana + entities: + - uid: 8874 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,44.5 - parent: 89 - - uid: 17544 + pos: 50.546875,-2.8088772 + parent: 2 +- proto: ClothingMaskGas + entities: + - uid: 8875 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,24.5 - parent: 89 - - uid: 17545 + pos: -99.463165,2.5775177 + parent: 2 + - uid: 8876 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,40.5 - parent: 89 - - uid: 17546 + pos: -56.4669,12.53417 + parent: 2 + - uid: 8877 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,39.5 - parent: 89 - - uid: 17547 + pos: -9.6575165,-0.47812033 + parent: 2 + - uid: 8878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,38.5 - parent: 89 - - uid: 17548 + pos: -9.2356415,-0.47812033 + parent: 2 +- proto: ClothingMaskGasAtmos + entities: + - uid: 8879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,37.5 - parent: 89 - - uid: 17549 + rot: 3.141592653589793 rad + pos: -93.704895,-6.4565554 + parent: 2 + - uid: 8880 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,35.5 - parent: 89 - - uid: 17550 + pos: -103.42277,9.610933 + parent: 2 + - uid: 8881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,34.5 - parent: 89 - - uid: 17551 + pos: 0.5000324,27.651428 + parent: 2 + - uid: 8882 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,33.5 - parent: 89 - - uid: 17552 + pos: -112.0045,-13.262295 + parent: 2 + - uid: 8883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,32.5 - parent: 89 - - uid: 17553 + rot: 3.141592653589793 rad + pos: -93.329895,-6.5346804 + parent: 2 +- proto: ClothingMaskGasCentcom + entities: + - uid: 8884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,31.5 - parent: 89 - - uid: 17554 + pos: -27.471012,33.45121 + parent: 2 +- proto: ClothingMaskGasERT + entities: + - uid: 27560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,24.5 - parent: 89 - - uid: 17555 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,25.5 - parent: 89 - - uid: 17556 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,24.5 - parent: 89 - - uid: 17557 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,27.5 - parent: 89 - - uid: 17558 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskGasMerc + entities: + - uid: 8885 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,27.5 - parent: 89 - - uid: 17559 + pos: -151.82591,-16.404423 + parent: 2 +- proto: ClothingMaskGasSwat + entities: + - uid: 8886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,27.5 - parent: 89 - - uid: 17560 + pos: 40.4827,-9.313875 + parent: 2 + - uid: 27584 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,26.5 - parent: 89 - - uid: 17561 + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingMaskSterile + entities: + - uid: 8887 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,38.5 - parent: 89 - - uid: 17562 + pos: -8.493736,13.698058 + parent: 2 + - uid: 8888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,49.5 - parent: 89 - - uid: 17563 + pos: -8.493736,13.619933 + parent: 2 + - uid: 8889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,49.5 - parent: 89 - - uid: 17564 + pos: -8.509361,13.541808 + parent: 2 + - uid: 8890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,49.5 - parent: 89 - - uid: 17565 + pos: -8.458017,13.747701 + parent: 2 + - uid: 8891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,49.5 - parent: 89 - - uid: 17566 + pos: -8.504817,13.653951 + parent: 2 + - uid: 8892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,48.5 - parent: 89 - - uid: 17567 + pos: -8.504817,13.575826 + parent: 2 +- proto: ClothingNeckCloakGoliathCloak + entities: + - uid: 8893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,49.5 - parent: 89 - - uid: 17568 + pos: -68.51435,-19.383087 + parent: 2 +- proto: ClothingNeckCloakMiner + entities: + - uid: 8894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,48.5 - parent: 89 - - uid: 17569 + pos: 19.533554,-18.54226 + parent: 2 +- proto: ClothingNeckGoldmedal + entities: + - uid: 8895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,49.5 - parent: 89 - - uid: 17570 + pos: 48.282852,-2.0643146 + parent: 2 +- proto: ClothingNeckHeadphones + entities: + - uid: 8896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,49.5 - parent: 89 - - uid: 17571 + pos: 44.379528,-12.608146 + parent: 2 + - uid: 8897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,49.5 - parent: 89 - - uid: 17572 + pos: 44.551403,-12.233146 + parent: 2 +- proto: ClothingNeckHorrific + entities: + - uid: 8898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,49.5 - parent: 89 - - uid: 17573 + pos: -39.61603,28.938139 + parent: 2 +- proto: ClothingNeckMantleCap + entities: + - uid: 8899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,48.5 - parent: 89 - - uid: 17574 + pos: 47.81577,10.405572 + parent: 2 +- proto: ClothingNeckMantleERTLeader + entities: + - uid: 27549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,48.5 - parent: 89 - - uid: 17575 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingNeckScarfStripedZebra + entities: + - uid: 8902 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,49.5 - parent: 89 - - uid: 17576 + pos: -35.64279,-9.370201 + parent: 2 +- proto: ClothingNeckStethoscope + entities: + - uid: 8903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,49.5 - parent: 89 - - uid: 17577 + pos: 32.963474,20.751863 + parent: 2 + - uid: 8904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,49.5 - parent: 89 - - uid: 17578 + pos: 33.025974,20.611238 + parent: 2 +- proto: ClothingNeckSyndicakePin + entities: + - uid: 8905 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,49.5 - parent: 89 - - uid: 17579 + pos: -87.77427,27.411627 + parent: 2 +- proto: ClothingNeckTieDet + entities: + - uid: 8906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,49.5 - parent: 89 - - uid: 17580 + pos: 8.465353,27.48247 + parent: 2 +- proto: ClothingOuterAerostaticBomberJacket + entities: + - uid: 8907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,49.5 - parent: 89 - - uid: 17581 + pos: -19.437286,28.49617 + parent: 2 +- proto: ClothingOuterApron + entities: + - uid: 8908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,48.5 - parent: 89 - - uid: 17582 + pos: -6.622481,35.579773 + parent: 2 +- proto: ClothingOuterApronChef + entities: + - uid: 8909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,47.5 - parent: 89 - - uid: 17583 + pos: 48.38322,-24.418821 + parent: 2 + - uid: 8910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,46.5 - parent: 89 - - uid: 17584 + pos: 48.680096,-24.606321 + parent: 2 +- proto: ClothingOuterArmorBasic + entities: + - uid: 8911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,45.5 - parent: 89 - - uid: 17585 + pos: 44.570847,-6.775157 + parent: 2 + - uid: 8912 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,44.5 - parent: 89 - - uid: 17586 + pos: 44.820847,-6.7855735 + parent: 2 + - uid: 8913 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,43.5 - parent: 89 - - uid: 17587 + pos: 44.372932,-6.806407 + parent: 2 +- proto: ClothingOuterArmorBulletproof + entities: + - uid: 8914 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,45.5 - parent: 89 - - uid: 17588 + rot: 3.141592653589793 rad + pos: 47.618473,-6.736627 + parent: 2 + - uid: 8915 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,47.5 - parent: 89 - - uid: 17589 + rot: 3.141592653589793 rad + pos: 47.424026,-6.7713494 + parent: 2 + - uid: 8916 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,45.5 - parent: 89 - - uid: 17591 + rot: 3.141592653589793 rad + pos: 47.805973,-6.736627 + parent: 2 +- proto: ClothingOuterArmorHeavyRed + entities: + - uid: 8917 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,42.5 - parent: 89 - - uid: 17592 + pos: 40.529575,-9.73575 + parent: 2 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]80%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]100%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]25%[/color]. + priority: 0 + component: Armor + title: null +- proto: ClothingOuterArmorReflective + entities: + - uid: 8918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,42.5 - parent: 89 - - uid: 17595 + pos: 45.754883,-6.6644635 + parent: 2 + - uid: 8919 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,40.5 - parent: 89 - - uid: 17596 + pos: 45.338215,-6.67488 + parent: 2 +- proto: ClothingOuterArmorRiot + entities: + - uid: 8920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,40.5 - parent: 89 - - uid: 17599 + pos: 46.400715,-6.7165465 + parent: 2 + - uid: 8921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,41.5 - parent: 89 - - uid: 17607 + pos: 46.567383,-6.6957135 + parent: 2 + - uid: 8922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,40.5 - parent: 89 - - uid: 17608 + pos: 46.859047,-6.6852965 + parent: 2 + - uid: 24533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,39.5 - parent: 89 - - uid: 17629 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterBioGeneral + entities: + - uid: 8923 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,34.5 - parent: 89 - - uid: 17637 + pos: 27.533932,31.373447 + parent: 2 +- proto: ClothingOuterCoatHoSGreatcoat + entities: + - uid: 8924 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,32.5 - parent: 89 - - uid: 17638 + pos: 47.639305,-6.576905 + parent: 2 +- proto: ClothingOuterCoatLab + entities: + - uid: 8755 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,32.5 - parent: 89 - - uid: 17639 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterCoatParamedicWB + entities: + - uid: 8925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,31.5 - parent: 89 - - uid: 17640 + pos: 17.990076,23.68693 + parent: 2 +- proto: ClothingOuterDiscoAssBlazer + entities: + - uid: 8926 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,30.5 - parent: 89 - - uid: 17641 + pos: -39.54277,32.313835 + parent: 2 +- proto: ClothingOuterHardsuitERTEngineer + entities: + - uid: 27579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,29.5 - parent: 89 - - uid: 17643 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTLeader + entities: + - uid: 27585 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,30.5 - parent: 89 - - uid: 17779 + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTMedical + entities: + - uid: 27555 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-30.5 - parent: 89 - - uid: 17805 + parent: 27553 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]10%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Высокотемпературный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Радиационный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]50%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]50%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitERTSecurity + entities: + - uid: 27561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-2.5 - parent: 89 - - uid: 17806 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 68.5,-3.5 - parent: 89 - - uid: 17807 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-0.5 - parent: 89 - - uid: 17808 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitEVAPrisoner + entities: + - uid: 25073 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-1.5 - parent: 89 - - uid: 17809 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-2.5 - parent: 89 - - uid: 17810 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-4.5 - parent: 89 - - uid: 17811 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 89 - - uid: 17812 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-7.5 - parent: 89 - - uid: 17813 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 63.5,-7.5 - parent: 89 - - uid: 17814 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitLuxury + entities: + - uid: 8928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-7.5 - parent: 89 - - uid: 17815 + parent: 8927 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSecurity + entities: + - uid: 24534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-8.5 - parent: 89 - - uid: 17816 + parent: 24526 + - type: GroupExamine + group: + - hoverMessage: "" + contextText: verb-examine-group-other + icon: /Textures/Interface/examine-star.png + components: + - Armor + - ClothingSpeedModifier + entries: + - message: Понижает вашу скорость на [color=yellow]25%[/color]. + priority: 0 + component: ClothingSpeedModifier + - message: >- + Обеспечивает следующую защиту: + + - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. + + - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]30%[/color]. + + - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]60%[/color]. + priority: 0 + component: Armor + title: null + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingOuterHardsuitSpatio + entities: + - uid: 25694 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,-9.5 - parent: 89 - - uid: 17817 + pos: -29.495789,-3.492447 + parent: 24450 +- proto: ClothingOuterHardsuitSyndicate + entities: + - uid: 8929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,-9.5 - parent: 89 - - uid: 17818 + pos: 54.511852,-13.46858 + parent: 2 +- proto: ClothingOuterStraightjacket + entities: + - uid: 8930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 89 - - uid: 17819 + pos: 21.501547,31.709066 + parent: 2 + - uid: 8932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,-8.5 - parent: 89 - - uid: 17820 + parent: 8931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 89 - - uid: 17821 + parent: 8931 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-9.5 - parent: 89 - - uid: 17822 + parent: 8938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-8.5 - parent: 89 - - uid: 17823 + parent: 8938 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-9.5 - parent: 89 - - uid: 17879 + pos: 27.752682,31.732822 + parent: 2 +- proto: ClothingOuterWinterSyndieCapArmored + entities: + - uid: 8946 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-19.5 - parent: 89 - - uid: 17880 + rot: -1.5707963267948966 rad + pos: -87.45478,27.080427 + parent: 2 +- proto: ClothingOuterWizard + entities: + - uid: 8947 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-18.5 - parent: 89 - - uid: 17882 + pos: -34.433907,24.100704 + parent: 2 +- proto: ClothingShoesAerostatic + entities: + - uid: 8948 components: - type: Transform - pos: 29.5,-16.5 - parent: 89 - - uid: 17897 + pos: -19.421661,27.93367 + parent: 2 +- proto: ClothingShoesBling + entities: + - uid: 8949 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-31.5 - parent: 89 - - uid: 17898 + pos: 50.53125,-2.9807522 + parent: 2 +- proto: ClothingShoesBootsCombatFilled + entities: + - uid: 25695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-21.5 - parent: 89 - - uid: 17899 + pos: -15.45606,-2.582761 + parent: 24450 +- proto: ClothingShoesBootsMag + entities: + - uid: 5 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-22.5 - parent: 89 - - uid: 17900 + pos: 24.469347,-18.35476 + parent: 2 + - type: Magboots + toggleActionEntity: 6 + - type: ActionsContainer + - type: ContainerContainer + containers: + actions: !type:Container + ents: + - 6 + - uid: 8770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-23.5 - parent: 89 - - uid: 17920 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-25.5 - parent: 89 - - uid: 17924 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-25.5 - parent: 89 - - uid: 17927 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-25.5 - parent: 89 - - uid: 17928 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27562 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-25.5 - parent: 89 - - uid: 17930 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27568 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-28.5 - parent: 89 - - uid: 17931 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27574 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-28.5 - parent: 89 - - uid: 17932 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27580 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-28.5 - parent: 89 - - uid: 17934 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesBootsSalvage + entities: + - uid: 8950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-27.5 - parent: 89 - - uid: 17936 + pos: -46.546875,-10.40625 + parent: 2 +- proto: ClothingShoesChameleonNoSlips + entities: + - uid: 8951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-26.5 - parent: 89 - - uid: 17938 + pos: -102.50028,27.336597 + parent: 2 +- proto: ClothingShoesChef + entities: + - uid: 8952 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-30.5 - parent: 89 - - uid: 17939 + pos: -14.475378,-5.505477 + parent: 2 +- proto: ClothingShoesClown + entities: + - uid: 8953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-31.5 - parent: 89 - - uid: 17942 + pos: -35.56892,-3.4077 + parent: 2 +- proto: ClothingShoesGreenLizardskin + entities: + - uid: 8954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-31.5 - parent: 89 - - uid: 17943 + pos: -42.542587,28.46403 + parent: 2 +- proto: ClothingShoesLeather + entities: + - uid: 8756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-32.5 - parent: 89 - - uid: 17944 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,-33.5 - parent: 89 - - uid: 17945 + pos: -72.94503,-6.821913 + parent: 2 + - uid: 8956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-33.5 - parent: 89 - - uid: 17946 + pos: 47.008595,14.970873 + parent: 2 +- proto: ClothingShoesSkates + entities: + - uid: 8958 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-34.5 - parent: 89 - - uid: 17948 + parent: 8957 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingShoesSlippers + entities: + - uid: 8959 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-34.5 - parent: 89 - - uid: 17949 + pos: 41.338043,14.397523 + parent: 2 +- proto: ClothingShoesWizard + entities: + - uid: 8960 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-34.5 - parent: 89 - - uid: 17950 + pos: -34.48078,23.52258 + parent: 2 +- proto: ClothingUniformJumpskirtDetective + entities: + - uid: 8757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-34.5 - parent: 89 - - uid: 17951 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpskirtDetectiveGrey + entities: + - uid: 8758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-34.5 - parent: 89 - - uid: 17952 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitAerostatic + entities: + - uid: 8961 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-34.5 - parent: 89 - - uid: 17953 + pos: -19.499786,29.230545 + parent: 2 +- proto: ClothingUniformJumpsuitClown + entities: + - uid: 8962 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-34.5 - parent: 89 - - uid: 17955 + pos: -35.553295,-3.360825 + parent: 2 +- proto: ClothingUniformJumpsuitDetective + entities: + - uid: 8759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-34.5 - parent: 89 - - uid: 17956 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitDetectiveGrey + entities: + - uid: 8760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-35.5 - parent: 89 - - uid: 17957 + parent: 8752 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitERTLeader + entities: + - uid: 27550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-36.5 - parent: 89 - - uid: 17959 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitLawyerBlue + entities: + - uid: 8963 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-35.5 - parent: 89 - - uid: 17960 + pos: -0.7239857,46.668728 + parent: 2 +- proto: ClothingUniformJumpsuitLawyerRed + entities: + - uid: 8964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-36.5 - parent: 89 - - uid: 17961 + pos: -6.2239857,46.590603 + parent: 2 +- proto: ClothingUniformJumpsuitPrisoner + entities: + - uid: 25074 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-37.5 - parent: 89 - - uid: 17962 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-38.5 - parent: 89 - - uid: 17963 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-38.5 - parent: 89 - - uid: 17964 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25096 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-40.5 - parent: 89 - - uid: 17965 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-41.5 - parent: 89 - - uid: 17966 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25112 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-43.5 - parent: 89 - - uid: 17967 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ClothingUniformJumpsuitSuperstarCop + entities: + - uid: 8965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-45.5 - parent: 89 - - uid: 17968 + pos: -39.995895,29.48571 + parent: 2 +- proto: ClusterBangFull + entities: + - uid: 1117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-44.5 - parent: 89 - - uid: 17970 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-48.5 - parent: 89 - - uid: 17971 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27299 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-48.5 - parent: 89 - - uid: 17972 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Cobweb1 + entities: + - uid: 8966 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-44.5 - parent: 89 - - uid: 17973 + pos: -93.5,29.5 + parent: 2 + - uid: 8967 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-48.5 - parent: 89 - - uid: 17974 + rot: -1.5707963267948966 rad + pos: -91.5,29.5 + parent: 2 + - uid: 8968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-48.5 - parent: 89 - - uid: 17975 + rot: -1.5707963267948966 rad + pos: 15.5,-15.5 + parent: 2 + - uid: 8969 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-48.5 - parent: 89 - - uid: 17977 + pos: 15.5,-16.5 + parent: 2 + - uid: 8970 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-48.5 - parent: 89 - - uid: 17978 + pos: 13.5,-15.5 + parent: 2 + - uid: 8971 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-48.5 - parent: 89 - - uid: 17979 + pos: 43.5,-8.5 + parent: 2 + - uid: 8972 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-48.5 - parent: 89 - - uid: 17980 + rot: -1.5707963267948966 rad + pos: 49.5,-8.5 + parent: 2 + - uid: 25696 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-47.5 - parent: 89 - - uid: 17981 + pos: 1.5,9.5 + parent: 24450 + - uid: 25697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-48.5 - parent: 89 - - uid: 17982 + rot: 1.5707963267948966 rad + pos: 1.5,9.5 + parent: 24450 +- proto: Cobweb2 + entities: + - uid: 8973 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-48.5 - parent: 89 - - uid: 17983 + pos: -93.5,27.5 + parent: 2 + - uid: 8974 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-48.5 - parent: 89 - - uid: 17984 + pos: 14.5,-15.5 + parent: 2 + - uid: 8975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-47.5 - parent: 89 - - uid: 17985 + rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 2 + - uid: 25698 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-48.5 - parent: 89 - - uid: 17986 + pos: 4.5,11.5 + parent: 24450 +- proto: CockroachTimedSpawner + entities: + - uid: 8976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-48.5 - parent: 89 - - uid: 17987 + pos: -21.5,-23.5 + parent: 2 + - uid: 8977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-48.5 - parent: 89 - - uid: 17988 + pos: -38.5,11.5 + parent: 2 + - uid: 8978 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-47.5 - parent: 89 - - uid: 17989 + pos: -39.5,28.5 + parent: 2 + - uid: 8979 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-46.5 - parent: 89 - - uid: 17990 + pos: -33.5,-17.5 + parent: 2 + - uid: 8980 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-46.5 - parent: 89 - - uid: 17991 + pos: 6.5,26.5 + parent: 2 + - uid: 8981 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-43.5 - parent: 89 - - uid: 17992 + pos: 34.5,-16.5 + parent: 2 + - uid: 8982 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-43.5 - parent: 89 - - uid: 17993 + pos: -42.5,-17.5 + parent: 2 + - uid: 8983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-40.5 - parent: 89 - - uid: 17994 + pos: -44.5,-8.5 + parent: 2 + - uid: 8984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-41.5 - parent: 89 - - uid: 17995 + pos: -25.5,-23.5 + parent: 2 + - uid: 8985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-42.5 - parent: 89 - - uid: 17996 + pos: -11.5,-30.5 + parent: 2 + - uid: 8986 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-39.5 - parent: 89 - - uid: 17997 + pos: 6.5,-28.5 + parent: 2 + - uid: 8987 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-39.5 - parent: 89 - - uid: 17998 + pos: 4.5,-16.5 + parent: 2 + - uid: 8988 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-39.5 - parent: 89 - - uid: 17999 + pos: 17.5,-18.5 + parent: 2 + - uid: 8989 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-37.5 - parent: 89 - - uid: 18000 + pos: 48.5,4.5 + parent: 2 + - uid: 8990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-39.5 - parent: 89 - - uid: 18001 + pos: 40.5,19.5 + parent: 2 + - uid: 8991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-38.5 - parent: 89 - - uid: 18002 + pos: 31.5,22.5 + parent: 2 + - uid: 8992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-39.5 - parent: 89 - - uid: 18003 + pos: -6.5,23.5 + parent: 2 + - uid: 8993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-39.5 - parent: 89 - - uid: 18004 + pos: -6.5,33.5 + parent: 2 + - uid: 8994 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-38.5 - parent: 89 - - uid: 18005 + pos: 0.5,36.5 + parent: 2 + - uid: 8995 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-37.5 - parent: 89 - - uid: 18007 + pos: -2.5,43.5 + parent: 2 + - uid: 8996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-34.5 - parent: 89 - - uid: 18008 + pos: -20.5,22.5 + parent: 2 + - uid: 8997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-34.5 - parent: 89 - - uid: 18009 + pos: -18.5,16.5 + parent: 2 + - uid: 8998 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-33.5 - parent: 89 - - uid: 18011 + pos: -17.5,13.5 + parent: 2 + - uid: 8999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-35.5 - parent: 89 - - uid: 18012 + pos: -36.5,-1.5 + parent: 2 + - uid: 9000 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-31.5 - parent: 89 - - uid: 18013 + pos: -45.5,20.5 + parent: 2 + - uid: 9001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-30.5 - parent: 89 - - uid: 18014 + pos: -53.5,25.5 + parent: 2 + - uid: 9002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-30.5 - parent: 89 - - uid: 18015 + pos: -53.5,35.5 + parent: 2 + - uid: 9003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-29.5 - parent: 89 - - uid: 18016 + pos: -71.5,20.5 + parent: 2 + - uid: 9004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-30.5 - parent: 89 - - uid: 18017 + pos: -76.5,16.5 + parent: 2 + - uid: 9005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-30.5 - parent: 89 - - uid: 18018 + pos: -87.5,18.5 + parent: 2 + - uid: 9006 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-30.5 - parent: 89 - - uid: 18019 + pos: -96.5,25.5 + parent: 2 + - uid: 9007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-29.5 - parent: 89 - - uid: 18020 + pos: -100.5,13.5 + parent: 2 + - uid: 9008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-30.5 - parent: 89 - - uid: 18021 + pos: -103.5,17.5 + parent: 2 + - uid: 9009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-30.5 - parent: 89 - - uid: 18022 + pos: -114.5,18.5 + parent: 2 + - uid: 9010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-30.5 - parent: 89 - - uid: 18023 + pos: -129.5,20.5 + parent: 2 +- proto: CombatKnife + entities: + - uid: 9011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-20.5 - parent: 89 - - uid: 18024 + pos: 5.2764907,-1.3724282 + parent: 2 +- proto: CombatMedipen + entities: + - uid: 9013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-29.5 - parent: 89 - - uid: 18025 + parent: 9012 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-30.5 - parent: 89 - - uid: 18026 + parent: 9014 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-30.5 - parent: 89 - - uid: 18028 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 23946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-29.5 - parent: 89 - - uid: 18029 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ComfyChair + entities: + - uid: 9016 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,-30.5 - parent: 89 - - uid: 18030 + rot: -1.5707963267948966 rad + pos: 37.5,13.5 + parent: 2 + - uid: 9017 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-30.5 - parent: 89 - - uid: 18031 + pos: 35.5,15.5 + parent: 2 + - uid: 9018 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-27.5 - parent: 89 - - uid: 18032 + rot: 1.5707963267948966 rad + pos: 31.5,14.5 + parent: 2 + - uid: 9019 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-28.5 - parent: 89 - - uid: 18033 + rot: -1.5707963267948966 rad + pos: 45.5,5.5 + parent: 2 + - uid: 9020 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,-27.5 - parent: 89 - - uid: 18034 + pos: 35.5,12.5 + parent: 2 + - uid: 9021 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-26.5 - parent: 89 - - uid: 18035 + pos: 33.5,15.5 + parent: 2 + - uid: 9022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-23.5 - parent: 89 - - uid: 18036 + rot: -1.5707963267948966 rad + pos: 37.5,14.5 + parent: 2 + - uid: 9023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-23.5 - parent: 89 - - uid: 18037 + rot: 1.5707963267948966 rad + pos: 31.5,13.5 + parent: 2 + - uid: 9024 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-24.5 - parent: 89 - - uid: 18038 + pos: 33.5,12.5 + parent: 2 + - uid: 9025 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-22.5 - parent: 89 - - uid: 18039 + rot: 1.5707963267948966 rad + pos: 33.5,-2.5 + parent: 2 + - uid: 9026 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,-20.5 - parent: 89 - - uid: 18040 + pos: 48.5,14.5 + parent: 2 + - uid: 9027 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-20.5 - parent: 89 - - uid: 18041 + rot: 1.5707963267948966 rad + pos: 41.5,12.5 + parent: 2 + - uid: 9028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-19.5 - parent: 89 - - uid: 18042 + pos: -72.5,-16.5 + parent: 2 + - uid: 9029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-19.5 - parent: 89 - - uid: 18043 + pos: 34.5,15.5 + parent: 2 + - uid: 9030 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-20.5 - parent: 89 - - uid: 18044 + pos: 34.5,12.5 + parent: 2 + - uid: 9031 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,-21.5 - parent: 89 - - uid: 18045 + pos: -3.5,42.5 + parent: 2 + - uid: 9032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-20.5 - parent: 89 - - uid: 18046 + rot: 1.5707963267948966 rad + pos: 37.5,4.5 + parent: 2 + - uid: 9033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-20.5 - parent: 89 - - uid: 18049 + rot: -1.5707963267948966 rad + pos: -9.5,-36.5 + parent: 2 + - uid: 9034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-20.5 - parent: 89 - - uid: 18050 + rot: 1.5707963267948966 rad + pos: -11.5,-36.5 + parent: 2 + - uid: 9035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-20.5 - parent: 89 - - uid: 18051 + pos: 47.5,11.5 + parent: 2 + - uid: 9036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-20.5 - parent: 89 - - uid: 18052 + pos: -122.5,-13.5 + parent: 2 + - uid: 9037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-19.5 - parent: 89 - - uid: 18053 + rot: -1.5707963267948966 rad + pos: -123.5,-12.5 + parent: 2 + - uid: 9038 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-21.5 - parent: 89 - - uid: 18054 + pos: 30.5,-13.5 + parent: 2 + - uid: 9039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-22.5 - parent: 89 - - uid: 18055 + pos: -52.5,48.5 + parent: 2 + - uid: 9040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-22.5 - parent: 89 - - uid: 18057 + pos: -53.5,48.5 + parent: 2 + - uid: 9041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-22.5 - parent: 89 - - uid: 18058 + pos: -54.5,48.5 + parent: 2 + - uid: 9042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,-22.5 - parent: 89 - - uid: 18137 + rot: -1.5707963267948966 rad + pos: 36.5,5.5 + parent: 2 + - uid: 9043 components: - type: Transform - pos: 57.5,-19.5 - parent: 89 - - uid: 18181 + rot: 1.5707963267948966 rad + pos: 18.5,18.5 + parent: 2 + - uid: 9044 components: - type: Transform - pos: 57.5,-20.5 - parent: 89 - - uid: 18185 + rot: 3.141592653589793 rad + pos: 56.5,-26.5 + parent: 2 + - uid: 9045 components: - type: Transform - pos: 57.5,-21.5 - parent: 89 - - uid: 18331 + pos: 55.5,-32.5 + parent: 2 + - uid: 9046 components: - type: Transform - pos: 57.5,-18.5 - parent: 89 - - uid: 18976 + rot: -1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 9047 components: - type: Transform - pos: -99.5,25.5 - parent: 89 - - uid: 18977 + rot: 1.5707963267948966 rad + pos: 34.5,-24.5 + parent: 2 + - uid: 9048 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 19622 + pos: 56.5,-32.5 + parent: 2 + - uid: 9049 components: - type: Transform - pos: 5.5,26.5 - parent: 89 - - uid: 19632 + rot: 1.5707963267948966 rad + pos: 57.5,-32.5 + parent: 2 +- proto: CommsComputerCircuitboard + entities: + - uid: 9050 components: - type: Transform - pos: 6.5,26.5 - parent: 89 - - uid: 19633 + pos: 54.446102,2.4674153 + parent: 2 +- proto: ComputerAlert + entities: + - uid: 9051 components: - type: Transform - pos: -14.5,23.5 - parent: 89 - - uid: 19646 + pos: 57.5,10.5 + parent: 2 + - uid: 9052 components: - type: Transform - pos: -13.5,23.5 - parent: 89 - - uid: 19708 + rot: -1.5707963267948966 rad + pos: 63.5,2.5 + parent: 2 + - uid: 9053 components: - type: Transform - pos: -12.5,23.5 - parent: 89 - - uid: 19710 + rot: -1.5707963267948966 rad + pos: 65.5,11.5 + parent: 2 + - uid: 9054 components: - type: Transform - pos: -8.5,23.5 - parent: 89 - - uid: 19711 + rot: -1.5707963267948966 rad + pos: -28.5,35.5 + parent: 2 + - uid: 9055 components: - type: Transform - pos: -7.5,23.5 - parent: 89 - - uid: 19714 + rot: 3.141592653589793 rad + pos: -118.5,1.5 + parent: 2 + - uid: 9056 components: - type: Transform - pos: 7.5,26.5 - parent: 89 - - uid: 19788 + rot: -1.5707963267948966 rad + pos: 65.5,-2.5 + parent: 2 +- proto: ComputerAnalysisConsole + entities: + - uid: 9057 components: - type: Transform - pos: 10.5,26.5 - parent: 89 - - uid: 19789 + rot: 3.141592653589793 rad + pos: -4.5,-41.5 + parent: 2 + - uid: 9058 components: - type: Transform - pos: 33.5,35.5 - parent: 89 - - uid: 19790 + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 2 +- proto: ComputerBroken + entities: + - uid: 9059 components: - type: Transform - pos: 9.5,26.5 - parent: 89 - - uid: 19791 + pos: -129.5,23.5 + parent: 2 + - uid: 9060 components: - type: Transform - pos: 33.5,34.5 - parent: 89 - - uid: 19792 + rot: -1.5707963267948966 rad + pos: -91.5,29.5 + parent: 2 +- proto: ComputerCargoBounty + entities: + - uid: 9061 components: - type: Transform - pos: 30.5,35.5 - parent: 89 - - uid: 19799 + pos: -69.5,-9.5 + parent: 2 + - uid: 9062 components: - type: Transform - pos: 31.5,35.5 - parent: 89 - - uid: 19800 + pos: -64.5,-6.5 + parent: 2 +- proto: ComputerCargoOrders + entities: + - uid: 9063 components: - type: Transform - pos: 32.5,35.5 - parent: 89 - - uid: 19816 + rot: 1.5707963267948966 rad + pos: -31.5,35.5 + parent: 2 + - uid: 9064 components: - type: Transform - pos: -123.5,17.5 - parent: 89 - - uid: 19826 + rot: 3.141592653589793 rad + pos: -60.5,-2.5 + parent: 2 + - uid: 9065 components: - type: Transform - pos: -120.5,17.5 - parent: 89 - - uid: 19828 + rot: 3.141592653589793 rad + pos: -65.5,-2.5 + parent: 2 + - uid: 9066 components: - type: Transform - pos: -123.5,16.5 - parent: 89 - - uid: 19829 + rot: 1.5707963267948966 rad + pos: -64.5,-4.5 + parent: 2 +- proto: ComputerComms + entities: + - uid: 9067 components: - type: Transform - pos: -124.5,17.5 - parent: 89 - - uid: 19831 + rot: -1.5707963267948966 rad + pos: 63.5,1.5 + parent: 2 + - uid: 9068 components: - type: Transform - pos: -125.5,17.5 - parent: 89 - - uid: 19832 + pos: 59.5,15.5 + parent: 2 + - uid: 9069 components: - type: Transform - pos: -122.5,17.5 - parent: 89 - - uid: 19833 + rot: -1.5707963267948966 rad + pos: 59.5,3.5 + parent: 2 + - uid: 9070 components: - type: Transform - pos: -123.5,13.5 - parent: 89 - - uid: 19834 + rot: 3.141592653589793 rad + pos: 57.5,-1.5 + parent: 2 + - uid: 25699 components: - type: Transform - pos: -123.5,15.5 - parent: 89 - - uid: 19835 + rot: 1.5707963267948966 rad + pos: -14.5,-25.5 + parent: 24450 +- proto: ComputerCrewMonitoring + entities: + - uid: 9071 components: - type: Transform - pos: -123.5,14.5 - parent: 89 - - uid: 19839 + pos: 52.5,15.5 + parent: 2 + - uid: 9072 components: - type: Transform - pos: -121.5,17.5 - parent: 89 - - uid: 19840 + pos: 8.5,-10.5 + parent: 2 + - uid: 9073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,12.5 - parent: 89 - - uid: 19890 + pos: 13.5,-0.5 + parent: 2 + - uid: 9074 components: - type: Transform - pos: 29.5,36.5 - parent: 89 - - uid: 19918 + rot: 3.141592653589793 rad + pos: 32.5,-3.5 + parent: 2 + - uid: 9075 components: - type: Transform - pos: 29.5,37.5 - parent: 89 - - uid: 19919 + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 2 + - uid: 9076 components: - type: Transform - pos: 29.5,35.5 - parent: 89 - - uid: 19924 + rot: -1.5707963267948966 rad + pos: 22.5,7.5 + parent: 2 + - uid: 9077 components: - type: Transform - pos: 29.5,38.5 - parent: 89 - - uid: 19925 + rot: 1.5707963267948966 rad + pos: 22.5,37.5 + parent: 2 + - uid: 9078 components: - type: Transform - pos: 29.5,39.5 - parent: 89 - - uid: 19926 + rot: 1.5707963267948966 rad + pos: 24.5,12.5 + parent: 2 +- proto: ComputerCriminalRecords + entities: + - uid: 9079 components: - type: Transform - pos: 29.5,40.5 - parent: 89 - - uid: 19927 + rot: 3.141592653589793 rad + pos: 33.5,-3.5 + parent: 2 + - uid: 9080 components: - type: Transform - pos: 28.5,40.5 - parent: 89 - - uid: 19928 + rot: -1.5707963267948966 rad + pos: 28.5,-6.5 + parent: 2 + - uid: 9081 components: - type: Transform - pos: 28.5,41.5 - parent: 89 - - uid: 19930 + rot: 3.141592653589793 rad + pos: -16.5,6.5 + parent: 2 + - uid: 9082 components: - type: Transform - pos: 16.5,35.5 - parent: 89 - - uid: 19931 + rot: -1.5707963267948966 rad + pos: -43.5,1.5 + parent: 2 + - uid: 9083 components: - type: Transform - pos: 17.5,35.5 - parent: 89 - - uid: 19932 + rot: 1.5707963267948966 rad + pos: -86.5,12.5 + parent: 2 + - uid: 9084 components: - type: Transform - pos: 18.5,35.5 - parent: 89 - - uid: 19933 + rot: 3.141592653589793 rad + pos: -84.5,15.5 + parent: 2 + - uid: 9085 components: - type: Transform - pos: 19.5,35.5 - parent: 89 - - uid: 19934 + rot: 3.141592653589793 rad + pos: -60.5,7.5 + parent: 2 + - uid: 9086 components: - type: Transform - pos: 19.5,36.5 - parent: 89 - - uid: 19935 + rot: 3.141592653589793 rad + pos: -59.5,20.5 + parent: 2 + - uid: 9087 components: - type: Transform - pos: 19.5,37.5 - parent: 89 - - uid: 19936 + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 2 + - uid: 9088 components: - type: Transform - pos: 19.5,38.5 - parent: 89 - - uid: 19937 + pos: -73.5,-5.5 + parent: 2 + - uid: 9089 components: - type: Transform - pos: 19.5,39.5 - parent: 89 - - uid: 19938 + rot: 3.141592653589793 rad + pos: 59.5,-6.5 + parent: 2 + - uid: 23797 components: - type: Transform - pos: 19.5,40.5 - parent: 89 - - uid: 19939 + pos: 4.5,-1.5 + parent: 23711 + - uid: 25700 components: - type: Transform - pos: 20.5,40.5 - parent: 89 - - uid: 19940 + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 24450 + - uid: 25701 components: - type: Transform - pos: 20.5,41.5 - parent: 89 - - uid: 20244 + rot: 1.5707963267948966 rad + pos: -14.5,6.5 + parent: 24450 +- proto: ComputerFrame + entities: + - uid: 9090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,26.5 - parent: 89 - - uid: 20374 + rot: -1.5707963267948966 rad + pos: -131.5,-6.5 + parent: 2 + - uid: 9091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,31.5 - parent: 89 - - uid: 20375 + rot: 3.141592653589793 rad + pos: 55.5,2.5 + parent: 2 + - uid: 9092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,33.5 - parent: 89 - - uid: 20376 + pos: 10.5,18.5 + parent: 2 +- proto: ComputerId + entities: + - uid: 9093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,35.5 - parent: 89 - - uid: 20377 + rot: 3.141592653589793 rad + pos: 42.5,8.5 + parent: 2 + - uid: 9094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,37.5 - parent: 89 - - uid: 20380 + rot: 3.141592653589793 rad + pos: 55.5,-6.5 + parent: 2 + - uid: 9095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,40.5 - parent: 89 - - uid: 20394 + rot: -1.5707963267948966 rad + pos: 65.5,-3.5 + parent: 2 +- proto: ComputerIFF + entities: + - uid: 24389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,27.5 - parent: 89 - - uid: 20403 + pos: -0.5,-1.5 + parent: 24340 +- proto: ComputerIFFSyndicate + entities: + - uid: 24075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,28.5 - parent: 89 - - uid: 20404 + pos: 5.5,6.5 + parent: 23919 + - uid: 27588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,26.5 - parent: 89 - - uid: 20405 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 27260 +- proto: ComputerIFFSyndicateCircuitboard + entities: + - uid: 25702 components: + - type: MetaData + name: консоль системы опознования - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,26.5 - parent: 89 - - uid: 20406 + pos: 3.543898,11.66512 + parent: 24450 +- proto: ComputerMassMedia + entities: + - uid: 9096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,26.5 - parent: 89 - - uid: 20407 + pos: -26.5,9.5 + parent: 2 +- proto: ComputerMedicalRecords + entities: + - uid: 9097 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,26.5 - parent: 89 - - uid: 20408 + pos: 14.5,-0.5 + parent: 2 + - uid: 9098 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,26.5 - parent: 89 - - uid: 20409 + rot: 3.141592653589793 rad + pos: 54.5,-1.5 + parent: 2 + - uid: 9099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,26.5 - parent: 89 - - uid: 20410 + rot: -1.5707963267948966 rad + pos: -9.5,11.5 + parent: 2 +- proto: ComputerPowerMonitoring + entities: + - uid: 9100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,26.5 - parent: 89 - - uid: 20411 + pos: -121.5,14.5 + parent: 2 + - uid: 9101 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,26.5 - parent: 89 - - uid: 20412 + pos: -105.5,10.5 + parent: 2 + - uid: 9102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,26.5 - parent: 89 - - uid: 20413 + pos: -118.5,6.5 + parent: 2 + - uid: 9103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,26.5 - parent: 89 - - uid: 20423 + rot: 3.141592653589793 rad + pos: 52.5,-6.5 + parent: 2 + - uid: 9104 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,41.5 - parent: 89 - - uid: 20424 + rot: 3.141592653589793 rad + pos: -128.5,-2.5 + parent: 2 +- proto: ComputerRadar + entities: + - uid: 9105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,42.5 - parent: 89 - - uid: 20436 + rot: -1.5707963267948966 rad + pos: 59.5,5.5 + parent: 2 + - uid: 9106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,26.5 - parent: 89 - - uid: 20438 + pos: 55.5,15.5 + parent: 2 + - uid: 9107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,29.5 - parent: 89 - - uid: 20439 + pos: -49.5,-19.5 + parent: 2 + - uid: 9108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,26.5 - parent: 89 - - uid: 20450 + pos: -113.5,-6.5 + parent: 2 + - uid: 9109 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,30.5 - parent: 89 - - uid: 20451 + rot: 3.141592653589793 rad + pos: -117.5,1.5 + parent: 2 + - uid: 23798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,32.5 - parent: 89 - - uid: 20452 + pos: 2.5,-1.5 + parent: 23711 + - uid: 24390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,34.5 - parent: 89 - - uid: 20453 + pos: 1.5,-1.5 + parent: 24340 + - uid: 25703 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,36.5 - parent: 89 - - uid: 20454 + pos: -14.5,-26.5 + parent: 24450 + - uid: 25704 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,38.5 - parent: 89 - - uid: 20455 + rot: -1.5707963267948966 rad + pos: -9.5,5.5 + parent: 24450 +- proto: ComputerResearchAndDevelopment + entities: + - uid: 9110 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,39.5 - parent: 89 - - uid: 20473 + rot: -1.5707963267948966 rad + pos: -14.5,-19.5 + parent: 2 + - uid: 9111 components: - type: Transform - pos: -128.5,-17.5 - parent: 89 - - uid: 20474 + pos: -7.5,-34.5 + parent: 2 + - uid: 9112 components: - type: Transform - pos: -128.5,-18.5 - parent: 89 - - uid: 20499 + pos: 1.5,-27.5 + parent: 2 + - uid: 9113 components: - type: Transform - pos: -128.5,-19.5 - parent: 89 - - uid: 20500 + rot: -1.5707963267948966 rad + pos: -7.5,-16.5 + parent: 2 +- proto: ComputerSalvageExpedition + entities: + - uid: 9114 components: - type: Transform - pos: -128.5,-20.5 - parent: 89 - - uid: 20501 + pos: -70.5,-9.5 + parent: 2 + - uid: 9115 components: - type: Transform - pos: -128.5,-21.5 - parent: 89 - - uid: 20502 + rot: 3.141592653589793 rad + pos: -50.5,-14.5 + parent: 2 +- proto: ComputerShuttle + entities: + - uid: 9116 components: + - type: MetaData + name: консоль управления корабля - type: Transform - pos: -128.5,-22.5 - parent: 89 - - uid: 20503 + rot: -1.5707963267948966 rad + pos: 59.5,4.5 + parent: 2 + - uid: 23799 components: - type: Transform - pos: -128.5,-23.5 - parent: 89 - - uid: 20504 + pos: 3.5,-1.5 + parent: 23711 + - uid: 24076 components: - type: Transform - pos: -128.5,-24.5 - parent: 89 - - uid: 20505 + pos: 4.5,6.5 + parent: 23919 + - uid: 24391 components: - type: Transform - pos: -128.5,-25.5 - parent: 89 - - uid: 20506 + pos: 0.5,0.5 + parent: 24340 +- proto: ComputerShuttleCargo + entities: + - uid: 9117 components: - type: Transform - pos: -128.5,-26.5 - parent: 89 - - uid: 20507 + rot: 1.5707963267948966 rad + pos: -64.5,-5.5 + parent: 2 +- proto: ComputerShuttleSalvage + entities: + - uid: 9118 components: - type: Transform - pos: -128.5,-27.5 - parent: 89 - - uid: 20508 + rot: 1.5707963267948966 rad + pos: -48.5,-17.5 + parent: 2 +- proto: ComputerSolarControl + entities: + - uid: 9119 components: - type: Transform - pos: -128.5,-28.5 - parent: 89 - - uid: 20509 + rot: 1.5707963267948966 rad + pos: -105.5,11.5 + parent: 2 + - uid: 9120 components: - type: Transform - pos: -128.5,-29.5 - parent: 89 - - uid: 20519 + pos: -117.5,6.5 + parent: 2 + - uid: 9121 components: - type: Transform - pos: -127.5,-19.5 - parent: 89 - - uid: 20523 + rot: 3.141592653589793 rad + pos: 56.5,-6.5 + parent: 2 + - uid: 9122 components: - type: Transform - pos: -130.5,-19.5 - parent: 89 - - uid: 20526 + rot: -1.5707963267948966 rad + pos: 36.5,25.5 + parent: 2 + - uid: 25705 components: - type: Transform - pos: -129.5,-19.5 - parent: 89 - - uid: 20538 + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 24450 +- proto: ComputerStationRecords + entities: + - uid: 9123 components: - type: Transform - pos: -127.5,-24.5 - parent: 89 - - uid: 20539 + rot: -1.5707963267948966 rad + pos: 63.5,7.5 + parent: 2 + - uid: 9124 components: - type: Transform - pos: -126.5,-24.5 - parent: 89 - - uid: 20542 + pos: 54.5,10.5 + parent: 2 + - uid: 9125 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,38.5 - parent: 89 - - uid: 20550 + pos: 65.5,12.5 + parent: 2 + - uid: 9126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,26.5 - parent: 89 - - uid: 20563 + pos: -20.5,6.5 + parent: 2 + - uid: 9127 components: - type: Transform - pos: -130.5,-24.5 - parent: 89 - - uid: 20564 + rot: 3.141592653589793 rad + pos: 34.5,-27.5 + parent: 2 + - uid: 25706 components: - type: Transform - pos: -129.5,-24.5 - parent: 89 - - uid: 20565 + rot: -1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 24450 + - uid: 25707 components: - type: Transform - pos: -127.5,-29.5 - parent: 89 - - uid: 20566 + rot: 1.5707963267948966 rad + pos: -14.5,5.5 + parent: 24450 +- proto: ComputerSurveillanceCameraMonitor + entities: + - uid: 9128 components: - type: Transform - pos: -126.5,-29.5 - parent: 89 - - uid: 20567 + rot: -1.5707963267948966 rad + pos: 63.5,6.5 + parent: 2 + - uid: 9129 components: - type: Transform - pos: -128.5,-30.5 - parent: 89 - - uid: 20568 + pos: 7.5,-10.5 + parent: 2 + - uid: 9130 components: - type: Transform - pos: -129.5,-29.5 - parent: 89 - - uid: 20569 + rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 2 + - uid: 9131 components: - type: Transform - pos: -130.5,-29.5 - parent: 89 - - uid: 20656 + pos: -88.5,14.5 + parent: 2 + - uid: 9132 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,38.5 - parent: 89 - - uid: 20657 + pos: -58.5,8.5 + parent: 2 + - uid: 9133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,38.5 - parent: 89 - - uid: 20659 + pos: -61.5,22.5 + parent: 2 + - uid: 9134 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,38.5 - parent: 89 - - uid: 20660 + pos: -102.5,20.5 + parent: 2 + - uid: 9135 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,38.5 - parent: 89 - - uid: 20661 + pos: 22.5,6.5 + parent: 2 + - uid: 9136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,38.5 - parent: 89 - - uid: 20662 + pos: 56.5,15.5 + parent: 2 + - uid: 25708 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,38.5 - parent: 89 - - uid: 20663 + pos: -9.5,6.5 + parent: 24450 +- proto: ComputerSurveillanceWirelessCameraMonitor + entities: + - uid: 9137 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,38.5 - parent: 89 - - uid: 20666 + pos: 22.5,5.5 + parent: 2 + - uid: 9138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,38.5 - parent: 89 - - uid: 20667 + pos: -27.5,9.5 + parent: 2 +- proto: ComputerTechnologyDiskTerminal + entities: + - uid: 9139 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,38.5 - parent: 89 - - uid: 20668 + pos: -12.5,-16.5 + parent: 2 +- proto: ComputerTelevision + entities: + - uid: 9140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,38.5 - parent: 89 - - uid: 20669 + pos: -22.5,-3.5 + parent: 2 + - uid: 9141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,38.5 - parent: 89 - - uid: 20670 + pos: -22.5,29.5 + parent: 2 + - uid: 9142 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,38.5 - parent: 89 - - uid: 20671 + pos: -37.5,29.5 + parent: 2 + - uid: 9143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,38.5 - parent: 89 - - uid: 20675 + pos: 42.5,12.5 + parent: 2 + - uid: 9144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,34.5 - parent: 89 - - uid: 20676 + pos: 48.5,15.5 + parent: 2 +- proto: ContainmentFieldGenerator + entities: + - uid: 9145 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,34.5 - parent: 89 - - uid: 20677 + pos: -139.5,-3.5 + parent: 2 + - uid: 9146 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,34.5 - parent: 89 - - uid: 20678 + pos: -147.5,-3.5 + parent: 2 + - uid: 9147 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,34.5 - parent: 89 - - uid: 20679 + pos: -147.5,-11.5 + parent: 2 + - uid: 9148 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,34.5 - parent: 89 - - uid: 20680 + pos: -139.5,-11.5 + parent: 2 +- proto: ConveyorBelt + entities: + - uid: 9149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,34.5 - parent: 89 - - uid: 20681 + rot: 3.141592653589793 rad + pos: -55.5,-15.5 + parent: 2 + - uid: 9150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,34.5 - parent: 89 - - uid: 20682 + rot: 3.141592653589793 rad + pos: -55.5,-14.5 + parent: 2 + - uid: 9151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,34.5 - parent: 89 - - uid: 20684 + rot: 3.141592653589793 rad + pos: -55.5,-13.5 + parent: 2 + - uid: 9152 components: - type: Transform - pos: -125.5,-19.5 - parent: 89 - - uid: 20685 + pos: -66.5,-5.5 + parent: 2 + - uid: 9153 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,34.5 - parent: 89 - - uid: 20686 + pos: -95.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,34.5 - parent: 89 - - uid: 20687 + pos: -63.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9155 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,34.5 - parent: 89 - - uid: 20688 + pos: -63.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9156 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,34.5 - parent: 89 - - uid: 20689 + pos: -63.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,34.5 - parent: 89 - - uid: 20690 + pos: -63.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,34.5 - parent: 89 - - uid: 20691 + pos: -63.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9159 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,34.5 - parent: 89 - - uid: 20692 + pos: -59.5,-17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9160 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,34.5 - parent: 89 - - uid: 20693 + pos: -59.5,-18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,30.5 - parent: 89 - - uid: 20694 + pos: -59.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,30.5 - parent: 89 - - uid: 20695 + pos: -59.5,-20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,30.5 - parent: 89 - - uid: 20696 + pos: -59.5,-21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19861 + - uid: 9164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,30.5 - parent: 89 - - uid: 20697 + pos: -66.5,-4.5 + parent: 2 + - uid: 9165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,30.5 - parent: 89 - - uid: 20698 + pos: -66.5,-3.5 + parent: 2 + - uid: 9166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,30.5 - parent: 89 - - uid: 20699 + pos: -66.5,-2.5 + parent: 2 + - uid: 9167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,30.5 - parent: 89 - - uid: 20701 + pos: -59.5,-2.5 + parent: 2 + - uid: 9168 components: - type: Transform - pos: -124.5,-19.5 - parent: 89 - - uid: 20703 + pos: -59.5,-3.5 + parent: 2 + - uid: 9169 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,30.5 - parent: 89 - - uid: 20704 + pos: -59.5,-4.5 + parent: 2 + - uid: 9170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,30.5 - parent: 89 - - uid: 20705 + pos: -59.5,-5.5 + parent: 2 + - uid: 9171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,30.5 - parent: 89 - - uid: 20706 + rot: 3.141592653589793 rad + pos: -95.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9172 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.5,30.5 - parent: 89 - - uid: 20707 + pos: -98.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9173 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,30.5 - parent: 89 - - uid: 20708 + pos: -99.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9174 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,30.5 - parent: 89 - - uid: 20709 + pos: -97.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9175 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,30.5 - parent: 89 - - uid: 20743 - components: - - type: Transform - pos: -131.5,-19.5 - parent: 89 - - uid: 20745 - components: - - type: Transform - pos: -132.5,-19.5 - parent: 89 - - uid: 20746 - components: - - type: Transform - pos: -133.5,-19.5 - parent: 89 - - uid: 20747 - components: - - type: Transform - pos: -126.5,-19.5 - parent: 89 - - uid: 20748 + pos: -96.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9176 components: - type: Transform - pos: -123.5,-19.5 - parent: 89 - - uid: 20749 + rot: 3.141592653589793 rad + pos: -95.5,28.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9177 components: - type: Transform - pos: -122.5,-19.5 - parent: 89 - - uid: 20750 + rot: -1.5707963267948966 rad + pos: -102.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9178 components: - type: Transform - pos: -134.5,-19.5 - parent: 89 - - uid: 20751 + rot: -1.5707963267948966 rad + pos: -101.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9179 components: - type: Transform - pos: -131.5,-29.5 - parent: 89 - - uid: 20752 + rot: -1.5707963267948966 rad + pos: -100.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 9180 components: - type: Transform - pos: -131.5,-24.5 - parent: 89 - - uid: 20753 + rot: 1.5707963267948966 rad + pos: -96.5,27.5 + parent: 2 + - uid: 9181 components: - type: Transform - pos: -132.5,-24.5 - parent: 89 - - uid: 20754 + rot: 1.5707963267948966 rad + pos: -97.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 25709 components: - type: Transform - pos: -133.5,-24.5 - parent: 89 - - uid: 20755 + pos: -18.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25710 components: - type: Transform - pos: -134.5,-24.5 - parent: 89 - - uid: 20756 + pos: -20.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25711 components: - type: Transform - pos: -135.5,-24.5 - parent: 89 - - uid: 20757 + pos: -20.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25712 components: - type: Transform - pos: -136.5,-24.5 - parent: 89 - - uid: 20759 + pos: -20.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25713 components: - type: Transform - pos: -125.5,-24.5 - parent: 89 - - uid: 20760 + pos: -18.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25714 components: - type: Transform - pos: -124.5,-24.5 - parent: 89 - - uid: 20761 + pos: -18.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25715 components: - type: Transform - pos: -123.5,-24.5 - parent: 89 - - uid: 20762 + pos: -18.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26843 + - uid: 25716 components: - type: Transform - pos: -122.5,-24.5 - parent: 89 - - uid: 20763 + pos: -20.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26844 + - uid: 25717 components: - type: Transform - pos: -121.5,-24.5 - parent: 89 - - uid: 20765 + pos: -23.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25718 components: - type: Transform - pos: -125.5,-29.5 - parent: 89 - - uid: 20766 + pos: -23.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25719 components: - type: Transform - pos: -124.5,-29.5 - parent: 89 - - uid: 20767 + pos: -23.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25720 components: - type: Transform - pos: -123.5,-29.5 - parent: 89 - - uid: 20768 + pos: -25.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25721 components: - type: Transform - pos: -122.5,-29.5 - parent: 89 - - uid: 20769 + pos: -25.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25722 components: - type: Transform - pos: -121.5,-29.5 - parent: 89 - - uid: 20770 + pos: -25.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25723 components: - type: Transform - pos: -120.5,-29.5 - parent: 89 - - uid: 20771 + pos: -25.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 + - uid: 25724 components: - type: Transform - pos: -132.5,-29.5 - parent: 89 - - uid: 20772 + pos: -23.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26845 + - uid: 25725 components: - type: Transform - pos: -133.5,-29.5 - parent: 89 - - uid: 20773 + pos: -5.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25726 components: - type: Transform - pos: -134.5,-29.5 - parent: 89 - - uid: 20774 + pos: -5.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25727 components: - type: Transform - pos: -135.5,-29.5 - parent: 89 - - uid: 20775 + pos: -5.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25728 components: - type: Transform - pos: -136.5,-29.5 - parent: 89 - - uid: 20776 + pos: -5.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26839 + - uid: 25729 components: - type: Transform - pos: -137.5,-29.5 - parent: 89 - - uid: 20880 + pos: -3.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25730 components: - type: Transform - pos: 10.5,-20.5 - parent: 89 - - uid: 20917 + pos: -3.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25731 components: - type: Transform - pos: 30.5,-16.5 - parent: 89 - - uid: 20927 + pos: -3.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25732 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,19.5 - parent: 89 - - uid: 20930 + pos: -3.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26841 + - uid: 25733 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,19.5 - parent: 89 - - uid: 20934 + pos: -0.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,19.5 - parent: 89 - - uid: 20935 + pos: -0.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,19.5 - parent: 89 - - uid: 21089 + pos: -0.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25736 components: - type: Transform - pos: 60.5,-7.5 - parent: 89 - - uid: 21100 + pos: -0.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26842 + - uid: 25737 components: - type: Transform - pos: 66.5,-0.5 - parent: 89 - - uid: 21147 + pos: 1.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 + - uid: 25738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 89 - - uid: 21148 + pos: 1.5,2.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 + - uid: 25739 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,20.5 - parent: 89 - - uid: 21575 + pos: 1.5,3.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 + - uid: 25740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,45.5 - parent: 89 - - uid: 21577 + pos: 1.5,4.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26840 +- proto: CowToolboxFilled + entities: + - uid: 9182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,45.5 - parent: 89 -- proto: Cautery + pos: 10.596526,-19.552021 + parent: 2 +- proto: CrateCoffin entities: - - uid: 17915 + - uid: 9183 components: - type: Transform - pos: -12.431932,21.596758 - parent: 89 - - uid: 20822 + pos: -50.5,-6.5 + parent: 2 + - uid: 9184 components: - type: Transform - pos: -1.7167411,15.760399 - parent: 89 -- proto: Chair + pos: -50.5,-7.5 + parent: 2 +- proto: CrateCommandSecure entities: - - uid: 129 + - uid: 24077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-17.5 - parent: 89 - - uid: 131 + pos: 2.5,4.5 + parent: 23919 + - 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: + - 24078 + - 24079 + - 24088 + - 24083 + - 24080 + - 24089 + - 24084 + - 24085 + - 24086 + - 24090 + - 24091 + - 24081 + - 24087 + - 24092 + - 24082 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 24093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-17.5 - parent: 89 - - uid: 206 + pos: 6.5,4.5 + parent: 23919 + - 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: + - 24094 + - 24095 + - 24096 + - 24097 + - 24098 + - 24099 + - 24100 + - 24101 + - 24102 + - 24103 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEmergencyRadiationKit + entities: + - uid: 9185 components: - type: Transform - pos: -6.5,-20.5 - parent: 89 - - uid: 207 + pos: -60.5,-13.5 + parent: 2 +- proto: CrateEmptySpawner + entities: + - uid: 9186 components: - type: Transform - pos: -5.5,-20.5 - parent: 89 - - uid: 208 + pos: 49.5,3.5 + parent: 2 +- proto: CrateEngineering + entities: + - uid: 9187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 89 - - uid: 209 + pos: -91.5,15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9217 + - 9216 + - 9215 + - 9214 + - 9213 + - 9212 + - 9211 + - 9210 + - 9209 + - 9208 + - 9207 + - 9206 + - 9205 + - 9204 + - 9203 + - 9202 + - 9201 + - 9200 + - 9199 + - 9198 + - 9197 + - 9196 + - 9195 + - 9194 + - 9193 + - 9192 + - 9191 + - 9190 + - 9189 + - 9188 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateEngineeringCableBulk + entities: + - uid: 9218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-22.5 - parent: 89 - - uid: 372 + pos: 10.5,-16.5 + parent: 2 +- proto: CrateEngineeringJetpack + entities: + - uid: 9219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,43.5 - parent: 89 - - uid: 2124 + pos: -60.5,-12.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateEngineeringParticleAccelerator + entities: + - uid: 9220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-21.5 - parent: 89 - - uid: 2558 + pos: -115.5,-8.5 + parent: 2 +- proto: CrateEngineeringSecure + entities: + - uid: 9221 components: - type: Transform - pos: -77.5,-23.5 - parent: 89 - - uid: 2559 + pos: -101.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,-25.5 - parent: 89 - - uid: 3120 + pos: -99.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9223 components: - type: Transform - pos: 47.5,-4.5 - parent: 89 - - uid: 3990 + pos: -100.5,-10.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9224 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateFreezer + entities: + - uid: 9225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 89 - - uid: 3993 + pos: -11.5,17.5 + parent: 2 +- proto: CrateFunInstrumentsVariety + entities: + - uid: 9226 components: - type: Transform - pos: -8.5,-7.5 - parent: 89 - - uid: 5846 + pos: -60.5,-11.5 + parent: 2 +- proto: CrateFunLizardPlushieBulk + entities: + - uid: 9227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-13.5 - parent: 89 - - uid: 6085 + pos: -61.5,-12.5 + parent: 2 +- proto: CrateFunParty + entities: + - uid: 9228 components: - type: Transform - pos: -66.5,1.5 - parent: 89 - - uid: 6086 + pos: -61.5,-11.5 + parent: 2 +- proto: CrateFunToyBox + entities: + - uid: 9229 components: - type: Transform - pos: -65.5,1.5 - parent: 89 - - uid: 6088 + pos: -59.5,-12.5 + parent: 2 +- proto: CrateGenericSteel + entities: + - uid: 9230 components: - type: Transform - pos: -63.5,1.5 - parent: 89 - - uid: 6090 + pos: 10.5,16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 3.3955739 + - 12.773826 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9233 + - 9231 + - 9232 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 25741 components: - type: Transform - pos: -62.5,1.5 - parent: 89 - - uid: 6091 + pos: -19.5,-1.5 + parent: 24450 + - uid: 25742 components: - type: Transform - pos: -60.5,1.5 - parent: 89 - - uid: 6092 + pos: -18.5,-1.5 + parent: 24450 + - uid: 25743 components: - type: Transform - pos: -59.5,1.5 - parent: 89 - - uid: 6887 + pos: -5.5,-1.5 + parent: 24450 + - uid: 25744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,8.5 - parent: 89 - - uid: 6889 + pos: -4.5,-1.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateHydroponicsTools + entities: + - uid: 9234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,8.5 - parent: 89 - - uid: 6962 + pos: -4.5,-9.5 + parent: 2 +- proto: CrateMedical + entities: + - uid: 591 components: - type: Transform - pos: -100.5,-1.5 - parent: 89 - - uid: 6963 + pos: 11.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 603 + - 596 + - 595 + - 605 + - 594 + - 600 + - 598 + - 604 + - 599 + - 597 + - 602 + - 593 + - 601 + - 592 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateMedicalScrubs + entities: + - uid: 9235 components: - type: Transform - pos: -101.5,-1.5 - parent: 89 - - uid: 6964 + pos: -9.5,19.5 + parent: 2 +- proto: CrateMedicalSupplies + entities: + - uid: 9236 components: - type: Transform - pos: -102.5,-1.5 - parent: 89 - - uid: 6965 + pos: 37.5,22.5 + parent: 2 +- proto: CrateMedicalSurgery + entities: + - uid: 9237 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-3.5 - parent: 89 - - uid: 6966 + pos: -22.5,-23.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14954 + moles: + - 3.2184362 + - 12.107451 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 9238 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-3.5 - parent: 89 - - uid: 6967 + pos: -12.5,17.5 + parent: 2 +- proto: CrateNPCHamlet + entities: + - uid: 9239 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-3.5 - parent: 89 - - uid: 6968 + pos: 57.5,2.5 + parent: 2 +- proto: CratePlastic + entities: + - uid: 23961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-3.5 - parent: 89 - - uid: 6969 + pos: 6.5,-1.5 + parent: 23919 + - 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: + - 23980 + - 23979 + - 23978 + - 23977 + - 23976 + - 23975 + - 23974 + - 23973 + - 23972 + - 23971 + - 23970 + - 23969 + - 23968 + - 23967 + - 23966 + - 23965 + - 23964 + - 23963 + - 23962 + - 23981 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CratePrivateSecure + entities: + - uid: 25745 components: - type: Transform - pos: -103.5,-1.5 - parent: 89 - - uid: 6996 + pos: -25.5,-9.5 + parent: 24450 + - 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: + - 25749 + - 25751 + - 25750 + - 25753 + - 25752 + - 25748 + - 25747 + - 25746 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrateSalvageEquipment + entities: + - uid: 9240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-2.5 - parent: 89 - - uid: 7106 + pos: -52.5,-11.5 + parent: 2 +- proto: CrateServiceBooks + entities: + - uid: 9241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,3.5 - parent: 89 - - uid: 7107 + pos: -61.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 3.3493855 + - 12.60007 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateServiceBureaucracy + entities: + - uid: 9242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,2.5 - parent: 89 - - uid: 9911 + pos: -59.5,-13.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14957 + moles: + - 3.3493855 + - 12.60007 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateServiceJanitorialSupplies + entities: + - uid: 25754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,45.5 - parent: 89 - - uid: 9912 + pos: -25.5,8.5 + parent: 24450 +- proto: CrateServiceReplacementLights + entities: + - uid: 9243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,41.5 - parent: 89 - - uid: 9926 + pos: -59.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrateTrashCartFilled + entities: + - uid: 9244 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,35.5 - parent: 89 - - uid: 9927 + pos: -4.5,39.5 + parent: 2 + - uid: 9245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,34.5 - parent: 89 - - uid: 9928 + pos: -89.5,4.5 + parent: 2 + - uid: 9246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,33.5 - parent: 89 - - uid: 9931 + pos: -71.5,-3.5 + parent: 2 + - uid: 9247 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,32.5 - parent: 89 - - uid: 9932 + pos: -100.5,25.5 + parent: 2 + - uid: 9248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,33.5 - parent: 89 - - uid: 9933 + pos: -100.5,27.5 + parent: 2 + - uid: 9249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,34.5 - parent: 89 - - uid: 9934 + pos: -33.5,7.5 + parent: 2 +- proto: CrateTrashCartJani + entities: + - uid: 9250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,35.5 - parent: 89 - - uid: 9935 + pos: -39.5,5.5 + parent: 2 + - uid: 9251 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,36.5 - parent: 89 - - uid: 9938 + pos: -41.5,5.5 + parent: 2 +- proto: CrateVendingMachineRestockMedicalFilled + entities: + - uid: 9252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,28.5 - parent: 89 - - uid: 9939 + pos: 37.5,23.5 + parent: 2 +- proto: CrateWeaponSecure + entities: + - uid: 1115 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,28.5 - parent: 89 - - uid: 9940 + pos: 44.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1116 + - 1122 + - 1117 + - 1118 + - 1125 + - 1126 + - 1123 + - 1119 + - 1120 + - 1127 + - 1121 + - 1124 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,28.5 - parent: 89 - - uid: 9941 + pos: 43.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1196 + - 1195 + - 1193 + - 1191 + - 1194 + - 1192 + - 1190 + - 1184 + - 1189 + - 1186 + - 1187 + - 1185 + - 1188 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,28.5 - parent: 89 - - uid: 9962 + pos: 40.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9255 + - 9254 + - 9256 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 27297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,41.5 - parent: 89 - - uid: 9963 + pos: 5.5,-13.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27313 + - 27303 + - 27299 + - 27302 + - 27308 + - 27312 + - 27307 + - 27301 + - 27311 + - 27300 + - 27306 + - 27298 + - 27305 + - 27304 + - 27310 + - 27309 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: CrayonBox + entities: + - uid: 9257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,42.5 - parent: 89 - - uid: 9964 + pos: -35.41706,-9.445221 + parent: 2 + - uid: 9258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,43.5 - parent: 89 - - uid: 9965 + pos: 29.442505,31.825993 + parent: 2 +- proto: Crematorium + entities: + - uid: 9259 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,44.5 - parent: 89 - - uid: 9966 + pos: -52.5,-6.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: CrewMonitoringServer + entities: + - uid: 9260 components: - type: Transform - pos: -62.5,45.5 - parent: 89 - - uid: 9967 + pos: 55.5,6.5 + parent: 2 + - type: SingletonDeviceNetServer + active: False + available: False +- proto: Crowbar + entities: + - uid: 9261 components: - type: Transform - pos: -61.5,45.5 - parent: 89 - - uid: 9968 + rot: -1.5707963267948966 rad + pos: 43.74615,-4.234105 + parent: 2 +- proto: CrowbarRed + entities: + - uid: 9262 components: - type: Transform - pos: -60.5,45.5 - parent: 89 - - uid: 10269 + pos: -12.082157,-30.87991 + parent: 2 + - uid: 9263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,7.5 - parent: 89 - - uid: 10300 + pos: -100.53644,24.543425 + parent: 2 + - uid: 9264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,8.5 - parent: 89 - - uid: 10848 + pos: -2.604181,-41.401688 + parent: 2 + - uid: 24535 components: - type: Transform - pos: -63.5,5.5 - parent: 89 - - uid: 10998 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,12.5 - parent: 89 - - uid: 10999 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: CryogenicSleepUnit + entities: + - uid: 9265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,13.5 - parent: 89 - - uid: 11018 + pos: -22.5,18.5 + parent: 2 + - uid: 9266 components: - type: Transform - pos: -62.5,5.5 - parent: 89 - - uid: 11021 + pos: -22.5,17.5 + parent: 2 + - uid: 27589 components: - type: Transform - pos: -69.5,5.5 - parent: 89 - - uid: 11022 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 27260 + - uid: 27590 components: - type: Transform - pos: -68.5,5.5 - parent: 89 - - uid: 14630 + rot: -1.5707963267948966 rad + pos: 6.5,-4.5 + parent: 27260 + - uid: 27591 components: - type: Transform - pos: -98.5,18.5 - parent: 89 - - uid: 14631 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 27260 + - uid: 27592 components: - type: Transform - pos: -97.5,18.5 - parent: 89 - - uid: 14670 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 27260 + - uid: 27593 components: - type: Transform rot: 3.141592653589793 rad - pos: -122.5,21.5 - parent: 89 - - uid: 14671 + pos: 4.5,-6.5 + parent: 27260 + - uid: 27594 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,21.5 - parent: 89 - - uid: 14833 + pos: -5.5,-6.5 + parent: 27260 +- proto: CryogenicSleepUnitSpawner + entities: + - uid: 9267 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,21.5 - parent: 89 - - uid: 14868 + rot: 3.141592653589793 rad + pos: -27.5,18.5 + parent: 2 + - uid: 9268 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,21.5 - parent: 89 - - uid: 15452 + rot: 3.141592653589793 rad + pos: -27.5,17.5 + parent: 2 +- proto: CryogenicSleepUnitSpawnerLateJoin + entities: + - uid: 9269 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,7.5 - parent: 89 - - uid: 15464 + pos: -25.5,18.5 + parent: 2 + - uid: 9270 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,7.5 - parent: 89 - - uid: 15486 + pos: -24.5,18.5 + parent: 2 + - uid: 9271 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,9.5 - parent: 89 - - uid: 15509 + rot: 3.141592653589793 rad + pos: -24.5,17.5 + parent: 2 + - uid: 9272 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,7.5 - parent: 89 - - uid: 15510 + pos: -25.5,17.5 + parent: 2 +- proto: CryoPod + entities: + - uid: 9273 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,7.5 - parent: 89 - - uid: 15745 + pos: 10.5,23.5 + parent: 2 + - uid: 9274 components: - type: Transform - pos: -112.5,-13.5 - parent: 89 - - uid: 16557 + pos: 7.5,23.5 + parent: 2 +- proto: CryoxadoneBeakerSmall + entities: + - uid: 9275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,34.5 - parent: 89 - - uid: 16558 + pos: 8.4537525,20.799503 + parent: 2 + - uid: 9276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,33.5 - parent: 89 - - uid: 16949 + pos: 8.6412525,20.643253 + parent: 2 +- proto: CrystalSpawner + entities: + - uid: 9277 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-25.5 - parent: 89 - - uid: 16950 + pos: -80.5,-8.5 + parent: 2 + - uid: 9278 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 89 - - uid: 16952 + pos: -81.5,0.5 + parent: 2 + - uid: 9279 components: - type: Transform - pos: -2.5,-27.5 - parent: 89 - - uid: 16953 + pos: -99.5,12.5 + parent: 2 + - uid: 9280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-29.5 - parent: 89 - - uid: 16954 + pos: -112.5,18.5 + parent: 2 + - uid: 9281 components: - type: Transform - pos: -0.5,-27.5 - parent: 89 - - uid: 16955 + pos: -132.5,23.5 + parent: 2 + - uid: 9282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-29.5 - parent: 89 - - uid: 16963 + pos: -95.5,25.5 + parent: 2 + - uid: 9283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 89 - - uid: 16964 + pos: -93.5,23.5 + parent: 2 + - uid: 9284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-21.5 - parent: 89 - - uid: 16984 + pos: -74.5,21.5 + parent: 2 + - uid: 9285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 89 - - uid: 16992 + pos: -52.5,22.5 + parent: 2 + - uid: 9286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-13.5 - parent: 89 - - uid: 16993 + pos: -39.5,21.5 + parent: 2 + - uid: 9287 components: - type: Transform - pos: 4.5,-10.5 - parent: 89 - - uid: 17267 + pos: -24.5,21.5 + parent: 2 + - uid: 9288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,41.5 - parent: 89 - - uid: 17268 + pos: -2.5,33.5 + parent: 2 + - uid: 9289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,42.5 - parent: 89 - - uid: 17277 + pos: -15.5,24.5 + parent: 2 + - uid: 9290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,43.5 - parent: 89 - - uid: 17283 + pos: 1.5,34.5 + parent: 2 +- proto: CultAltarSpawner + entities: + - uid: 9291 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,43.5 - parent: 89 - - uid: 17309 + pos: -19.5,17.5 + parent: 2 +- proto: CyberPen + entities: + - uid: 9292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-14.5 - parent: 89 - - uid: 17310 + pos: 58.200428,-33.22432 + parent: 2 +- proto: d6Dice + entities: + - uid: 9293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-14.5 - parent: 89 - - uid: 17330 + pos: -7.3807964,41.28582 + parent: 2 + - uid: 9294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 89 - - uid: 17331 + pos: -6.9901714,40.75457 + parent: 2 + - uid: 9295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 89 - - uid: 19843 + pos: -98.24687,17.61973 + parent: 2 + - uid: 9296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,24.5 - parent: 89 - - uid: 19886 + pos: -97.62187,17.55723 + parent: 2 + - uid: 9297 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,24.5 - parent: 89 - - uid: 21620 + pos: -4.4802694,40.231525 + parent: 2 +- proto: DefaultStationBeaconAICore + entities: + - uid: 9298 components: - type: Transform - pos: 13.5,3.5 - parent: 89 - - uid: 21622 + pos: 55.5,4.5 + parent: 2 + - type: WarpPoint + location: Ядро ИИ +- proto: DefaultStationBeaconAME + entities: + - uid: 9299 components: - type: Transform - pos: 12.5,3.5 - parent: 89 - - uid: 21624 + pos: -130.5,14.5 + parent: 2 + - type: WarpPoint + location: ДАМ +- proto: DefaultStationBeaconAnomalyGenerator + entities: + - uid: 9300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 89 - - uid: 21625 + pos: -7.5,-30.5 + parent: 2 + - type: WarpPoint + location: Генератор Аномалий +- proto: DefaultStationBeaconArrivals + entities: + - uid: 9301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 89 - - uid: 21807 + pos: -65.5,34.5 + parent: 2 + - type: WarpPoint + location: Прибытие 2 + - uid: 9302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-30.5 - parent: 89 - - uid: 21830 + pos: -84.5,34.5 + parent: 2 + - type: WarpPoint + location: Прибытие 1 +- proto: DefaultStationBeaconArtifactLab + entities: + - uid: 9303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-30.5 - parent: 89 - - uid: 23717 + pos: -2.5,-40.5 + parent: 2 + - type: WarpPoint + location: Ксеноархеология +- proto: DefaultStationBeaconAtmospherics + entities: + - uid: 9304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 22565 - - uid: 23718 + pos: -92.5,-14.5 + parent: 2 + - type: WarpPoint + location: Атмос +- proto: DefaultStationBeaconBar + entities: + - uid: 9305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 22565 - - uid: 23719 + pos: -19.5,-3.5 + parent: 2 + - type: WarpPoint + location: Бар +- proto: DefaultStationBeaconBotany + entities: + - uid: 9306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-24.5 - parent: 22565 - - uid: 23720 + pos: -5.5,-6.5 + parent: 2 + - type: WarpPoint + location: Гидропоника +- proto: DefaultStationBeaconBridge + entities: + - uid: 9307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-23.5 - parent: 22565 - - uid: 23721 + pos: 38.5,4.5 + parent: 2 + - type: NavMapBeacon + text: Мостик - правительственный сектор + - type: WarpPoint + location: Мостик - Вход + - uid: 9308 components: - type: Transform - pos: -30.5,12.5 - parent: 22565 - - uid: 23722 + pos: 28.5,6.5 + parent: 2 + - type: WarpPoint + location: ЕВА + - uid: 9309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,10.5 - parent: 22565 - - uid: 23723 + pos: 34.5,14.5 + parent: 2 + - type: WarpPoint + location: Мостик - конференц зал + - uid: 9310 components: - type: Transform - pos: 6.5,12.5 - parent: 22565 - - uid: 23724 + pos: 57.5,3.5 + parent: 2 + - type: WarpPoint + location: Мостик +- proto: DefaultStationBeaconBrig + entities: + - uid: 9311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 22565 - - uid: 23725 + pos: 5.5,-6.5 + parent: 2 + - type: WarpPoint + location: Бриг 1 + - uid: 9312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,9.5 - parent: 22565 - - uid: 23726 + pos: 5.5,-1.5 + parent: 2 + - type: WarpPoint + location: Бриг - Допросная + - uid: 9313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,11.5 - parent: 22565 - - uid: 23727 + pos: 35.5,-10.5 + parent: 2 + - type: WarpPoint + location: Бриг 2 +- proto: DefaultStationBeaconCaptainsQuarters + entities: + - uid: 9314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,9.5 - parent: 22565 - - uid: 23728 + pos: 48.5,13.5 + parent: 2 + - type: WarpPoint + location: Каюта Капитана +- proto: DefaultStationBeaconCargoBay + entities: + - uid: 9315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 22565 - - uid: 23729 + pos: -61.5,-17.5 + parent: 2 + - type: WarpPoint + location: Снабжение Док +- proto: DefaultStationBeaconCargoReception + entities: + - uid: 9316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,5.5 - parent: 22565 - - uid: 23730 + pos: -62.5,-4.5 + parent: 2 + - type: WarpPoint + location: Снабжение Приемная +- proto: DefaultStationBeaconCERoom + entities: + - uid: 9317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,11.5 - parent: 22565 - - uid: 23731 + pos: -103.5,9.5 + parent: 2 + - type: WarpPoint + location: Офис СИ +- proto: DefaultStationBeaconChapel + entities: + - uid: 9318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 22565 - - uid: 23732 + pos: -50.5,-2.5 + parent: 2 + - type: WarpPoint + location: Церковь +- proto: DefaultStationBeaconCMORoom + entities: + - uid: 9319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,6.5 - parent: 22565 - - uid: 23733 + pos: 24.5,36.5 + parent: 2 + - type: WarpPoint + location: Офис ГВ +- proto: DefaultStationBeaconCourtroom + entities: + - uid: 9320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 22565 - - uid: 23734 + pos: -76.5,-2.5 + parent: 2 + - type: WarpPoint + location: Зал Суда +- proto: DefaultStationBeaconCryonics + entities: + - uid: 9321 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,6.5 - parent: 22565 - - uid: 23735 + pos: 9.5,23.5 + parent: 2 + - type: WarpPoint + location: Крионика +- proto: DefaultStationBeaconCryosleep + entities: + - uid: 9322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,6.5 - parent: 22565 - - uid: 23736 + pos: -25.5,16.5 + parent: 2 + - type: WarpPoint + location: Капсулы Криосна +- proto: DefaultStationBeaconDetectiveRoom + entities: + - uid: 9323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,6.5 - parent: 22565 - - uid: 23737 + pos: 18.5,7.5 + parent: 2 + - type: WarpPoint + location: Офис Детектива +- proto: DefaultStationBeaconDisposals + entities: + - uid: 9324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,6.5 - parent: 22565 - - uid: 23738 + pos: -97.5,26.5 + parent: 2 + - type: WarpPoint + location: Мусоросброс +- proto: DefaultStationBeaconDorms + entities: + - uid: 9325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,6.5 - parent: 22565 - - uid: 23739 + pos: -29.5,28.5 + parent: 2 + - type: WarpPoint + location: Жилые Помещения +- proto: DefaultStationBeaconEngineering + entities: + - uid: 9326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,6.5 - parent: 22565 - - uid: 23740 + pos: -108.5,4.5 + parent: 2 + - type: WarpPoint + location: Инженерный отдел + - uid: 9327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,6.5 - parent: 22565 - - uid: 23741 + pos: -125.5,3.5 + parent: 2 + - type: WarpPoint + location: РИТЭГИ +- proto: DefaultStationBeaconEscapePod + entities: + - uid: 9328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,6.5 - parent: 22565 - - uid: 25386 + pos: -87.5,39.5 + parent: 2 + - type: WarpPoint + location: Спасательные капсулы +- proto: DefaultStationBeaconEvac + entities: + - uid: 9329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-27.5 - parent: 89 - - uid: 25388 + pos: -61.5,44.5 + parent: 2 + - type: WarpPoint + location: Эвак +- proto: DefaultStationBeaconGravGen + entities: + - uid: 9330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-26.5 - parent: 89 - - uid: 25389 + pos: -115.5,23.5 + parent: 2 + - type: WarpPoint + location: Генератор гравитации +- proto: DefaultStationBeaconHOPOffice + entities: + - uid: 9331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 89 - - uid: 25390 + pos: 43.5,7.5 + parent: 2 + - type: WarpPoint + location: Офис ГП +- proto: DefaultStationBeaconHOSRoom + entities: + - uid: 9332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-24.5 - parent: 89 - - uid: 25391 + pos: 32.5,-2.5 + parent: 2 + - type: WarpPoint + location: Офис ГСБ +- proto: DefaultStationBeaconJanitorsCloset + entities: + - uid: 9333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 89 -- proto: ChairCarp + pos: -37.5,7.5 + parent: 2 + - type: WarpPoint + location: Комната Уборщика +- proto: DefaultStationBeaconKitchen entities: - - uid: 10167 + - uid: 9334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-3.5 - parent: 89 - - uid: 21116 + pos: -13.5,-4.5 + parent: 2 + - type: WarpPoint + location: Кухня +- proto: DefaultStationBeaconLawOffice + entities: + - uid: 9335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,37.5 - parent: 89 -- proto: ChairFolding + pos: -75.5,-5.5 + parent: 2 + - type: WarpPoint + location: Офис АВД +- proto: DefaultStationBeaconLibrary entities: - - uid: 2928 + - uid: 9336 components: - type: Transform - pos: 33.5,-10.5 - parent: 89 - - uid: 4443 + pos: -49.5,9.5 + parent: 2 + - type: WarpPoint + location: Библиотека +- proto: DefaultStationBeaconMedbay + entities: + - uid: 9337 components: - type: Transform - pos: 31.5,-9.5 - parent: 89 - - uid: 6226 + pos: -5.5,13.5 + parent: 2 + - type: WarpPoint + location: Медбэй +- proto: DefaultStationBeaconMedical + entities: + - uid: 9338 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 89 - - uid: 6976 + pos: 26.5,17.5 + parent: 2 + - type: WarpPoint + location: Медецинский отдел +- proto: DefaultStationBeaconMorgue + entities: + - uid: 9339 components: - type: Transform - pos: 31.5,-10.5 - parent: 89 - - uid: 6977 + pos: 9.5,8.5 + parent: 2 + - type: WarpPoint + location: Морг +- proto: DefaultStationBeaconPowerBank + entities: + - uid: 9340 components: - type: Transform - pos: 30.5,-10.5 - parent: 89 - - uid: 7923 + pos: -122.5,16.5 + parent: 2 + - type: WarpPoint + location: Энергетический Резерв СМЭС +- proto: DefaultStationBeaconQMRoom + entities: + - uid: 9341 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,41.5 - parent: 89 - - uid: 7927 + pos: -70.5,-16.5 + parent: 2 + - type: WarpPoint + location: Офис КМ +- proto: DefaultStationBeaconRDRoom + entities: + - uid: 9342 components: - type: Transform - pos: -7.5,42.5 - parent: 89 - - uid: 7928 + pos: 2.5,-30.5 + parent: 2 + - type: WarpPoint + location: Офис НР +- proto: DefaultStationBeaconRND + entities: + - uid: 9343 components: - type: Transform - pos: -6.5,42.5 - parent: 89 - - uid: 8009 + pos: -11.5,-17.5 + parent: 2 + - type: WarpPoint + location: НИО +- proto: DefaultStationBeaconRobotics + entities: + - uid: 9344 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,41.5 - parent: 89 - - uid: 10825 + pos: -20.5,-19.5 + parent: 2 + - type: WarpPoint + location: Робототехника +- proto: DefaultStationBeaconSalvage + entities: + - uid: 9345 components: - type: Transform - pos: -13.5,9.5 - parent: 89 - - uid: 10964 + pos: -50.5,-12.5 + parent: 2 + - type: WarpPoint + location: Утилизаторы +- proto: DefaultStationBeaconScience + entities: + - uid: 9346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,6.5 - parent: 89 - - uid: 11066 + pos: -5.5,-22.5 + parent: 2 + - type: WarpPoint + location: Холл НИО +- proto: DefaultStationBeaconSecurityCheckpoint + entities: + - uid: 9347 components: - type: Transform - pos: -12.5,9.5 - parent: 89 - - uid: 11068 + pos: -85.5,13.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Инженерный + - uid: 9348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 89 - - uid: 11086 + pos: -59.5,8.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Снабжение + - uid: 9349 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,6.5 - parent: 89 - - uid: 11140 + pos: -61.5,21.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Прибытие 2 + - uid: 9350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,9.5 - parent: 89 - - uid: 11361 + pos: -44.5,0.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Сервис + - uid: 9351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,9.5 - parent: 89 - - uid: 11919 + pos: -16.5,8.5 + parent: 2 + - type: WarpPoint + location: КПП СБ - Медбэй +- proto: DefaultStationBeaconServerRoom + entities: + - uid: 9352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,6.5 - parent: 89 - - uid: 12006 + pos: -7.5,-35.5 + parent: 2 + - type: WarpPoint + location: Сервер НИО +- proto: DefaultStationBeaconSingularity + entities: + - uid: 9353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,11.5 - parent: 89 - - uid: 12676 + pos: -131.5,-8.5 + parent: 2 + - type: WarpPoint + location: Ускоритель частиц +- proto: DefaultStationBeaconSurgery + entities: + - uid: 9354 components: - type: Transform - pos: 6.5,14.5 - parent: 89 - - uid: 12677 + pos: -11.5,19.5 + parent: 2 + - type: WarpPoint + location: Медецинский отдел - операционная +- proto: DefaultStationBeaconTechVault + entities: + - uid: 9355 components: - type: Transform - pos: 10.5,14.5 - parent: 89 - - uid: 12679 + pos: -102.5,-9.5 + parent: 2 + - type: WarpPoint + location: Техническое Хранилище +- proto: DefaultStationBeaconToolRoom + entities: + - uid: 9356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 89 - - uid: 12680 + pos: -92.5,15.5 + parent: 2 + - type: WarpPoint + location: Мастерская +- proto: DefaultStationBeaconWardensOffice + entities: + - uid: 9357 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,11.5 - parent: 89 - - uid: 14808 + pos: 8.5,-10.5 + parent: 2 + - type: WarpPoint + location: Офис Смотрителя +- proto: DefibrillatorCabinetFilled + entities: + - uid: 9358 components: - type: Transform - pos: -0.5,13.5 - parent: 89 - - uid: 14865 + rot: 1.5707963267948966 rad + pos: 22.5,39.5 + parent: 2 + - uid: 9359 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,25.5 - parent: 89 - - uid: 14866 + pos: 1.5,18.5 + parent: 2 + - uid: 9360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,24.5 - parent: 89 - - uid: 14867 + rot: 3.141592653589793 rad + pos: 18.5,20.5 + parent: 2 + - uid: 9361 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,23.5 - parent: 89 - - uid: 16269 + pos: 16.5,-1.5 + parent: 2 + - uid: 9362 components: - type: Transform - pos: 34.5,-9.5 - parent: 89 - - uid: 16621 + rot: -1.5707963267948966 rad + pos: -46.5,-13.5 + parent: 2 + - uid: 24104 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,20.5 - parent: 89 - - uid: 17127 + pos: 3.5,-3.5 + parent: 23919 +- proto: DeployableBarrier + entities: + - uid: 9363 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.52398,-2.1615353 - parent: 89 - - uid: 17919 + pos: 44.5,-2.5 + parent: 2 + - uid: 9364 components: - type: Transform - pos: 44.5,-37.5 - parent: 89 - - uid: 18828 + pos: 45.5,-2.5 + parent: 2 + - uid: 9365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,17.5 - parent: 89 - - uid: 19222 + pos: 45.5,-3.5 + parent: 2 + - uid: 9366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,16.5 - parent: 89 - - uid: 19234 + pos: 44.5,-3.5 + parent: 2 + - uid: 9367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 89 - - uid: 19892 + pos: -52.5,37.5 + parent: 2 + - uid: 9368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,35.5 - parent: 89 - - uid: 21149 + pos: -51.5,37.5 + parent: 2 + - uid: 9369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,22.5 - parent: 89 - - uid: 21157 + pos: -51.5,34.5 + parent: 2 + - uid: 9370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,22.5 - parent: 89 - - uid: 21569 + pos: -51.5,35.5 + parent: 2 + - uid: 9371 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,19.5 - parent: 89 - - uid: 21570 + pos: -51.5,36.5 + parent: 2 + - uid: 9372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,16.5 - parent: 89 - - uid: 21764 + pos: 46.5,-3.5 + parent: 2 + - uid: 9373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 - parent: 89 - - uid: 21808 + pos: 46.5,-2.5 + parent: 2 +- proto: DeskBell + entities: + - uid: 9374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-30.5 - parent: 89 - - uid: 22128 + pos: 2.737472,15.790997 + parent: 2 + - uid: 9375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-13.5 - parent: 89 - - uid: 22312 + pos: 2.706222,21.509747 + parent: 2 + - uid: 9376 components: - type: Transform - pos: 46.5,-37.5 - parent: 89 - - uid: 23742 + rot: 3.141592653589793 rad + pos: -8.533264,-15.511856 + parent: 2 + - uid: 9377 components: - type: Transform - pos: 1.5,10.5 - parent: 22565 - - uid: 23743 + pos: 6.4949274,-11.439506 + parent: 2 + - uid: 9378 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,10.5 - parent: 22565 -- proto: ChairFoldingSpawnFolded - entities: - - uid: 4329 + pos: -10.467365,-2.4647331 + parent: 2 + - uid: 9379 components: - type: Transform - pos: 30.66906,-9.412315 - parent: 89 - - uid: 4342 + pos: -16.520947,-3.4491081 + parent: 2 + - uid: 9380 components: - type: Transform - pos: 33.51281,-9.33419 - parent: 89 - - uid: 6547 + pos: -4.561835,7.6157904 + parent: 2 + - uid: 9381 components: - type: Transform - pos: -95.61365,13.948328 - parent: 89 - - uid: 6555 + pos: 41.432976,9.61126 + parent: 2 + - uid: 9382 components: - type: Transform - pos: -95.22208,13.431689 - parent: 89 - - uid: 7929 + pos: -22.443995,-1.5451901 + parent: 2 + - uid: 9383 components: - type: Transform - pos: -5.5526714,40.87957 - parent: 89 - - uid: 15077 + pos: 2.721847,17.509747 + parent: 2 + - uid: 9384 components: - type: Transform - pos: 34.465935,-10.27169 - parent: 89 -- proto: ChairOfficeDark + pos: 2.706222,19.790997 + parent: 2 +- proto: DiseaseDiagnoser entities: - - uid: 32 + - uid: 9385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-11.5 - parent: 89 - - uid: 46 + pos: 8.5,29.5 + parent: 2 +- proto: DisposalBend + entities: + - uid: 9386 components: - type: Transform - pos: -15.5,-19.5 - parent: 89 - - uid: 494 + rot: -1.5707963267948966 rad + pos: 52.5,11.5 + parent: 2 + - uid: 9387 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,5.5 - parent: 89 - - uid: 929 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 2 + - uid: 9388 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,20.5 - parent: 89 - - uid: 1931 + rot: 3.141592653589793 rad + pos: 45.5,7.5 + parent: 2 + - uid: 9389 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,9.5 - parent: 89 - - uid: 2926 + pos: -97.5,25.5 + parent: 2 + - uid: 9390 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-13.5 - parent: 89 - - uid: 3412 + pos: -5.5,15.5 + parent: 2 + - uid: 9391 components: - type: Transform - pos: 25.5,-4.5 - parent: 89 - - uid: 3540 + rot: 3.141592653589793 rad + pos: 14.5,7.5 + parent: 2 + - uid: 9392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-1.5 - parent: 89 - - uid: 3541 + rot: 1.5707963267948966 rad + pos: 24.5,27.5 + parent: 2 + - uid: 9393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-0.5 - parent: 89 - - uid: 3600 + rot: 1.5707963267948966 rad + pos: 9.5,-9.5 + parent: 2 + - uid: 9394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-3.5 - parent: 89 - - uid: 3601 + pos: 14.5,32.5 + parent: 2 + - uid: 9395 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,-2.5 - parent: 89 - - uid: 3821 + pos: -19.5,8.5 + parent: 2 + - uid: 9396 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 9397 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -5.5,17.5 + parent: 2 + - uid: 9398 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,-1.5 - parent: 89 - - uid: 5218 + pos: -6.5,7.5 + parent: 2 + - uid: 9399 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,-4.5 - parent: 89 - - uid: 5244 + rot: 1.5707963267948966 rad + pos: 51.5,11.5 + parent: 2 + - uid: 9400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,-5.5 - parent: 89 - - uid: 6093 + pos: -8.5,-20.5 + parent: 2 + - uid: 9401 components: - type: Transform - pos: -44.5,9.5 - parent: 89 - - uid: 6094 + rot: 1.5707963267948966 rad + pos: -102.5,7.5 + parent: 2 + - uid: 9402 + components: + - type: Transform + pos: -78.5,9.5 + parent: 2 + - uid: 9403 + components: + - type: Transform + pos: -88.5,10.5 + parent: 2 + - uid: 9404 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,7.5 - parent: 89 - - uid: 6095 + pos: -78.5,8.5 + parent: 2 + - uid: 9405 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,8.5 - parent: 89 - - uid: 6170 + pos: -85.5,12.5 + parent: 2 + - uid: 9406 components: - type: Transform - pos: -19.5,6.5 - parent: 89 - - uid: 6171 + rot: 3.141592653589793 rad + pos: -125.5,9.5 + parent: 2 + - uid: 9407 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,7.5 - parent: 89 - - uid: 6800 + pos: -121.5,9.5 + parent: 2 + - uid: 9408 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,1.5 - parent: 89 - - uid: 6888 + pos: -51.5,-17.5 + parent: 2 + - uid: 9409 components: - type: Transform - pos: -104.5,10.5 - parent: 89 - - uid: 6970 + pos: -91.5,13.5 + parent: 2 + - uid: 9410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-2.5 - parent: 89 - - uid: 8113 + pos: -71.5,8.5 + parent: 2 + - uid: 9411 components: - type: Transform - pos: -85.5,12.5 - parent: 89 - - uid: 8114 + rot: 1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 + - uid: 9412 + components: + - type: Transform + pos: 40.5,2.5 + parent: 2 + - uid: 9413 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,13.5 - parent: 89 - - uid: 8164 + pos: 40.5,0.5 + parent: 2 + - uid: 9414 components: - type: Transform - pos: -60.5,8.5 - parent: 89 - - uid: 8179 + rot: -1.5707963267948966 rad + pos: -70.5,-15.5 + parent: 2 + - uid: 9415 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,8.5 - parent: 89 - - uid: 8292 + pos: 35.5,16.5 + parent: 2 + - uid: 9416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -59.5,21.5 - parent: 89 - - uid: 8295 + pos: -70.5,-10.5 + parent: 2 + - uid: 9417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,21.5 - parent: 89 - - uid: 8460 + rot: 1.5707963267948966 rad + pos: -125.5,-3.5 + parent: 2 + - uid: 9418 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,5.5 - parent: 89 - - uid: 9028 + pos: -51.5,-10.5 + parent: 2 + - uid: 9419 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,20.5 - parent: 89 - - uid: 10249 - components: - - type: Transform - pos: -79.5,-0.5 - parent: 89 - - uid: 10251 + pos: -125.5,-10.5 + parent: 2 + - uid: 9420 components: - type: Transform - pos: -78.5,-0.5 - parent: 89 - - uid: 10254 + rot: 3.141592653589793 rad + pos: -56.5,-10.5 + parent: 2 + - uid: 9421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-6.5 - parent: 89 - - uid: 10373 + pos: -56.5,-6.5 + parent: 2 + - uid: 9422 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,28.5 - parent: 89 - - uid: 10461 + pos: -6.5,12.5 + parent: 2 + - uid: 9423 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,6.5 - parent: 89 - - uid: 10462 + pos: -98.5,4.5 + parent: 2 + - uid: 9424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,6.5 - parent: 89 - - uid: 10463 + pos: -98.5,7.5 + parent: 2 + - uid: 9425 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.5,7.5 - parent: 89 - - uid: 10561 + pos: -64.5,-0.5 + parent: 2 + - uid: 9426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,16.5 - parent: 89 - - uid: 10675 + rot: -1.5707963267948966 rad + pos: -56.5,-0.5 + parent: 2 + - uid: 9427 components: - type: Transform - pos: 13.5,6.5 - parent: 89 - - uid: 12194 + rot: 3.141592653589793 rad + pos: -33.5,-8.5 + parent: 2 + - uid: 9428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-28.5 - parent: 89 - - uid: 12842 + pos: 12.5,-5.5 + parent: 2 + - uid: 9429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,10.5 - parent: 89 - - uid: 12843 + rot: 1.5707963267948966 rad + pos: 27.5,-2.5 + parent: 2 + - uid: 9430 components: - type: Transform - pos: 18.5,12.5 - parent: 89 - - uid: 14537 + pos: 28.5,-2.5 + parent: 2 + - uid: 9431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -75.5,-6.5 - parent: 89 - - uid: 14987 + rot: -1.5707963267948966 rad + pos: -104.5,14.5 + parent: 2 + - uid: 9432 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,22.5 - parent: 89 - - uid: 14988 + pos: -108.5,14.5 + parent: 2 + - uid: 9433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,23.5 - parent: 89 - - uid: 14989 + rot: 3.141592653589793 rad + pos: -65.5,4.5 + parent: 2 + - uid: 9434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,24.5 - parent: 89 - - uid: 14990 + pos: -65.5,9.5 + parent: 2 + - uid: 9435 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 89 - - uid: 15284 + pos: -19.5,9.5 + parent: 2 + - uid: 9436 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,28.5 - parent: 89 - - uid: 15382 + rot: 1.5707963267948966 rad + pos: -68.5,13.5 + parent: 2 + - uid: 9437 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,8.5 - parent: 89 - - uid: 16441 + pos: 21.5,9.5 + parent: 2 + - uid: 9438 components: - type: Transform rot: -1.5707963267948966 rad - pos: -112.5,-6.5 - parent: 89 - - uid: 17034 + pos: 21.5,8.5 + parent: 2 + - uid: 9439 components: - type: Transform - pos: -118.5,2.5 - parent: 89 - - uid: 19430 + rot: 1.5707963267948966 rad + pos: 19.5,8.5 + parent: 2 + - uid: 9440 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,8.5 - parent: 89 - - uid: 20216 + rot: 1.5707963267948966 rad + pos: -73.5,17.5 + parent: 2 + - uid: 9441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,25.5 - parent: 89 - - uid: 23744 + pos: -65.5,24.5 + parent: 2 + - uid: 9442 components: - type: Transform - pos: -13.5,-26.5 - parent: 22565 - - uid: 23745 + pos: -57.5,24.5 + parent: 2 + - uid: 9443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,5.5 - parent: 22565 - - uid: 23746 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,6.5 - parent: 22565 - - uid: 25394 + pos: -105.5,-3.5 + parent: 2 + - uid: 9444 components: - type: Transform - pos: 34.5,-26.5 - parent: 89 - - uid: 25700 + rot: 3.141592653589793 rad + pos: -93.5,-1.5 + parent: 2 + - uid: 9445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 89 - - uid: 25701 + pos: -88.5,-1.5 + parent: 2 + - uid: 9446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-1.5 - parent: 89 -- proto: ChairOfficeLight - entities: - - uid: 1207 + rot: 3.141592653589793 rad + pos: -48.5,14.5 + parent: 2 + - uid: 9447 components: - type: Transform - pos: -11.5,11.5 - parent: 89 - - uid: 6084 + pos: -41.5,-0.5 + parent: 2 + - uid: 9448 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,8.5 - parent: 89 - - uid: 6087 - components: - - type: Transform - pos: -45.5,9.5 - parent: 89 - - uid: 6089 + pos: 3.5,-10.5 + parent: 2 + - uid: 9449 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,7.5 - parent: 89 - - uid: 10250 + pos: -48.5,1.5 + parent: 2 + - uid: 9450 components: - type: Transform - pos: -74.5,-0.5 - parent: 89 - - uid: 10252 + rot: 1.5707963267948966 rad + pos: -93.5,16.5 + parent: 2 + - uid: 9451 components: - type: Transform - pos: -73.5,-0.5 - parent: 89 - - uid: 10798 + rot: -1.5707963267948966 rad + pos: -87.5,16.5 + parent: 2 + - uid: 9452 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,13.5 - parent: 89 - - uid: 11909 + pos: -87.5,22.5 + parent: 2 + - uid: 9453 components: - type: Transform - pos: -1.5,20.5 - parent: 89 - - uid: 12863 + rot: 3.141592653589793 rad + pos: -99.5,22.5 + parent: 2 + - uid: 9454 components: - type: Transform - pos: 15.5,12.5 - parent: 89 - - uid: 15060 + rot: -1.5707963267948966 rad + pos: -32.5,14.5 + parent: 2 + - uid: 9455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,18.5 - parent: 89 - - uid: 16543 + pos: -32.5,17.5 + parent: 2 + - uid: 9456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,12.5 - parent: 89 - - uid: 16906 + pos: -62.5,20.5 + parent: 2 + - uid: 9457 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 89 - - uid: 17040 + rot: -1.5707963267948966 rad + pos: -26.5,-8.5 + parent: 2 + - uid: 9458 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,8.5 - parent: 89 - - uid: 18346 + rot: 1.5707963267948966 rad + pos: -26.5,-7.5 + parent: 2 + - uid: 9459 components: - type: Transform - pos: -8.5,21.5 - parent: 89 - - uid: 19891 + pos: -84.5,32.5 + parent: 2 + - uid: 9460 components: - type: Transform - pos: 25.5,37.5 - parent: 89 - - uid: 19972 + pos: -81.5,20.5 + parent: 2 + - uid: 9461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 89 - - uid: 20049 + rot: 3.141592653589793 rad + pos: -84.5,20.5 + parent: 2 + - uid: 9462 components: - type: Transform - pos: -0.5,6.5 - parent: 89 -- proto: ChairPilotSeat - entities: - - uid: 436 + rot: 3.141592653589793 rad + pos: -23.5,2.5 + parent: 2 + - uid: 9463 components: - type: Transform - pos: 55.5,-5.5 - parent: 89 - - uid: 707 + pos: 11.5,-3.5 + parent: 2 + - uid: 9464 components: - type: Transform - pos: 59.5,-5.5 - parent: 89 - - uid: 709 + pos: -21.5,-7.5 + parent: 2 + - uid: 9465 components: - type: Transform - pos: 52.5,-5.5 - parent: 89 - - uid: 1512 + rot: 3.141592653589793 rad + pos: -40.5,-12.5 + parent: 2 + - uid: 9466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,1.5 - parent: 89 - - uid: 1526 + pos: 15.5,15.5 + parent: 2 + - uid: 9467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,3.5 - parent: 89 - - uid: 1528 + pos: -14.5,10.5 + parent: 2 + - uid: 9468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,2.5 - parent: 89 - - uid: 1529 + rot: 3.141592653589793 rad + pos: -20.5,-13.5 + parent: 2 + - uid: 9469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,5.5 - parent: 89 - - uid: 1531 + pos: -20.5,-12.5 + parent: 2 + - uid: 9470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,4.5 - parent: 89 - - uid: 1533 + rot: -1.5707963267948966 rad + pos: -17.5,9.5 + parent: 2 + - uid: 9471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,7.5 - parent: 89 - - uid: 1534 + pos: -17.5,10.5 + parent: 2 + - uid: 9472 components: - type: Transform rot: 1.5707963267948966 rad - pos: 62.5,6.5 - parent: 89 - - uid: 1535 + pos: 0.5,13.5 + parent: 2 + - uid: 9473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,9.5 - parent: 89 - - uid: 1536 + pos: -54.5,13.5 + parent: 2 + - uid: 9474 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,9.5 - parent: 89 - - uid: 1541 + pos: 0.5,-13.5 + parent: 2 + - uid: 9475 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,14.5 - parent: 89 - - uid: 1542 + pos: -14.5,7.5 + parent: 2 + - uid: 9476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,14.5 - parent: 89 - - uid: 1543 + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 + - uid: 9477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,14.5 - parent: 89 - - uid: 1544 + pos: 2.5,-15.5 + parent: 2 + - uid: 9478 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,14.5 - parent: 89 - - uid: 1545 + rot: -1.5707963267948966 rad + pos: -1.5,-38.5 + parent: 2 + - uid: 9479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,12.5 - parent: 89 - - uid: 1546 + rot: -1.5707963267948966 rad + pos: -6.5,-16.5 + parent: 2 + - uid: 9480 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,11.5 - parent: 89 - - uid: 1548 - components: - - type: Transform - pos: 56.5,-5.5 - parent: 89 - - uid: 1549 + pos: -1.5,-25.5 + parent: 2 + - uid: 9481 components: - type: Transform - pos: 54.5,-0.5 - parent: 89 - - uid: 1551 + rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 + - uid: 9482 components: - type: Transform - pos: 57.5,-0.5 - parent: 89 - - uid: 4347 + rot: 3.141592653589793 rad + pos: 14.5,14.5 + parent: 2 + - uid: 9483 components: - type: Transform - pos: -44.5,-19.5 - parent: 89 - - uid: 4348 + rot: 3.141592653589793 rad + pos: -9.5,-14.5 + parent: 2 + - uid: 9484 components: - type: Transform - pos: -43.5,-19.5 - parent: 89 - - uid: 4349 + pos: -8.5,-14.5 + parent: 2 + - uid: 9485 components: - type: Transform - pos: -43.5,-19.5 - parent: 89 - - uid: 4350 + rot: -1.5707963267948966 rad + pos: 0.5,12.5 + parent: 2 + - uid: 9486 components: - type: Transform - pos: -42.5,-19.5 - parent: 89 - - uid: 5358 + rot: 1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 + - uid: 9487 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-16.5 - parent: 89 - - uid: 17925 + pos: -41.5,-1.5 + parent: 2 + - uid: 9488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 64.5,-3.5 - parent: 89 - - uid: 17926 + rot: -1.5707963267948966 rad + pos: 26.5,-9.5 + parent: 2 + - uid: 9489 components: - type: Transform rot: 1.5707963267948966 rad - pos: 64.5,-2.5 - parent: 89 - - uid: 21673 + pos: 26.5,-8.5 + parent: 2 + - uid: 9490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-1.5 - parent: 21627 - - uid: 21674 + pos: 36.5,-1.5 + parent: 2 + - uid: 9491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 21627 - - uid: 21675 + rot: -1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 + - uid: 9492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 21627 - - uid: 25490 + rot: 1.5707963267948966 rad + pos: 61.5,4.5 + parent: 2 + - uid: 9493 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-6.5 - parent: 18153 - - uid: 25491 + rot: -1.5707963267948966 rad + pos: 61.5,0.5 + parent: 2 + - uid: 9494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 18153 - - uid: 25492 + pos: -22.5,4.5 + parent: 2 + - uid: 9495 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-2.5 - parent: 18153 - - uid: 25493 + pos: 2.5,-2.5 + parent: 2 + - uid: 9496 components: - type: Transform - pos: 1.5,-4.5 - parent: 18153 - - uid: 25494 + pos: 3.5,-2.5 + parent: 2 + - uid: 9497 components: - type: Transform - pos: 2.5,-4.5 - parent: 18153 - - uid: 25495 + rot: 3.141592653589793 rad + pos: -108.5,-14.5 + parent: 2 + - uid: 9498 components: - type: Transform - pos: 1.5,-7.5 - parent: 18153 - - uid: 25496 + rot: -1.5707963267948966 rad + pos: -118.5,-12.5 + parent: 2 + - uid: 25755 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-6.5 - parent: 18153 - - uid: 25497 + pos: -16.5,-0.5 + parent: 24450 + - uid: 25756 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-8.5 - parent: 18153 - - uid: 25498 + pos: -7.5,-0.5 + parent: 24450 + - uid: 25757 components: - type: Transform - pos: 2.5,-7.5 - parent: 18153 - - uid: 25499 + pos: -13.5,1.5 + parent: 24450 + - uid: 25758 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 18153 - - uid: 25500 + pos: -9.5,1.5 + parent: 24450 + - uid: 25759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-9.5 - parent: 18153 -- proto: ChairRitual - entities: - - uid: 14568 + pos: -7.5,10.5 + parent: 24450 + - uid: 25760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,17.5 - parent: 89 -- proto: ChairWood - entities: - - uid: 306 + pos: -16.5,9.5 + parent: 24450 + - uid: 25761 components: - type: Transform - pos: -52.5,0.5 - parent: 89 - - uid: 3825 + rot: 1.5707963267948966 rad + pos: -17.5,10.5 + parent: 24450 + - uid: 25762 components: - type: Transform - pos: -47.5,-1.5 - parent: 89 - - uid: 4492 + pos: -31.5,13.5 + parent: 24450 + - uid: 25763 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-8.5 - parent: 89 - - uid: 4728 - components: - - type: Transform - pos: -51.5,-1.5 - parent: 89 - - uid: 4731 + pos: -31.5,3.5 + parent: 24450 +- proto: DisposalJunction + entities: + - uid: 9499 components: - type: Transform - pos: -52.5,-1.5 - parent: 89 - - uid: 4896 + rot: -1.5707963267948966 rad + pos: -58.5,-6.5 + parent: 2 + - uid: 9500 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 89 - - uid: 4926 + pos: -99.5,25.5 + parent: 2 + - uid: 9501 components: - type: Transform - pos: -51.5,0.5 - parent: 89 - - uid: 4927 + rot: -1.5707963267948966 rad + pos: -4.5,12.5 + parent: 2 + - uid: 9502 components: - type: Transform - pos: -51.5,-0.5 - parent: 89 - - uid: 4954 + pos: 19.5,7.5 + parent: 2 + - uid: 9503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-3.5 - parent: 89 - - uid: 4958 + rot: 3.141592653589793 rad + pos: -17.5,-5.5 + parent: 2 + - uid: 9504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-6.5 - parent: 89 - - uid: 4959 + rot: -1.5707963267948966 rad + pos: 51.5,0.5 + parent: 2 + - uid: 9505 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-7.5 - parent: 89 - - uid: 4961 - components: - - type: Transform - pos: -19.5,-1.5 - parent: 89 - - uid: 4966 + pos: -70.5,-13.5 + parent: 2 + - uid: 9506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-5.5 - parent: 89 - - uid: 4968 + pos: 35.5,2.5 + parent: 2 + - uid: 9507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-6.5 - parent: 89 - - uid: 4976 + rot: 1.5707963267948966 rad + pos: -111.5,-1.5 + parent: 2 + - uid: 9508 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-7.5 - parent: 89 - - uid: 4984 + pos: -64.5,-6.5 + parent: 2 + - uid: 9509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-7.5 - parent: 89 - - uid: 4995 + rot: -1.5707963267948966 rad + pos: -60.5,4.5 + parent: 2 + - uid: 9510 components: - type: Transform - pos: -47.5,-0.5 - parent: 89 - - uid: 5000 + rot: -1.5707963267948966 rad + pos: -68.5,9.5 + parent: 2 + - uid: 9511 components: - type: Transform - pos: -48.5,-1.5 - parent: 89 - - uid: 5120 + rot: -1.5707963267948966 rad + pos: -73.5,8.5 + parent: 2 + - uid: 9512 components: - type: Transform - pos: -52.5,-0.5 - parent: 89 - - uid: 5121 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 + - uid: 9513 components: - type: Transform - pos: -48.5,0.5 - parent: 89 - - uid: 5124 + rot: 3.141592653589793 rad + pos: -108.5,-3.5 + parent: 2 + - uid: 9514 components: - type: Transform - pos: -47.5,0.5 - parent: 89 - - uid: 5147 + rot: -1.5707963267948966 rad + pos: -57.5,17.5 + parent: 2 + - uid: 9515 components: - type: Transform - pos: -48.5,-0.5 - parent: 89 - - uid: 5781 + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 + - uid: 9516 components: - type: Transform - pos: -75.5,1.5 - parent: 89 - - uid: 10213 + rot: 3.141592653589793 rad + pos: -93.5,13.5 + parent: 2 + - uid: 9517 components: - type: Transform - pos: -79.5,1.5 - parent: 89 - - uid: 10215 + rot: -1.5707963267948966 rad + pos: -62.5,17.5 + parent: 2 + - uid: 9518 components: - type: Transform - pos: -78.5,1.5 - parent: 89 - - uid: 10218 + rot: -1.5707963267948966 rad + pos: -81.5,9.5 + parent: 2 + - uid: 9519 components: - type: Transform - pos: -77.5,1.5 - parent: 89 - - uid: 10226 + rot: -1.5707963267948966 rad + pos: -85.5,9.5 + parent: 2 + - uid: 9520 components: - type: Transform - pos: -74.5,1.5 - parent: 89 - - uid: 10227 + rot: 1.5707963267948966 rad + pos: -24.5,-7.5 + parent: 2 + - uid: 9521 components: - type: Transform - pos: -73.5,1.5 - parent: 89 - - uid: 14227 + rot: -1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 + - uid: 9522 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 89 - - uid: 14570 + pos: -11.5,2.5 + parent: 2 + - uid: 9523 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,18.5 - parent: 89 - - uid: 14571 + pos: 19.5,2.5 + parent: 2 + - uid: 9524 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,18.5 - parent: 89 - - uid: 14572 + pos: 24.5,15.5 + parent: 2 + - uid: 9525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,18.5 - parent: 89 - - uid: 14573 + pos: 15.5,14.5 + parent: 2 + - uid: 9526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,16.5 - parent: 89 - - uid: 14574 + rot: 3.141592653589793 rad + pos: -8.5,-16.5 + parent: 2 + - uid: 9527 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,16.5 - parent: 89 - - uid: 14575 + pos: 11.5,13.5 + parent: 2 + - uid: 9528 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 89 - - uid: 14737 + pos: 27.5,-8.5 + parent: 2 + - uid: 9529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-24.5 - parent: 89 - - uid: 14738 + pos: 51.5,7.5 + parent: 2 + - uid: 9530 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-23.5 - parent: 89 - - uid: 20002 + pos: 15.5,-9.5 + parent: 2 + - uid: 9531 components: - type: Transform rot: 1.5707963267948966 rad - pos: 17.5,21.5 - parent: 89 - - uid: 21084 + pos: -118.5,-10.5 + parent: 2 + - uid: 25764 components: - type: Transform - pos: -26.5,-5.5 - parent: 89 - - uid: 21316 + rot: 3.141592653589793 rad + pos: -16.5,1.5 + parent: 24450 + - uid: 25765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 89 - - uid: 21829 + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 24450 + - uid: 25766 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 89 -- proto: CheapLighter - entities: - - uid: 14673 + pos: -17.5,9.5 + parent: 24450 + - uid: 25767 components: - type: Transform - pos: -120.64618,21.483479 - parent: 89 -- proto: CheapRollerBed + rot: 3.141592653589793 rad + pos: -31.5,9.5 + parent: 24450 +- proto: DisposalJunctionFlipped entities: - - uid: 15074 + - uid: 9532 components: - type: Transform - pos: -4.5048585,20.65735 - parent: 89 -- proto: CheapRollerBedSpawnFolded - entities: - - uid: 20008 + pos: 3.5,-5.5 + parent: 2 + - uid: 9533 components: - type: Transform - pos: -4.322945,19.72414 - parent: 89 -- proto: CheckerBoard - entities: - - uid: 16892 + rot: -1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - uid: 9534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.522533,8.605168 - parent: 89 - - uid: 16960 + pos: -88.5,9.5 + parent: 2 + - uid: 9535 components: - type: Transform - pos: -2.4906597,-28.383318 - parent: 89 - - uid: 17311 + rot: -1.5707963267948966 rad + pos: -77.5,8.5 + parent: 2 + - uid: 9536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.51852,-14.432817 - parent: 89 -- proto: chem_master - entities: - - uid: 1723 + rot: -1.5707963267948966 rad + pos: -69.5,9.5 + parent: 2 + - uid: 9537 components: - type: Transform - pos: -2.5,9.5 - parent: 89 - - uid: 12852 + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 + - uid: 9538 components: - type: Transform - pos: 0.5,5.5 - parent: 89 -- proto: ChemDispenser - entities: - - uid: 17007 + rot: 3.141592653589793 rad + pos: -111.5,-10.5 + parent: 2 + - uid: 9539 components: - type: Transform - pos: -3.5,9.5 - parent: 89 -- proto: ChemDispenserEmpty - entities: - - uid: 4977 + rot: 3.141592653589793 rad + pos: -64.5,-10.5 + parent: 2 + - uid: 9540 components: - type: Transform - pos: -0.5,5.5 - parent: 89 -- proto: ChemicalPayload - entities: - - uid: 16979 + rot: 3.141592653589793 rad + pos: -108.5,-1.5 + parent: 2 + - uid: 9541 components: - type: Transform - pos: -14.19345,-15.127384 - parent: 89 - - uid: 16980 + rot: 1.5707963267948966 rad + pos: -102.5,4.5 + parent: 2 + - uid: 9542 components: - type: Transform - pos: -13.9767065,-15.464462 - parent: 89 -- proto: ChemistryHotplate - entities: - - uid: 14105 + rot: 1.5707963267948966 rad + pos: -97.5,7.5 + parent: 2 + - uid: 9543 components: - type: Transform - pos: 4.5,-18.5 - parent: 89 - - type: ItemPlacer - placedEntities: - - 16935 - - type: PlaceableSurface - isPlaceable: False - - uid: 16886 + pos: -0.5,-10.5 + parent: 2 + - uid: 9544 components: - type: Transform - pos: 15.5,-0.5 - parent: 89 - - uid: 21547 + rot: -1.5707963267948966 rad + pos: -56.5,4.5 + parent: 2 + - uid: 9545 components: - type: Transform - pos: -2.5,5.5 - parent: 89 -- proto: ChessBoard - entities: - - uid: 16893 + rot: -1.5707963267948966 rad + pos: -48.5,4.5 + parent: 2 + - uid: 9546 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.56941,8.605168 - parent: 89 -- proto: ChurchOrganInstrument - entities: - - uid: 5025 + pos: -0.5,-4.5 + parent: 2 + - uid: 9547 components: - type: Transform rot: -1.5707963267948966 rad - pos: -49.5,-3.5 - parent: 89 -- proto: CigaretteSyndicate - entities: - - uid: 20947 + pos: -48.5,17.5 + parent: 2 + - uid: 9548 components: - type: Transform - pos: -87.7599,27.81324 - parent: 89 - - uid: 20948 + rot: 3.141592653589793 rad + pos: -40.5,-8.5 + parent: 2 + - uid: 9549 components: - type: Transform - pos: -87.7599,27.90699 - parent: 89 - - uid: 20949 + rot: 3.141592653589793 rad + pos: -40.5,-1.5 + parent: 2 + - uid: 9550 components: - type: Transform - pos: -87.7599,28.00074 - parent: 89 -- proto: CigarGold - entities: - - uid: 10429 + rot: -1.5707963267948966 rad + pos: -40.5,4.5 + parent: 2 + - uid: 9551 components: - type: Transform - pos: 20.468182,7.551762 - parent: 89 - - uid: 14634 + rot: 3.141592653589793 rad + pos: -93.5,7.5 + parent: 2 + - uid: 9552 components: - type: Transform - pos: -98.620224,17.58848 - parent: 89 -- proto: CigarGoldCase - entities: - - uid: 1871 + rot: -1.5707963267948966 rad + pos: 14.5,13.5 + parent: 2 + - uid: 9553 components: - type: Transform - pos: -19.524622,18.424397 - parent: 89 -- proto: CigarGoldSpent - entities: - - uid: 20882 + rot: -1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 + - uid: 9554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.87538,22.994505 - parent: 89 -- proto: CigCartonBlack - entities: - - uid: 23747 + rot: 3.141592653589793 rad + pos: 2.5,-19.5 + parent: 2 + - uid: 9555 components: - type: Transform - pos: -14.517942,7.518115 - parent: 22565 -- proto: CigCartonRed - entities: - - uid: 14625 + rot: -1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - uid: 9556 components: - type: Transform - pos: -97.5623,12.583653 - parent: 89 -- proto: CigPackBlack - entities: - - uid: 15629 + rot: -1.5707963267948966 rad + pos: -23.5,4.5 + parent: 2 + - uid: 25768 components: - type: Transform - pos: -117.54554,-14.493891 - parent: 89 -- proto: CigPackBlue + rot: 3.141592653589793 rad + pos: -7.5,1.5 + parent: 24450 +- proto: DisposalPipe entities: - - uid: 14672 + - uid: 9557 components: - type: Transform - pos: -120.92743,21.530354 - parent: 89 - - uid: 25693 + rot: -1.5707963267948966 rad + pos: -107.5,-14.5 + parent: 2 + - uid: 9558 components: - type: Transform - pos: 5.6514907,-1.2318032 - parent: 89 -- proto: CigPackSyndicate - entities: - - uid: 23749 + rot: 3.141592653589793 rad + pos: 52.5,12.5 + parent: 2 + - uid: 9559 components: - type: Transform - parent: 23748 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CircuitImprinter - entities: - - uid: 81 + pos: 24.5,24.5 + parent: 2 + - uid: 9560 components: - type: Transform - pos: -14.5,-18.5 - parent: 89 - - uid: 23751 + rot: -1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 + - uid: 9561 components: - type: Transform - pos: -27.5,3.5 - parent: 22565 - - uid: 23752 + pos: -14.5,9.5 + parent: 2 + - uid: 9562 components: - type: Transform - pos: 3.5,3.5 - parent: 22565 -- proto: ClarinetInstrument - entities: - - uid: 7457 + rot: -1.5707963267948966 rad + pos: -22.5,2.5 + parent: 2 + - uid: 9563 components: - type: Transform - pos: -35.620186,-5.4584527 - parent: 89 -- proto: Claymore - entities: - - uid: 5066 + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 + - uid: 9564 components: - - type: MetaData - desc: Это по-русски, но всё равно круто! - name: аннигиляторная пушка - type: Transform - pos: 45.44855,-1.5047936 - parent: 89 -- proto: CleanerDispenser - entities: - - uid: 10757 + pos: 19.5,3.5 + parent: 2 + - uid: 9565 components: - type: Transform - pos: -40.5,9.5 - parent: 89 -- proto: CloningPod - entities: - - uid: 17829 + rot: 3.141592653589793 rad + pos: 45.5,8.5 + parent: 2 + - uid: 9566 components: - type: Transform - pos: 9.5,18.5 - parent: 89 -- proto: CloningPodMachineCircuitboard - entities: - - uid: 15602 + rot: 1.5707963267948966 rad + pos: 50.5,7.5 + parent: 2 + - uid: 9567 components: - type: Transform - pos: 22.465963,36.302017 - parent: 89 -- proto: ClosetBombFilled - entities: - - uid: 3796 + rot: -1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 + - uid: 9568 components: - type: Transform - pos: -28.5,36.5 - parent: 89 - - uid: 3809 + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 2 + - uid: 9569 components: - type: Transform - pos: -28.5,37.5 - parent: 89 -- proto: ClosetChefFilled - entities: - - uid: 4021 + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 + - uid: 9570 components: - type: Transform - pos: -15.5,-0.5 - parent: 89 -- proto: ClosetEmergencyFilledRandom - entities: - - uid: 4023 + pos: 19.5,6.5 + parent: 2 + - uid: 9571 components: - type: Transform - pos: -45.5,-13.5 - parent: 89 - - uid: 4216 + pos: 19.5,4.5 + parent: 2 + - uid: 9572 components: - type: Transform - pos: -25.5,-15.5 - parent: 89 - - uid: 4512 + rot: 1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 2 + - uid: 9573 components: - type: Transform - pos: -1.5,-21.5 - parent: 89 - - uid: 4568 + rot: -1.5707963267948966 rad + pos: 9.5,-5.5 + parent: 2 + - uid: 9574 components: - type: Transform - pos: 38.5,9.5 - parent: 89 - - uid: 4789 + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 2 + - uid: 9575 components: - type: Transform - pos: 11.5,-7.5 - parent: 89 - - uid: 4942 + rot: 1.5707963267948966 rad + pos: 48.5,7.5 + parent: 2 + - uid: 9576 components: - type: Transform - pos: 38.5,0.5 - parent: 89 - - uid: 4943 + pos: -5.5,16.5 + parent: 2 + - uid: 9577 components: - type: Transform - pos: -91.5,0.5 - parent: 89 - - uid: 4944 + rot: -1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - uid: 9578 components: - type: Transform - pos: -91.5,1.5 - parent: 89 - - uid: 4945 + pos: -97.5,26.5 + parent: 2 + - uid: 9579 components: - type: Transform - pos: -67.5,33.5 - parent: 89 - - uid: 4946 + rot: -1.5707963267948966 rad + pos: -98.5,25.5 + parent: 2 + - uid: 9580 components: - type: Transform - pos: -64.5,42.5 - parent: 89 - - uid: 4947 + pos: -99.5,24.5 + parent: 2 + - uid: 9581 components: - type: Transform - pos: -63.5,45.5 - parent: 89 - - uid: 5280 + rot: -1.5707963267948966 rad + pos: -100.5,25.5 + parent: 2 + - uid: 9582 components: - type: Transform - pos: -66.5,23.5 - parent: 89 - - uid: 5281 + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 + - uid: 9583 components: - type: Transform - pos: -55.5,28.5 - parent: 89 - - uid: 5286 + rot: 1.5707963267948966 rad + pos: -3.5,12.5 + parent: 2 + - uid: 9584 components: - type: Transform - pos: -58.5,39.5 - parent: 89 - - uid: 5434 + rot: 1.5707963267948966 rad + pos: 47.5,7.5 + parent: 2 + - uid: 9585 components: - type: Transform - pos: -62.5,32.5 - parent: 89 - - uid: 5666 + rot: 1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 + - uid: 9586 components: - type: Transform - pos: -89.5,23.5 - parent: 89 - - uid: 5921 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - uid: 9587 components: - type: Transform - pos: -85.5,47.5 - parent: 89 - - uid: 5923 + rot: 1.5707963267948966 rad + pos: 17.5,7.5 + parent: 2 + - uid: 9588 components: - type: Transform - pos: -94.5,23.5 - parent: 89 - - uid: 5956 + rot: 1.5707963267948966 rad + pos: 18.5,7.5 + parent: 2 + - uid: 9589 components: - type: Transform - pos: -69.5,14.5 - parent: 89 - - uid: 6929 + pos: 24.5,25.5 + parent: 2 + - uid: 9590 components: - type: Transform - pos: -74.5,5.5 - parent: 89 - - uid: 6930 + pos: 24.5,26.5 + parent: 2 + - uid: 9591 components: - type: Transform - pos: -78.5,15.5 - parent: 89 - - uid: 7080 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 2 + - uid: 9592 components: - type: Transform - pos: -78.5,13.5 - parent: 89 - - uid: 7081 + rot: 3.141592653589793 rad + pos: 12.5,-6.5 + parent: 2 + - uid: 9593 components: - type: Transform - pos: -52.5,25.5 - parent: 89 - - uid: 7264 + pos: 14.5,28.5 + parent: 2 + - uid: 9594 components: - type: Transform - pos: -112.5,-2.5 - parent: 89 - - uid: 7276 + pos: 14.5,29.5 + parent: 2 + - uid: 9595 components: - type: Transform - pos: -85.5,45.5 - parent: 89 - - uid: 7553 + pos: 14.5,30.5 + parent: 2 + - uid: 9596 components: - type: Transform - pos: -3.5,-9.5 - parent: 89 - - uid: 7555 + rot: 3.141592653589793 rad + pos: 14.5,31.5 + parent: 2 + - uid: 9597 components: - type: Transform - pos: -41.5,-5.5 - parent: 89 - - uid: 7999 + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 + - uid: 9598 components: - type: Transform - pos: 21.5,0.5 - parent: 89 - - uid: 8124 + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 + - uid: 9599 components: - type: Transform - pos: -33.5,10.5 - parent: 89 - - uid: 8211 + rot: 1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 + - uid: 9600 components: - type: Transform - pos: -58.5,5.5 - parent: 89 - - uid: 8356 + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 2 + - uid: 9601 components: - type: Transform - pos: 10.5,27.5 - parent: 89 - - uid: 8556 + rot: 3.141592653589793 rad + pos: -8.5,-18.5 + parent: 2 + - uid: 9602 components: - type: Transform - pos: -60.5,12.5 - parent: 89 - - uid: 14768 + rot: 3.141592653589793 rad + pos: 22.5,1.5 + parent: 2 + - uid: 9603 components: - type: Transform - pos: 19.5,25.5 - parent: 89 - - uid: 16461 + rot: 1.5707963267948966 rad + pos: 49.5,7.5 + parent: 2 + - uid: 9604 components: - type: Transform - pos: -112.5,10.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 19809 + rot: 1.5707963267948966 rad + pos: -29.5,-8.5 + parent: 2 + - uid: 9605 components: - type: Transform - pos: -17.5,22.5 - parent: 89 - - uid: 21349 + pos: 11.5,-4.5 + parent: 2 + - uid: 9606 components: - type: Transform - pos: -33.5,5.5 - parent: 89 - - uid: 21485 + rot: -1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 + - uid: 9607 components: - type: Transform - pos: -101.5,2.5 - parent: 89 -- proto: ClosetFireFilled - entities: - - uid: 56 + pos: -7.5,6.5 + parent: 2 + - uid: 9608 components: - type: Transform - pos: -45.5,-15.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 6900 + rot: -1.5707963267948966 rad + pos: -79.5,9.5 + parent: 2 + - uid: 9609 components: - type: Transform - pos: -59.5,5.5 - parent: 89 - - uid: 6971 + rot: -1.5707963267948966 rad + pos: -80.5,9.5 + parent: 2 + - uid: 9610 components: - type: Transform - pos: -27.5,-15.5 - parent: 89 - - uid: 7110 + rot: -1.5707963267948966 rad + pos: -25.5,4.5 + parent: 2 + - uid: 9611 components: - type: Transform - pos: -67.5,40.5 - parent: 89 - - uid: 7323 + rot: -1.5707963267948966 rad + pos: -82.5,9.5 + parent: 2 + - uid: 9612 components: - type: Transform - pos: 23.5,0.5 - parent: 89 - - uid: 8085 + rot: -1.5707963267948966 rad + pos: -83.5,9.5 + parent: 2 + - uid: 9613 components: - type: Transform - pos: 39.5,0.5 - parent: 89 - - uid: 8123 + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 + - uid: 9614 components: - type: Transform - pos: -8.5,26.5 - parent: 89 - - uid: 8210 + rot: -1.5707963267948966 rad + pos: -86.5,9.5 + parent: 2 + - uid: 9615 components: - type: Transform - pos: -96.5,-3.5 - parent: 89 - - uid: 8390 + rot: -1.5707963267948966 rad + pos: -87.5,9.5 + parent: 2 + - uid: 9616 components: - type: Transform - pos: -90.5,18.5 - parent: 89 - - uid: 8530 + rot: 3.141592653589793 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 9617 components: - type: Transform - pos: -96.5,-4.5 - parent: 89 - - uid: 8558 + pos: 51.5,6.5 + parent: 2 + - uid: 9618 components: - type: Transform - pos: -3.5,-8.5 - parent: 89 - - uid: 8575 + pos: 51.5,5.5 + parent: 2 + - uid: 9619 components: - type: Transform - pos: -112.5,0.5 - parent: 89 - - uid: 8576 + pos: 51.5,4.5 + parent: 2 + - uid: 9620 components: - type: Transform - pos: -112.5,7.5 - parent: 89 - - uid: 8781 + pos: 51.5,3.5 + parent: 2 + - uid: 9621 components: - type: Transform - pos: -111.5,7.5 - parent: 89 - - uid: 8823 + pos: 51.5,2.5 + parent: 2 + - uid: 9622 components: - type: Transform - pos: -67.5,34.5 - parent: 89 - - uid: 8931 + pos: 51.5,1.5 + parent: 2 + - uid: 9623 components: - type: Transform - pos: 23.5,23.5 - parent: 89 - - uid: 9936 + pos: -125.5,13.5 + parent: 2 + - uid: 9624 components: - type: Transform - pos: -61.5,28.5 - parent: 89 - - uid: 10846 + pos: -125.5,12.5 + parent: 2 + - uid: 9625 components: - type: Transform - pos: -62.5,11.5 - parent: 89 - - uid: 10879 + pos: -125.5,11.5 + parent: 2 + - uid: 9626 components: - type: Transform - pos: -69.5,11.5 - parent: 89 - - uid: 14703 + pos: -125.5,10.5 + parent: 2 + - uid: 9627 components: - type: Transform - pos: -83.5,45.5 - parent: 89 - - uid: 15766 + pos: -85.5,10.5 + parent: 2 + - uid: 9628 components: - type: Transform - pos: 9.5,27.5 - parent: 89 - - uid: 19797 + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 + - uid: 9629 components: - type: Transform - pos: -17.5,23.5 - parent: 89 - - uid: 21333 + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - uid: 9630 components: - type: Transform - pos: -33.5,11.5 - parent: 89 - - uid: 21338 + rot: -1.5707963267948966 rad + pos: 49.5,0.5 + parent: 2 + - uid: 9631 components: - type: Transform - pos: -75.5,15.5 - parent: 89 - - uid: 21350 + rot: -1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 + - uid: 9632 components: - type: Transform - pos: -111.5,0.5 - parent: 89 - - uid: 21351 + rot: -1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 + - uid: 9633 components: - type: Transform - pos: -96.5,-5.5 - parent: 89 - - uid: 21358 + rot: -1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 + - uid: 9634 components: - type: Transform - pos: -52.5,26.5 - parent: 89 - - uid: 21365 + rot: -1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 + - uid: 9635 components: - type: Transform - pos: 11.5,-10.5 - parent: 89 - - uid: 21370 + rot: -1.5707963267948966 rad + pos: 44.5,0.5 + parent: 2 + - uid: 9636 components: - type: Transform - pos: -73.5,5.5 - parent: 89 -- proto: ClosetJanitorFilled - entities: - - uid: 21502 + rot: -1.5707963267948966 rad + pos: 43.5,0.5 + parent: 2 + - uid: 9637 components: - type: Transform - pos: -39.5,9.5 - parent: 89 -- proto: ClosetL3JanitorFilled - entities: - - uid: 14029 + rot: -1.5707963267948966 rad + pos: 42.5,0.5 + parent: 2 + - uid: 9638 components: - type: Transform - pos: -38.5,9.5 - parent: 89 -- proto: ClosetL3ScienceFilled - entities: - - uid: 8565 + rot: -1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 + - uid: 9639 components: - type: Transform - pos: -1.5,-20.5 - parent: 89 - - uid: 8567 + pos: 40.5,1.5 + parent: 2 + - uid: 9640 components: - type: Transform - pos: -2.5,-33.5 - parent: 89 - - uid: 8573 + rot: -1.5707963267948966 rad + pos: -124.5,9.5 + parent: 2 + - uid: 9641 components: - type: Transform - pos: -0.5,-33.5 - parent: 89 -- proto: ClosetL3SecurityFilled - entities: - - uid: 3287 + rot: -1.5707963267948966 rad + pos: -123.5,9.5 + parent: 2 + - uid: 9642 components: - type: Transform - pos: 14.5,-3.5 - parent: 89 - - uid: 8598 + rot: -1.5707963267948966 rad + pos: -122.5,9.5 + parent: 2 + - uid: 9643 components: - type: Transform - pos: 15.5,-3.5 - parent: 89 -- proto: ClosetL3VirologyFilled - entities: - - uid: 10897 + rot: 3.141592653589793 rad + pos: -69.5,8.5 + parent: 2 + - uid: 9644 components: - type: Transform - pos: 11.5,30.5 - parent: 89 - - uid: 15410 + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 + - uid: 9645 components: - type: Transform - pos: 10.5,30.5 - parent: 89 -- proto: ClosetLegalFilled - entities: - - uid: 8759 + rot: 3.141592653589793 rad + pos: -121.5,8.5 + parent: 2 + - uid: 9646 components: - type: Transform - pos: -73.5,-2.5 - parent: 89 - - uid: 9504 + rot: 3.141592653589793 rad + pos: -121.5,7.5 + parent: 2 + - uid: 9647 components: - type: Transform - pos: -73.5,-3.5 - parent: 89 -- proto: ClosetMaintenance - entities: - - uid: 23177 + rot: 3.141592653589793 rad + pos: -121.5,6.5 + parent: 2 + - uid: 9648 components: - type: Transform - pos: 9.5,12.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23178 - - 23182 - - 23184 - - 23179 - - 23183 - - 23180 - - 23181 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23185 + rot: 3.141592653589793 rad + pos: -121.5,5.5 + parent: 2 + - uid: 9649 components: - type: Transform - pos: 9.5,6.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23190 - - 23191 - - 23187 - - 23188 - - 23186 - - 23189 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23192 + rot: 3.141592653589793 rad + pos: -121.5,4.5 + parent: 2 + - uid: 9650 components: - type: Transform - pos: 9.5,9.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23197 - - 23198 - - 23195 - - 23194 - - 23193 - - 23196 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23199 + rot: 3.141592653589793 rad + pos: -121.5,3.5 + parent: 2 + - uid: 9651 components: - type: Transform - pos: -33.5,6.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23200 - - 23206 - - 23205 - - 23202 - - 23204 - - 23203 - - 23201 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23207 + rot: 3.141592653589793 rad + pos: -121.5,2.5 + parent: 2 + - uid: 9652 components: - type: Transform - pos: -33.5,8.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23210 - - 23208 - - 23213 - - 23212 - - 23209 - - 23211 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23214 + rot: 3.141592653589793 rad + pos: -121.5,1.5 + parent: 2 + - uid: 9653 components: - type: Transform - pos: -33.5,12.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1497 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23217 - - 23218 - - 23221 - - 23220 - - 23216 - - 23215 - - 23219 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23753 + rot: 3.141592653589793 rad + pos: -121.5,0.5 + parent: 2 + - uid: 9654 components: - type: Transform - pos: 10.5,1.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 99.138466 - 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: - - 23759 - - 23762 - - 23758 - - 23761 - - 23757 - - 23760 - - 23755 - - 23754 - - 23756 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23763 + rot: 3.141592653589793 rad + pos: -121.5,-0.5 + parent: 2 + - uid: 9655 components: - type: Transform - pos: -34.5,1.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14972 - 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: - - 23772 - - 23771 - - 23769 - - 23768 - - 23770 - - 23767 - - 23766 - - 23765 - - 23764 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: ClosetMaintenanceFilledRandom - entities: - - uid: 8555 + pos: 35.5,15.5 + parent: 2 + - uid: 9656 components: - type: Transform - pos: -97.5,11.5 - parent: 89 - - uid: 9937 + rot: 3.141592653589793 rad + pos: -121.5,-2.5 + parent: 2 + - uid: 9657 components: - type: Transform - pos: -26.5,-20.5 - parent: 89 - - uid: 9972 + rot: 1.5707963267948966 rad + pos: -120.5,-3.5 + parent: 2 + - uid: 9658 components: - type: Transform - pos: -45.5,-14.5 - parent: 89 - - uid: 10001 + rot: 3.141592653589793 rad + pos: -51.5,-16.5 + parent: 2 + - uid: 9659 components: - type: Transform - pos: -15.5,-27.5 - parent: 89 - - uid: 10002 + rot: 3.141592653589793 rad + pos: -51.5,-15.5 + parent: 2 + - uid: 9660 components: - type: Transform - pos: -16.5,-27.5 - parent: 89 - - uid: 10003 + rot: -1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - uid: 9661 components: - type: Transform - pos: -95.5,15.5 - parent: 89 - - uid: 10004 + rot: -1.5707963267948966 rad + pos: -72.5,8.5 + parent: 2 + - uid: 9662 components: - type: Transform - pos: -95.5,14.5 - parent: 89 - - uid: 10005 + rot: -1.5707963267948966 rad + pos: -74.5,8.5 + parent: 2 + - uid: 9663 components: - type: Transform - pos: -1.5,32.5 - parent: 89 - - uid: 10006 + rot: -1.5707963267948966 rad + pos: -75.5,8.5 + parent: 2 + - uid: 9664 components: - type: Transform - pos: -1.5,31.5 - parent: 89 - - uid: 10017 + rot: -1.5707963267948966 rad + pos: -76.5,8.5 + parent: 2 + - uid: 9665 components: - type: Transform - pos: -98.5,11.5 - parent: 89 - - uid: 10023 + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - uid: 9666 components: - type: Transform - pos: -112.5,12.5 - parent: 89 - - uid: 10106 + rot: 1.5707963267948966 rad + pos: 33.5,2.5 + parent: 2 + - uid: 9667 components: - type: Transform - pos: -112.5,13.5 - parent: 89 - - uid: 10260 + rot: 1.5707963267948966 rad + pos: 34.5,2.5 + parent: 2 + - uid: 9668 components: - type: Transform - pos: -75.5,19.5 - parent: 89 - - uid: 10261 + rot: 1.5707963267948966 rad + pos: -120.5,-1.5 + parent: 2 + - uid: 9669 components: - type: Transform - pos: -75.5,17.5 - parent: 89 - - uid: 10272 + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - uid: 9670 components: - type: Transform - pos: -52.5,24.5 - parent: 89 - - uid: 10302 + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 + - uid: 9671 components: - type: Transform - pos: -38.5,22.5 - parent: 89 - - uid: 10878 + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 + - uid: 9672 components: - type: Transform - pos: -26.5,-15.5 - parent: 89 - - uid: 11014 + rot: 3.141592653589793 rad + pos: -70.5,-14.5 + parent: 2 + - uid: 9673 components: - type: Transform - pos: -17.5,-27.5 - parent: 89 - - uid: 11016 + rot: 1.5707963267948966 rad + pos: 36.5,16.5 + parent: 2 + - uid: 9674 components: - type: Transform - pos: -81.5,-0.5 - parent: 89 - - uid: 15539 + pos: 35.5,14.5 + parent: 2 + - uid: 9675 components: - type: Transform - pos: 18.5,25.5 - parent: 89 - - uid: 15566 + pos: 35.5,13.5 + parent: 2 + - uid: 9676 components: - type: Transform - pos: 5.5,27.5 - parent: 89 - - uid: 19796 + pos: 35.5,12.5 + parent: 2 + - uid: 9677 components: - type: Transform - pos: -17.5,24.5 - parent: 89 - - uid: 21376 + pos: 35.5,11.5 + parent: 2 + - uid: 9678 components: - type: Transform - pos: -87.5,23.5 - parent: 89 - - uid: 21383 + pos: 35.5,10.5 + parent: 2 + - uid: 9679 components: - type: Transform - pos: -116.5,21.5 - parent: 89 - - uid: 21384 + pos: 35.5,9.5 + parent: 2 + - uid: 9680 components: - type: Transform - pos: -117.5,21.5 - parent: 89 - - uid: 21386 + pos: 35.5,8.5 + parent: 2 + - uid: 9681 components: - type: Transform - pos: -99.5,11.5 - parent: 89 - - uid: 21768 + pos: 35.5,7.5 + parent: 2 + - uid: 9682 components: - type: Transform - pos: 56.5,-21.5 - parent: 89 - - uid: 23748 + pos: 35.5,6.5 + parent: 2 + - uid: 9683 components: - type: Transform - pos: -28.5,11.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14972 - 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: - - 23749 - - 23750 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23773 + pos: 35.5,5.5 + parent: 2 + - uid: 9684 components: - type: Transform - pos: -28.5,10.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetRadiationSuitFilled - entities: - - uid: 11017 + pos: 35.5,4.5 + parent: 2 + - uid: 9685 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -119.5,-1.5 + parent: 2 + - uid: 9686 components: - type: Transform - pos: -115.5,10.5 - parent: 89 - - uid: 11020 + rot: 1.5707963267948966 rad + pos: -118.5,-1.5 + parent: 2 + - uid: 9687 components: - type: Transform - pos: -116.5,10.5 - parent: 89 - - uid: 11030 + rot: 1.5707963267948966 rad + pos: -117.5,-1.5 + parent: 2 + - uid: 9688 components: - type: Transform - pos: -116.5,-2.5 - parent: 89 - - uid: 11226 + rot: 1.5707963267948966 rad + pos: -116.5,-1.5 + parent: 2 + - uid: 9689 components: - type: Transform - pos: -115.5,-2.5 - parent: 89 - - uid: 11263 + rot: 1.5707963267948966 rad + pos: -115.5,-1.5 + parent: 2 + - uid: 9690 components: - type: Transform - pos: -115.5,-0.5 - parent: 89 - - uid: 11341 + rot: 1.5707963267948966 rad + pos: -114.5,-1.5 + parent: 2 + - uid: 9691 components: - type: Transform - pos: -116.5,-0.5 - parent: 89 - - uid: 11374 + rot: 1.5707963267948966 rad + pos: -113.5,-1.5 + parent: 2 + - uid: 9692 components: - type: Transform - pos: -2.5,-36.5 - parent: 89 - - uid: 11461 + rot: 1.5707963267948966 rad + pos: -112.5,-1.5 + parent: 2 + - uid: 9693 components: - type: Transform - pos: -0.5,-36.5 - parent: 89 - - uid: 11462 + rot: 3.141592653589793 rad + pos: -70.5,-12.5 + parent: 2 + - uid: 9694 components: - type: Transform - pos: -6.5,-27.5 - parent: 89 - - uid: 21415 + rot: 3.141592653589793 rad + pos: -70.5,-11.5 + parent: 2 + - uid: 9695 components: - type: Transform - pos: -116.5,8.5 - parent: 89 - - uid: 21416 + rot: 3.141592653589793 rad + pos: 35.5,3.5 + parent: 2 + - uid: 9696 components: - type: Transform - pos: -115.5,8.5 - parent: 89 - - uid: 21985 + rot: 1.5707963267948966 rad + pos: -69.5,-10.5 + parent: 2 + - uid: 9697 components: - type: Transform - pos: -124.5,-10.5 - parent: 89 - - uid: 21986 + rot: 1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 2 + - uid: 9698 components: - type: Transform - pos: -123.5,-10.5 - parent: 89 - - uid: 21987 + rot: 1.5707963267948966 rad + pos: -67.5,-10.5 + parent: 2 + - uid: 9699 components: - type: Transform - pos: -122.5,-10.5 - parent: 89 -- proto: ClosetSteelBase - entities: - - uid: 3964 + rot: 3.141592653589793 rad + pos: -64.5,-13.5 + parent: 2 + - uid: 9700 components: - type: Transform - pos: 10.5,-1.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 11050 + rot: 3.141592653589793 rad + pos: -64.5,-14.5 + parent: 2 + - uid: 9701 components: - type: Transform - pos: 11.5,42.5 - parent: 89 - - uid: 19837 + pos: -64.5,-12.5 + parent: 2 + - uid: 9702 components: - type: Transform - pos: 5.5,18.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 3.3493855 - - 12.60007 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClosetToolFilled - entities: - - uid: 11669 + pos: -64.5,-11.5 + parent: 2 + - uid: 9703 components: - type: Transform - pos: -40.5,-17.5 - parent: 89 - - uid: 12575 + rot: 3.141592653589793 rad + pos: -51.5,-14.5 + parent: 2 + - uid: 9704 components: - type: Transform - pos: -8.5,25.5 - parent: 89 - - uid: 12576 + rot: 3.141592653589793 rad + pos: -51.5,-13.5 + parent: 2 + - uid: 9705 components: - type: Transform - pos: -16.5,12.5 - parent: 89 - - uid: 21407 + rot: 3.141592653589793 rad + pos: -51.5,-12.5 + parent: 2 + - uid: 9706 components: - type: Transform - pos: 49.5,5.5 - parent: 89 -- proto: ClosetWallEmergencyFilledRandom - entities: - - uid: 15125 + rot: 3.141592653589793 rad + pos: -51.5,-11.5 + parent: 2 + - uid: 9707 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,33.5 - parent: 89 - - uid: 15379 + pos: 31.5,2.5 + parent: 2 + - uid: 9708 components: - type: Transform - pos: 9.5,43.5 - parent: 89 - - uid: 16555 + rot: 1.5707963267948966 rad + pos: -124.5,-3.5 + parent: 2 + - uid: 9709 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,33.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16569 + pos: -123.5,-3.5 + parent: 2 + - uid: 9710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,20.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 21634 + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 + - uid: 9711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 21627 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21636 - - 21635 - - 21637 -- proto: ClosetWallFireFilledRandom - entities: - - uid: 5383 + rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 2 + - uid: 9712 components: - type: Transform - pos: -53.5,-4.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 10652 + rot: -1.5707963267948966 rad + pos: -54.5,-10.5 + parent: 2 + - uid: 9713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,14.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15908 + rot: -1.5707963267948966 rad + pos: -55.5,-10.5 + parent: 2 + - uid: 9714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,34.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 16570 + pos: -122.5,-3.5 + parent: 2 + - uid: 9715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,21.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: ClothingBackpackMerc - entities: - - uid: 20401 + pos: -125.5,-4.5 + parent: 2 + - uid: 9716 components: - type: Transform - pos: -129.39104,-34.593376 - parent: 89 -- proto: ClothingBackpackSatchelLeather - entities: - - uid: 21536 + pos: -125.5,-5.5 + parent: 2 + - uid: 9717 components: - type: Transform - pos: 18.11255,19.774199 - parent: 89 -- proto: ClothingBeltChampion - entities: - - uid: 3115 + pos: -125.5,-6.5 + parent: 2 + - uid: 9718 components: - type: Transform - pos: 49.49962,-5.324962 - parent: 89 -- proto: ClothingBeltJanitorFilled - entities: - - uid: 20865 + pos: -125.5,-7.5 + parent: 2 + - uid: 9719 components: - type: Transform - pos: -36.594994,9.431238 - parent: 89 -- proto: ClothingBeltSuspenders - entities: - - uid: 21883 + pos: -125.5,-8.5 + parent: 2 + - uid: 9720 components: - type: Transform - pos: 6.5650086,27.578575 - parent: 89 -- proto: ClothingBeltUtility - entities: - - uid: 224 + pos: -125.5,-9.5 + parent: 2 + - uid: 9721 components: - type: Transform - pos: -12.5832405,-23.436749 - parent: 89 - - uid: 7089 + pos: -56.5,-9.5 + parent: 2 + - uid: 9722 components: - type: Transform - pos: -90.483246,13.521247 - parent: 89 - - uid: 14951 + pos: -56.5,-8.5 + parent: 2 + - uid: 9723 components: - type: Transform - pos: -11.502785,-31.531437 - parent: 89 - - uid: 23774 + pos: -56.5,-7.5 + parent: 2 + - uid: 9724 components: - type: Transform - pos: -25.504887,7.5219393 - parent: 22565 - - uid: 23775 + rot: 1.5707963267948966 rad + pos: -124.5,-10.5 + parent: 2 + - uid: 9725 components: - type: Transform - pos: -24.504887,7.5375643 - parent: 22565 - - uid: 23776 + rot: 1.5707963267948966 rad + pos: -123.5,-10.5 + parent: 2 + - uid: 9726 components: - type: Transform - pos: -23.567387,7.5375643 - parent: 22565 - - uid: 23777 + rot: 1.5707963267948966 rad + pos: -122.5,-10.5 + parent: 2 + - uid: 9727 components: - type: Transform - pos: -20.291004,7.4594393 - parent: 22565 - - uid: 23778 + rot: 1.5707963267948966 rad + pos: -121.5,-10.5 + parent: 2 + - uid: 9728 components: - type: Transform - pos: -19.474846,7.4933014 - parent: 22565 - - uid: 23779 + rot: 1.5707963267948966 rad + pos: -120.5,-10.5 + parent: 2 + - uid: 9729 components: - type: Transform - pos: -18.67797,7.5558014 - parent: 22565 - - uid: 23780 + rot: 1.5707963267948966 rad + pos: -119.5,-10.5 + parent: 2 + - uid: 9730 components: - type: Transform - pos: -5.2654724,7.5089264 - parent: 22565 - - uid: 23781 + rot: 1.5707963267948966 rad + pos: -117.5,-10.5 + parent: 2 + - uid: 9731 components: - type: Transform - pos: -4.4217224,7.4776764 - parent: 22565 - - uid: 23782 + rot: 1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - uid: 9732 components: - type: Transform - pos: -3.5467224,7.4933014 - parent: 22565 - - uid: 23783 + rot: 1.5707963267948966 rad + pos: -115.5,-10.5 + parent: 2 + - uid: 9733 components: - type: Transform - pos: -0.32033086,7.5089264 - parent: 22565 - - uid: 23784 + rot: 1.5707963267948966 rad + pos: -114.5,-10.5 + parent: 2 + - uid: 9734 components: - type: Transform - pos: 0.60154414,7.4620514 - parent: 22565 - - uid: 23785 + rot: 1.5707963267948966 rad + pos: -113.5,-10.5 + parent: 2 + - uid: 9735 components: - type: Transform - pos: 1.4609191,7.4308014 - parent: 22565 -- proto: ClothingBeltUtilityFilled - entities: - - uid: 168 + rot: 1.5707963267948966 rad + pos: -112.5,-10.5 + parent: 2 + - uid: 9736 components: - type: Transform - pos: 1.4933057,-29.171928 - parent: 89 - - uid: 265 + rot: -1.5707963267948966 rad + pos: -57.5,-6.5 + parent: 2 + - uid: 9737 components: - type: Transform - pos: -6.5,-38.5 - parent: 89 - - uid: 7074 + rot: -1.5707963267948966 rad + pos: -59.5,-6.5 + parent: 2 + - uid: 9738 components: - type: Transform - pos: -95.44649,17.646513 - parent: 89 -- proto: ClothingEyesBinoclardLenses - entities: - - uid: 13984 + rot: -1.5707963267948966 rad + pos: -60.5,-6.5 + parent: 2 + - uid: 9739 components: - type: Transform - pos: -75.56238,-5.1952434 - parent: 89 -- proto: ClothingEyesGlasses - entities: - - uid: 865 + rot: -1.5707963267948966 rad + pos: -61.5,-6.5 + parent: 2 + - uid: 9740 components: - type: Transform - pos: 19.43496,18.059008 - parent: 89 - - uid: 12580 + rot: -1.5707963267948966 rad + pos: -62.5,-6.5 + parent: 2 + - uid: 9741 components: - type: Transform - pos: 32.38131,20.658113 - parent: 89 - - uid: 12620 + rot: -1.5707963267948966 rad + pos: -63.5,-6.5 + parent: 2 + - uid: 9742 components: - type: Transform - pos: 32.334435,20.829988 - parent: 89 - - uid: 12626 + pos: -111.5,-9.5 + parent: 2 + - uid: 9743 components: - type: Transform - pos: 32.47506,20.486238 - parent: 89 - - uid: 14047 + pos: -111.5,-8.5 + parent: 2 + - uid: 9744 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesGlassesGarGiga - entities: - - uid: 8393 + pos: -111.5,-7.5 + parent: 2 + - uid: 9745 components: - - type: MetaData - desc: Интересной формы очки, серии Kamelot, что-бы это не значило. - name: причудливые очки серии Kamelot - type: Transform - pos: -41.48185,10.589271 - parent: 89 - - uid: 10882 + pos: -111.5,-6.5 + parent: 2 + - uid: 9746 components: - type: Transform - pos: -27.495356,28.748674 - parent: 89 - - uid: 16773 + pos: -111.5,-5.5 + parent: 2 + - uid: 9747 components: - type: Transform - pos: -44.306797,14.376387 - parent: 89 - - uid: 16774 + pos: -111.5,-4.5 + parent: 2 + - uid: 9748 components: - type: Transform - pos: -6.482778,40.52599 - parent: 89 -- proto: ClothingEyesGlassesJamjar - entities: - - uid: 25802 + pos: -111.5,-3.5 + parent: 2 + - uid: 9749 components: - type: Transform - pos: -73.79168,-1.4282905 - parent: 89 -- proto: ClothingEyesGlassesMeson - entities: - - uid: 25627 + pos: -111.5,-2.5 + parent: 2 + - uid: 9750 components: - type: Transform - parent: 21461 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25629 + rot: 1.5707963267948966 rad + pos: -110.5,-1.5 + parent: 2 + - uid: 9751 components: - type: Transform - parent: 21463 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25632 + rot: 1.5707963267948966 rad + pos: -109.5,-1.5 + parent: 2 + - uid: 9752 components: - type: Transform - parent: 21465 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingEyesGlassesOutlawGlasses - entities: - - uid: 10214 + rot: -1.5707963267948966 rad + pos: -65.5,-10.5 + parent: 2 + - uid: 9753 components: - type: Transform - pos: -79.18537,-1.440521 - parent: 89 -- proto: ClothingEyesGlassesSecurity - entities: - - uid: 9885 + rot: -1.5707963267948966 rad + pos: -66.5,-10.5 + parent: 2 + - uid: 9754 components: - type: Transform - pos: 21.488688,-3.148366 - parent: 89 -- proto: ClothingEyesHudBeer - entities: - - uid: 14228 + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - uid: 9755 components: - type: Transform - pos: 21.488688,-3.413991 - parent: 89 - - uid: 17911 + rot: 3.141592653589793 rad + pos: -64.5,-9.5 + parent: 2 + - uid: 9756 components: - type: Transform - pos: 21.473063,-3.273366 - parent: 89 -- proto: ClothingEyesHudDiagnostic - entities: - - uid: 21285 + rot: 3.141592653589793 rad + pos: -64.5,-8.5 + parent: 2 + - uid: 9757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.756002,-21.47323 - parent: 89 - - uid: 21302 + rot: 3.141592653589793 rad + pos: -64.5,-7.5 + parent: 2 + - uid: 9758 components: - type: Transform - pos: -104.4267,9.473066 - parent: 89 -- proto: ClothingEyesHudMedical - entities: - - uid: 21298 + rot: 3.141592653589793 rad + pos: -64.5,-5.5 + parent: 2 + - uid: 9759 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.093824,11.569571 - parent: 89 - - uid: 21299 + rot: 3.141592653589793 rad + pos: -64.5,-4.5 + parent: 2 + - uid: 9760 components: - type: Transform - pos: 16.625074,12.069571 - parent: 89 - - uid: 21300 + rot: 3.141592653589793 rad + pos: -64.5,-3.5 + parent: 2 + - uid: 9761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.0782,11.475821 - parent: 89 - - uid: 21301 + rot: 3.141592653589793 rad + pos: -64.5,-2.5 + parent: 2 + - uid: 9762 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.468824,12.116446 - parent: 89 -- proto: ClothingEyesHudSecurity - entities: - - uid: 7096 + pos: -64.5,-1.5 + parent: 2 + - uid: 9763 components: - type: Transform - pos: 26.980837,-0.48639452 - parent: 89 - - uid: 7121 + pos: -108.5,-0.5 + parent: 2 + - uid: 9764 components: - type: Transform - pos: 26.996462,-0.31451952 - parent: 89 - - uid: 7328 + pos: -108.5,0.5 + parent: 2 + - uid: 9765 components: - type: Transform - pos: 28.012087,-0.5020195 - parent: 89 - - uid: 7329 + pos: -108.5,1.5 + parent: 2 + - uid: 9766 components: - type: Transform - pos: 28.012087,-0.31451952 - parent: 89 -- proto: ClothingHandsGlovesAerostatic - entities: - - uid: 10380 + pos: -108.5,2.5 + parent: 2 + - uid: 9767 components: - type: Transform - pos: -19.437286,27.58992 - parent: 89 -- proto: ClothingHandsGlovesBoxingBlue - entities: - - uid: 7449 + pos: -108.5,3.5 + parent: 2 + - uid: 9768 components: - type: Transform - pos: -1.468462,46.55005 - parent: 89 - - uid: 14720 + rot: -1.5707963267948966 rad + pos: -107.5,4.5 + parent: 2 + - uid: 9769 components: - type: Transform - pos: 19.002268,29.716091 - parent: 89 -- proto: ClothingHandsGlovesBoxingRed - entities: - - uid: 13 + rot: -1.5707963267948966 rad + pos: -106.5,4.5 + parent: 2 + - uid: 9770 components: - type: Transform - pos: 17.674143,30.887966 - parent: 89 - - uid: 7749 + rot: -1.5707963267948966 rad + pos: -105.5,4.5 + parent: 2 + - uid: 9771 components: - type: Transform - pos: -5.452837,46.534424 - parent: 89 -- proto: ClothingHandsGlovesColorBlue - entities: - - uid: 477 + rot: -1.5707963267948966 rad + pos: -104.5,4.5 + parent: 2 + - uid: 9772 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 14979 + rot: -1.5707963267948966 rad + pos: -103.5,4.5 + parent: 2 + - uid: 9773 components: - type: Transform - pos: -20.591122,23.817823 - parent: 89 -- proto: ClothingHandsGlovesColorGray - entities: - - uid: 14960 + rot: -1.5707963267948966 rad + pos: -101.5,4.5 + parent: 2 + - uid: 9774 components: - type: Transform - pos: 20.510513,7.296205 - parent: 89 -- proto: ClothingHandsGlovesColorWhite - entities: - - uid: 15209 + rot: -1.5707963267948966 rad + pos: -100.5,4.5 + parent: 2 + - uid: 9775 components: - type: Transform - pos: 13.742942,5.514955 - parent: 89 -- proto: ClothingHandsGlovesColorYellow - entities: - - uid: 1129 + rot: -1.5707963267948966 rad + pos: -99.5,4.5 + parent: 2 + - uid: 9776 components: - type: Transform - pos: -98.397224,9.416823 - parent: 89 - - uid: 7180 + rot: 3.141592653589793 rad + pos: -98.5,5.5 + parent: 2 + - uid: 9777 components: - type: Transform - pos: -98.41285,9.729323 - parent: 89 - - uid: 14627 + rot: 3.141592653589793 rad + pos: -98.5,6.5 + parent: 2 + - uid: 9778 components: - type: Transform - pos: -107.46353,-19.559334 - parent: 89 - - uid: 16271 + pos: -97.5,8.5 + parent: 2 + - uid: 9779 components: - type: Transform - pos: -107.47916,-19.371834 - parent: 89 - - uid: 17150 + rot: -1.5707963267948966 rad + pos: -63.5,-0.5 + parent: 2 + - uid: 9780 components: - type: Transform - pos: -107.46353,-19.246834 - parent: 89 - - uid: 17429 + rot: -1.5707963267948966 rad + pos: -62.5,-0.5 + parent: 2 + - uid: 9781 components: - type: Transform - parent: 18178 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17658 + rot: -1.5707963267948966 rad + pos: -61.5,-0.5 + parent: 2 + - uid: 9782 components: - type: Transform - pos: 3.3797808,36.4109 - parent: 89 - - uid: 23216 + rot: -1.5707963267948966 rad + pos: -60.5,-0.5 + parent: 2 + - uid: 9783 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25624 + rot: -1.5707963267948966 rad + pos: -59.5,-0.5 + parent: 2 + - uid: 9784 components: - type: Transform - parent: 18179 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25626 + rot: -1.5707963267948966 rad + pos: -58.5,-0.5 + parent: 2 + - uid: 9785 components: - type: Transform - parent: 18180 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25628 + rot: -1.5707963267948966 rad + pos: -57.5,-0.5 + parent: 2 + - uid: 9786 components: - type: Transform - parent: 21461 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25630 + rot: 3.141592653589793 rad + pos: -56.5,0.5 + parent: 2 + - uid: 9787 components: - type: Transform - parent: 21463 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25631 + rot: 3.141592653589793 rad + pos: -56.5,1.5 + parent: 2 + - uid: 9788 components: - type: Transform - parent: 21465 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHandsGlovesColorYellowBudget - entities: - - uid: 7088 + rot: 3.141592653589793 rad + pos: -56.5,2.5 + parent: 2 + - uid: 9789 components: - type: Transform - pos: -90.483246,12.677497 - parent: 89 - - uid: 14598 + rot: 3.141592653589793 rad + pos: -56.5,3.5 + parent: 2 + - uid: 9790 components: - type: Transform - pos: -91.46152,23.723183 - parent: 89 - - uid: 14747 + rot: 1.5707963267948966 rad + pos: 16.5,7.5 + parent: 2 + - uid: 9791 components: - type: Transform - pos: 8.534033,-16.600626 - parent: 89 - - uid: 23786 + rot: 1.5707963267948966 rad + pos: 15.5,7.5 + parent: 2 + - uid: 9792 components: - type: Transform - pos: 5.594854,1.5872421 - parent: 22565 - - uid: 23787 + pos: -11.5,6.5 + parent: 2 + - uid: 9793 components: - type: Transform - pos: 6.297979,1.5247421 - parent: 22565 - - uid: 23788 + pos: -11.5,5.5 + parent: 2 + - uid: 9794 components: - type: Transform - pos: 7.032354,1.5403671 - parent: 22565 - - uid: 23789 + pos: -11.5,4.5 + parent: 2 + - uid: 9795 components: - type: Transform - pos: -31.132912,1.5716171 - parent: 22565 - - uid: 23790 + pos: 19.5,5.5 + parent: 2 + - uid: 9796 components: - type: Transform - pos: -30.320412,1.5247421 - parent: 22565 - - uid: 23791 + pos: -11.5,3.5 + parent: 2 + - uid: 9797 components: - type: Transform - pos: -29.617287,1.5247421 - parent: 22565 -- proto: ClothingHandsGlovesLatex - entities: - - uid: 14046 + pos: -108.5,-2.5 + parent: 2 + - uid: 9798 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17685 + pos: -57.5,23.5 + parent: 2 + - uid: 9799 components: - type: Transform - pos: 18.379253,23.490591 - parent: 89 -- proto: ClothingHandsGlovesNitrile - entities: - - uid: 12589 + pos: -108.5,-4.5 + parent: 2 + - uid: 9800 components: - type: Transform - pos: 9.748317,42.759 - parent: 89 - - uid: 15409 + pos: -108.5,-5.5 + parent: 2 + - uid: 9801 components: - type: Transform - pos: 9.576442,42.66525 - parent: 89 - - uid: 15775 + pos: -108.5,-6.5 + parent: 2 + - uid: 9802 components: - type: Transform - pos: 9.46803,9.090267 - parent: 89 - - uid: 21599 + pos: -108.5,-7.5 + parent: 2 + - uid: 9803 components: - type: Transform - pos: -9.527635,20.493486 - parent: 89 -- proto: ClothingHeadCapCentcomBlack - entities: - - uid: 3372 + pos: -108.5,-8.5 + parent: 2 + - uid: 9804 components: - - type: MetaData - name: старая фуражка - type: Transform - pos: 44.53827,-6.263979 - parent: 89 -- proto: ClothingHeadHatBowlerHat - entities: - - uid: 11159 + pos: -108.5,-9.5 + parent: 2 + - uid: 9805 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingHeadHatBunny - entities: - - uid: 17664 + pos: -108.5,-10.5 + parent: 2 + - uid: 9806 components: - type: Transform - pos: 13.368769,5.764955 - parent: 89 -- proto: ClothingHeadHatCargosoftFlipped - entities: - - uid: 5465 + pos: -108.5,-11.5 + parent: 2 + - uid: 9807 components: - type: Transform - pos: -61.638783,-4.495265 - parent: 89 -- proto: ClothingHeadHatChef - entities: - - uid: 20298 + pos: -108.5,-12.5 + parent: 2 + - uid: 9808 components: - type: Transform - pos: 47.398846,-24.403196 - parent: 89 - - uid: 20382 + pos: -108.5,-13.5 + parent: 2 + - uid: 9809 components: - type: Transform - pos: 47.72697,-24.637571 - parent: 89 -- proto: ClothingHeadHatFedoraGrey - entities: - - uid: 11158 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 2 + - uid: 9810 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingHeadHatFlowerCrown - entities: - - uid: 21135 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 + - uid: 9811 components: - type: Transform - pos: 39.507122,37.768234 - parent: 89 -- proto: ClothingHeadHatHardhatArmored - entities: - - uid: 21154 + rot: 3.141592653589793 rad + pos: 10.5,0.5 + parent: 2 + - uid: 9812 components: - type: Transform - pos: -25.51856,29.62787 - parent: 89 -- proto: ClothingHeadHatHardhatOrange - entities: - - uid: 23792 + rot: -1.5707963267948966 rad + pos: -63.5,17.5 + parent: 2 + - uid: 9813 components: - type: Transform - pos: -30.721146,1.5559921 - parent: 22565 - - uid: 23793 + rot: -1.5707963267948966 rad + pos: -57.5,4.5 + parent: 2 + - uid: 9814 components: - type: Transform - pos: -30.143023,1.5403671 - parent: 22565 - - uid: 23794 + rot: -1.5707963267948966 rad + pos: -58.5,4.5 + parent: 2 + - uid: 9815 components: - type: Transform - pos: -29.486773,1.5247421 - parent: 22565 - - uid: 23795 + rot: -1.5707963267948966 rad + pos: -59.5,4.5 + parent: 2 + - uid: 9816 components: - type: Transform - pos: 5.516729,1.5247421 - parent: 22565 - - uid: 23796 + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - uid: 9817 components: - type: Transform - pos: 6.141729,1.5247421 - parent: 22565 - - uid: 23797 + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - uid: 9818 components: - type: Transform - pos: 6.735479,1.5091171 - parent: 22565 -- proto: ClothingHeadHatHoodBioGeneral - entities: - - uid: 15214 + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 + - uid: 9819 components: - type: Transform - pos: 27.533932,31.764072 - parent: 89 -- proto: ClothingHeadHatHoodGoliathCloak - entities: - - uid: 14890 + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 + - uid: 9820 components: - type: Transform - pos: -68.53844,-19.214548 - parent: 89 -- proto: ClothingHeadHatPaper - entities: - - uid: 3252 + rot: 1.5707963267948966 rad + pos: 23.5,2.5 + parent: 2 + - uid: 9821 components: - type: Transform - pos: -27.262207,24.532402 - parent: 89 - - uid: 3270 + rot: 3.141592653589793 rad + pos: -73.5,9.5 + parent: 2 + - uid: 9822 components: - type: Transform - pos: -27.652832,24.532402 - parent: 89 -- proto: ClothingHeadHatParamedicsoft - entities: - - uid: 14059 + rot: 1.5707963267948966 rad + pos: 20.5,2.5 + parent: 2 + - uid: 9823 components: - type: Transform - pos: 17.990076,23.53068 - parent: 89 -- proto: ClothingHeadHatPurplesoftFlipped - entities: - - uid: 18315 + rot: 1.5707963267948966 rad + pos: 18.5,2.5 + parent: 2 + - uid: 9824 components: - type: Transform - pos: -66.46791,1.4331145 - parent: 89 -- proto: ClothingHeadHatQMsoft - entities: - - uid: 5841 + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 + - uid: 9825 components: - type: Transform - pos: -71.635056,-17.341076 - parent: 89 -- proto: ClothingHeadHatSurgcapBlue - entities: - - uid: 21598 + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 + - uid: 9826 components: - type: Transform - pos: -9.563451,20.796513 - parent: 89 -- proto: ClothingHeadHatSyndie - entities: - - uid: 20923 + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 + - uid: 9827 components: - type: Transform - pos: -112.51237,-23.449892 - parent: 89 -- proto: ClothingHeadHatTophat - entities: - - uid: 5744 + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 + - uid: 9828 components: - type: Transform - pos: -26.41045,-3.4169827 - parent: 89 -- proto: ClothingHeadHatWelding - entities: - - uid: 4365 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 + - uid: 9829 components: - type: Transform - pos: -3.5417187,-2.3014355 - parent: 89 - - uid: 17413 + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 + - uid: 9830 components: - type: Transform - pos: -41.526688,-11.524264 - parent: 89 -- proto: ClothingHeadHatWizard - entities: - - uid: 10241 + rot: 1.5707963267948966 rad + pos: 11.5,2.5 + parent: 2 + - uid: 9831 components: - type: Transform - pos: -34.465157,24.600704 - parent: 89 -- proto: ClothingHeadHelmetEVALarge - entities: - - uid: 22421 + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 2 + - uid: 9832 components: - type: Transform - pos: 54.324352,-13.24983 - parent: 89 - - uid: 23179 + rot: -1.5707963267948966 rad + pos: -62.5,4.5 + parent: 2 + - uid: 9833 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23187 + rot: -1.5707963267948966 rad + pos: -63.5,4.5 + parent: 2 + - uid: 9834 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23194 + rot: -1.5707963267948966 rad + pos: -64.5,4.5 + parent: 2 + - uid: 9835 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23201 + rot: 3.141592653589793 rad + pos: -108.5,5.5 + parent: 2 + - uid: 9836 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23209 + rot: 3.141592653589793 rad + pos: -108.5,6.5 + parent: 2 + - uid: 9837 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,7.5 + parent: 2 + - uid: 9838 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,8.5 + parent: 2 + - uid: 9839 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,9.5 + parent: 2 + - uid: 9840 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,10.5 + parent: 2 + - uid: 9841 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -108.5,11.5 + parent: 2 + - uid: 9842 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23217 + rot: 3.141592653589793 rad + pos: -108.5,12.5 + parent: 2 + - uid: 9843 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadHelmetRiot - entities: - - uid: 1478 + rot: 3.141592653589793 rad + pos: -108.5,13.5 + parent: 2 + - uid: 9844 components: - type: Transform - pos: 44.303894,-6.357729 - parent: 89 - - uid: 1487 + rot: 1.5707963267948966 rad + pos: -107.5,14.5 + parent: 2 + - uid: 9845 components: - type: Transform - pos: 44.772644,-6.342104 - parent: 89 - - uid: 1641 + rot: 1.5707963267948966 rad + pos: -106.5,14.5 + parent: 2 + - uid: 9846 components: - type: Transform - pos: 44.75702,-6.342104 - parent: 89 - - uid: 2255 + rot: 1.5707963267948966 rad + pos: -105.5,14.5 + parent: 2 + - uid: 9847 components: - type: Transform - pos: 40.68397,-2.3436618 - parent: 89 - - uid: 7590 + rot: 3.141592653589793 rad + pos: -65.5,5.5 + parent: 2 + - uid: 9848 components: - type: Transform - pos: 40.40272,-2.3436618 - parent: 89 - - uid: 22647 + rot: 3.141592653589793 rad + pos: -65.5,6.5 + parent: 2 + - uid: 9849 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingHeadPyjamaSyndicateRed - entities: - - uid: 20950 + rot: 3.141592653589793 rad + pos: -65.5,7.5 + parent: 2 + - uid: 9850 components: - type: Transform - pos: -87.24428,27.581451 - parent: 89 -- proto: ClothingHeadRastaHat - entities: - - uid: 16895 + rot: 3.141592653589793 rad + pos: -65.5,8.5 + parent: 2 + - uid: 9851 components: - type: Transform - pos: -5.2798023,-9.619751 - parent: 89 -- proto: ClothingMaskBreath - entities: - - uid: 9597 + rot: -1.5707963267948966 rad + pos: -66.5,9.5 + parent: 2 + - uid: 9852 components: - type: Transform - pos: -93.74811,-9.168023 - parent: 89 -- proto: ClothingMaskBreathMedical - entities: - - uid: 16513 + rot: -1.5707963267948966 rad + pos: -67.5,9.5 + parent: 2 + - uid: 9853 components: - type: Transform - pos: -8.481108,17.56099 - parent: 89 - - uid: 19593 + rot: 1.5707963267948966 rad + pos: -96.5,7.5 + parent: 2 + - uid: 9854 components: - type: Transform - pos: -8.485481,17.643927 - parent: 89 -- proto: ClothingMaskClown - entities: - - uid: 7448 + rot: 1.5707963267948966 rad + pos: -95.5,7.5 + parent: 2 + - uid: 9855 components: - type: Transform - pos: -35.60017,-3.048325 - parent: 89 -- proto: ClothingMaskGas - entities: - - uid: 16468 + rot: 1.5707963267948966 rad + pos: -94.5,7.5 + parent: 2 + - uid: 9856 components: - type: Transform - pos: -99.463165,2.5775177 - parent: 89 - - uid: 16761 + rot: -1.5707963267948966 rad + pos: -55.5,13.5 + parent: 2 + - uid: 9857 components: - type: Transform - pos: -56.4669,12.53417 - parent: 89 -- proto: ClothingMaskGasAtmos - entities: - - uid: 2572 + rot: -1.5707963267948966 rad + pos: -56.5,13.5 + parent: 2 + - uid: 9858 components: - type: Transform - rot: 43.98229715025713 rad - pos: -87.941956,-13.155476 - parent: 89 - - uid: 2693 + rot: -1.5707963267948966 rad + pos: -57.5,13.5 + parent: 2 + - uid: 9859 components: - type: Transform - rot: 43.98229715025713 rad - pos: -87.93318,-13.484369 - parent: 89 - - uid: 3264 + rot: -1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 + - uid: 9860 components: - type: Transform - pos: -103.42277,9.610933 - parent: 89 - - uid: 3278 + rot: -1.5707963267948966 rad + pos: -59.5,13.5 + parent: 2 + - uid: 9861 components: - type: Transform - pos: -108.07291,-19.486652 - parent: 89 - - uid: 8206 + rot: -1.5707963267948966 rad + pos: -60.5,13.5 + parent: 2 + - uid: 9862 components: - type: Transform - pos: 0.5000324,27.651428 - parent: 89 -- proto: ClothingMaskGasCentcom - entities: - - uid: 20870 + rot: -1.5707963267948966 rad + pos: -61.5,13.5 + parent: 2 + - uid: 9863 components: - type: Transform - pos: -27.471012,33.45121 - parent: 89 -- proto: ClothingMaskGasMerc - entities: - - uid: 20395 + rot: -1.5707963267948966 rad + pos: -62.5,13.5 + parent: 2 + - uid: 9864 components: - type: Transform - pos: -139.43718,-24.46989 - parent: 89 -- proto: ClothingMaskSterile - entities: - - uid: 20899 + rot: -1.5707963267948966 rad + pos: -63.5,13.5 + parent: 2 + - uid: 9865 components: - type: Transform - pos: -8.493736,13.698058 - parent: 89 - - uid: 21584 + rot: -1.5707963267948966 rad + pos: -64.5,13.5 + parent: 2 + - uid: 9866 components: - type: Transform - pos: -8.493736,13.619933 - parent: 89 - - uid: 21585 + rot: -1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 + - uid: 9867 components: - type: Transform - pos: -8.509361,13.541808 - parent: 89 - - uid: 21586 + rot: -1.5707963267948966 rad + pos: -66.5,13.5 + parent: 2 + - uid: 9868 components: - type: Transform - pos: -8.458017,13.747701 - parent: 89 - - uid: 21587 + rot: -1.5707963267948966 rad + pos: -67.5,13.5 + parent: 2 + - uid: 9869 components: - type: Transform - pos: -8.504817,13.653951 - parent: 89 - - uid: 21588 + pos: -68.5,12.5 + parent: 2 + - uid: 9870 components: - type: Transform - pos: -8.504817,13.575826 - parent: 89 -- proto: ClothingNeckCloakGoliathCloak - entities: - - uid: 19822 + pos: -68.5,11.5 + parent: 2 + - uid: 9871 components: - type: Transform - pos: -68.51435,-19.383087 - parent: 89 -- proto: ClothingNeckCloakMiner - entities: - - uid: 22433 + pos: -68.5,10.5 + parent: 2 + - uid: 9872 components: - type: Transform - pos: 19.533554,-18.54226 - parent: 89 -- proto: ClothingNeckHeadphones - entities: - - uid: 5646 + rot: 3.141592653589793 rad + pos: -48.5,2.5 + parent: 2 + - uid: 9873 components: - type: Transform - pos: 37.443554,-12.360011 - parent: 89 - - uid: 5647 + rot: 1.5707963267948966 rad + pos: 20.5,8.5 + parent: 2 + - uid: 9874 components: - type: Transform - pos: 37.506054,-12.610011 - parent: 89 -- proto: ClothingNeckHorrific - entities: - - uid: 10312 + pos: 9.5,-11.5 + parent: 2 + - uid: 9875 components: - type: Transform - pos: -39.61603,28.938139 - parent: 89 - - uid: 11404 + rot: 3.141592653589793 rad + pos: -73.5,10.5 + parent: 2 + - uid: 9876 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingNeckMantleCap - entities: - - uid: 862 + rot: 3.141592653589793 rad + pos: -73.5,11.5 + parent: 2 + - uid: 9877 components: - type: Transform - pos: 47.81577,10.405572 - parent: 89 -- proto: ClothingNeckMantleQM - entities: - - uid: 5840 + rot: 3.141592653589793 rad + pos: -73.5,12.5 + parent: 2 + - uid: 9878 components: - type: Transform - pos: -72.47551,-17.448103 - parent: 89 -- proto: ClothingNeckMantleRD - entities: - - uid: 167 + rot: 3.141592653589793 rad + pos: -73.5,13.5 + parent: 2 + - uid: 9879 components: - type: Transform - pos: 4.5,-27.5 - parent: 89 -- proto: ClothingNeckScarfStripedZebra - entities: - - uid: 7456 + rot: 3.141592653589793 rad + pos: -73.5,14.5 + parent: 2 + - uid: 9880 components: - type: Transform - pos: -35.64279,-9.370201 - parent: 89 -- proto: ClothingNeckStethoscope - entities: - - uid: 12579 + rot: 3.141592653589793 rad + pos: -73.5,15.5 + parent: 2 + - uid: 9881 components: - type: Transform - pos: 32.963474,20.751863 - parent: 89 - - uid: 12618 + rot: 3.141592653589793 rad + pos: -73.5,16.5 + parent: 2 + - uid: 9882 components: - type: Transform - pos: 33.025974,20.611238 - parent: 89 -- proto: ClothingNeckSyndicakePin - entities: - - uid: 9339 + rot: -1.5707963267948966 rad + pos: -92.5,13.5 + parent: 2 + - uid: 9883 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.77427,27.411627 - parent: 89 -- proto: ClothingNeckTieDet - entities: - - uid: 11087 + pos: -72.5,17.5 + parent: 2 + - uid: 9884 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False - - uid: 15553 + rot: 1.5707963267948966 rad + pos: -71.5,17.5 + parent: 2 + - uid: 9885 components: - type: Transform - pos: 8.465353,27.48247 - parent: 89 -- proto: ClothingNeckTieRed - entities: - - uid: 11090 + rot: 1.5707963267948966 rad + pos: -70.5,17.5 + parent: 2 + - uid: 9886 components: - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingNeckTieSci - entities: - - uid: 11378 + rot: 1.5707963267948966 rad + pos: -69.5,17.5 + parent: 2 + - uid: 9887 components: - - type: MetaData - name: фиолетовый галстук - type: Transform - parent: 11076 - - type: Physics - canCollide: False -- proto: ClothingOuterAerostaticBomberJacket - entities: - - uid: 10382 + rot: 1.5707963267948966 rad + pos: -68.5,17.5 + parent: 2 + - uid: 9888 components: - type: Transform - pos: -19.437286,28.49617 - parent: 89 -- proto: ClothingOuterApron - entities: - - uid: 21596 + rot: 1.5707963267948966 rad + pos: -67.5,17.5 + parent: 2 + - uid: 9889 components: - type: Transform - pos: -6.622481,35.579773 - parent: 89 -- proto: ClothingOuterApronChef - entities: - - uid: 20358 + rot: 1.5707963267948966 rad + pos: -66.5,17.5 + parent: 2 + - uid: 9890 components: - type: Transform - pos: 48.38322,-24.418821 - parent: 89 - - uid: 20385 + rot: 1.5707963267948966 rad + pos: -65.5,17.5 + parent: 2 + - uid: 9891 components: - type: Transform - pos: 48.680096,-24.606321 - parent: 89 -- proto: ClothingOuterArmorBulletproof - entities: - - uid: 1486 + rot: 1.5707963267948966 rad + pos: -64.5,17.5 + parent: 2 + - uid: 9892 components: - type: Transform - pos: 44.78827,-6.592104 - parent: 89 - - uid: 1638 + rot: 3.141592653589793 rad + pos: -93.5,12.5 + parent: 2 + - uid: 9893 components: - type: Transform - pos: 44.53827,-6.607729 - parent: 89 - - uid: 2769 + rot: 3.141592653589793 rad + pos: -93.5,11.5 + parent: 2 + - uid: 9894 components: - type: Transform - pos: 44.210144,-6.638979 - parent: 89 -- proto: ClothingOuterArmorReflective - entities: - - uid: 7670 + rot: 3.141592653589793 rad + pos: -93.5,10.5 + parent: 2 + - uid: 9895 components: - type: Transform - pos: 40.526085,-2.5274131 - parent: 89 -- proto: ClothingOuterArmorRiot - entities: - - uid: 1131 + rot: 3.141592653589793 rad + pos: -93.5,9.5 + parent: 2 + - uid: 9896 components: - type: Transform - pos: 40.34022,-2.5467868 - parent: 89 - - uid: 1914 + rot: 3.141592653589793 rad + pos: -93.5,8.5 + parent: 2 + - uid: 9897 components: - type: Transform - pos: 40.730846,-2.5624118 - parent: 89 - - uid: 22648 + rot: 1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 + - uid: 9898 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterBioGeneral - entities: - - uid: 15206 + rot: 3.141592653589793 rad + pos: -93.5,6.5 + parent: 2 + - uid: 9899 components: - type: Transform - pos: 27.533932,31.373447 - parent: 89 -- proto: ClothingOuterCoatHoSGreatcoat - entities: - - uid: 2768 + rot: 3.141592653589793 rad + pos: -93.5,5.5 + parent: 2 + - uid: 9900 components: - type: Transform - pos: 44.540276,-6.513979 - parent: 89 -- proto: ClothingOuterCoatLab - entities: - - uid: 14043 + rot: 3.141592653589793 rad + pos: -93.5,4.5 + parent: 2 + - uid: 9901 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterCoatParamedicWB - entities: - - uid: 14072 + rot: 3.141592653589793 rad + pos: -93.5,3.5 + parent: 2 + - uid: 9902 components: - type: Transform - pos: 17.990076,23.68693 - parent: 89 -- proto: ClothingOuterDiscoAssBlazer - entities: - - uid: 10313 + rot: 3.141592653589793 rad + pos: -93.5,2.5 + parent: 2 + - uid: 9903 components: - type: Transform - pos: -39.54277,32.313835 - parent: 89 -- proto: ClothingOuterHardsuitEVAPrisoner - entities: - - uid: 23180 + rot: 3.141592653589793 rad + pos: -93.5,1.5 + parent: 2 + - uid: 9904 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23188 + rot: 3.141592653589793 rad + pos: -93.5,0.5 + parent: 2 + - uid: 9905 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23195 + rot: 3.141592653589793 rad + pos: -93.5,-0.5 + parent: 2 + - uid: 9906 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23202 + rot: 1.5707963267948966 rad + pos: -30.5,-8.5 + parent: 2 + - uid: 9907 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23210 + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 9908 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23218 + rot: 3.141592653589793 rad + pos: 12.5,-7.5 + parent: 2 + - uid: 9909 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSecurity - entities: - - uid: 22649 + rot: 1.5707963267948966 rad + pos: -64.5,24.5 + parent: 2 + - uid: 9910 components: - type: Transform - parent: 22641 - - type: GroupExamine - group: - - hoverMessage: "" - contextText: verb-examine-group-other - icon: /Textures/Interface/examine-star.png - components: - - Armor - - ClothingSpeedModifier - entries: - - message: Понижает вашу скорость на [color=yellow]25%[/color]. - priority: 0 - component: ClothingSpeedModifier - - message: >- - Обеспечивает следующую защиту: - - - [color=yellow]Ударный[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Режущий[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Колющий[/color] урон снижается на [color=lightblue]40%[/color]. - - - [color=yellow]Кислотный[/color] урон снижается на [color=lightblue]30%[/color]. - - - [color=orange]Взрывной[/color] урон снижается на [color=lightblue]60%[/color]. - priority: 0 - component: Armor - title: null - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingOuterHardsuitSyndicate - entities: - - uid: 22014 + rot: 1.5707963267948966 rad + pos: -63.5,24.5 + parent: 2 + - uid: 9911 components: - type: Transform - pos: 54.511852,-13.46858 - parent: 89 -- proto: ClothingOuterHardsuitVoidParamed - entities: - - uid: 15052 + rot: 1.5707963267948966 rad + pos: -62.5,24.5 + parent: 2 + - uid: 9912 components: - type: Transform - pos: 22.417797,35.661964 - parent: 89 -- proto: ClothingOuterStraightjacket - entities: - - uid: 11101 + rot: 1.5707963267948966 rad + pos: -61.5,24.5 + parent: 2 + - uid: 9913 components: - type: Transform - pos: 21.501547,31.709066 - parent: 89 - - uid: 11224 + rot: 1.5707963267948966 rad + pos: -60.5,24.5 + parent: 2 + - uid: 9914 components: - type: Transform - parent: 11201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11302 + rot: 1.5707963267948966 rad + pos: -59.5,24.5 + parent: 2 + - uid: 9915 components: - type: Transform - parent: 11201 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11308 + rot: 1.5707963267948966 rad + pos: -58.5,24.5 + parent: 2 + - uid: 9916 components: - type: Transform - parent: 11304 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11310 + pos: -57.5,22.5 + parent: 2 + - uid: 9917 components: - type: Transform - parent: 11304 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15238 + pos: -57.5,21.5 + parent: 2 + - uid: 9918 components: - type: Transform - pos: 27.752682,31.732822 - parent: 89 -- proto: ClothingOuterWinterSyndieCapArmored - entities: - - uid: 9237 + pos: -57.5,20.5 + parent: 2 + - uid: 9919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.45478,27.080427 - parent: 89 -- proto: ClothingOuterWizard - entities: - - uid: 10240 + pos: -57.5,19.5 + parent: 2 + - uid: 9920 components: - type: Transform - pos: -34.433907,24.100704 - parent: 89 -- proto: ClothingShoesAerostatic - entities: - - uid: 10381 + pos: -57.5,18.5 + parent: 2 + - uid: 9921 components: - type: Transform - pos: -19.421661,27.93367 - parent: 89 -- proto: ClothingShoesBling - entities: - - uid: 2143 + rot: -1.5707963267948966 rad + pos: -106.5,-3.5 + parent: 2 + - uid: 9922 components: - type: Transform - pos: 49.539215,-5.536044 - parent: 89 -- proto: ClothingShoesBootsCombatFilled - entities: - - uid: 23798 + rot: -1.5707963267948966 rad + pos: -107.5,-3.5 + parent: 2 + - uid: 9923 components: - type: Transform - pos: -15.45606,-2.582761 - parent: 22565 - - uid: 25636 + rot: -1.5707963267948966 rad + pos: -58.5,17.5 + parent: 2 + - uid: 9924 components: - type: Transform - pos: -114.540245,20.574074 - parent: 89 -- proto: ClothingShoesBootsMag - entities: - - uid: 2265 + rot: -1.5707963267948966 rad + pos: -59.5,17.5 + parent: 2 + - uid: 9925 components: - type: Transform - pos: -109.55728,-19.434334 - parent: 89 - - uid: 2342 + rot: -1.5707963267948966 rad + pos: -60.5,17.5 + parent: 2 + - uid: 9926 components: - type: Transform - pos: -109.43228,-19.262459 - parent: 89 - - uid: 2346 + rot: -1.5707963267948966 rad + pos: -61.5,17.5 + parent: 2 + - uid: 9927 components: - type: Transform - parent: 7132 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2352 + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - uid: 9928 components: - type: Transform - parent: 7133 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2357 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 2 + - uid: 9929 components: - type: Transform - parent: 2332 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2359 + rot: -1.5707963267948966 rad + pos: -47.5,14.5 + parent: 2 + - uid: 9930 components: - type: Transform - parent: 7131 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2519 + pos: -48.5,15.5 + parent: 2 + - uid: 9931 components: - type: Transform - pos: -109.24478,-19.559334 - parent: 89 - - uid: 7130 + pos: -48.5,16.5 + parent: 2 + - uid: 9932 components: - type: Transform - parent: 7129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 17969 + pos: -14.5,8.5 + parent: 2 + - uid: 9933 components: - type: Transform - pos: 24.469347,-18.35476 - parent: 89 - - type: Magboots - toggleActionEntity: 21553 - - type: ActionsContainer - - type: ContainerContainer - containers: - actions: !type:Container - ents: - - 21553 - - uid: 25622 + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 + - uid: 9934 components: - type: Transform - parent: 18178 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25623 + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - uid: 9935 components: - type: Transform - parent: 18179 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 25625 + rot: 1.5707963267948966 rad + pos: -92.5,-1.5 + parent: 2 + - uid: 9936 components: - type: Transform - parent: 18180 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingShoesChameleonNoSlips - entities: - - uid: 21137 + rot: 1.5707963267948966 rad + pos: -91.5,-1.5 + parent: 2 + - uid: 9937 components: - type: Transform - pos: -102.50028,27.336597 - parent: 89 -- proto: ClothingShoesChef - entities: - - uid: 4006 + rot: 1.5707963267948966 rad + pos: -90.5,-1.5 + parent: 2 + - uid: 9938 components: - type: Transform - pos: -14.475378,-5.505477 - parent: 89 -- proto: ClothingShoesClown - entities: - - uid: 4254 + rot: 1.5707963267948966 rad + pos: -89.5,-1.5 + parent: 2 + - uid: 9939 components: - type: Transform - pos: -35.56892,-3.4077 - parent: 89 -- proto: ClothingShoesGreenLizardskin - entities: - - uid: 10311 + pos: -0.5,-3.5 + parent: 2 + - uid: 9940 components: - type: Transform - pos: -42.542587,28.46403 - parent: 89 -- proto: ClothingShoesLeather - entities: - - uid: 10259 + pos: -88.5,-0.5 + parent: 2 + - uid: 9941 components: - type: Transform - pos: -72.94503,-6.821913 - parent: 89 - - uid: 14045 + pos: -88.5,0.5 + parent: 2 + - uid: 9942 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21103 + pos: -88.5,1.5 + parent: 2 + - uid: 9943 components: - type: Transform - pos: 47.008595,14.970873 - parent: 89 -- proto: ClothingShoesSlippers - entities: - - uid: 20860 + pos: -88.5,2.5 + parent: 2 + - uid: 9944 components: - type: Transform - pos: 41.338043,14.397523 - parent: 89 -- proto: ClothingShoesWizard - entities: - - uid: 10239 + pos: -88.5,3.5 + parent: 2 + - uid: 9945 components: - type: Transform - pos: -34.48078,23.52258 - parent: 89 -- proto: ClothingUniformJumpskirtDetective - entities: - - uid: 14042 + pos: -88.5,4.5 + parent: 2 + - uid: 9946 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpskirtDetectiveGrey - entities: - - uid: 14041 + pos: -88.5,5.5 + parent: 2 + - uid: 9947 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitAerostatic - entities: - - uid: 10383 + pos: -88.5,6.5 + parent: 2 + - uid: 9948 components: - type: Transform - pos: -19.499786,29.230545 - parent: 89 -- proto: ClothingUniformJumpsuitClown - entities: - - uid: 7447 + pos: -88.5,7.5 + parent: 2 + - uid: 9949 components: - type: Transform - pos: -35.553295,-3.360825 - parent: 89 -- proto: ClothingUniformJumpsuitDetective - entities: - - uid: 14040 + pos: -88.5,8.5 + parent: 2 + - uid: 9950 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitDetectiveGrey - entities: - - uid: 14044 + rot: -1.5707963267948966 rad + pos: -56.5,17.5 + parent: 2 + - uid: 9951 components: - type: Transform - parent: 4858 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitLawyerBlue - entities: - - uid: 7990 + rot: -1.5707963267948966 rad + pos: -55.5,17.5 + parent: 2 + - uid: 9952 components: - type: Transform - pos: -0.7239857,46.668728 - parent: 89 -- proto: ClothingUniformJumpsuitLawyerRed - entities: - - uid: 7989 + rot: -1.5707963267948966 rad + pos: -54.5,17.5 + parent: 2 + - uid: 9953 components: - type: Transform - pos: -6.2239857,46.590603 - parent: 89 -- proto: ClothingUniformJumpsuitPrisoner - entities: - - uid: 23181 + rot: -1.5707963267948966 rad + pos: -53.5,17.5 + parent: 2 + - uid: 9954 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23189 + rot: -1.5707963267948966 rad + pos: -52.5,17.5 + parent: 2 + - uid: 9955 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23196 + rot: -1.5707963267948966 rad + pos: -51.5,17.5 + parent: 2 + - uid: 9956 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23203 + rot: -1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 + - uid: 9957 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23211 + rot: -1.5707963267948966 rad + pos: -49.5,17.5 + parent: 2 + - uid: 9958 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23219 + rot: -1.5707963267948966 rad + pos: -47.5,17.5 + parent: 2 + - uid: 9959 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ClothingUniformJumpsuitSuperstarCop - entities: - - uid: 10314 + rot: -1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 + - uid: 9960 components: - type: Transform - pos: -39.995895,29.48571 - parent: 89 -- proto: Cobweb1 - entities: - - uid: 4195 + rot: -1.5707963267948966 rad + pos: -45.5,17.5 + parent: 2 + - uid: 9961 components: - type: Transform - pos: -93.5,29.5 - parent: 89 - - uid: 4274 + rot: -1.5707963267948966 rad + pos: -44.5,17.5 + parent: 2 + - uid: 9962 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,29.5 - parent: 89 - - uid: 6012 + pos: -43.5,17.5 + parent: 2 + - uid: 9963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,-15.5 - parent: 89 - - uid: 6013 + pos: -42.5,17.5 + parent: 2 + - uid: 9964 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 89 - - uid: 6022 + rot: -1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 + - uid: 9965 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 89 - - uid: 23799 + rot: -1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 + - uid: 9966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,9.5 - parent: 22565 - - uid: 23800 + rot: -1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 + - uid: 9967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,9.5 - parent: 22565 -- proto: Cobweb2 - entities: - - uid: 4276 + rot: -1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 + - uid: 9968 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,27.5 - parent: 89 - - uid: 6021 + rot: -1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 + - uid: 9969 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,-15.5 - parent: 89 - - uid: 23801 + rot: -1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 + - uid: 9970 components: - type: Transform - pos: 4.5,11.5 - parent: 22565 -- proto: CockroachTimedSpawner - entities: - - uid: 5212 + rot: -1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 + - uid: 9971 components: - type: Transform - pos: 20.5,-5.5 - parent: 89 - - uid: 10575 + rot: -1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 + - uid: 9972 components: - type: Transform - pos: -21.5,-23.5 - parent: 89 - - uid: 16771 + rot: -1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 + - uid: 9973 components: - type: Transform - pos: 34.5,14.5 - parent: 89 - - uid: 17306 + pos: -0.5,-2.5 + parent: 2 + - uid: 9974 components: - type: Transform - pos: 22.5,-13.5 - parent: 89 - - uid: 17530 + pos: -0.5,-1.5 + parent: 2 + - uid: 9975 components: - type: Transform - pos: 43.5,13.5 - parent: 89 -- proto: CombatKnife - entities: - - uid: 25696 + pos: -0.5,-0.5 + parent: 2 + - uid: 9976 components: - type: Transform - pos: 5.2764907,-1.3724282 - parent: 89 -- proto: CombatMedipen - entities: - - uid: 4049 + pos: -0.5,0.5 + parent: 2 + - uid: 9977 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 6953 + pos: -0.5,1.5 + parent: 2 + - uid: 9978 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11595 + rot: -1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 + - uid: 9979 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: ComfyChair - entities: - - uid: 212 + rot: -1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 + - uid: 9980 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,13.5 - parent: 89 - - uid: 1941 + pos: 2.5,2.5 + parent: 2 + - uid: 9981 components: - type: Transform - pos: 35.5,15.5 - parent: 89 - - uid: 1965 + rot: -1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 + - uid: 9982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,14.5 - parent: 89 - - uid: 1999 + rot: -1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 + - uid: 9983 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,5.5 - parent: 89 - - uid: 2118 + pos: 5.5,2.5 + parent: 2 + - uid: 9984 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,12.5 - parent: 89 - - uid: 2120 + rot: -1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 + - uid: 9985 components: - type: Transform - pos: 33.5,15.5 - parent: 89 - - uid: 2121 + rot: -1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 + - uid: 9986 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,14.5 - parent: 89 - - uid: 2123 + pos: 8.5,2.5 + parent: 2 + - uid: 9987 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,13.5 - parent: 89 - - uid: 2133 + pos: 10.5,2.5 + parent: 2 + - uid: 9988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,12.5 - parent: 89 - - uid: 3593 + pos: 27.5,-3.5 + parent: 2 + - uid: 9989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-2.5 - parent: 89 - - uid: 4038 + pos: 14.5,8.5 + parent: 2 + - uid: 9990 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,14.5 - parent: 89 - - uid: 4046 + pos: -40.5,-7.5 + parent: 2 + - uid: 9991 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,12.5 - parent: 89 - - uid: 5815 + rot: 3.141592653589793 rad + pos: -40.5,-6.5 + parent: 2 + - uid: 9992 components: - type: Transform - pos: -72.5,-16.5 - parent: 89 - - uid: 6494 + rot: 3.141592653589793 rad + pos: -40.5,-5.5 + parent: 2 + - uid: 9993 components: - type: Transform - pos: 34.5,15.5 - parent: 89 - - uid: 6499 + rot: 3.141592653589793 rad + pos: -40.5,-4.5 + parent: 2 + - uid: 9994 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,12.5 - parent: 89 - - uid: 7789 + pos: -40.5,-3.5 + parent: 2 + - uid: 9995 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,42.5 - parent: 89 - - uid: 8391 + pos: -40.5,-2.5 + parent: 2 + - uid: 9996 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,4.5 - parent: 89 - - uid: 14926 + rot: 3.141592653589793 rad + pos: -40.5,-0.5 + parent: 2 + - uid: 9997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-36.5 - parent: 89 - - uid: 14927 + rot: 3.141592653589793 rad + pos: -40.5,0.5 + parent: 2 + - uid: 9998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-36.5 - parent: 89 - - uid: 15307 + rot: 3.141592653589793 rad + pos: -40.5,1.5 + parent: 2 + - uid: 9999 components: - type: Transform - pos: 47.5,11.5 - parent: 89 - - uid: 16420 + rot: 3.141592653589793 rad + pos: -40.5,2.5 + parent: 2 + - uid: 10000 components: - type: Transform - pos: -122.5,-13.5 - parent: 89 - - uid: 16421 + rot: 3.141592653589793 rad + pos: -40.5,3.5 + parent: 2 + - uid: 10001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-12.5 - parent: 89 - - uid: 16995 + rot: 1.5707963267948966 rad + pos: -41.5,4.5 + parent: 2 + - uid: 10002 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,-13.5 - parent: 89 - - uid: 17269 + rot: 1.5707963267948966 rad + pos: -42.5,4.5 + parent: 2 + - uid: 10003 components: - type: Transform - pos: -52.5,48.5 - parent: 89 - - uid: 17273 + rot: 1.5707963267948966 rad + pos: -43.5,4.5 + parent: 2 + - uid: 10004 components: - type: Transform - pos: -53.5,48.5 - parent: 89 - - uid: 17288 + rot: 1.5707963267948966 rad + pos: -44.5,4.5 + parent: 2 + - uid: 10005 components: - type: Transform - pos: -54.5,48.5 - parent: 89 - - uid: 17297 + rot: 1.5707963267948966 rad + pos: -45.5,4.5 + parent: 2 + - uid: 10006 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -46.5,4.5 + parent: 2 + - uid: 10007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,5.5 - parent: 89 - - uid: 17593 + rot: 1.5707963267948966 rad + pos: -47.5,4.5 + parent: 2 + - uid: 10008 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,18.5 - parent: 89 - - uid: 18159 + pos: -49.5,4.5 + parent: 2 + - uid: 10009 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-26.5 - parent: 89 - - uid: 21115 + rot: 1.5707963267948966 rad + pos: -50.5,4.5 + parent: 2 + - uid: 10010 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,37.5 - parent: 89 - - uid: 21395 + rot: 1.5707963267948966 rad + pos: -51.5,4.5 + parent: 2 + - uid: 10011 components: - type: Transform - pos: 55.5,-32.5 - parent: 89 - - uid: 21396 + rot: 1.5707963267948966 rad + pos: -52.5,4.5 + parent: 2 + - uid: 10012 components: - type: Transform rot: 1.5707963267948966 rad - pos: 56.5,-31.5 - parent: 89 - - uid: 21455 + pos: -53.5,4.5 + parent: 2 + - uid: 10013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-26.5 - parent: 89 - - uid: 25392 + rot: 1.5707963267948966 rad + pos: -54.5,4.5 + parent: 2 + - uid: 10014 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,-24.5 - parent: 89 -- proto: CommsComputerCircuitboard - entities: - - uid: 3359 + pos: -55.5,4.5 + parent: 2 + - uid: 10015 components: - type: Transform - pos: 54.446102,2.4674153 - parent: 89 -- proto: ComplexXenoArtifact - entities: - - uid: 6846 + rot: 3.141592653589793 rad + pos: -48.5,3.5 + parent: 2 + - uid: 10016 components: - - type: MetaData - name: обелиск - type: Transform - pos: -55.5,-13.5 - parent: 89 -- proto: ComputerAlert - entities: - - uid: 377 + pos: -99.5,23.5 + parent: 2 + - uid: 10017 components: - type: Transform - pos: 57.5,10.5 - parent: 89 - - uid: 387 + pos: -99.5,24.5 + parent: 2 + - uid: 10018 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,2.5 - parent: 89 - - uid: 415 + pos: -98.5,22.5 + parent: 2 + - uid: 10019 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,11.5 - parent: 89 - - uid: 9341 + pos: -97.5,22.5 + parent: 2 + - uid: 10020 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,35.5 - parent: 89 - - uid: 17029 + pos: -96.5,22.5 + parent: 2 + - uid: 10021 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,1.5 - parent: 89 - - uid: 17904 + rot: -1.5707963267948966 rad + pos: -95.5,22.5 + parent: 2 + - uid: 10022 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,-2.5 - parent: 89 -- proto: ComputerAnalysisConsole - entities: - - uid: 245 + pos: -94.5,22.5 + parent: 2 + - uid: 10023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 89 - - uid: 1909 + rot: -1.5707963267948966 rad + pos: -93.5,22.5 + parent: 2 + - uid: 10024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 89 -- proto: ComputerBroken - entities: - - uid: 14652 + rot: -1.5707963267948966 rad + pos: -92.5,22.5 + parent: 2 + - uid: 10025 components: - type: Transform - pos: -129.5,23.5 - parent: 89 - - uid: 17044 + rot: -1.5707963267948966 rad + pos: -91.5,22.5 + parent: 2 + - uid: 10026 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,29.5 - parent: 89 -- proto: ComputerCargoBounty - entities: - - uid: 7101 + pos: -90.5,22.5 + parent: 2 + - uid: 10027 components: - type: Transform - pos: -69.5,-9.5 - parent: 89 - - uid: 15335 + rot: -1.5707963267948966 rad + pos: -89.5,22.5 + parent: 2 + - uid: 10028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,35.5 - parent: 89 -- proto: ComputerCargoOrders - entities: - - uid: 5128 + rot: -1.5707963267948966 rad + pos: -88.5,22.5 + parent: 2 + - uid: 10029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-6.5 - parent: 89 - - uid: 5380 + rot: 3.141592653589793 rad + pos: -87.5,21.5 + parent: 2 + - uid: 10030 components: - type: Transform - pos: -65.5,-15.5 - parent: 89 -- proto: ComputerCargoShuttle - entities: - - uid: 5131 + rot: 3.141592653589793 rad + pos: -87.5,20.5 + parent: 2 + - uid: 10031 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-5.5 - parent: 89 - - uid: 5376 + rot: 3.141592653589793 rad + pos: -87.5,19.5 + parent: 2 + - uid: 10032 components: - type: Transform - pos: -67.5,-15.5 - parent: 89 -- proto: ComputerComms - entities: - - uid: 380 + rot: 3.141592653589793 rad + pos: -87.5,18.5 + parent: 2 + - uid: 10033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,1.5 - parent: 89 - - uid: 382 + rot: 3.141592653589793 rad + pos: -87.5,17.5 + parent: 2 + - uid: 10034 components: - type: Transform - pos: 59.5,15.5 - parent: 89 - - uid: 6459 + pos: -32.5,15.5 + parent: 2 + - uid: 10035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,3.5 - parent: 89 - - uid: 17242 + rot: 1.5707963267948966 rad + pos: -88.5,16.5 + parent: 2 + - uid: 10036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-1.5 - parent: 89 - - uid: 23802 + rot: 1.5707963267948966 rad + pos: -89.5,16.5 + parent: 2 + - uid: 10037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-25.5 - parent: 22565 -- proto: ComputerCrewMonitoring - entities: - - uid: 371 + pos: -90.5,16.5 + parent: 2 + - uid: 10038 components: - type: Transform - pos: 52.5,15.5 - parent: 89 - - uid: 3833 + rot: 1.5707963267948966 rad + pos: -91.5,16.5 + parent: 2 + - uid: 10039 components: - type: Transform - pos: 13.5,-0.5 - parent: 89 - - uid: 4355 + rot: 1.5707963267948966 rad + pos: -92.5,16.5 + parent: 2 + - uid: 10040 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-3.5 - parent: 89 - - uid: 8590 + pos: -32.5,16.5 + parent: 2 + - uid: 10041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 89 - - uid: 10466 + pos: -93.5,15.5 + parent: 2 + - uid: 10042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,7.5 - parent: 89 - - uid: 10885 + pos: -93.5,14.5 + parent: 2 + - uid: 10043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,37.5 - parent: 89 - - uid: 15556 + rot: -1.5707963267948966 rad + pos: -39.5,4.5 + parent: 2 + - uid: 10044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,12.5 - parent: 89 -- proto: ComputerCriminalRecords - entities: - - uid: 4017 + rot: -1.5707963267948966 rad + pos: -38.5,4.5 + parent: 2 + - uid: 10045 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-3.5 - parent: 89 - - uid: 6167 + rot: -1.5707963267948966 rad + pos: -37.5,4.5 + parent: 2 + - uid: 10046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,6.5 - parent: 89 - - uid: 6806 + rot: -1.5707963267948966 rad + pos: -36.5,4.5 + parent: 2 + - uid: 10047 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,1.5 - parent: 89 - - uid: 8087 + pos: -35.5,4.5 + parent: 2 + - uid: 10048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,12.5 - parent: 89 - - uid: 8150 + rot: -1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + - uid: 10049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,15.5 - parent: 89 - - uid: 8162 + rot: -1.5707963267948966 rad + pos: -33.5,4.5 + parent: 2 + - uid: 10050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,7.5 - parent: 89 - - uid: 8254 + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 + - uid: 10051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,20.5 - parent: 89 - - uid: 14543 + rot: -1.5707963267948966 rad + pos: -31.5,4.5 + parent: 2 + - uid: 10052 components: - type: Transform - pos: -73.5,-5.5 - parent: 89 - - uid: 17246 + rot: -1.5707963267948966 rad + pos: -30.5,4.5 + parent: 2 + - uid: 10053 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-6.5 - parent: 89 - - uid: 23803 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 + - uid: 10054 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 22565 - - uid: 23804 + pos: -28.5,4.5 + parent: 2 + - uid: 10055 + components: + - type: Transform + pos: -62.5,19.5 + parent: 2 + - uid: 10056 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,6.5 - parent: 22565 - - uid: 25501 + pos: 1.5,-15.5 + parent: 2 + - uid: 10057 components: - type: Transform - pos: 4.5,-1.5 - parent: 18153 -- proto: ComputerFrame - entities: - - uid: 1286 + rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 + - uid: 10058 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,2.5 - parent: 89 - - uid: 4340 + pos: -62.5,18.5 + parent: 2 + - uid: 10059 components: - type: Transform - pos: 10.5,18.5 - parent: 89 -- proto: ComputerId - entities: - - uid: 3337 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 + - uid: 10060 components: - type: Transform rot: 3.141592653589793 rad - pos: 42.5,8.5 - parent: 89 - - uid: 17243 + pos: 3.5,-6.5 + parent: 2 + - uid: 10061 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-6.5 - parent: 89 - - uid: 17901 + pos: 3.5,-7.5 + parent: 2 + - uid: 10062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-3.5 - parent: 89 -- proto: ComputerIFF - entities: - - uid: 21676 + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - uid: 10063 components: - type: Transform - pos: -0.5,-1.5 - parent: 21627 -- proto: ComputerIFFSyndicateCircuitboard - entities: - - uid: 23805 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 + - uid: 10064 components: - - type: MetaData - name: консоль системы опознования - type: Transform - pos: 3.543898,11.66512 - parent: 22565 -- proto: ComputerMassMedia - entities: - - uid: 7173 + rot: 1.5707963267948966 rad + pos: -28.5,-8.5 + parent: 2 + - uid: 10065 components: - type: Transform - pos: -26.5,9.5 - parent: 89 -- proto: ComputerMedicalRecords - entities: - - uid: 3827 + rot: 1.5707963267948966 rad + pos: -15.5,10.5 + parent: 2 + - uid: 10066 components: - type: Transform - pos: 14.5,-0.5 - parent: 89 - - uid: 17247 + rot: -1.5707963267948966 rad + pos: -13.5,7.5 + parent: 2 + - uid: 10067 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-1.5 - parent: 89 - - uid: 19138 + pos: -0.5,-5.5 + parent: 2 + - uid: 10068 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,11.5 - parent: 89 -- proto: ComputerPowerMonitoring - entities: - - uid: 6890 + pos: -85.5,32.5 + parent: 2 + - uid: 10069 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,10.5 - parent: 89 - - uid: 7267 + rot: 3.141592653589793 rad + pos: -84.5,31.5 + parent: 2 + - uid: 10070 components: - type: Transform - pos: -118.5,6.5 - parent: 89 - - uid: 12836 + rot: 3.141592653589793 rad + pos: -84.5,30.5 + parent: 2 + - uid: 10071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-13.5 - parent: 89 - - uid: 17244 + rot: 3.141592653589793 rad + pos: -84.5,29.5 + parent: 2 + - uid: 10072 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-6.5 - parent: 89 - - uid: 25868 + pos: -84.5,28.5 + parent: 2 + - uid: 10073 components: - type: Transform rot: 3.141592653589793 rad - pos: -128.5,-2.5 - parent: 89 - - uid: 25871 + pos: -84.5,27.5 + parent: 2 + - uid: 10074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,14.5 - parent: 89 -- proto: ComputerRadar - entities: - - uid: 378 + rot: 3.141592653589793 rad + pos: -84.5,26.5 + parent: 2 + - uid: 10075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,5.5 - parent: 89 - - uid: 3206 + rot: 3.141592653589793 rad + pos: -84.5,25.5 + parent: 2 + - uid: 10076 components: - type: Transform - pos: 55.5,15.5 - parent: 89 - - uid: 5526 + rot: 3.141592653589793 rad + pos: -84.5,24.5 + parent: 2 + - uid: 10077 components: - type: Transform - pos: -49.5,-19.5 - parent: 89 - - uid: 12129 + rot: 3.141592653589793 rad + pos: -84.5,23.5 + parent: 2 + - uid: 10078 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-6.5 - parent: 89 - - uid: 18314 + rot: 3.141592653589793 rad + pos: -84.5,22.5 + parent: 2 + - uid: 10079 components: - type: Transform rot: 3.141592653589793 rad - pos: -117.5,1.5 - parent: 89 - - uid: 21677 + pos: -84.5,21.5 + parent: 2 + - uid: 10080 components: - type: Transform - pos: 1.5,-1.5 - parent: 21627 - - uid: 23806 + rot: 1.5707963267948966 rad + pos: -83.5,20.5 + parent: 2 + - uid: 10081 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-26.5 - parent: 22565 - - uid: 23807 + pos: -82.5,20.5 + parent: 2 + - uid: 10082 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,5.5 - parent: 22565 - - uid: 25502 - components: - - type: Transform - pos: 2.5,-1.5 - parent: 18153 -- proto: ComputerResearchAndDevelopment - entities: - - uid: 78 + pos: -27.5,4.5 + parent: 2 + - uid: 10083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-19.5 - parent: 89 - - uid: 3356 + pos: -81.5,19.5 + parent: 2 + - uid: 10084 components: - type: Transform - pos: -7.5,-34.5 - parent: 89 - - uid: 9009 + pos: -81.5,18.5 + parent: 2 + - uid: 10085 components: - type: Transform - pos: 1.5,-27.5 - parent: 89 - - uid: 16905 + pos: -81.5,17.5 + parent: 2 + - uid: 10086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 89 -- proto: ComputerSalvageExpedition - entities: - - uid: 7334 + pos: -81.5,16.5 + parent: 2 + - uid: 10087 components: - type: Transform - pos: -70.5,-9.5 - parent: 89 -- proto: ComputerShuttle - entities: - - uid: 6486 + pos: -81.5,15.5 + parent: 2 + - uid: 10088 components: - - type: MetaData - name: консоль управления корабля - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,4.5 - parent: 89 - - uid: 21678 + pos: -81.5,14.5 + parent: 2 + - uid: 10089 components: - type: Transform - pos: 0.5,-0.5 - parent: 21627 - - uid: 25503 + pos: -81.5,13.5 + parent: 2 + - uid: 10090 components: - type: Transform - pos: 3.5,-1.5 - parent: 18153 -- proto: ComputerShuttleCargo - entities: - - uid: 5324 + pos: -81.5,12.5 + parent: 2 + - uid: 10091 components: - type: Transform - pos: -66.5,-15.5 - parent: 89 -- proto: ComputerShuttleSalvage - entities: - - uid: 7335 + pos: -81.5,11.5 + parent: 2 + - uid: 10092 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,-21.5 - parent: 89 -- proto: ComputerSolarControl - entities: - - uid: 6891 + pos: -81.5,10.5 + parent: 2 + - uid: 10093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,11.5 - parent: 89 - - uid: 8602 + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 + - uid: 10094 components: - type: Transform - pos: -117.5,6.5 - parent: 89 - - uid: 17245 + rot: -1.5707963267948966 rad + pos: -24.5,4.5 + parent: 2 + - uid: 10095 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-6.5 - parent: 89 - - uid: 18869 + pos: -23.5,3.5 + parent: 2 + - uid: 10096 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,25.5 - parent: 89 - - uid: 20361 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-12.5 - parent: 89 - - uid: 23808 + pos: -84.5,9.5 + parent: 2 + - uid: 10097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-17.5 - parent: 22565 -- proto: ComputerStationRecords - entities: - - uid: 370 + pos: -85.5,11.5 + parent: 2 + - uid: 10098 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,7.5 - parent: 89 - - uid: 381 - components: - - type: Transform - pos: 54.5,10.5 - parent: 89 - - uid: 414 + pos: -25.5,-7.5 + parent: 2 + - uid: 10099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 65.5,12.5 - parent: 89 - - uid: 5562 + pos: -23.5,-7.5 + parent: 2 + - uid: 10100 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 89 - - uid: 6169 + pos: -22.5,-7.5 + parent: 2 + - uid: 10101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,6.5 - parent: 89 - - uid: 23809 + pos: -102.5,5.5 + parent: 2 + - uid: 10102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 22565 - - uid: 23810 + pos: -102.5,6.5 + parent: 2 + - uid: 10103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,5.5 - parent: 22565 - - uid: 25387 + rot: 3.141592653589793 rad + pos: -21.5,-8.5 + parent: 2 + - uid: 10104 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,-27.5 - parent: 89 -- proto: ComputerSurveillanceCameraMonitor - entities: - - uid: 379 + pos: -21.5,-9.5 + parent: 2 + - uid: 10105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,6.5 - parent: 89 - - uid: 3627 + rot: 3.141592653589793 rad + pos: -21.5,-10.5 + parent: 2 + - uid: 10106 components: - type: Transform - pos: 7.5,-10.5 - parent: 89 - - uid: 6168 + rot: 1.5707963267948966 rad + pos: -39.5,-12.5 + parent: 2 + - uid: 10107 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 89 - - uid: 8066 + rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 + - uid: 10108 components: - type: Transform - pos: -88.5,14.5 - parent: 89 - - uid: 8178 + rot: 1.5707963267948966 rad + pos: -37.5,-12.5 + parent: 2 + - uid: 10109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,8.5 - parent: 89 - - uid: 8293 + rot: 1.5707963267948966 rad + pos: -36.5,-12.5 + parent: 2 + - uid: 10110 components: - type: Transform - pos: -61.5,22.5 - parent: 89 - - uid: 9046 + rot: 1.5707963267948966 rad + pos: -35.5,-12.5 + parent: 2 + - uid: 10111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,20.5 - parent: 89 - - uid: 10467 + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 + - uid: 10112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,6.5 - parent: 89 - - uid: 17285 + rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 + - uid: 10113 components: - type: Transform - pos: 56.5,15.5 - parent: 89 - - uid: 23811 + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 + - uid: 10114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,6.5 - parent: 22565 -- proto: ComputerSurveillanceWirelessCameraMonitor - entities: - - uid: 10468 + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 + - uid: 10115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,5.5 - parent: 89 - - uid: 10822 + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 + - uid: 10116 components: - type: Transform - pos: -27.5,9.5 - parent: 89 -- proto: ComputerTechnologyDiskTerminal - entities: - - uid: 16897 + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 + - uid: 10117 components: - type: Transform - pos: -12.5,-16.5 - parent: 89 -- proto: ComputerTelevision - entities: - - uid: 4296 + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 + - uid: 10118 components: - type: Transform - pos: -22.5,-3.5 - parent: 89 - - uid: 10374 + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 + - uid: 10119 components: - type: Transform - pos: -22.5,29.5 - parent: 89 - - uid: 14545 + rot: 1.5707963267948966 rad + pos: -26.5,-12.5 + parent: 2 + - uid: 10120 components: - type: Transform - pos: -37.5,29.5 - parent: 89 - - uid: 20969 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 + - uid: 10121 components: - type: Transform - pos: 42.5,12.5 - parent: 89 - - uid: 21138 + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 + - uid: 10122 components: - type: Transform - pos: 48.5,15.5 - parent: 89 -- proto: ContainmentFieldGenerator - entities: - - uid: 8793 + rot: 3.141592653589793 rad + pos: -40.5,-11.5 + parent: 2 + - uid: 10123 components: - type: Transform - pos: -115.5,-5.5 - parent: 89 - - uid: 8794 + rot: 3.141592653589793 rad + pos: -40.5,-10.5 + parent: 2 + - uid: 10124 components: - type: Transform - pos: -115.5,-6.5 - parent: 89 - - uid: 8795 + rot: 3.141592653589793 rad + pos: -40.5,-9.5 + parent: 2 + - uid: 10125 components: - type: Transform - pos: -115.5,-7.5 - parent: 89 - - uid: 8796 + pos: -0.5,-6.5 + parent: 2 + - uid: 10126 components: - type: Transform - pos: -115.5,-8.5 - parent: 89 -- proto: ConveyorBelt - entities: - - uid: 100 + pos: -0.5,-7.5 + parent: 2 + - uid: 10127 components: - type: Transform - pos: -66.5,-5.5 - parent: 89 - - uid: 3618 + pos: -0.5,-8.5 + parent: 2 + - uid: 10128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 4822 + pos: -0.5,-9.5 + parent: 2 + - uid: 10129 components: - type: Transform - pos: -63.5,-17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4823 + rot: 1.5707963267948966 rad + pos: -31.5,-8.5 + parent: 2 + - uid: 10130 components: - type: Transform - pos: -63.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4824 + pos: -0.5,-11.5 + parent: 2 + - uid: 10131 components: - type: Transform - pos: -63.5,-19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4825 + pos: -0.5,-12.5 + parent: 2 + - uid: 10132 components: - type: Transform - pos: -63.5,-20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4826 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 + - uid: 10133 components: - type: Transform - pos: -63.5,-21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4827 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 + - uid: 10134 components: - type: Transform - pos: -59.5,-17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4828 + rot: -1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 + - uid: 10135 components: - type: Transform - pos: -59.5,-18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4829 + rot: -1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 + - uid: 10136 components: - type: Transform - pos: -59.5,-19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4830 + rot: -1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 + - uid: 10137 components: - type: Transform - pos: -59.5,-20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 4831 + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 + - uid: 10138 components: - type: Transform - pos: -59.5,-21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4841 - - uid: 5103 + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 10139 components: - type: Transform - pos: -66.5,-4.5 - parent: 89 - - uid: 5104 + rot: -1.5707963267948966 rad + pos: -8.5,-13.5 + parent: 2 + - uid: 10140 components: - type: Transform - pos: -66.5,-3.5 - parent: 89 - - uid: 5105 + rot: -1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 + - uid: 10141 components: - type: Transform - pos: -66.5,-2.5 - parent: 89 - - uid: 5109 + rot: -1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - uid: 10142 components: - type: Transform - pos: -59.5,-2.5 - parent: 89 - - uid: 5110 + rot: -1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 + - uid: 10143 components: - type: Transform - pos: -59.5,-3.5 - parent: 89 - - uid: 5111 + rot: -1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 + - uid: 10144 components: - type: Transform - pos: -59.5,-4.5 - parent: 89 - - uid: 5112 + rot: -1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 + - uid: 10145 components: - type: Transform - pos: -59.5,-5.5 - parent: 89 - - uid: 7661 + rot: -1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 + - uid: 10146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7662 + rot: -1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - uid: 10147 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7663 + pos: -17.5,-13.5 + parent: 2 + - uid: 10148 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7664 + pos: -18.5,-13.5 + parent: 2 + - uid: 10149 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7665 + pos: -19.5,-13.5 + parent: 2 + - uid: 10150 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -21.5,-11.5 + parent: 2 + - uid: 10151 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 + - uid: 10152 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 + - uid: 10153 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7666 + pos: -18.5,9.5 + parent: 2 + - uid: 10154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,28.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7671 + rot: -1.5707963267948966 rad + pos: -16.5,10.5 + parent: 2 + - uid: 10155 components: - type: Transform rot: -1.5707963267948966 rad - pos: -102.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7672 + pos: -19.5,2.5 + parent: 2 + - uid: 10156 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7673 + pos: -18.5,2.5 + parent: 2 + - uid: 10157 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 7675 + pos: -16.5,2.5 + parent: 2 + - uid: 10158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,27.5 - parent: 89 - - uid: 7676 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 + - uid: 10159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 23812 + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 + - uid: 10160 components: - type: Transform - pos: -18.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23813 + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 + - uid: 10161 components: - type: Transform - pos: -20.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23814 + pos: 0.5,-14.5 + parent: 2 + - uid: 10162 components: - type: Transform - pos: -20.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23815 + pos: 2.5,-16.5 + parent: 2 + - uid: 10163 components: - type: Transform - pos: -20.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23816 + pos: 2.5,-17.5 + parent: 2 + - uid: 10164 components: - type: Transform - pos: -18.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23817 + pos: 2.5,-18.5 + parent: 2 + - uid: 10165 components: - type: Transform - pos: -18.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23818 + rot: 1.5707963267948966 rad + pos: 11.5,-9.5 + parent: 2 + - uid: 10166 components: - type: Transform - pos: -18.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24934 - - uid: 23819 + rot: 1.5707963267948966 rad + pos: 10.5,-9.5 + parent: 2 + - uid: 10167 components: - type: Transform - pos: -20.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24935 - - uid: 23820 + pos: 9.5,-10.5 + parent: 2 + - uid: 10168 components: - type: Transform - pos: -23.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23821 + rot: -1.5707963267948966 rad + pos: 21.5,2.5 + parent: 2 + - uid: 10169 components: - type: Transform - pos: -23.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23822 + pos: 24.5,23.5 + parent: 2 + - uid: 10170 components: - type: Transform - pos: -23.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23823 + pos: 24.5,22.5 + parent: 2 + - uid: 10171 components: - type: Transform - pos: -25.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23824 + pos: 24.5,21.5 + parent: 2 + - uid: 10172 components: - type: Transform - pos: -25.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23825 + pos: 24.5,20.5 + parent: 2 + - uid: 10173 components: - type: Transform - pos: -25.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23826 + pos: 24.5,19.5 + parent: 2 + - uid: 10174 components: - type: Transform - pos: -25.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24937 - - uid: 23827 + pos: 24.5,18.5 + parent: 2 + - uid: 10175 components: - type: Transform - pos: -23.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24936 - - uid: 23828 + pos: 24.5,17.5 + parent: 2 + - uid: 10176 components: - type: Transform - pos: -5.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23829 + pos: 24.5,16.5 + parent: 2 + - uid: 10177 components: - type: Transform - pos: -5.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23830 + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 + - uid: 10178 components: - type: Transform - pos: -5.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23831 + rot: -1.5707963267948966 rad + pos: 26.5,15.5 + parent: 2 + - uid: 10179 components: - type: Transform - pos: -5.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24930 - - uid: 23832 + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 10180 components: - type: Transform - pos: -3.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23833 + rot: -1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 + - uid: 10181 components: - type: Transform - pos: -3.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23834 + rot: -1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 + - uid: 10182 components: - type: Transform - pos: -3.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23835 + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 + - uid: 10183 components: - type: Transform - pos: -3.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24932 - - uid: 23836 + rot: -1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 + - uid: 10184 components: - type: Transform - pos: -0.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23837 + rot: -1.5707963267948966 rad + pos: 18.5,15.5 + parent: 2 + - uid: 10185 components: - type: Transform - pos: -0.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23838 + rot: -1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 + - uid: 10186 components: - type: Transform - pos: -0.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23839 + rot: -1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 + - uid: 10187 components: - type: Transform - pos: -0.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24933 - - uid: 23840 + rot: 3.141592653589793 rad + pos: 14.5,27.5 + parent: 2 + - uid: 10188 components: - type: Transform - pos: 1.5,1.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 - - uid: 23841 + rot: 3.141592653589793 rad + pos: 14.5,26.5 + parent: 2 + - uid: 10189 components: - type: Transform - pos: 1.5,2.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 - - uid: 23842 + rot: 3.141592653589793 rad + pos: 14.5,25.5 + parent: 2 + - uid: 10190 components: - type: Transform - pos: 1.5,3.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 - - uid: 23843 + rot: 3.141592653589793 rad + pos: 14.5,24.5 + parent: 2 + - uid: 10191 components: - type: Transform - pos: 1.5,4.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24931 -- proto: CowToolboxFilled - entities: - - uid: 25684 + rot: 3.141592653589793 rad + pos: 14.5,23.5 + parent: 2 + - uid: 10192 components: - type: Transform - pos: 10.596526,-19.552021 - parent: 89 -- proto: CrateArtifactContainer - entities: - - uid: 5215 + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 2 + - uid: 10193 components: - type: Transform - pos: 2.5,-38.5 - parent: 89 - - uid: 21098 + rot: 3.141592653589793 rad + pos: 14.5,21.5 + parent: 2 + - uid: 10194 components: - type: Transform - pos: 1.5,-38.5 - parent: 89 -- proto: CrateEmptySpawner - entities: - - uid: 509 + rot: 3.141592653589793 rad + pos: 14.5,20.5 + parent: 2 + - uid: 10195 components: - type: Transform - pos: 49.5,3.5 - parent: 89 -- proto: CrateEngineeringCableBulk - entities: - - uid: 9042 + rot: 3.141592653589793 rad + pos: 14.5,19.5 + parent: 2 + - uid: 10196 components: - type: Transform - pos: 16.5,-13.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringJetpack - entities: - - uid: 5506 + rot: 3.141592653589793 rad + pos: 14.5,18.5 + parent: 2 + - uid: 10197 components: - type: Transform - pos: -60.5,-12.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateEngineeringParticleAccelerator - entities: - - uid: 6940 + rot: 3.141592653589793 rad + pos: 14.5,17.5 + parent: 2 + - uid: 10198 components: - type: Transform - pos: -129.5,-9.5 - parent: 89 -- proto: CrateEngineeringSecure - entities: - - uid: 4892 + rot: 3.141592653589793 rad + pos: 14.5,16.5 + parent: 2 + - uid: 10199 components: - type: Transform - pos: -101.5,-10.5 - parent: 89 - - uid: 4902 + rot: 3.141592653589793 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 10200 components: - type: Transform - pos: -99.5,-10.5 - parent: 89 - - uid: 5392 + rot: 1.5707963267948966 rad + pos: -3.5,-38.5 + parent: 2 + - uid: 10201 components: - type: Transform - pos: -100.5,-10.5 - parent: 89 - - 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: - - 5458 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateEngineeringSolar - entities: - - uid: 8780 + rot: 1.5707963267948966 rad + pos: -2.5,-38.5 + parent: 2 + - uid: 10202 components: - type: Transform - pos: -118.5,-5.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14948 - moles: - - 3.0603204 - - 11.512634 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateFreezer - entities: - - uid: 19254 + rot: 3.141592653589793 rad + pos: -1.5,-36.5 + parent: 2 + - uid: 10203 components: - type: Transform - pos: -11.5,17.5 - parent: 89 - - uid: 21120 + rot: 3.141592653589793 rad + pos: -1.5,-35.5 + parent: 2 + - uid: 10204 components: - type: Transform - pos: 40.5,38.5 - parent: 89 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 21134 - - 21133 - - 21132 - - 21131 - - 21130 - - 21129 - - 21128 - - 21127 - - 21126 - - 21125 - - 21124 - - 21123 - - 21122 - - 21121 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateGenericSteel - entities: - - uid: 5838 + rot: 3.141592653589793 rad + pos: -1.5,-34.5 + parent: 2 + - uid: 10205 components: - type: Transform - pos: -50.5,-14.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 20068 + rot: 3.141592653589793 rad + pos: -1.5,-33.5 + parent: 2 + - uid: 10206 components: - type: Transform - pos: 10.5,16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 3.3955739 - - 12.773826 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 20069 - - 20070 - - 20071 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 23844 + rot: 3.141592653589793 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 10207 components: - type: Transform - pos: -19.5,-1.5 - parent: 22565 - - uid: 23845 + rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 2 + - uid: 10208 components: - type: Transform - pos: -18.5,-1.5 - parent: 22565 - - uid: 23846 + rot: 3.141592653589793 rad + pos: -1.5,-30.5 + parent: 2 + - uid: 10209 components: - type: Transform - pos: -5.5,-1.5 - parent: 22565 - - uid: 23847 + rot: 3.141592653589793 rad + pos: -1.5,-29.5 + parent: 2 + - uid: 10210 components: - type: Transform - pos: -4.5,-1.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateMedicalScrubs - entities: - - uid: 19250 + rot: 3.141592653589793 rad + pos: -1.5,-28.5 + parent: 2 + - uid: 10211 components: - type: Transform - pos: -9.5,19.5 - parent: 89 -- proto: CrateMedicalSupplies - entities: - - uid: 21380 + rot: 3.141592653589793 rad + pos: -1.5,-27.5 + parent: 2 + - uid: 10212 components: - type: Transform - pos: 37.5,22.5 - parent: 89 -- proto: CrateMedicalSurgery - entities: - - uid: 158 + rot: 3.141592653589793 rad + pos: -1.5,-26.5 + parent: 2 + - uid: 10213 components: - type: Transform - pos: -22.5,-23.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14954 - moles: - - 3.2184362 - - 12.107451 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 18653 + rot: 3.141592653589793 rad + pos: 2.5,-24.5 + parent: 2 + - uid: 10214 components: - type: Transform - pos: -12.5,17.5 - parent: 89 -- proto: CrateNPCHamlet - entities: - - uid: 17328 + rot: 3.141592653589793 rad + pos: 14.5,15.5 + parent: 2 + - uid: 10215 components: - type: Transform - pos: 57.5,2.5 - parent: 89 -- proto: CratePrivateSecure - entities: - - uid: 17122 + rot: -1.5707963267948966 rad + pos: -0.5,-25.5 + parent: 2 + - uid: 10216 components: - type: Transform - pos: -31.5,50.5 - parent: 89 - - uid: 17123 + rot: -1.5707963267948966 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 10217 components: - type: Transform - pos: -31.5,49.5 - parent: 89 - - uid: 17129 + rot: -1.5707963267948966 rad + pos: 1.5,-25.5 + parent: 2 + - uid: 10218 components: - type: Transform - pos: -31.5,48.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 10609 - - 10172 - - 10116 - - 9190 - - 7113 - - 6953 - - 5474 - - 4049 - - 11593 - - 11594 - - 11595 - - 11596 - - 11597 - - 11598 - - 11599 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: CrateServiceBooks - entities: - - uid: 5505 + rot: 3.141592653589793 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 10219 components: - type: Transform - pos: -61.5,-13.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 3.3493855 - - 12.60007 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceBureaucracy - entities: - - uid: 19845 + rot: 3.141592653589793 rad + pos: 2.5,-22.5 + parent: 2 + - uid: 10220 components: - type: Transform - pos: -59.5,-13.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14957 - moles: - - 3.3493855 - - 12.60007 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateServiceJanitorialSupplies - entities: - - uid: 23848 + rot: 3.141592653589793 rad + pos: 2.5,-21.5 + parent: 2 + - uid: 10221 components: - type: Transform - pos: -25.5,8.5 - parent: 22565 -- proto: CrateServicePersonnel - entities: - - uid: 4005 + rot: 3.141592653589793 rad + pos: 2.5,-20.5 + parent: 2 + - uid: 10222 components: - type: Transform - pos: 45.5,9.5 - parent: 89 -- proto: CrateServiceReplacementLights - entities: - - uid: 5507 + pos: 14.5,12.5 + parent: 2 + - uid: 10223 components: - type: Transform - pos: -59.5,-11.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrateStoneGrave - entities: - - uid: 9776 + rot: -1.5707963267948966 rad + pos: 13.5,13.5 + parent: 2 + - uid: 10224 components: - type: Transform - pos: 8.5,-0.5 - parent: 89 -- proto: CrateTrashCartFilled - entities: - - uid: 3039 + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 + - uid: 10225 components: - type: Transform - pos: -4.5,39.5 - parent: 89 - - uid: 3280 + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 2 + - uid: 10226 components: - type: Transform - pos: -89.5,4.5 - parent: 89 - - uid: 10497 + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 2 + - uid: 10227 components: - type: Transform - pos: -71.5,-3.5 - parent: 89 - - uid: 18310 + rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 2 + - uid: 10228 components: - type: Transform - pos: -100.5,25.5 - parent: 89 - - uid: 20780 + rot: -1.5707963267948966 rad + pos: 7.5,13.5 + parent: 2 + - uid: 10229 components: - type: Transform - pos: -100.5,27.5 - parent: 89 - - uid: 20867 + rot: -1.5707963267948966 rad + pos: 6.5,13.5 + parent: 2 + - uid: 10230 components: - type: Transform - pos: -33.5,7.5 - parent: 89 -- proto: CrateTrashCartJani - entities: - - uid: 17895 + rot: -1.5707963267948966 rad + pos: 5.5,13.5 + parent: 2 + - uid: 10231 components: - type: Transform - pos: -39.5,5.5 - parent: 89 - - uid: 20858 + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 10232 components: - type: Transform - pos: -41.5,5.5 - parent: 89 -- proto: CrateVendingMachineRestockMedicalFilled - entities: - - uid: 12653 + rot: -1.5707963267948966 rad + pos: 3.5,13.5 + parent: 2 + - uid: 10233 components: - type: Transform - pos: 37.5,23.5 - parent: 89 -- proto: CrayonBox - entities: - - uid: 7471 + rot: -1.5707963267948966 rad + pos: 2.5,13.5 + parent: 2 + - uid: 10234 components: - type: Transform - pos: -35.41706,-9.445221 - parent: 89 - - uid: 11387 + rot: -1.5707963267948966 rad + pos: 1.5,13.5 + parent: 2 + - uid: 10235 components: - type: Transform - pos: 29.442505,31.825993 - parent: 89 -- proto: Crematorium - entities: - - uid: 5378 + rot: 3.141592653589793 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 10236 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-6.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: CrewMonitoringServer - entities: - - uid: 3363 + pos: -7.5,-16.5 + parent: 2 + - uid: 10237 components: - type: Transform - pos: 55.5,6.5 - parent: 89 -- proto: CrowbarRed - entities: - - uid: 14948 + rot: 3.141592653589793 rad + pos: -17.5,-4.5 + parent: 2 + - uid: 10238 components: - type: Transform - pos: -12.082157,-30.87991 - parent: 89 - - uid: 15292 + rot: 3.141592653589793 rad + pos: -17.5,-3.5 + parent: 2 + - uid: 10239 components: - type: Transform - pos: -100.53644,24.543425 - parent: 89 - - uid: 16947 + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 10240 components: - type: Transform - pos: -2.604181,-41.401688 - parent: 89 - - uid: 22650 + rot: 3.141592653589793 rad + pos: -17.5,-1.5 + parent: 2 + - uid: 10241 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22651 + rot: 3.141592653589793 rad + pos: -17.5,-0.5 + parent: 2 + - uid: 10242 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: CryogenicSleepUnit - entities: - - uid: 10179 + rot: 3.141592653589793 rad + pos: -17.5,0.5 + parent: 2 + - uid: 10243 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,17.5 - parent: 89 - - uid: 14538 + rot: 3.141592653589793 rad + pos: -17.5,1.5 + parent: 2 + - uid: 10244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,17.5 - parent: 89 -- proto: CryogenicSleepUnitSpawner - entities: - - uid: 14532 + pos: -1.5,12.5 + parent: 2 + - uid: 10245 components: - type: Transform - pos: -25.5,18.5 - parent: 89 -- proto: CryogenicSleepUnitSpawnerLateJoin - entities: - - uid: 14536 + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 10246 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,18.5 - parent: 89 -- proto: CryoPod - entities: - - uid: 14071 - components: - - type: Transform - pos: 10.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16297 - components: - - type: Transform - pos: 7.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: CryoxadoneBeakerSmall - entities: - - uid: 17604 + pos: 52.5,0.5 + parent: 2 + - uid: 10247 components: - type: Transform - pos: 8.4537525,20.799503 - parent: 89 - - uid: 17605 + rot: -1.5707963267948966 rad + pos: -5.5,12.5 + parent: 2 + - uid: 10248 components: - type: Transform - pos: 8.6412525,20.643253 - parent: 89 -- proto: CultAltarSpawner - entities: - - uid: 14567 + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 2 + - uid: 10249 components: - type: Transform - pos: -22.5,17.5 - parent: 89 -- proto: Cutlass - entities: - - uid: 11044 + rot: 3.141592653589793 rad + pos: -6.5,10.5 + parent: 2 + - uid: 10250 components: - type: Transform - pos: -24.492065,53.460243 - parent: 89 -- proto: CyberPen - entities: - - uid: 21856 + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 2 + - uid: 10251 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.20179,-32.421978 - parent: 89 -- proto: d6Dice - entities: - - uid: 7944 + pos: -6.5,8.5 + parent: 2 + - uid: 10252 components: - type: Transform - pos: -7.3807964,41.28582 - parent: 89 - - uid: 7945 + rot: -1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - uid: 10253 components: - type: Transform - pos: -6.9901714,40.75457 - parent: 89 - - uid: 14632 + pos: 27.5,-4.5 + parent: 2 + - uid: 10254 components: - type: Transform - pos: -98.24687,17.61973 - parent: 89 - - uid: 14633 + pos: 27.5,-5.5 + parent: 2 + - uid: 10255 components: - type: Transform - pos: -97.62187,17.55723 - parent: 89 -- proto: DefaultStationBeaconBridge - entities: - - uid: 9519 + pos: 27.5,-6.5 + parent: 2 + - uid: 10256 components: - type: Transform - pos: 38.5,4.5 - parent: 89 - - type: NavMapBeacon - text: Мостик - правительственный сектор -- proto: DefaultStationBeaconHOPOffice - entities: - - uid: 729 + pos: 27.5,-7.5 + parent: 2 + - uid: 10257 components: - type: Transform - pos: 43.5,7.5 - parent: 89 -- proto: DefibrillatorCabinetFilled - entities: - - uid: 4332 + rot: -1.5707963267948966 rad + pos: 28.5,-8.5 + parent: 2 + - uid: 10258 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,39.5 - parent: 89 - - uid: 10778 + pos: 9.5,2.5 + parent: 2 + - uid: 10259 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,18.5 - parent: 89 - - uid: 13206 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,20.5 - parent: 89 -- proto: DefibrillatorEmpty - entities: - - uid: 16904 + pos: -42.5,-0.5 + parent: 2 + - uid: 10260 components: - type: Transform - pos: 4.5889907,-0.46617818 - parent: 89 -- proto: DeployableBarrier - entities: - - uid: 1127 + rot: -1.5707963267948966 rad + pos: 13.5,-9.5 + parent: 2 + - uid: 10261 components: - type: Transform - pos: 43.5,-2.5 - parent: 89 - - uid: 1128 + rot: -1.5707963267948966 rad + pos: 14.5,-9.5 + parent: 2 + - uid: 10262 components: - type: Transform - pos: 41.5,-2.5 - parent: 89 - - uid: 1597 + rot: -1.5707963267948966 rad + pos: 15.5,-9.5 + parent: 2 + - uid: 10263 components: - type: Transform - pos: 42.5,-2.5 - parent: 89 - - uid: 9867 + rot: -1.5707963267948966 rad + pos: 16.5,-9.5 + parent: 2 + - uid: 10264 components: - type: Transform - pos: -52.5,37.5 - parent: 89 - - uid: 9868 + rot: -1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 + - uid: 10265 components: - type: Transform - pos: -51.5,37.5 - parent: 89 - - uid: 9869 + rot: -1.5707963267948966 rad + pos: 18.5,-9.5 + parent: 2 + - uid: 10266 components: - type: Transform - pos: -51.5,34.5 - parent: 89 - - uid: 9870 + rot: -1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 + - uid: 10267 components: - type: Transform - pos: -51.5,35.5 - parent: 89 - - uid: 9871 + rot: -1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 + - uid: 10268 components: - type: Transform - pos: -51.5,36.5 - parent: 89 -- proto: DeskBell - entities: - - uid: 864 + rot: -1.5707963267948966 rad + pos: 21.5,-9.5 + parent: 2 + - uid: 10269 components: - type: Transform - pos: 2.737472,15.790997 - parent: 89 - - uid: 1243 + rot: -1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 + - uid: 10270 components: - type: Transform - pos: 2.706222,21.509747 - parent: 89 - - uid: 7148 + rot: -1.5707963267948966 rad + pos: 23.5,-9.5 + parent: 2 + - uid: 10271 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.533264,-15.511856 - parent: 89 - - uid: 7150 + rot: -1.5707963267948966 rad + pos: 24.5,-9.5 + parent: 2 + - uid: 10272 components: - type: Transform - pos: 6.4949274,-11.439506 - parent: 89 - - uid: 7151 + rot: -1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 + - uid: 10273 components: - type: Transform - pos: -10.467365,-2.4647331 - parent: 89 - - uid: 7152 + rot: -1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 + - uid: 10274 components: - type: Transform - pos: -16.520947,-3.4491081 - parent: 89 - - uid: 7153 + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - uid: 10275 components: - type: Transform - pos: -4.561835,7.6157904 - parent: 89 - - uid: 7154 + rot: -1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - uid: 10276 components: - type: Transform - pos: 41.432976,9.61126 - parent: 89 - - uid: 7162 + rot: -1.5707963267948966 rad + pos: -4.5,2.5 + parent: 2 + - uid: 10277 components: - type: Transform - pos: -22.443995,-1.5451901 - parent: 89 - - uid: 12672 + rot: -1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 + - uid: 10278 components: - type: Transform - pos: 2.721847,17.509747 - parent: 89 - - uid: 14976 + rot: -1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 + - uid: 10279 components: - type: Transform - pos: 2.706222,19.790997 - parent: 89 -- proto: DiseaseDiagnoser - entities: - - uid: 15406 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 2 + - uid: 10280 components: - type: Transform - pos: 8.5,29.5 - parent: 89 -- proto: DisposalBend - entities: - - uid: 1188 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 + - uid: 10281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 89 - - uid: 7700 + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 + - uid: 10282 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,25.5 - parent: 89 - - uid: 9329 + pos: -10.5,2.5 + parent: 2 + - uid: 10283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,15.5 - parent: 89 - - uid: 9506 + rot: 1.5707963267948966 rad + pos: 31.5,-1.5 + parent: 2 + - uid: 10284 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,7.5 - parent: 89 - - uid: 11088 + rot: 1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 + - uid: 10285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,27.5 - parent: 89 - - uid: 15275 + pos: 33.5,-1.5 + parent: 2 + - uid: 10286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-9.5 - parent: 89 - - uid: 15570 + pos: 34.5,-1.5 + parent: 2 + - uid: 10287 components: - type: Transform - pos: 14.5,32.5 - parent: 89 - - uid: 15805 + rot: 1.5707963267948966 rad + pos: 35.5,-1.5 + parent: 2 + - uid: 10288 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,8.5 - parent: 89 - - uid: 16521 + pos: 29.5,-8.5 + parent: 2 + - uid: 10289 components: - type: Transform - pos: -4.5,15.5 - parent: 89 - - uid: 16535 + rot: -1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 + - uid: 10290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,17.5 - parent: 89 - - uid: 16903 + rot: -1.5707963267948966 rad + pos: 31.5,-8.5 + parent: 2 + - uid: 10291 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,7.5 - parent: 89 - - uid: 16924 + pos: 32.5,-8.5 + parent: 2 + - uid: 10292 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,11.5 - parent: 89 - - uid: 16925 + pos: 33.5,-8.5 + parent: 2 + - uid: 10293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,11.5 - parent: 89 - - uid: 16927 + rot: -1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 + - uid: 10294 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-20.5 - parent: 89 - - uid: 18337 + pos: 35.5,-8.5 + parent: 2 + - uid: 10295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,7.5 - parent: 89 - - uid: 18452 + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 2 + - uid: 10296 components: - type: Transform - pos: -78.5,9.5 - parent: 89 - - uid: 18458 + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 + - uid: 10297 components: - type: Transform - pos: -88.5,10.5 - parent: 89 - - uid: 18459 + rot: 3.141592653589793 rad + pos: 36.5,-4.5 + parent: 2 + - uid: 10298 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,8.5 - parent: 89 - - uid: 18463 + pos: 36.5,-5.5 + parent: 2 + - uid: 10299 components: - type: Transform - pos: -125.5,15.5 - parent: 89 - - uid: 18470 + rot: 3.141592653589793 rad + pos: 36.5,-6.5 + parent: 2 + - uid: 10300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,12.5 - parent: 89 - - uid: 18474 + rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 2 + - uid: 10301 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,7.5 - parent: 89 - - uid: 18489 + pos: -8.5,-17.5 + parent: 2 + - uid: 10302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,9.5 - parent: 89 - - uid: 18500 + pos: 51.5,8.5 + parent: 2 + - uid: 10303 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 18522 + pos: 51.5,9.5 + parent: 2 + - uid: 10304 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-17.5 - parent: 89 - - uid: 18528 + pos: 51.5,10.5 + parent: 2 + - uid: 10305 components: - type: Transform - pos: -91.5,13.5 - parent: 89 - - uid: 18540 + pos: 61.5,3.5 + parent: 2 + - uid: 10306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,8.5 - parent: 89 - - uid: 18541 + pos: 61.5,2.5 + parent: 2 + - uid: 10307 + components: + - type: Transform + pos: 61.5,1.5 + parent: 2 + - uid: 10308 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,9.5 - parent: 89 - - uid: 18542 + pos: 53.5,0.5 + parent: 2 + - uid: 10309 components: - type: Transform - pos: 40.5,2.5 - parent: 89 - - uid: 18543 + rot: 1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 + - uid: 10310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 89 - - uid: 18549 + rot: 1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 + - uid: 10311 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 + - uid: 10312 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 + - uid: 10313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-15.5 - parent: 89 - - uid: 18550 + rot: 1.5707963267948966 rad + pos: 58.5,0.5 + parent: 2 + - uid: 10314 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,16.5 - parent: 89 - - uid: 18578 + pos: 59.5,0.5 + parent: 2 + - uid: 10315 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,-10.5 - parent: 89 - - uid: 18595 + pos: 60.5,0.5 + parent: 2 + - uid: 10316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-3.5 - parent: 89 - - uid: 18596 + pos: 15.5,-8.5 + parent: 2 + - uid: 10317 components: - type: Transform - pos: -51.5,-10.5 - parent: 89 - - uid: 18610 + pos: 2.5,-1.5 + parent: 2 + - uid: 10318 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,-10.5 - parent: 89 - - uid: 18611 + pos: 3.5,-3.5 + parent: 2 + - uid: 10319 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-10.5 - parent: 89 - - uid: 18612 + pos: 3.5,-4.5 + parent: 2 + - uid: 10320 components: - type: Transform - pos: -56.5,-6.5 - parent: 89 - - uid: 18651 + rot: 3.141592653589793 rad + pos: -64.5,-15.5 + parent: 2 + - uid: 10321 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,12.5 - parent: 89 - - uid: 18685 + rot: 3.141592653589793 rad + pos: -64.5,-16.5 + parent: 2 + - uid: 10322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,4.5 - parent: 89 - - uid: 18686 + pos: -118.5,-11.5 + parent: 2 + - uid: 25769 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,7.5 - parent: 89 - - uid: 18689 + pos: -32.5,13.5 + parent: 24450 + - uid: 25770 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-0.5 - parent: 89 - - uid: 18690 + pos: -37.5,13.5 + parent: 24450 + - uid: 25771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,-0.5 - parent: 89 - - uid: 18692 + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 24450 + - uid: 25772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,-8.5 - parent: 89 - - uid: 18706 + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 24450 + - uid: 25773 components: - type: Transform - pos: 12.5,-5.5 - parent: 89 - - uid: 18743 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 24450 + - uid: 25774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-18.5 - parent: 89 - - uid: 18778 + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 24450 + - uid: 25775 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,-2.5 - parent: 89 - - uid: 18779 + pos: -36.5,13.5 + parent: 24450 + - uid: 25776 components: - type: Transform - pos: 28.5,-2.5 - parent: 89 - - uid: 18784 + rot: 3.141592653589793 rad + pos: -16.5,0.5 + parent: 24450 + - uid: 25777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,14.5 - parent: 89 - - uid: 18785 + rot: 3.141592653589793 rad + pos: -7.5,0.5 + parent: 24450 + - uid: 25778 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,14.5 - parent: 89 - - uid: 18786 + pos: -15.5,1.5 + parent: 24450 + - uid: 25779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,4.5 - parent: 89 - - uid: 18792 + rot: 1.5707963267948966 rad + pos: -14.5,1.5 + parent: 24450 + - uid: 25780 components: - type: Transform - pos: -65.5,9.5 - parent: 89 - - uid: 18799 + pos: -13.5,-1.5 + parent: 24450 + - uid: 25781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 89 - - uid: 18813 + pos: -13.5,-0.5 + parent: 24450 + - uid: 25782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,13.5 - parent: 89 - - uid: 18820 + pos: -13.5,0.5 + parent: 24450 + - uid: 25783 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,9.5 - parent: 89 - - uid: 18822 + pos: -8.5,1.5 + parent: 24450 + - uid: 25784 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,8.5 - parent: 89 - - uid: 18824 + pos: -7.5,2.5 + parent: 24450 + - uid: 25785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,8.5 - parent: 89 - - uid: 18866 + pos: -7.5,4.5 + parent: 24450 + - uid: 25786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,17.5 - parent: 89 - - uid: 18875 + pos: -7.5,5.5 + parent: 24450 + - uid: 25787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,24.5 - parent: 89 - - uid: 18889 + pos: -7.5,6.5 + parent: 24450 + - uid: 25788 components: - type: Transform - pos: -57.5,24.5 - parent: 89 - - uid: 18890 + pos: -7.5,7.5 + parent: 24450 + - uid: 25789 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-3.5 - parent: 89 - - uid: 18901 + pos: -7.5,8.5 + parent: 24450 + - uid: 25790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-1.5 - parent: 89 - - uid: 18903 + pos: -7.5,9.5 + parent: 24450 + - uid: 25791 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-1.5 - parent: 89 - - uid: 18905 + pos: -16.5,2.5 + parent: 24450 + - uid: 25792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,14.5 - parent: 89 - - uid: 18952 + pos: -16.5,3.5 + parent: 24450 + - uid: 25793 components: - type: Transform - pos: -41.5,-0.5 - parent: 89 - - uid: 18972 + pos: -16.5,4.5 + parent: 24450 + - uid: 25794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 89 - - uid: 18973 + pos: -16.5,5.5 + parent: 24450 + - uid: 25795 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 89 - - uid: 19008 + pos: -16.5,6.5 + parent: 24450 + - uid: 25796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,1.5 - parent: 89 - - uid: 19011 + pos: -16.5,7.5 + parent: 24450 + - uid: 25797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,16.5 - parent: 89 - - uid: 19012 + pos: -16.5,8.5 + parent: 24450 + - uid: 25798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,16.5 - parent: 89 - - uid: 19013 + rot: 3.141592653589793 rad + pos: -13.5,-2.5 + parent: 24450 + - uid: 25799 components: - type: Transform - pos: -87.5,22.5 - parent: 89 - - uid: 19014 + rot: 3.141592653589793 rad + pos: -9.5,2.5 + parent: 24450 + - uid: 25800 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,22.5 - parent: 89 - - uid: 19018 + pos: -9.5,3.5 + parent: 24450 + - uid: 25801 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,14.5 - parent: 89 - - uid: 19030 + pos: -8.5,10.5 + parent: 24450 + - uid: 25802 components: - type: Transform - pos: -32.5,17.5 - parent: 89 - - uid: 19067 + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 24450 + - uid: 25803 components: - type: Transform - pos: -62.5,20.5 - parent: 89 - - uid: 19074 + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 24450 + - uid: 25804 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,-8.5 - parent: 89 - - uid: 19075 + pos: -11.5,10.5 + parent: 24450 + - uid: 25805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-7.5 - parent: 89 - - uid: 19081 + rot: -1.5707963267948966 rad + pos: -12.5,10.5 + parent: 24450 + - uid: 25806 components: - type: Transform - pos: -84.5,32.5 - parent: 89 - - uid: 19113 + rot: -1.5707963267948966 rad + pos: -13.5,10.5 + parent: 24450 + - uid: 25807 components: - type: Transform - pos: -81.5,20.5 - parent: 89 - - uid: 19114 + rot: -1.5707963267948966 rad + pos: -14.5,10.5 + parent: 24450 + - uid: 25808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,20.5 - parent: 89 - - uid: 19118 + rot: -1.5707963267948966 rad + pos: -15.5,10.5 + parent: 24450 + - uid: 25809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,2.5 - parent: 89 - - uid: 19124 + rot: 1.5707963267948966 rad + pos: -16.5,10.5 + parent: 24450 + - uid: 25810 components: - type: Transform - pos: 11.5,-3.5 - parent: 89 - - uid: 19139 + rot: 1.5707963267948966 rad + pos: -18.5,9.5 + parent: 24450 + - uid: 25811 components: - type: Transform - pos: -21.5,-7.5 - parent: 89 - - uid: 19156 + rot: 1.5707963267948966 rad + pos: -19.5,9.5 + parent: 24450 + - uid: 25812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-12.5 - parent: 89 - - uid: 19175 + rot: 1.5707963267948966 rad + pos: -20.5,9.5 + parent: 24450 + - uid: 25813 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 89 - - uid: 19193 + pos: -21.5,9.5 + parent: 24450 + - uid: 25814 components: - type: Transform - pos: -14.5,10.5 - parent: 89 - - uid: 19194 + rot: 1.5707963267948966 rad + pos: -22.5,9.5 + parent: 24450 + - uid: 25815 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-13.5 - parent: 89 - - uid: 19195 + rot: 1.5707963267948966 rad + pos: -23.5,9.5 + parent: 24450 + - uid: 25816 components: - type: Transform - pos: -20.5,-12.5 - parent: 89 - - uid: 19196 + rot: 1.5707963267948966 rad + pos: -24.5,9.5 + parent: 24450 + - uid: 25817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 89 - - uid: 19197 + rot: 1.5707963267948966 rad + pos: -25.5,9.5 + parent: 24450 + - uid: 25818 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 89 - - uid: 19201 + pos: -26.5,9.5 + parent: 24450 + - uid: 25819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,13.5 - parent: 89 - - uid: 19206 + pos: -27.5,9.5 + parent: 24450 + - uid: 25820 components: - type: Transform - pos: -54.5,13.5 - parent: 89 - - uid: 19207 + rot: 1.5707963267948966 rad + pos: -28.5,9.5 + parent: 24450 + - uid: 25821 components: - type: Transform - pos: 0.5,-13.5 - parent: 89 - - uid: 19212 + rot: 1.5707963267948966 rad + pos: -29.5,9.5 + parent: 24450 + - uid: 25822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 89 - - uid: 19213 + rot: 1.5707963267948966 rad + pos: -30.5,9.5 + parent: 24450 + - uid: 25823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 89 - - uid: 19214 + rot: 3.141592653589793 rad + pos: -31.5,10.5 + parent: 24450 + - uid: 25824 components: - type: Transform - pos: 2.5,-15.5 - parent: 89 - - uid: 19272 + rot: 3.141592653589793 rad + pos: -31.5,11.5 + parent: 24450 + - uid: 25825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-38.5 - parent: 89 - - uid: 19273 + pos: -31.5,12.5 + parent: 24450 + - uid: 25826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-16.5 - parent: 89 - - uid: 19286 + rot: 3.141592653589793 rad + pos: -31.5,8.5 + parent: 24450 + - uid: 25827 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 89 - - uid: 19287 + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 24450 + - uid: 25828 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 89 - - uid: 19289 + rot: 3.141592653589793 rad + pos: -31.5,7.5 + parent: 24450 + - uid: 25829 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,14.5 - parent: 89 - - uid: 19300 + pos: -31.5,5.5 + parent: 24450 + - uid: 25830 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-14.5 - parent: 89 - - uid: 19303 + pos: -31.5,6.5 + parent: 24450 + - uid: 25831 components: - type: Transform - pos: -8.5,-14.5 - parent: 89 - - uid: 19329 + rot: 3.141592653589793 rad + pos: -31.5,4.5 + parent: 24450 + - uid: 25832 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,12.5 - parent: 89 - - uid: 19350 + pos: 7.5,3.5 + parent: 24450 + - uid: 25833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 89 - - uid: 19351 + rot: -1.5707963267948966 rad + pos: 6.5,3.5 + parent: 24450 + - uid: 25834 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,-1.5 - parent: 89 - - uid: 19367 + rot: -1.5707963267948966 rad + pos: 5.5,3.5 + parent: 24450 + - uid: 25835 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 89 - - uid: 19368 + pos: 4.5,3.5 + parent: 24450 + - uid: 25836 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-8.5 - parent: 89 - - uid: 19385 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 24450 + - uid: 25837 components: - type: Transform - pos: 36.5,-1.5 - parent: 89 - - uid: 19400 + rot: -1.5707963267948966 rad + pos: 2.5,3.5 + parent: 24450 + - uid: 25838 components: - type: Transform rot: -1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 89 - - uid: 19412 + pos: 1.5,3.5 + parent: 24450 + - uid: 25839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 61.5,4.5 - parent: 89 - - uid: 19416 + rot: -1.5707963267948966 rad + pos: 0.5,3.5 + parent: 24450 + - uid: 25840 components: - type: Transform rot: -1.5707963267948966 rad - pos: 61.5,0.5 - parent: 89 - - uid: 19527 + pos: -0.5,3.5 + parent: 24450 + - uid: 25841 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,4.5 - parent: 89 - - uid: 23849 + pos: -1.5,3.5 + parent: 24450 + - uid: 25842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-0.5 - parent: 22565 - - uid: 23850 + rot: -1.5707963267948966 rad + pos: -2.5,3.5 + parent: 24450 + - uid: 25843 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-0.5 - parent: 22565 - - uid: 23851 + pos: -3.5,3.5 + parent: 24450 + - uid: 25844 components: - type: Transform - pos: -13.5,1.5 - parent: 22565 - - uid: 23852 + rot: -1.5707963267948966 rad + pos: -4.5,3.5 + parent: 24450 + - uid: 25845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,1.5 - parent: 22565 - - uid: 23853 + rot: -1.5707963267948966 rad + pos: -5.5,3.5 + parent: 24450 + - uid: 25846 components: - type: Transform - pos: -7.5,10.5 - parent: 22565 - - uid: 23854 + rot: -1.5707963267948966 rad + pos: -6.5,3.5 + parent: 24450 + - uid: 27595 components: - type: Transform - pos: -16.5,9.5 - parent: 22565 - - uid: 23855 + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 27260 + - uid: 27596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,10.5 - parent: 22565 - - uid: 23856 + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 27260 + - uid: 27597 components: - type: Transform - pos: -31.5,13.5 - parent: 22565 - - uid: 23857 + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 27260 + - uid: 27598 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,3.5 - parent: 22565 -- proto: DisposalJunction - entities: - - uid: 7702 + rot: 3.141592653589793 rad + pos: 0.5,-11.5 + parent: 27260 + - uid: 27599 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,25.5 - parent: 89 - - uid: 8929 + rot: 3.141592653589793 rad + pos: 0.5,-10.5 + parent: 27260 + - uid: 27600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,12.5 - parent: 89 - - uid: 12663 + rot: 3.141592653589793 rad + pos: 0.5,-9.5 + parent: 27260 + - uid: 27601 components: - type: Transform - pos: 19.5,7.5 - parent: 89 - - uid: 18435 + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 27260 + - uid: 27602 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-5.5 - parent: 89 - - uid: 18545 + pos: 0.5,-7.5 + parent: 27260 + - uid: 27603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,0.5 - parent: 89 - - uid: 18553 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 27260 + - uid: 27604 components: - type: Transform rot: 3.141592653589793 rad - pos: -70.5,-13.5 - parent: 89 - - uid: 18577 + pos: 0.5,-5.5 + parent: 27260 +- proto: DisposalRouterFlipped + entities: + - uid: 10323 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,2.5 - parent: 89 - - uid: 18644 + pos: -0.5,2.5 + parent: 2 +- proto: DisposalTrunk + entities: + - uid: 10324 components: - type: Transform rot: 1.5707963267948966 rad - pos: -111.5,-1.5 - parent: 89 - - uid: 18656 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-6.5 - parent: 89 - - uid: 18741 + pos: -119.5,-12.5 + parent: 2 + - uid: 10325 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,4.5 - parent: 89 - - uid: 18791 + pos: -106.5,-14.5 + parent: 2 + - uid: 10326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,9.5 - parent: 89 - - uid: 18823 + pos: -125.5,14.5 + parent: 2 + - uid: 10327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,8.5 - parent: 89 - - uid: 18861 + rot: 3.141592653589793 rad + pos: -64.5,-17.5 + parent: 2 + - uid: 10328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 89 - - uid: 18888 + pos: -58.5,-5.5 + parent: 2 + - uid: 10329 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-3.5 - parent: 89 - - uid: 18893 + pos: 52.5,13.5 + parent: 2 + - uid: 10330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,17.5 - parent: 89 - - uid: 18908 + rot: 1.5707963267948966 rad + pos: -9.5,-20.5 + parent: 2 + - uid: 10331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 89 - - uid: 19009 + pos: 45.5,9.5 + parent: 2 + - uid: 10332 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,13.5 - parent: 89 - - uid: 19068 + pos: -17.5,-6.5 + parent: 2 + - uid: 10333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,17.5 - parent: 89 - - uid: 19111 + pos: -33.5,-7.5 + parent: 2 + - uid: 10334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,9.5 - parent: 89 - - uid: 19121 + pos: 14.5,9.5 + parent: 2 + - uid: 10335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,9.5 - parent: 89 - - uid: 19128 + pos: -97.5,27.5 + parent: 2 + - uid: 10336 components: - type: Transform rot: 1.5707963267948966 rad - pos: -24.5,-7.5 - parent: 89 - - uid: 19186 + pos: -41.5,-8.5 + parent: 2 + - uid: 10337 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 89 - - uid: 19216 + pos: 25.5,27.5 + parent: 2 + - uid: 10338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,2.5 - parent: 89 - - uid: 19223 + rot: 1.5707963267948966 rad + pos: 10.5,32.5 + parent: 2 + - uid: 10339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,2.5 - parent: 89 - - uid: 19236 + rot: 3.141592653589793 rad + pos: -69.5,7.5 + parent: 2 + - uid: 10340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,15.5 - parent: 89 - - uid: 19301 + rot: 3.141592653589793 rad + pos: -77.5,7.5 + parent: 2 + - uid: 10341 components: - type: Transform - pos: 15.5,14.5 - parent: 89 - - uid: 19304 + rot: 1.5707963267948966 rad + pos: -89.5,10.5 + parent: 2 + - uid: 10342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-16.5 - parent: 89 - - uid: 19307 + rot: -1.5707963267948966 rad + pos: -50.5,-17.5 + parent: 2 + - uid: 10343 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 89 - - uid: 19349 + pos: -119.5,-3.5 + parent: 2 + - uid: 10344 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 89 - - uid: 19403 + pos: 37.5,16.5 + parent: 2 + - uid: 10345 components: - type: Transform - pos: 51.5,7.5 - parent: 89 - - uid: 23858 + rot: 1.5707963267948966 rad + pos: -71.5,-15.5 + parent: 2 + - uid: 10346 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -69.5,-13.5 + parent: 2 + - uid: 10347 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,1.5 - parent: 22565 - - uid: 23859 + pos: -111.5,-11.5 + parent: 2 + - uid: 10348 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 22565 - - uid: 23860 + pos: 28.5,-3.5 + parent: 2 + - uid: 10349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,9.5 - parent: 22565 - - uid: 23861 + pos: -97.5,9.5 + parent: 2 + - uid: 10350 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,9.5 - parent: 22565 -- proto: DisposalJunctionFlipped - entities: - - uid: 17703 + pos: 9.5,-12.5 + parent: 2 + - uid: 10351 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,2.5 - parent: 89 - - uid: 18462 + pos: -15.5,-5.5 + parent: 2 + - uid: 10352 components: - type: Transform - pos: -88.5,9.5 - parent: 89 - - uid: 18464 + pos: -60.5,5.5 + parent: 2 + - uid: 10353 components: - type: Transform rot: -1.5707963267948966 rad - pos: -77.5,8.5 - parent: 89 - - uid: 18505 + pos: 28.5,15.5 + parent: 2 + - uid: 10354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,9.5 - parent: 89 - - uid: 18546 + pos: -104.5,15.5 + parent: 2 + - uid: 10355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -54.5,12.5 + parent: 2 + - uid: 10356 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,7.5 - parent: 89 - - uid: 18584 + pos: 22.5,9.5 + parent: 2 + - uid: 10357 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,-10.5 - parent: 89 - - uid: 18589 + pos: -91.5,12.5 + parent: 2 + - uid: 10358 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,-10.5 - parent: 89 - - uid: 18662 + pos: -65.5,23.5 + parent: 2 + - uid: 10359 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,-1.5 - parent: 89 - - uid: 18679 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 2 + - uid: 10360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,4.5 - parent: 89 - - uid: 18700 + pos: -105.5,-2.5 + parent: 2 + - uid: 10361 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -46.5,14.5 + parent: 2 + - uid: 10362 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -47.5,1.5 + parent: 2 + - uid: 10363 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,7.5 - parent: 89 - - uid: 18714 + pos: -33.5,14.5 + parent: 2 + - uid: 10364 components: - type: Transform - pos: -0.5,-10.5 - parent: 89 - - uid: 18719 + rot: 1.5707963267948966 rad + pos: -63.5,20.5 + parent: 2 + - uid: 10365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,4.5 - parent: 89 - - uid: 18829 + rot: 1.5707963267948966 rad + pos: -86.5,32.5 + parent: 2 + - uid: 10366 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,4.5 - parent: 89 - - uid: 18910 + pos: -84.5,12.5 + parent: 2 + - uid: 10367 components: - type: Transform - pos: -0.5,-4.5 - parent: 89 - - uid: 18936 + rot: 1.5707963267948966 rad + pos: 10.5,-3.5 + parent: 2 + - uid: 10368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,17.5 - parent: 89 - - uid: 18969 + rot: 1.5707963267948966 rad + pos: 1.5,-19.5 + parent: 2 + - uid: 10369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-8.5 - parent: 89 - - uid: 18985 + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - uid: 10370 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-1.5 - parent: 89 - - uid: 18986 + pos: 14.5,11.5 + parent: 2 + - uid: 10371 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,4.5 - parent: 89 - - uid: 19007 + pos: -6.5,-15.5 + parent: 2 + - uid: 10372 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,7.5 - parent: 89 - - uid: 19274 + rot: 1.5707963267948966 rad + pos: -4.5,-38.5 + parent: 2 + - uid: 10373 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,13.5 - parent: 89 - - uid: 19288 + pos: 11.5,14.5 + parent: 2 + - uid: 10374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 89 - - uid: 19299 + rot: 3.141592653589793 rad + pos: -7.5,5.5 + parent: 2 + - uid: 10375 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-19.5 - parent: 89 - - uid: 19328 + pos: -43.5,-1.5 + parent: 2 + - uid: 10376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,2.5 - parent: 89 - - uid: 19528 + rot: 1.5707963267948966 rad + pos: 30.5,-1.5 + parent: 2 + - uid: 10377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -23.5,4.5 - parent: 89 - - uid: 23862 + pos: 62.5,4.5 + parent: 2 + - uid: 10378 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,1.5 - parent: 22565 -- proto: DisposalPipe - entities: - - uid: 112 + pos: -24.5,-8.5 + parent: 2 + - uid: 10379 components: - type: Transform - pos: 24.5,24.5 - parent: 89 - - uid: 148 + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 2 + - uid: 10380 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,15.5 - parent: 89 - - uid: 1648 + pos: -4.5,17.5 + parent: 2 + - uid: 10381 components: - type: Transform - pos: -14.5,9.5 - parent: 89 - - uid: 2521 + rot: -1.5707963267948966 rad + pos: -101.5,7.5 + parent: 2 + - uid: 10382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,2.5 - parent: 89 - - uid: 2700 + pos: 15.5,-7.5 + parent: 2 + - uid: 10383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 89 - - uid: 2723 + pos: 2.5,-0.5 + parent: 2 + - uid: 10384 components: - type: Transform - pos: 19.5,3.5 - parent: 89 - - uid: 2801 + pos: -22.5,5.5 + parent: 2 + - uid: 25847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,2.5 - parent: 89 - - uid: 2830 + pos: -9.5,4.5 + parent: 24450 + - uid: 25848 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 89 - - uid: 2831 + pos: -15.5,-0.5 + parent: 24450 + - uid: 25849 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 89 - - uid: 2834 - components: - - type: Transform - pos: 19.5,6.5 - parent: 89 - - uid: 3459 + pos: -8.5,-0.5 + parent: 24450 + - uid: 25850 components: - type: Transform - pos: 19.5,4.5 - parent: 89 - - uid: 3488 + rot: 3.141592653589793 rad + pos: -13.5,-3.5 + parent: 24450 + - uid: 25851 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 89 - - uid: 3791 + pos: -32.5,3.5 + parent: 24450 + - uid: 25852 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 89 - - uid: 3942 + pos: 8.5,3.5 + parent: 24450 + - uid: 27605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-5.5 - parent: 89 - - uid: 5395 + pos: 0.5,-4.5 + parent: 27260 + - uid: 27606 components: - type: Transform - pos: -108.5,-16.5 - parent: 89 - - uid: 6331 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 27260 +- proto: DisposalUnit + entities: + - uid: 10385 components: - type: Transform - pos: -5.5,16.5 - parent: 89 - - uid: 7374 + pos: -22.5,5.5 + parent: 2 + - uid: 10386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 89 - - uid: 7698 + pos: -119.5,-12.5 + parent: 2 + - uid: 10387 components: - type: Transform - pos: -97.5,26.5 - parent: 89 - - uid: 7701 + pos: -125.5,14.5 + parent: 2 + - uid: 10388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,25.5 - parent: 89 - - uid: 7703 + pos: -64.5,-17.5 + parent: 2 + - uid: 10389 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 7704 + pos: -58.5,-5.5 + parent: 2 + - uid: 10390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,25.5 - parent: 89 - - uid: 8922 + pos: 52.5,13.5 + parent: 2 + - uid: 10391 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 89 - - uid: 8925 + pos: -15.5,-5.5 + parent: 2 + - uid: 10392 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,12.5 - parent: 89 - - uid: 11375 + pos: -9.5,-20.5 + parent: 2 + - uid: 10393 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 89 - - uid: 11821 + pos: 62.5,4.5 + parent: 2 + - uid: 10394 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,7.5 - parent: 89 - - uid: 11826 + pos: 37.5,16.5 + parent: 2 + - uid: 10395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,7.5 - parent: 89 - - uid: 12616 + pos: 45.5,9.5 + parent: 2 + - uid: 10396 components: - type: Transform - pos: 24.5,25.5 - parent: 89 - - uid: 12678 + pos: -7.5,5.5 + parent: 2 + - uid: 10397 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 14906 + pos: 22.5,0.5 + parent: 2 + - uid: 10398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 89 - - uid: 14953 + pos: 28.5,-3.5 + parent: 2 + - uid: 10399 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-6.5 - parent: 89 - - uid: 15361 + pos: 30.5,-1.5 + parent: 2 + - uid: 10400 components: - type: Transform - pos: 14.5,28.5 - parent: 89 - - uid: 15365 + pos: 10.5,-3.5 + parent: 2 + - uid: 10401 components: - type: Transform - pos: 14.5,29.5 - parent: 89 - - uid: 15446 + pos: 9.5,-12.5 + parent: 2 + - uid: 10402 components: - type: Transform - pos: 14.5,30.5 - parent: 89 - - uid: 15457 + pos: -41.5,-8.5 + parent: 2 + - uid: 10403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,31.5 - parent: 89 - - uid: 15484 + pos: -50.5,-17.5 + parent: 2 + - uid: 10404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 89 - - uid: 15573 + pos: -20.5,8.5 + parent: 2 + - uid: 10405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 89 - - uid: 15688 + pos: -43.5,-1.5 + parent: 2 + - uid: 10406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,32.5 - parent: 89 - - uid: 16527 + pos: -71.5,-15.5 + parent: 2 + - uid: 10407 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 89 - - uid: 16951 + pos: -47.5,1.5 + parent: 2 + - uid: 10408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-18.5 - parent: 89 - - uid: 17696 + pos: -33.5,-7.5 + parent: 2 + - uid: 10409 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,1.5 - parent: 89 - - uid: 17958 + pos: -84.5,12.5 + parent: 2 + - uid: 10410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-8.5 - parent: 89 - - uid: 18309 + pos: -58.5,10.5 + parent: 2 + - uid: 10411 components: - type: Transform - pos: 11.5,-4.5 - parent: 89 - - uid: 18438 + pos: -63.5,20.5 + parent: 2 + - uid: 10412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 89 - - uid: 18440 + pos: -4.5,17.5 + parent: 2 + - uid: 10413 components: - type: Transform - pos: -7.5,6.5 - parent: 89 - - uid: 18460 + pos: -65.5,23.5 + parent: 2 + - uid: 10414 components: - type: Transform - pos: 50.5,8.5 - parent: 89 - - uid: 18465 + pos: -89.5,10.5 + parent: 2 + - uid: 10415 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,9.5 - parent: 89 - - uid: 18466 + pos: 22.5,9.5 + parent: 2 + - uid: 10416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,9.5 - parent: 89 - - uid: 18467 + pos: 14.5,9.5 + parent: 2 + - uid: 10417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,4.5 - parent: 89 - - uid: 18468 + pos: -33.5,14.5 + parent: 2 + - uid: 10418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,9.5 - parent: 89 - - uid: 18469 + pos: 1.5,-4.5 + parent: 2 + - uid: 10419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,9.5 - parent: 89 - - uid: 18471 + pos: -4.5,-38.5 + parent: 2 + - uid: 10420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 89 - - uid: 18472 + pos: -69.5,-13.5 + parent: 2 + - uid: 10421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,9.5 - parent: 89 - - uid: 18473 + pos: -77.5,7.5 + parent: 2 + - uid: 10422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,9.5 - parent: 89 - - uid: 18475 + pos: -69.5,7.5 + parent: 2 + - uid: 10423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-19.5 - parent: 89 - - uid: 18476 + pos: -54.5,12.5 + parent: 2 + - uid: 10424 + components: + - type: Transform + pos: -60.5,5.5 + parent: 2 + - uid: 10425 + components: + - type: Transform + pos: 1.5,-19.5 + parent: 2 + - uid: 10426 components: - type: Transform - pos: 51.5,6.5 - parent: 89 - - uid: 18477 + pos: 25.5,27.5 + parent: 2 + - uid: 10427 components: - type: Transform - pos: 51.5,5.5 - parent: 89 - - uid: 18478 + pos: 10.5,32.5 + parent: 2 + - uid: 10428 components: - type: Transform - pos: 51.5,4.5 - parent: 89 - - uid: 18479 + pos: -46.5,14.5 + parent: 2 + - uid: 10429 components: - type: Transform - pos: 51.5,3.5 - parent: 89 - - uid: 18480 + pos: -86.5,32.5 + parent: 2 + - uid: 10430 components: - type: Transform - pos: 51.5,2.5 - parent: 89 - - uid: 18481 + pos: -101.5,7.5 + parent: 2 + - uid: 10431 components: - type: Transform - pos: 51.5,1.5 - parent: 89 - - uid: 18482 + pos: -97.5,9.5 + parent: 2 + - uid: 10432 components: - type: Transform - pos: -125.5,14.5 - parent: 89 - - uid: 18483 + pos: -105.5,-2.5 + parent: 2 + - uid: 10433 components: - type: Transform - pos: -125.5,13.5 - parent: 89 - - uid: 18484 + pos: -111.5,-11.5 + parent: 2 + - uid: 10434 components: - type: Transform - pos: -125.5,12.5 - parent: 89 - - uid: 18485 + pos: -119.5,-3.5 + parent: 2 + - uid: 10435 components: - type: Transform - pos: -125.5,11.5 - parent: 89 - - uid: 18486 + pos: -104.5,15.5 + parent: 2 + - uid: 10436 components: - type: Transform - pos: -125.5,10.5 - parent: 89 - - uid: 18487 + pos: 11.5,14.5 + parent: 2 + - uid: 10437 components: - type: Transform - pos: -85.5,10.5 - parent: 89 - - uid: 18488 + pos: 28.5,15.5 + parent: 2 + - uid: 10438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 89 - - uid: 18490 + pos: -91.5,12.5 + parent: 2 + - uid: 10439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,0.5 - parent: 89 - - uid: 18491 + pos: 14.5,11.5 + parent: 2 + - uid: 10440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,0.5 - parent: 89 - - uid: 18492 + pos: -6.5,-15.5 + parent: 2 + - uid: 10441 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,0.5 - parent: 89 - - uid: 18493 + pos: -17.5,-6.5 + parent: 2 + - uid: 10442 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,0.5 - parent: 89 - - uid: 18494 + pos: -24.5,-8.5 + parent: 2 + - uid: 10443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,0.5 - parent: 89 - - uid: 18495 + pos: 15.5,-7.5 + parent: 2 + - uid: 10444 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,0.5 - parent: 89 - - uid: 18496 + pos: 2.5,-0.5 + parent: 2 + - uid: 10445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,0.5 - parent: 89 - - uid: 18497 + pos: -106.5,-14.5 + parent: 2 + - uid: 25853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,0.5 - parent: 89 - - uid: 18498 + pos: -9.5,4.5 + parent: 24450 + - uid: 25854 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,0.5 - parent: 89 - - uid: 18499 + pos: -15.5,-0.5 + parent: 24450 + - uid: 25855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,0.5 - parent: 89 - - uid: 18501 + pos: -8.5,-0.5 + parent: 24450 + - uid: 25856 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 18502 + pos: -13.5,-3.5 + parent: 24450 + - uid: 25857 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,9.5 - parent: 89 - - uid: 18503 + pos: -32.5,3.5 + parent: 24450 + - uid: 25858 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,9.5 - parent: 89 - - uid: 18504 + pos: 8.5,3.5 + parent: 24450 + - uid: 27607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,9.5 - parent: 89 - - uid: 18506 + pos: 0.5,-4.5 + parent: 27260 +- proto: DisposalYJunction + entities: + - uid: 10446 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,8.5 - parent: 89 - - uid: 18507 + pos: -121.5,-3.5 + parent: 2 + - uid: 10447 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 89 - - uid: 18508 + pos: -121.5,-1.5 + parent: 2 + - uid: 10448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,8.5 - parent: 89 - - uid: 18509 + rot: 1.5707963267948966 rad + pos: -108.5,4.5 + parent: 2 + - uid: 10449 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,7.5 - parent: 89 - - uid: 18510 + pos: -11.5,7.5 + parent: 2 + - uid: 10450 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,6.5 - parent: 89 - - uid: 18511 + pos: 12.5,-9.5 + parent: 2 +- proto: DogBed + entities: + - uid: 10451 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,5.5 - parent: 89 - - uid: 18512 + pos: 40.5,12.5 + parent: 2 + - uid: 10452 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,4.5 - parent: 89 - - uid: 18513 + pos: 7.5,-9.5 + parent: 2 + - uid: 10453 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,3.5 - parent: 89 - - uid: 18514 + pos: -74.5,-15.5 + parent: 2 + - uid: 10454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,2.5 - parent: 89 - - uid: 18515 + pos: -93.5,-9.5 + parent: 2 + - uid: 10455 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,1.5 - parent: 89 - - uid: 18516 + pos: -33.5,27.5 + parent: 2 + - uid: 10456 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,0.5 - parent: 89 - - uid: 18517 + pos: 48.5,12.5 + parent: 2 + - uid: 10457 components: + - type: MetaData + name: лежанка - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-0.5 - parent: 89 - - uid: 18518 + pos: 26.5,35.5 + parent: 2 + - uid: 10458 components: - type: Transform - pos: 35.5,15.5 - parent: 89 - - uid: 18519 + pos: 3.5,6.5 + parent: 2 +- proto: DonkpocketBoxSpawner + entities: + - uid: 10459 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,-2.5 - parent: 89 - - uid: 18520 + pos: -118.5,-15.5 + parent: 2 + - uid: 10460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-3.5 - parent: 89 - - uid: 18524 + pos: -118.5,-15.5 + parent: 2 + - uid: 10461 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-16.5 - parent: 89 - - uid: 18525 + pos: -80.5,-9.5 + parent: 2 + - uid: 10462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-15.5 - parent: 89 - - uid: 18526 + pos: -79.5,-9.5 + parent: 2 + - uid: 10463 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,9.5 - parent: 89 - - uid: 18527 + pos: -115.5,1.5 + parent: 2 + - uid: 10464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,8.5 - parent: 89 - - uid: 18529 + pos: 22.5,-17.5 + parent: 2 +- proto: DoorElectronics + entities: + - uid: 10465 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,8.5 - parent: 89 - - uid: 18530 + pos: -104.67677,-7.256445 + parent: 2 + - uid: 10466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,8.5 - parent: 89 - - uid: 18531 + pos: -104.67677,-7.475195 + parent: 2 + - uid: 10467 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,8.5 - parent: 89 - - uid: 18532 + pos: -104.36427,-7.475195 + parent: 2 + - uid: 10468 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 89 - - uid: 18533 + pos: -104.36427,-7.256445 + parent: 2 +- proto: DoubleEmergencyNitrogenTankFilled + entities: + - uid: 10469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 89 - - uid: 18534 + pos: -113.682556,-12.400606 + parent: 2 + - uid: 10470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,2.5 - parent: 89 - - uid: 18535 + pos: -113.79263,-12.290531 + parent: 2 + - uid: 10471 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-1.5 - parent: 89 - - uid: 18536 + pos: -93.798645,-5.6203394 + parent: 2 + - uid: 25859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 89 - - uid: 18537 + pos: -2.5354614,-17.255661 + parent: 24450 + - uid: 25860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 89 - - uid: 18538 + pos: -2.1604614,-17.349411 + parent: 24450 +- proto: DoubleEmergencyOxygenTankFilled + entities: + - uid: 10472 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 89 - - uid: 18551 + pos: -113.51744,-12.547374 + parent: 2 + - uid: 10473 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-14.5 - parent: 89 - - uid: 18552 + pos: 52.441284,-8.61906 + parent: 2 + - uid: 10474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,16.5 - parent: 89 - - uid: 18554 + pos: -113.333984,-12.639103 + parent: 2 + - uid: 10475 components: - type: Transform - pos: 35.5,14.5 - parent: 89 - - uid: 18555 + pos: -93.111145,-6.1284304 + parent: 2 + - uid: 10476 components: - type: Transform - pos: 35.5,13.5 - parent: 89 - - uid: 18556 + pos: -93.392395,-6.0190554 + parent: 2 + - uid: 10477 components: - type: Transform - pos: 35.5,12.5 - parent: 89 - - uid: 18557 + pos: -93.704895,-5.9409304 + parent: 2 + - uid: 25861 components: - type: Transform - pos: 35.5,11.5 - parent: 89 - - uid: 18558 + pos: -4.6604614,-17.130661 + parent: 24450 + - uid: 25862 components: - type: Transform - pos: 35.5,10.5 - parent: 89 - - uid: 18559 + pos: -4.3323364,-17.302536 + parent: 24450 +- proto: Dresser + entities: + - uid: 10478 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 18560 + pos: 40.5,14.5 + parent: 2 + - uid: 10484 components: - type: Transform - pos: 35.5,8.5 - parent: 89 - - uid: 18561 + pos: -20.5,26.5 + parent: 2 + - uid: 10485 components: - type: Transform - pos: 35.5,7.5 - parent: 89 - - uid: 18562 + pos: -36.5,27.5 + parent: 2 + - uid: 10486 components: - type: Transform - pos: 35.5,6.5 - parent: 89 - - uid: 18563 + pos: 22.5,12.5 + parent: 2 +- proto: DresserCaptainFilled + entities: + - uid: 10488 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 18564 + pos: 46.5,15.5 + parent: 2 +- proto: DresserChiefEngineerFilled + entities: + - uid: 23706 components: - type: Transform - pos: 35.5,4.5 - parent: 89 - - uid: 18567 + pos: -103.5,7.5 + parent: 2 +- proto: DresserChiefMedicalOfficerFilled + entities: + - uid: 10489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-1.5 - parent: 89 - - uid: 18568 + pos: 25.5,39.5 + parent: 2 +- proto: DresserFilled + entities: + - uid: 8837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-1.5 - parent: 89 - - uid: 18569 + pos: 16.5,18.5 + parent: 2 + - uid: 10479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-1.5 - parent: 89 - - uid: 18570 + pos: -34.5,29.5 + parent: 2 + - uid: 10480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-1.5 - parent: 89 - - uid: 18571 + pos: -25.5,29.5 + parent: 2 + - uid: 10481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-1.5 - parent: 89 - - uid: 18572 + pos: -34.5,25.5 + parent: 2 + - uid: 10482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-1.5 - parent: 89 - - uid: 18573 + pos: -25.5,33.5 + parent: 2 + - uid: 10483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-1.5 - parent: 89 - - uid: 18574 + pos: -34.5,33.5 + parent: 2 + - uid: 10487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-1.5 - parent: 89 - - uid: 18575 + pos: -25.5,25.5 + parent: 2 +- proto: DresserHeadOfPersonnelFilled + entities: + - uid: 10490 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-12.5 - parent: 89 - - uid: 18576 + pos: 43.5,14.5 + parent: 2 +- proto: DresserHeadOfSecurityFilled + entities: + - uid: 10491 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-11.5 - parent: 89 - - uid: 18579 + pos: 34.5,-0.5 + parent: 2 +- proto: DresserQuarterMasterFilled + entities: + - uid: 10492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,3.5 - parent: 89 - - uid: 18580 + pos: -69.5,-17.5 + parent: 2 +- proto: DresserResearchDirectorFilled + entities: + - uid: 17376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,-10.5 - parent: 89 - - uid: 18581 + pos: 4.5,-27.5 + parent: 2 +- proto: DresserWardenFilled + entities: + - uid: 10493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,-10.5 - parent: 89 - - uid: 18582 + pos: 8.5,-8.5 + parent: 2 +- proto: DrinkAbsintheGlass + entities: + - uid: 10494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-10.5 - parent: 89 - - uid: 18585 + pos: -51.421,47.763172 + parent: 2 +- proto: DrinkBahamaMama + entities: + - uid: 10495 components: - type: Transform - pos: -64.5,-14.5 - parent: 89 - - uid: 18586 + pos: -51.61521,48.200672 + parent: 2 +- proto: DrinkBeepskySmashGlass + entities: + - uid: 10496 components: - type: Transform - pos: -64.5,-13.5 - parent: 89 - - uid: 18587 + pos: -51.686626,48.310047 + parent: 2 +- proto: DrinkBeerBottleFull + entities: + - uid: 10497 components: - type: Transform - pos: -64.5,-12.5 - parent: 89 - - uid: 18588 + pos: 33.648262,29.424652 + parent: 2 + - uid: 10498 components: - type: Transform - pos: -64.5,-11.5 - parent: 89 - - uid: 18590 + pos: 62.468678,-9.397333 + parent: 2 + - uid: 10499 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-14.5 - parent: 89 - - uid: 18591 + pos: 45.40097,-37.246986 + parent: 2 + - uid: 10500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-13.5 - parent: 89 - - uid: 18592 + pos: 45.166595,-37.246986 + parent: 2 + - uid: 10501 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-12.5 - parent: 89 - - uid: 18593 + pos: 45.604095,-37.246986 + parent: 2 + - uid: 25864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-11.5 - parent: 89 - - uid: 18594 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,2.5 - parent: 89 - - uid: 18597 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: DrinkBeerCan + entities: + - uid: 10502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-3.5 - parent: 89 - - uid: 18598 + pos: 3.5264907,-1.3255532 + parent: 2 +- proto: DrinkBlueCuracaoGlass + entities: + - uid: 10503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-3.5 - parent: 89 - - uid: 18599 + pos: -123.16864,-13.288413 + parent: 2 +- proto: DrinkBottleCognac + entities: + - uid: 10504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 89 - - uid: 18600 + pos: -36.558395,29.720085 + parent: 2 +- proto: DrinkBottleGildlager + entities: + - uid: 10505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 89 - - uid: 18601 + pos: -53.445843,48.137283 + parent: 2 + - uid: 10506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-10.5 - parent: 89 - - uid: 18602 + pos: -54.477093,48.137283 + parent: 2 +- proto: DrinkBottleOfNothingFull + entities: + - uid: 10507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-10.5 - parent: 89 - - uid: 18603 + pos: -33.752167,-9.276451 + parent: 2 + - uid: 10508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-3.5 - parent: 89 - - uid: 18604 + pos: -33.51779,-9.276451 + parent: 2 +- proto: DrinkBottleVodka + entities: + - uid: 10509 components: - type: Transform - pos: -125.5,-4.5 - parent: 89 - - uid: 18605 + pos: -38.620895,29.751335 + parent: 2 + - uid: 10510 components: - type: Transform - pos: -125.5,-5.5 - parent: 89 - - uid: 18606 + pos: -38.07402,29.563835 + parent: 2 +- proto: DrinkCafeLatte + entities: + - uid: 10511 components: - type: Transform - pos: -125.5,-6.5 - parent: 89 - - uid: 18607 + pos: -9.703323,-16.228903 + parent: 2 + - uid: 10512 components: - type: Transform - pos: -125.5,-7.5 - parent: 89 - - uid: 18608 + pos: -10.093948,-16.166403 + parent: 2 +- proto: DrinkCampariBottleFull + entities: + - uid: 10513 components: - type: Transform - pos: -125.5,-8.5 - parent: 89 - - uid: 18609 + pos: 48.505688,-1.9135504 + parent: 2 +- proto: DrinkChampagneBottleFull + entities: + - uid: 10514 components: - type: Transform - pos: -125.5,-9.5 - parent: 89 - - uid: 18613 + pos: 48.286938,-1.2260504 + parent: 2 +- proto: DrinkCoffee + entities: + - uid: 10515 components: - type: Transform - pos: -56.5,-9.5 - parent: 89 - - uid: 18614 + pos: 7.2665434,-12.514693 + parent: 2 + - uid: 10516 components: - type: Transform - pos: -56.5,-8.5 - parent: 89 - - uid: 18615 + pos: 33.49264,14.72666 + parent: 2 + - uid: 10517 components: - type: Transform - pos: -56.5,-7.5 - parent: 89 - - uid: 18616 + pos: 35.539516,13.617285 + parent: 2 +- proto: DrinkCognacBottleFull + entities: + - uid: 10518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-10.5 - parent: 89 - - uid: 18617 + pos: -27.49241,32.79545 + parent: 2 + - uid: 10520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-10.5 - parent: 89 - - uid: 18618 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-10.5 - parent: 89 - - uid: 18619 + pos: 32.26729,-0.23292685 + parent: 2 + - uid: 10529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-10.5 - parent: 89 - - uid: 18620 + pos: 32.579594,-0.024593592 + parent: 2 +- proto: DrinkColaBottleFull + entities: + - uid: 10530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-10.5 - parent: 89 - - uid: 18621 + pos: -23.521883,28.72285 + parent: 2 + - uid: 10531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-10.5 - parent: 89 - - uid: 18622 + pos: -10.639323,-36.20387 + parent: 2 + - uid: 10532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-10.5 - parent: 89 - - uid: 18623 + pos: -10.311198,-36.188244 + parent: 2 +- proto: DrinkEnergyDrinkCan + entities: + - uid: 10533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-10.5 - parent: 89 - - uid: 18624 + pos: 4.3478365,-19.622332 + parent: 2 + - uid: 10534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-10.5 - parent: 89 - - uid: 18625 + pos: 4.4923315,-20.44095 + parent: 2 +- proto: DrinkFlask + entities: + - uid: 10535 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-10.5 - parent: 89 - - uid: 18626 + pos: 47.55086,10.622266 + parent: 2 +- proto: DrinkGildlagerBottleFull + entities: + - uid: 10536 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-10.5 - parent: 89 - - uid: 18627 + pos: 48.349438,-1.6948004 + parent: 2 + - uid: 10537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,-10.5 - parent: 89 - - uid: 18628 + pos: -98.478195,31.59029 + parent: 2 +- proto: DrinkGlass + entities: + - uid: 10538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-10.5 - parent: 89 - - uid: 18629 + pos: 4.5901623,-21.062885 + parent: 2 + - uid: 10539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-6.5 - parent: 89 - - uid: 18630 + pos: 4.3714123,-21.437885 + parent: 2 + - uid: 10540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-6.5 - parent: 89 - - uid: 18631 + pos: -1.492651,45.647552 + parent: 2 + - uid: 10541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-6.5 - parent: 89 - - uid: 18632 + pos: -5.508276,45.585052 + parent: 2 + - uid: 10542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-6.5 - parent: 89 - - uid: 18633 + pos: -23.553133,28.0041 + parent: 2 +- proto: DrinkGoldenCup + entities: + - uid: 10543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-6.5 - parent: 89 - - uid: 18634 + pos: 48.599438,-1.4604254 + parent: 2 +- proto: DrinkHosFlask + entities: + - uid: 10544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-6.5 - parent: 89 - - uid: 18635 + pos: 33.00601,-0.4120643 + parent: 2 +- proto: DrinkHotCoffee + entities: + - uid: 10545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-6.5 - parent: 89 - - uid: 18636 + pos: 15.505661,11.6435375 + parent: 2 + - uid: 10546 components: - type: Transform - pos: -111.5,-9.5 - parent: 89 - - uid: 18637 + pos: 34.508266,14.742285 + parent: 2 +- proto: DrinkJarWhat + entities: + - uid: 10547 components: + - type: MetaData + name: Кротовуха - type: Transform - pos: -111.5,-8.5 - parent: 89 - - uid: 18638 + pos: 4.5164137,-22.102266 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 50 + name: null + reagents: + - data: null + ReagentId: DrGibb + Quantity: 10 + - data: null + ReagentId: JuiceTomato + Quantity: 10 + - data: null + ReagentId: GinFizz + Quantity: 10 + - data: null + ReagentId: Frezon + Quantity: 5 + - data: null + ReagentId: JuiceBerry + Quantity: 5 + - data: null + ReagentId: Milk + Quantity: 5 + - data: null + ReagentId: Antifreeze + Quantity: 5 +- proto: DrinkMug + entities: + - uid: 10548 components: - type: Transform - pos: -111.5,-7.5 - parent: 89 - - uid: 18639 + pos: 16.404638,18.863092 + parent: 2 +- proto: DrinkMugBlue + entities: + - uid: 10549 components: - type: Transform - pos: -111.5,-6.5 - parent: 89 - - uid: 18640 + pos: 44.80428,5.9828796 + parent: 2 + - uid: 10550 components: - type: Transform - pos: -111.5,-5.5 - parent: 89 - - uid: 18641 + pos: 25.620392,13.633 + parent: 2 + - type: SolutionContainerManager + solutions: + drink: + temperature: 293.15 + canReact: True + maxVol: 20 + name: null + reagents: + - data: null + ReagentId: Coffee + Quantity: 10 + - data: null + ReagentId: IrishCoffee + Quantity: 10 + - uid: 10551 components: - type: Transform - pos: -111.5,-4.5 - parent: 89 - - uid: 18642 + pos: 2.27967,21.466866 + parent: 2 + - uid: 10552 components: - type: Transform - pos: -111.5,-3.5 - parent: 89 - - uid: 18643 + pos: 2.264045,19.471586 + parent: 2 + - uid: 10553 components: - type: Transform - pos: -111.5,-2.5 - parent: 89 - - uid: 18646 + pos: 2.264045,17.443998 + parent: 2 + - uid: 10554 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-1.5 - parent: 89 - - uid: 18647 + pos: 2.24842,15.443485 + parent: 2 + - uid: 10555 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-1.5 - parent: 89 - - uid: 18648 + pos: 19.277308,18.697405 + parent: 2 +- proto: DrinkMugDog + entities: + - uid: 10556 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-10.5 - parent: 89 - - uid: 18652 + pos: -34.203346,28.793152 + parent: 2 + - uid: 10557 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-10.5 - parent: 89 - - uid: 18657 + pos: 25.80995,29.817919 + parent: 2 + - uid: 10558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 89 - - uid: 18658 + pos: 33.5593,-6.414768 + parent: 2 +- proto: DrinkMugGreen + entities: + - uid: 10559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-9.5 - parent: 89 - - uid: 18659 + pos: 33.63515,-5.922344 + parent: 2 +- proto: DrinkMugOne + entities: + - uid: 10560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-8.5 - parent: 89 - - uid: 18660 + pos: 25.267576,36.804634 + parent: 2 + - uid: 10561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-7.5 - parent: 89 - - uid: 18664 + pos: 33.23693,-6.547344 + parent: 2 +- proto: DrinkMugRainbow + entities: + - uid: 10562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-5.5 - parent: 89 - - uid: 18665 + pos: 34.3472,-2.8853703 + parent: 2 +- proto: DrinkMugRed + entities: + - uid: 10563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-4.5 - parent: 89 - - uid: 18666 + pos: -96.62699,-6.528559 + parent: 2 + - uid: 10564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-3.5 - parent: 89 - - uid: 18667 + pos: -96.20512,-6.591059 + parent: 2 +- proto: DrinkPoisonWinebottleFull + entities: + - uid: 10565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-2.5 - parent: 89 - - uid: 18668 + pos: 48.708813,-1.7260504 + parent: 2 +- proto: DrinkRootBeerCan + entities: + - uid: 10566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-1.5 - parent: 89 - - uid: 18669 + pos: 4.47943,-18.812798 + parent: 2 + - type: CollisionWake + enabled: False + - type: Physics + sleepingAllowed: False +- proto: DrinkRumBottleFull + entities: + - uid: 10567 components: - type: Transform - pos: -108.5,-0.5 - parent: 89 - - uid: 18670 + pos: 48.765263,10.867164 + parent: 2 +- proto: DrinkSbitenGlass + entities: + - uid: 10568 components: - type: Transform - pos: -108.5,0.5 - parent: 89 - - uid: 18671 + pos: -51.59029,48.700672 + parent: 2 +- proto: DrinkShaker + entities: + - uid: 10569 components: - type: Transform - pos: -108.5,1.5 - parent: 89 - - uid: 18672 + pos: -30.46853,0.627223 + parent: 2 + - uid: 10570 components: - type: Transform - pos: -108.5,2.5 - parent: 89 - - uid: 18673 + pos: -1.5121098,44.69217 + parent: 2 + - uid: 10571 components: - type: Transform - pos: -108.5,3.5 - parent: 89 - - uid: 18674 + pos: -5.5589848,44.62967 + parent: 2 +- proto: DrinkShakeWhite + entities: + - uid: 10572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,4.5 - parent: 89 - - uid: 18675 + pos: -123.653015,-12.913413 + parent: 2 +- proto: DrinkShotGlass + entities: + - uid: 10573 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,4.5 - parent: 89 - - uid: 18676 + rot: 50.265482457436725 rad + pos: -77.30986,-24.162506 + parent: 2 + - uid: 10574 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,4.5 - parent: 89 - - uid: 18677 + rot: 50.265482457436725 rad + pos: -77.18486,-24.600006 + parent: 2 + - uid: 10575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,4.5 - parent: 89 - - uid: 18678 + pos: -34.314835,31.617702 + parent: 2 + - uid: 10576 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,4.5 - parent: 89 - - uid: 18680 + pos: -34.689835,31.617702 + parent: 2 + - uid: 10577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,4.5 - parent: 89 - - uid: 18681 + pos: 17.683292,5.579408 + parent: 2 + - uid: 10578 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,4.5 - parent: 89 - - uid: 18682 + pos: 17.322052,5.7720246 + parent: 2 + - uid: 10579 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,4.5 - parent: 89 - - uid: 18683 + pos: -11.289598,24.446281 + parent: 2 + - uid: 10580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,5.5 - parent: 89 - - uid: 18684 + pos: -11.711473,24.602531 + parent: 2 +- proto: DrinkSingulo + entities: + - uid: 10581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,6.5 - parent: 89 - - uid: 18688 + pos: -131.50919,23.442694 + parent: 2 +- proto: DrinkSodaWaterCan + entities: + - uid: 10582 components: - type: Transform - pos: -97.5,8.5 - parent: 89 - - uid: 18693 + pos: 18.787956,-14.249105 + parent: 2 + - uid: 10583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-0.5 - parent: 89 - - uid: 18694 + pos: 18.751822,-14.499105 + parent: 2 + - uid: 10584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-0.5 - parent: 89 - - uid: 18695 + pos: 21.783072,-14.249105 + parent: 2 + - uid: 10585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-0.5 - parent: 89 - - uid: 18696 + pos: 21.767447,-14.561605 + parent: 2 + - uid: 10586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-0.5 - parent: 89 - - uid: 18697 + pos: 24.652481,-14.284261 + parent: 2 + - uid: 10587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-0.5 - parent: 89 - - uid: 18698 + pos: 24.795654,-14.561605 + parent: 2 + - uid: 10588 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-0.5 - parent: 89 - - uid: 18699 + pos: 27.704758,-14.230448 + parent: 2 + - uid: 10589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-0.5 - parent: 89 - - uid: 18701 + pos: 27.780474,-14.54598 + parent: 2 +- proto: DrinkSpaceLube + entities: + - uid: 10590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,0.5 - parent: 89 - - uid: 18702 + pos: -35.73411,-5.180784 + parent: 2 +- proto: DrinkToxinsSpecialGlass + entities: + - uid: 10591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,1.5 - parent: 89 - - uid: 18703 + pos: -51.418415,47.950672 + parent: 2 +- proto: DrinkVodkaGlass + entities: + - uid: 10592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,2.5 - parent: 89 - - uid: 18704 + pos: -48.540546,-7.4118657 + parent: 2 +- proto: DrinkWaterBottleFull + entities: + - uid: 25866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,3.5 - parent: 89 - - uid: 18708 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,7.5 - parent: 89 - - uid: 18709 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,7.5 - parent: 89 - - uid: 18712 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25873 components: - type: Transform - pos: -11.5,6.5 - parent: 89 - - uid: 18713 + pos: -14.740829,4.583781 + parent: 24450 + - uid: 25874 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 18715 + pos: -14.17833,4.568156 + parent: 24450 + - uid: 25875 components: - type: Transform - pos: -11.5,4.5 - parent: 89 - - uid: 18716 + rot: -1.5707963267948966 rad + pos: -14.39708,4.7843614 + parent: 24450 +- proto: DrinkWaterCup + entities: + - uid: 10593 components: - type: Transform - pos: 19.5,5.5 - parent: 89 - - uid: 18717 + pos: -45.484257,11.485884 + parent: 2 + - uid: 10594 components: - type: Transform - pos: -11.5,3.5 - parent: 89 - - uid: 18720 + pos: -45.78113,11.704634 + parent: 2 + - uid: 10595 components: - type: Transform - pos: -108.5,-2.5 - parent: 89 - - uid: 18721 + pos: -27.287731,21.773132 + parent: 2 + - uid: 10596 components: - type: Transform - pos: -57.5,23.5 - parent: 89 - - uid: 18722 + pos: -27.662731,21.741882 + parent: 2 + - uid: 10597 components: - type: Transform - pos: -108.5,-4.5 - parent: 89 - - uid: 18723 + pos: -27.443981,21.538757 + parent: 2 + - uid: 10598 components: - type: Transform - pos: -108.5,-5.5 - parent: 89 - - uid: 18724 + pos: -45.24988,11.689009 + parent: 2 + - uid: 10599 components: - type: Transform - pos: -108.5,-6.5 - parent: 89 - - uid: 18725 + pos: -41.77214,-12.345528 + parent: 2 + - uid: 10600 + components: + - type: Transform + pos: -41.694016,-12.486153 + parent: 2 + - uid: 10601 components: - type: Transform - pos: -108.5,-7.5 - parent: 89 - - uid: 18726 + pos: -41.45964,-12.392403 + parent: 2 +- proto: DrinkWhiskeyBottleFull + entities: + - uid: 10602 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 18727 + rot: 50.265482457436725 rad + pos: -77.731735,-24.303131 + parent: 2 + - uid: 10603 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 - - uid: 18728 + pos: -34.471085,32.352077 + parent: 2 + - uid: 10604 components: - type: Transform - pos: -108.5,-10.5 - parent: 89 - - uid: 18729 + pos: -89.282906,29.581888 + parent: 2 + - uid: 10605 components: - type: Transform - pos: -108.5,-11.5 - parent: 89 - - uid: 18730 + pos: 18.62251,5.627563 + parent: 2 + - uid: 10606 components: - type: Transform - pos: -108.5,-12.5 - parent: 89 - - uid: 18731 + pos: 18.189026,5.6997943 + parent: 2 +- proto: DrinkWineBottleFull + entities: + - uid: 10607 components: - type: Transform - pos: -108.5,-13.5 - parent: 89 - - uid: 18732 + pos: -123.1743,21.519472 + parent: 2 + - uid: 10608 components: - type: Transform - pos: -108.5,-14.5 - parent: 89 - - uid: 18733 + pos: -11.164598,25.024406 + parent: 2 +- proto: Dropper + entities: + - uid: 10609 components: - type: Transform - pos: -108.5,-15.5 - parent: 89 - - uid: 18735 + pos: -5.395029,-7.168356 + parent: 2 + - uid: 10610 components: - type: Transform - pos: -108.5,-17.5 - parent: 89 - - uid: 18736 + pos: -3.481449,6.2247124 + parent: 2 + - uid: 10611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 89 - - uid: 18737 + pos: 24.52668,12.685545 + parent: 2 + - uid: 10612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 89 - - uid: 18739 + pos: -5.363779,-7.293356 + parent: 2 + - uid: 10613 components: - type: Transform rot: 3.141592653589793 rad - pos: 10.5,0.5 - parent: 89 - - uid: 18740 + pos: -2.4912267,5.6659956 + parent: 2 +- proto: EggSpider + entities: + - uid: 10614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,17.5 - parent: 89 - - uid: 18745 + pos: 39.347435,21.359114 + parent: 2 + - uid: 10615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -57.5,4.5 - parent: 89 - - uid: 18746 + pos: 49.625988,-9.519293 + parent: 2 + - uid: 10616 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,4.5 - parent: 89 - - uid: 18747 + pos: 49.261406,-9.696376 + parent: 2 + - uid: 10617 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,4.5 - parent: 89 - - uid: 18748 + pos: 49.250988,-9.269293 + parent: 2 +- proto: ElectricGuitarInstrument + entities: + - uid: 10618 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 89 - - uid: 18749 + pos: -35.432793,-7.4938426 + parent: 2 + - uid: 10619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 89 - - uid: 18750 + pos: -3.4961429,46.508736 + parent: 2 + - type: Instrument + program: 28 +- proto: EmergencyLight + entities: + - uid: 10620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 89 - - uid: 18751 + pos: -80.5,-11.5 + parent: 2 + - uid: 10621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 89 - - uid: 18752 + pos: -123.5,17.5 + parent: 2 + - uid: 10622 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 89 - - uid: 18754 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,9.5 - parent: 89 - - uid: 18755 + pos: -109.5,-3.5 + parent: 2 + - uid: 10623 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 89 - - uid: 18757 + pos: 48.5,-2.5 + parent: 2 + - uid: 10624 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,2.5 - parent: 89 - - uid: 18758 + pos: 19.5,-4.5 + parent: 2 + - uid: 10625 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 89 - - uid: 18759 + rot: 3.141592653589793 rad + pos: -14.5,1.5 + parent: 2 + - uid: 10626 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,2.5 - parent: 89 - - uid: 18760 + pos: -12.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10627 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 89 - - uid: 18761 + rot: -1.5707963267948966 rad + pos: -47.5,-15.5 + parent: 2 + - uid: 10628 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 89 - - uid: 18762 + pos: -95.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10629 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 89 - - uid: 18763 + pos: 30.5,31.5 + parent: 2 + - uid: 10630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 89 - - uid: 18764 + rot: 3.141592653589793 rad + pos: -62.5,43.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10631 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 89 - - uid: 18765 + pos: -62.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 89 - - uid: 18766 + rot: 1.5707963267948966 rad + pos: -62.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10633 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,4.5 - parent: 89 - - uid: 18767 + pos: -64.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10634 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,4.5 - parent: 89 - - uid: 18768 + pos: -64.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,4.5 - parent: 89 - - uid: 18769 + rot: 1.5707963267948966 rad + pos: -63.5,22.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10636 components: - type: Transform rot: 3.141592653589793 rad - pos: -108.5,5.5 - parent: 89 - - uid: 18770 + pos: -55.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10637 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,6.5 - parent: 89 - - uid: 18771 + rot: 1.5707963267948966 rad + pos: -56.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10638 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,7.5 - parent: 89 - - uid: 18772 + rot: -1.5707963267948966 rad + pos: -50.5,44.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10639 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,8.5 - parent: 89 - - uid: 18773 + rot: -1.5707963267948966 rad + pos: -50.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10640 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,9.5 - parent: 89 - - uid: 18774 + rot: -1.5707963267948966 rad + pos: -51.5,35.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,10.5 - parent: 89 - - uid: 18775 + rot: -1.5707963267948966 rad + pos: -55.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10642 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,11.5 - parent: 89 - - uid: 18776 + pos: -54.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10643 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,12.5 - parent: 89 - - uid: 18777 + pos: -65.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -108.5,13.5 - parent: 89 - - uid: 18780 + pos: -58.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,14.5 - parent: 89 - - uid: 18781 + pos: -49.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,14.5 - parent: 89 - - uid: 18782 + pos: -68.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,14.5 - parent: 89 - - uid: 18787 + pos: -69.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10648 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,5.5 - parent: 89 - - uid: 18788 + rot: -1.5707963267948966 rad + pos: -71.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10649 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,6.5 - parent: 89 - - uid: 18789 + rot: -1.5707963267948966 rad + pos: -80.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,7.5 - parent: 89 - - uid: 18790 + rot: -1.5707963267948966 rad + pos: -80.5,20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,8.5 - parent: 89 - - uid: 18793 + rot: 1.5707963267948966 rad + pos: -85.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10652 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -89.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10653 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,9.5 - parent: 89 - - uid: 18794 + pos: -84.5,3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10654 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,9.5 - parent: 89 - - uid: 18795 + pos: -83.5,26.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,7.5 - parent: 89 - - uid: 18796 + rot: -1.5707963267948966 rad + pos: -83.5,41.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,7.5 - parent: 89 - - uid: 18797 + rot: 3.141592653589793 rad + pos: -88.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10657 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,7.5 - parent: 89 - - uid: 18800 + pos: -96.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,13.5 - parent: 89 - - uid: 18801 + rot: 1.5707963267948966 rad + pos: -95.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10659 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,13.5 - parent: 89 - - uid: 18802 + pos: -91.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,13.5 - parent: 89 - - uid: 18803 + rot: 3.141592653589793 rad + pos: -101.5,-10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,13.5 - parent: 89 - - uid: 18804 + rot: 1.5707963267948966 rad + pos: -105.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,13.5 - parent: 89 - - uid: 18805 + rot: 1.5707963267948966 rad + pos: -99.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10663 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,13.5 - parent: 89 - - uid: 18806 + pos: -101.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,13.5 - parent: 89 - - uid: 18807 + rot: 3.141592653589793 rad + pos: -103.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10665 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,13.5 - parent: 89 - - uid: 18808 + pos: -107.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10666 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,13.5 - parent: 89 - - uid: 18809 + pos: -107.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,13.5 - parent: 89 - - uid: 18810 + rot: 3.141592653589793 rad + pos: -112.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10668 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,13.5 - parent: 89 - - uid: 18811 + pos: -107.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10669 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,13.5 - parent: 89 - - uid: 18812 + pos: -104.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10670 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,13.5 - parent: 89 - - uid: 18814 - components: - - type: Transform - pos: -68.5,12.5 - parent: 89 - - uid: 18815 + pos: -115.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10671 components: - type: Transform - pos: -68.5,11.5 - parent: 89 - - uid: 18816 + rot: 1.5707963267948966 rad + pos: -109.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10672 components: - type: Transform - pos: -68.5,10.5 - parent: 89 - - uid: 18821 + rot: 3.141592653589793 rad + pos: -110.5,20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10673 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,2.5 - parent: 89 - - uid: 18825 + pos: -104.5,20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10674 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,8.5 - parent: 89 - - uid: 18827 - components: - - type: Transform - pos: 9.5,-11.5 - parent: 89 - - uid: 18830 + pos: -112.5,25.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,10.5 - parent: 89 - - uid: 18831 + rot: -1.5707963267948966 rad + pos: -102.5,25.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10676 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,11.5 - parent: 89 - - uid: 18832 + pos: -116.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10677 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,12.5 - parent: 89 - - uid: 18833 + pos: -116.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10678 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,13.5 - parent: 89 - - uid: 18834 + rot: -1.5707963267948966 rad + pos: -119.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,14.5 - parent: 89 - - uid: 18835 + pos: 9.5,-5.5 + parent: 2 + - uid: 10680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,15.5 - parent: 89 - - uid: 18836 + pos: 4.5,-4.5 + parent: 2 + - uid: 10681 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,16.5 - parent: 89 - - uid: 18837 + pos: -116.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10682 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,13.5 - parent: 89 - - uid: 18838 + pos: -129.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,17.5 - parent: 89 - - uid: 18839 + pos: -126.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,17.5 - parent: 89 - - uid: 18840 + pos: -118.5,-10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,17.5 - parent: 89 - - uid: 18841 + rot: -1.5707963267948966 rad + pos: -120.5,0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,17.5 - parent: 89 - - uid: 18842 + rot: -1.5707963267948966 rad + pos: -120.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,17.5 - parent: 89 - - uid: 18843 + pos: -117.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,17.5 - parent: 89 - - uid: 18844 + rot: -1.5707963267948966 rad + pos: -128.5,15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,17.5 - parent: 89 - - uid: 18845 + pos: -125.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,17.5 - parent: 89 - - uid: 18846 + rot: -1.5707963267948966 rad + pos: -58.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10691 + components: + - type: Transform + pos: -72.5,-15.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,17.5 - parent: 89 - - uid: 18847 + pos: -71.5,-11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,12.5 - parent: 89 - - uid: 18848 + rot: 1.5707963267948966 rad + pos: -67.5,-14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,11.5 - parent: 89 - - uid: 18849 + rot: 1.5707963267948966 rad + pos: -67.5,-7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,10.5 - parent: 89 - - uid: 18850 + rot: -1.5707963267948966 rad + pos: -58.5,-11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10696 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,9.5 - parent: 89 - - uid: 18851 + pos: -65.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10697 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,8.5 - parent: 89 - - uid: 18852 + pos: -71.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10698 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 89 - - uid: 18853 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,6.5 - parent: 89 - - uid: 18854 + pos: -79.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,5.5 - parent: 89 - - uid: 18855 + pos: -76.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,4.5 - parent: 89 - - uid: 18856 + pos: -75.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10701 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,3.5 - parent: 89 - - uid: 18857 + pos: -62.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10702 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,2.5 - parent: 89 - - uid: 18858 + pos: -47.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,1.5 - parent: 89 - - uid: 18859 + rot: -1.5707963267948966 rad + pos: -54.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10704 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,0.5 - parent: 89 - - uid: 18860 + pos: -49.5,-4.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10705 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-0.5 - parent: 89 - - uid: 18862 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-8.5 - parent: 89 - - uid: 18863 + pos: -44.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10706 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 89 - - uid: 18864 + pos: -48.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10707 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-7.5 - parent: 89 - - uid: 18874 + pos: -35.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10708 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,24.5 - parent: 89 - - uid: 18876 + pos: -33.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,24.5 - parent: 89 - - uid: 18877 + rot: 3.141592653589793 rad + pos: -40.5,16.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,24.5 - parent: 89 - - uid: 18878 + rot: 3.141592653589793 rad + pos: -27.5,16.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,24.5 - parent: 89 - - uid: 18879 + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,24.5 - parent: 89 - - uid: 18880 + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,24.5 - parent: 89 - - uid: 18881 + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10714 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,24.5 - parent: 89 - - uid: 18882 - components: - - type: Transform - pos: -57.5,22.5 - parent: 89 - - uid: 18883 + pos: -20.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10715 components: - type: Transform - pos: -57.5,21.5 - parent: 89 - - uid: 18884 + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10716 components: - type: Transform - pos: -57.5,20.5 - parent: 89 - - uid: 18885 + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10717 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - uid: 18886 + rot: 3.141592653589793 rad + pos: -10.5,6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10718 components: - type: Transform - pos: -57.5,18.5 - parent: 89 - - uid: 18891 + rot: 1.5707963267948966 rad + pos: -14.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-3.5 - parent: 89 - - uid: 18892 + rot: 3.141592653589793 rad + pos: -30.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-3.5 - parent: 89 - - uid: 18895 + pos: -24.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,17.5 - parent: 89 - - uid: 18896 + pos: -7.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,17.5 - parent: 89 - - uid: 18897 + rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,17.5 - parent: 89 - - uid: 18898 + rot: 3.141592653589793 rad + pos: -8.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,17.5 - parent: 89 - - uid: 18899 + rot: 1.5707963267948966 rad + pos: -31.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10725 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 89 - - uid: 18900 + pos: -14.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10726 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 89 - - uid: 18904 + pos: -17.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10727 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,14.5 - parent: 89 - - uid: 18906 - components: - - type: Transform - pos: -48.5,15.5 - parent: 89 - - uid: 18907 - components: - - type: Transform - pos: -48.5,16.5 - parent: 89 - - uid: 18909 + pos: -33.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10728 components: - type: Transform - pos: -14.5,8.5 - parent: 89 - - uid: 18911 + pos: -31.5,21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,2.5 - parent: 89 - - uid: 18912 + pos: -29.5,26.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 89 - - uid: 18913 + rot: 1.5707963267948966 rad + pos: -34.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10731 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,-1.5 - parent: 89 - - uid: 18914 + pos: -34.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10732 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,-1.5 - parent: 89 - - uid: 18915 + pos: -34.5,24.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10733 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-1.5 - parent: 89 - - uid: 18916 + rot: -1.5707963267948966 rad + pos: -25.5,24.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-1.5 - parent: 89 - - uid: 18917 + rot: -1.5707963267948966 rad + pos: -25.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10735 components: - type: Transform - pos: -0.5,-3.5 - parent: 89 - - uid: 18918 + rot: -1.5707963267948966 rad + pos: -25.5,32.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10736 components: - type: Transform - pos: -88.5,-0.5 - parent: 89 - - uid: 18919 + rot: 3.141592653589793 rad + pos: 36.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10737 components: - type: Transform - pos: -88.5,0.5 - parent: 89 - - uid: 18920 + rot: 1.5707963267948966 rad + pos: 34.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10738 components: - type: Transform - pos: -88.5,1.5 - parent: 89 - - uid: 18921 + rot: -1.5707963267948966 rad + pos: 40.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10739 components: - type: Transform - pos: -88.5,2.5 - parent: 89 - - uid: 18922 + rot: -1.5707963267948966 rad + pos: 45.5,6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10740 components: - type: Transform - pos: -88.5,3.5 - parent: 89 - - uid: 18923 + rot: 3.141592653589793 rad + pos: 42.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10741 components: - type: Transform - pos: -88.5,4.5 - parent: 89 - - uid: 18924 + rot: 1.5707963267948966 rad + pos: 46.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10742 components: - type: Transform - pos: -88.5,5.5 - parent: 89 - - uid: 18925 + rot: 3.141592653589793 rad + pos: 48.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10743 components: - type: Transform - pos: -88.5,6.5 - parent: 89 - - uid: 18926 + rot: 1.5707963267948966 rad + pos: 50.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10744 components: - type: Transform - pos: -88.5,7.5 - parent: 89 - - uid: 18927 + rot: 1.5707963267948966 rad + pos: 51.5,2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10745 components: - type: Transform - pos: -88.5,8.5 - parent: 89 - - uid: 18928 + pos: 48.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,17.5 - parent: 89 - - uid: 18929 + rot: 3.141592653589793 rad + pos: 63.5,10.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10747 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,17.5 - parent: 89 - - uid: 18930 + rot: 3.141592653589793 rad + pos: 63.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10748 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,17.5 - parent: 89 - - uid: 18931 + pos: 63.5,3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10749 components: - type: Transform rot: -1.5707963267948966 rad - pos: -53.5,17.5 - parent: 89 - - uid: 18932 + pos: 55.5,5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,17.5 - parent: 89 - - uid: 18933 + rot: 1.5707963267948966 rad + pos: 52.5,12.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10751 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,17.5 - parent: 89 - - uid: 18934 + rot: 1.5707963267948966 rad + pos: 47.5,4.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10752 components: - type: Transform rot: -1.5707963267948966 rad - pos: -50.5,17.5 - parent: 89 - - uid: 18935 + pos: 32.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,17.5 - parent: 89 - - uid: 18937 + rot: 1.5707963267948966 rad + pos: 24.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,17.5 - parent: 89 - - uid: 18938 + rot: 1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,17.5 - parent: 89 - - uid: 18939 + rot: 1.5707963267948966 rad + pos: -52.5,-14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,17.5 - parent: 89 - - uid: 18940 + rot: 3.141592653589793 rad + pos: -37.5,7.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,17.5 - parent: 89 - - uid: 18941 + rot: 3.141592653589793 rad + pos: 4.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,17.5 - parent: 89 - - uid: 18942 + rot: 1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10759 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,17.5 - parent: 89 - - uid: 18943 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,17.5 - parent: 89 - - uid: 18944 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,17.5 - parent: 89 - - uid: 18945 + pos: 8.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,17.5 - parent: 89 - - uid: 18946 + pos: 13.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.5,17.5 - parent: 89 - - uid: 18947 + rot: 1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,17.5 - parent: 89 - - uid: 18948 + pos: 23.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,17.5 - parent: 89 - - uid: 18949 + pos: 29.5,-8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10766 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,17.5 - parent: 89 - - uid: 18950 + pos: 37.5,-5.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10767 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,17.5 - parent: 89 - - uid: 18951 + pos: 34.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10768 components: - type: Transform rot: -1.5707963267948966 rad - pos: -33.5,17.5 - parent: 89 - - uid: 18953 - components: - - type: Transform - pos: -0.5,-2.5 - parent: 89 - - uid: 18954 - components: - - type: Transform - pos: -0.5,-1.5 - parent: 89 - - uid: 18955 + pos: 28.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10769 components: - type: Transform - pos: -0.5,-0.5 - parent: 89 - - uid: 18956 + rot: -1.5707963267948966 rad + pos: 23.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10770 components: - type: Transform - pos: -0.5,0.5 - parent: 89 - - uid: 18957 + pos: -7.5,-11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10771 components: - type: Transform - pos: -0.5,1.5 - parent: 89 - - uid: 18958 + rot: 1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10772 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,2.5 - parent: 89 - - uid: 18959 + rot: 3.141592653589793 rad + pos: -21.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,2.5 - parent: 89 - - uid: 18960 + rot: 3.141592653589793 rad + pos: -32.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10774 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,2.5 - parent: 89 - - uid: 18961 + pos: 0.5,-0.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,2.5 - parent: 89 - - uid: 18962 + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,2.5 - parent: 89 - - uid: 18963 + rot: 3.141592653589793 rad + pos: -10.5,-18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,2.5 - parent: 89 - - uid: 18964 + pos: -13.5,-21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10778 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,2.5 - parent: 89 - - uid: 18965 + pos: -4.5,-21.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10779 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,2.5 - parent: 89 - - uid: 18966 + pos: -0.5,-28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10780 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,2.5 - parent: 89 - - uid: 18967 + pos: -0.5,-20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10781 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 89 - - uid: 18968 - components: - - type: Transform - pos: 27.5,-3.5 - parent: 89 - - uid: 18970 + pos: 1.5,-20.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10782 components: - type: Transform - pos: 14.5,8.5 - parent: 89 - - uid: 18978 + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10783 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-7.5 - parent: 89 - - uid: 18979 + rot: 1.5707963267948966 rad + pos: -9.5,-29.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10784 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-6.5 - parent: 89 - - uid: 18980 + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10785 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,-5.5 - parent: 89 - - uid: 18981 + pos: -5.5,-36.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-4.5 - parent: 89 - - uid: 18982 + pos: -2.5,-38.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10787 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-3.5 - parent: 89 - - uid: 18983 + rot: -1.5707963267948966 rad + pos: -55.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10788 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-2.5 - parent: 89 - - uid: 18987 + pos: -49.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-0.5 - parent: 89 - - uid: 18988 + pos: -43.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,0.5 - parent: 89 - - uid: 18989 + rot: 1.5707963267948966 rad + pos: -105.5,-13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,1.5 - parent: 89 - - uid: 18990 + rot: -1.5707963267948966 rad + pos: -78.5,-17.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10792 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,2.5 - parent: 89 - - uid: 18991 + pos: 8.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10793 components: - type: Transform rot: 3.141592653589793 rad - pos: -40.5,3.5 - parent: 89 - - uid: 18992 + pos: 19.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,4.5 - parent: 89 - - uid: 18993 + pos: 9.5,42.5 + parent: 2 + - uid: 10795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,4.5 - parent: 89 - - uid: 18994 + pos: 18.5,31.5 + parent: 2 + - uid: 10796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,4.5 - parent: 89 - - uid: 18995 + rot: 3.141592653589793 rad + pos: 9.5,32.5 + parent: 2 + - uid: 10797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,4.5 - parent: 89 - - uid: 18996 + pos: 19.5,8.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,4.5 - parent: 89 - - uid: 18997 + rot: 3.141592653589793 rad + pos: 20.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10799 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,4.5 - parent: 89 - - uid: 18998 + pos: -113.5,-6.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,4.5 - parent: 89 - - uid: 19000 + pos: -1.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,4.5 - parent: 89 - - uid: 19001 + rot: 3.141592653589793 rad + pos: 9.5,11.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,4.5 - parent: 89 - - uid: 19002 + pos: 9.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10803 components: - type: Transform rot: 1.5707963267948966 rad - pos: -51.5,4.5 - parent: 89 - - uid: 19003 + pos: 13.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,4.5 - parent: 89 - - uid: 19004 + rot: 3.141592653589793 rad + pos: 21.5,14.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10805 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,4.5 - parent: 89 - - uid: 19005 + pos: 24.5,13.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10806 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,4.5 - parent: 89 - - uid: 19006 + pos: 13.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10807 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,4.5 - parent: 89 - - uid: 19010 + rot: -1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10808 components: - type: Transform rot: 3.141592653589793 rad - pos: -48.5,3.5 - parent: 89 - - uid: 19016 + pos: 32.5,18.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10809 components: - type: Transform - pos: -99.5,23.5 - parent: 89 - - uid: 19017 + pos: -28.5,37.5 + parent: 2 + - uid: 10810 components: - type: Transform - pos: -99.5,24.5 - parent: 89 - - uid: 19019 + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - uid: 10811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,22.5 - parent: 89 - - uid: 19020 + rot: 1.5707963267948966 rad + pos: 52.5,-3.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10812 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,22.5 - parent: 89 - - uid: 19021 + pos: 63.5,-1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10813 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,22.5 - parent: 89 - - uid: 19022 + pos: 14.5,20.5 + parent: 2 + - uid: 10814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,22.5 - parent: 89 - - uid: 19023 + pos: -27.5,9.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,22.5 - parent: 89 - - uid: 19024 + rot: 3.141592653589793 rad + pos: -24.5,1.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,22.5 - parent: 89 - - uid: 19025 + pos: 23.5,37.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,22.5 - parent: 89 - - uid: 19026 + rot: 1.5707963267948966 rad + pos: 23.5,40.5 + parent: 2 + - type: PointLight + enabled: True + - type: ActiveEmergencyLight + - uid: 10818 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,22.5 - parent: 89 - - uid: 19027 + pos: -14.5,-0.5 + parent: 2 + - uid: 10819 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,22.5 - parent: 89 - - uid: 19028 + pos: 45.5,9.5 + parent: 2 + - uid: 10820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,22.5 - parent: 89 - - uid: 19029 + rot: 1.5707963267948966 rad + pos: 57.5,5.5 + parent: 2 + - uid: 10821 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,22.5 - parent: 89 - - uid: 19031 + pos: 9.5,-12.5 + parent: 2 + - uid: 10822 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,21.5 - parent: 89 - - uid: 19032 + pos: 17.5,-8.5 + parent: 2 + - uid: 10823 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,20.5 - parent: 89 - - uid: 19033 + pos: 47.5,-5.5 + parent: 2 + - uid: 10824 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,19.5 - parent: 89 - - uid: 19034 + pos: 46.5,-8.5 + parent: 2 + - uid: 10825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,18.5 - parent: 89 - - uid: 19035 + rot: -1.5707963267948966 rad + pos: 41.5,-7.5 + parent: 2 + - uid: 10826 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,17.5 - parent: 89 - - uid: 19036 + pos: 48.5,-16.5 + parent: 2 + - uid: 10827 components: - type: Transform - pos: -32.5,15.5 - parent: 89 - - uid: 19037 + pos: 47.5,-11.5 + parent: 2 + - uid: 10828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,16.5 - parent: 89 - - uid: 19038 + rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 2 + - uid: 10829 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,16.5 - parent: 89 - - uid: 19039 + pos: 44.5,-21.5 + parent: 2 + - uid: 10830 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,16.5 - parent: 89 - - uid: 19040 + pos: 42.5,-25.5 + parent: 2 + - uid: 10831 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,16.5 - parent: 89 - - uid: 19041 + rot: 3.141592653589793 rad + pos: 48.5,-31.5 + parent: 2 + - uid: 10832 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,16.5 - parent: 89 - - uid: 19042 - components: - - type: Transform - pos: -32.5,16.5 - parent: 89 - - uid: 19043 - components: - - type: Transform - pos: -93.5,15.5 - parent: 89 - - uid: 19044 - components: - - type: Transform - pos: -93.5,14.5 - parent: 89 - - uid: 19045 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,4.5 - parent: 89 - - uid: 19046 + pos: 55.5,-29.5 + parent: 2 + - uid: 10833 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,4.5 - parent: 89 - - uid: 19047 + pos: 51.5,-24.5 + parent: 2 + - uid: 10834 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 89 - - uid: 19048 + pos: 49.5,-18.5 + parent: 2 + - uid: 10835 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,4.5 - parent: 89 - - uid: 19049 + pos: -3.5,-9.5 + parent: 2 + - uid: 10836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,4.5 - parent: 89 - - uid: 19050 + pos: -93.5,-12.5 + parent: 2 + - uid: 10837 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 89 - - uid: 19051 + pos: -87.5,-4.5 + parent: 2 + - uid: 10838 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 89 - - uid: 19052 + rot: 1.5707963267948966 rad + pos: -96.5,-7.5 + parent: 2 + - uid: 10839 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 89 - - uid: 19053 + pos: -90.5,-5.5 + parent: 2 + - uid: 10840 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,4.5 - parent: 89 - - uid: 19054 + pos: -131.5,-4.5 + parent: 2 + - uid: 25876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,4.5 - parent: 89 - - uid: 19055 + pos: -14.5,2.5 + parent: 24450 + - uid: 25877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 - parent: 89 - - uid: 19056 + pos: -26.5,6.5 + parent: 24450 + - uid: 25878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 89 - - uid: 19058 - components: - - type: Transform - pos: -62.5,19.5 - parent: 89 - - uid: 19063 + pos: -0.5,24.5 + parent: 24450 + - uid: 25879 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 89 - - uid: 19064 + pos: 5.5,6.5 + parent: 24450 + - uid: 25880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,7.5 - parent: 89 - - uid: 19065 + rot: 3.141592653589793 rad + pos: -9.5,9.5 + parent: 24450 + - uid: 25881 components: - type: Transform - pos: -62.5,18.5 - parent: 89 - - uid: 19069 + rot: -1.5707963267948966 rad + pos: -29.5,7.5 + parent: 24450 + - uid: 25882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 89 - - uid: 19071 + pos: -20.5,16.5 + parent: 24450 + - uid: 25883 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-6.5 - parent: 89 - - uid: 19072 + rot: 1.5707963267948966 rad + pos: -23.5,24.5 + parent: 24450 + - uid: 25884 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-7.5 - parent: 89 - - uid: 19073 + rot: 1.5707963267948966 rad + pos: -3.5,16.5 + parent: 24450 + - uid: 25885 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 89 - - uid: 19077 + pos: 2.5,-0.5 + parent: 24450 + - uid: 25886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 89 - - uid: 19078 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 24450 +- proto: EmergencyMedipen + entities: + - uid: 24349 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-8.5 - parent: 89 - - uid: 19079 + parent: 24347 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,10.5 - parent: 89 - - uid: 19083 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24538 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,7.5 - parent: 89 - - uid: 19084 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24539 components: - type: Transform - pos: -0.5,-5.5 - parent: 89 - - uid: 19085 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EmergencyRollerBed + entities: + - uid: 10841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,32.5 - parent: 89 - - uid: 19086 + pos: 28.46604,20.857737 + parent: 2 + - uid: 10842 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,31.5 - parent: 89 - - uid: 19087 + pos: 28.481665,20.342112 + parent: 2 +- proto: EmergencyRollerBedSpawnFolded + entities: + - uid: 10843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,30.5 - parent: 89 - - uid: 19088 + pos: 16.47677,23.62731 + parent: 2 + - uid: 10844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,29.5 - parent: 89 - - uid: 19089 + pos: 2.6214988,11.504413 + parent: 2 +- proto: Emitter + entities: + - uid: 10845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,28.5 - parent: 89 - - uid: 19090 + pos: -139.5,-0.5 + parent: 2 + - uid: 10846 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,27.5 - parent: 89 - - uid: 19091 + pos: -147.5,-14.5 + parent: 2 + - uid: 10847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,26.5 - parent: 89 - - uid: 19092 + rot: 1.5707963267948966 rad + pos: -150.5,-3.5 + parent: 2 + - uid: 10848 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,25.5 - parent: 89 - - uid: 19093 + pos: -120.5,-6.5 + parent: 2 + - uid: 10849 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,24.5 - parent: 89 - - uid: 19094 + pos: -119.5,-5.5 + parent: 2 + - uid: 10850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,23.5 - parent: 89 - - uid: 19095 + pos: -119.5,-6.5 + parent: 2 + - uid: 10851 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,22.5 - parent: 89 - - uid: 19096 + pos: -120.5,-5.5 + parent: 2 + - uid: 10852 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,21.5 - parent: 89 - - uid: 19097 + rot: -1.5707963267948966 rad + pos: -136.5,-11.5 + parent: 2 + - uid: 10853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,20.5 - parent: 89 - - uid: 19098 + rot: -1.5707963267948966 rad + pos: -136.5,-3.5 + parent: 2 +- proto: EmpGrenade + entities: + - uid: 27300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,20.5 - parent: 89 - - uid: 19099 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: EncryptionKeyCargo + entities: + - uid: 10855 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 89 - - uid: 19100 + parent: 10854 + - type: Physics + canCollide: False +- proto: EncryptionKeyCentCom + entities: + - uid: 10857 components: - type: Transform - pos: -81.5,19.5 - parent: 89 - - uid: 19101 + parent: 10856 + - type: Physics + canCollide: False + - uid: 24106 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - uid: 19102 + parent: 24105 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommand + entities: + - uid: 10859 components: - type: Transform - pos: -81.5,17.5 - parent: 89 - - uid: 19103 + parent: 10858 + - type: Physics + canCollide: False +- proto: EncryptionKeyCommon + entities: + - uid: 10861 components: - type: Transform - pos: -81.5,16.5 - parent: 89 - - uid: 19104 + parent: 10860 + - type: Physics + canCollide: False +- proto: EncryptionKeyEngineering + entities: + - uid: 10863 components: - type: Transform - pos: -81.5,15.5 - parent: 89 - - uid: 19105 + parent: 10862 + - type: Physics + canCollide: False +- proto: EncryptionKeyFreelance + entities: + - uid: 9188 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - uid: 19106 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9189 components: - type: Transform - pos: -81.5,13.5 - parent: 89 - - uid: 19107 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9190 components: - type: Transform - pos: -81.5,12.5 - parent: 89 - - uid: 19108 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9191 components: - type: Transform - pos: -81.5,11.5 - parent: 89 - - uid: 19109 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9192 components: - type: Transform - pos: -81.5,10.5 - parent: 89 - - uid: 19110 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 89 - - uid: 19115 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,4.5 - parent: 89 - - uid: 19119 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 89 - - uid: 19122 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,9.5 - parent: 89 - - uid: 19126 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9197 components: - type: Transform - pos: -85.5,11.5 - parent: 89 - - uid: 19127 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9198 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-7.5 - parent: 89 - - uid: 19129 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9199 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-7.5 - parent: 89 - - uid: 19130 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-7.5 - parent: 89 - - uid: 19131 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9201 components: - type: Transform - pos: -102.5,5.5 - parent: 89 - - uid: 19132 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9202 components: - type: Transform - pos: -102.5,6.5 - parent: 89 - - uid: 19134 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-8.5 - parent: 89 - - uid: 19135 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-9.5 - parent: 89 - - uid: 19136 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-10.5 - parent: 89 - - uid: 19140 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-12.5 - parent: 89 - - uid: 19141 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 89 - - uid: 19142 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 89 - - uid: 19143 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 89 - - uid: 19144 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9210 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 89 - - uid: 19145 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 89 - - uid: 19146 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 89 - - uid: 19147 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 89 - - uid: 19148 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 89 - - uid: 19149 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 89 - - uid: 19150 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 89 - - uid: 19151 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 89 - - uid: 19152 + parent: 9187 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 89 - - uid: 19153 + parent: 10864 + - type: Physics + canCollide: False +- proto: EncryptionKeyMedical + entities: + - uid: 10867 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 89 - - uid: 19154 + parent: 10866 + - type: Physics + canCollide: False +- proto: EncryptionKeyScience + entities: + - uid: 10869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 89 - - uid: 19155 + parent: 10868 + - type: Physics + canCollide: False +- proto: EncryptionKeySecurity + entities: + - uid: 10871 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 89 - - uid: 19157 + parent: 10870 + - type: Physics + canCollide: False +- proto: EncryptionKeyService + entities: + - uid: 10873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-11.5 - parent: 89 - - uid: 19158 + parent: 10872 + - type: Physics + canCollide: False +- proto: EpinephrineChemistryBottle + entities: + - uid: 10874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-10.5 - parent: 89 - - uid: 19159 + pos: 26.012112,13.75499 + parent: 2 + - uid: 10875 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-9.5 - parent: 89 - - uid: 19160 + pos: 26.11628,13.629903 + parent: 2 + - uid: 10876 components: - type: Transform - pos: -0.5,-6.5 - parent: 89 - - uid: 19161 + pos: -10.723903,17.760052 + parent: 2 +- proto: ERTSpawnerEngineering + entities: + - uid: 27608 components: - type: Transform - pos: -0.5,-7.5 - parent: 89 - - uid: 19162 + pos: 4.5,-4.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 +- proto: ERTSpawnerLeader + entities: + - uid: 27609 components: - type: Transform - pos: -0.5,-8.5 - parent: 89 - - uid: 19163 + pos: -5.5,-6.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27284 +- proto: ERTSpawnerMedical + entities: + - uid: 27610 components: - type: Transform - pos: -0.5,-9.5 - parent: 89 - - uid: 19164 + pos: 4.5,-6.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 +- proto: ERTSpawnerSrcurity + entities: + - uid: 27611 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-8.5 - parent: 89 - - uid: 19165 + pos: 6.5,-4.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27612 components: - type: Transform - pos: -0.5,-11.5 - parent: 89 - - uid: 19166 + pos: 6.5,-5.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 + - uid: 27613 components: - type: Transform - pos: -0.5,-12.5 - parent: 89 - - uid: 19167 + pos: 6.5,-6.5 + parent: 27260 + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27864 + - 27283 +- proto: ExGrenade + entities: + - uid: 1119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-13.5 - parent: 89 - - uid: 19168 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 89 - - uid: 19169 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 89 - - uid: 19170 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ExosuitFabricator + entities: + - uid: 10877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 89 - - uid: 19171 + pos: -22.5,-20.5 + parent: 2 + - uid: 25887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 89 - - uid: 19172 + pos: -27.5,4.5 + parent: 24450 + - uid: 25888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 89 - - uid: 19173 + pos: 3.5,4.5 + parent: 24450 +- proto: ExplosivePayload + entities: + - uid: 25889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 89 - - uid: 19174 + pos: 4.7115273,11.752999 + parent: 24450 + - uid: 25890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-13.5 - parent: 89 - - uid: 19176 + pos: 4.3209023,11.674874 + parent: 24450 +- proto: ExplosivesSignMed + entities: + - uid: 10878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 89 - - uid: 19177 + pos: 36.5,-35.5 + parent: 2 + - uid: 10879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 89 - - uid: 19178 + pos: 57.5,-16.5 + parent: 2 + - uid: 10880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 89 - - uid: 19179 + pos: 59.5,-38.5 + parent: 2 + - uid: 10881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 89 - - uid: 19180 + pos: 50.5,-34.5 + parent: 2 + - uid: 10882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 89 - - uid: 19181 + pos: 38.5,-27.5 + parent: 2 + - uid: 10883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 89 - - uid: 19182 + pos: 62.5,-18.5 + parent: 2 + - uid: 10884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 89 - - uid: 19183 + pos: 59.5,-32.5 + parent: 2 + - uid: 10885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 89 - - uid: 19184 + rot: 1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 +- proto: ExtinguisherCabinetFilled + entities: + - uid: 10886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 89 - - uid: 19185 + pos: -11.5,16.5 + parent: 2 + - uid: 10887 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 89 - - uid: 19187 + pos: -84.5,5.5 + parent: 2 + - uid: 10888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-11.5 - parent: 89 - - uid: 19188 + pos: 33.5,10.5 + parent: 2 + - uid: 10889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 89 - - uid: 19189 + pos: 33.5,5.5 + parent: 2 + - uid: 10890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 89 - - uid: 19190 + pos: 54.5,1.5 + parent: 2 + - uid: 10891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,9.5 - parent: 89 - - uid: 19191 + pos: 54.5,7.5 + parent: 2 + - uid: 10892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,10.5 - parent: 89 - - uid: 19199 + pos: 63.5,9.5 + parent: 2 + - uid: 10893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,2.5 - parent: 89 - - uid: 19200 + pos: -42.5,1.5 + parent: 2 + - uid: 10894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,2.5 - parent: 89 - - uid: 19202 + pos: -61.5,2.5 + parent: 2 + - uid: 10895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,2.5 - parent: 89 - - uid: 19203 + pos: -68.5,-14.5 + parent: 2 + - uid: 10896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,2.5 - parent: 89 - - uid: 19204 + pos: -34.5,6.5 + parent: 2 + - uid: 10897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,2.5 - parent: 89 - - uid: 19205 + pos: -76.5,6.5 + parent: 2 + - uid: 10898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 89 - - uid: 19208 + pos: -96.5,1.5 + parent: 2 + - uid: 10899 components: - type: Transform - pos: 0.5,-14.5 - parent: 89 - - uid: 19209 + pos: -97.5,-10.5 + parent: 2 + - uid: 10900 components: - type: Transform - pos: 2.5,-16.5 - parent: 89 - - uid: 19210 + pos: -7.5,4.5 + parent: 2 + - uid: 10901 components: - type: Transform - pos: 2.5,-17.5 - parent: 89 - - uid: 19211 + pos: 19.5,13.5 + parent: 2 + - uid: 10902 components: - type: Transform - pos: 2.5,-18.5 - parent: 89 - - uid: 19219 + rot: -1.5707963267948966 rad + pos: 9.5,30.5 + parent: 2 + - uid: 10903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,-9.5 - parent: 89 - - uid: 19220 + pos: 12.5,19.5 + parent: 2 +- proto: FaxMachineBase + entities: + - uid: 10904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-9.5 - parent: 89 - - uid: 19221 + pos: 33.5,-0.5 + parent: 2 + - type: FaxMachine + name: Кабинет ГСБ + - uid: 10905 components: - type: Transform - pos: 9.5,-10.5 - parent: 89 - - uid: 19224 + pos: -48.5,11.5 + parent: 2 + - type: FaxMachine + name: Библиотека + - uid: 10906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,2.5 - parent: 89 - - uid: 19225 + pos: -76.5,-5.5 + parent: 2 + - type: FaxMachine + name: Офис АВД + - uid: 10907 components: - type: Transform - pos: 24.5,23.5 - parent: 89 - - uid: 19226 + pos: 23.5,29.5 + parent: 2 + - type: FaxMachine + name: Псих. Диспансер + - uid: 10908 components: - type: Transform - pos: 24.5,22.5 - parent: 89 - - uid: 19227 + pos: 26.5,37.5 + parent: 2 + - type: FaxMachine + name: Офис ГВ + destinationAddress: Офис ГВ + - uid: 10909 components: - type: Transform - pos: 24.5,21.5 - parent: 89 - - uid: 19228 + pos: 37.5,-3.5 + parent: 2 + - type: FaxMachine + name: Офис ГСБ + destinationAddress: Офис ГСБ + - uid: 10910 components: - type: Transform - pos: 24.5,20.5 - parent: 89 - - uid: 19229 + pos: 7.5,-12.5 + parent: 2 + - type: FaxMachine + name: Офис Смотрителя + destinationAddress: Офис Смотрителя + - uid: 10911 components: - type: Transform - pos: 24.5,19.5 - parent: 89 - - uid: 19230 + pos: -71.5,-17.5 + parent: 2 + - type: FaxMachine + name: Офис КМ + destinationAddress: Офис КМ + - uid: 10912 components: - type: Transform - pos: 24.5,18.5 - parent: 89 - - uid: 19231 + pos: 1.5,-29.5 + parent: 2 + - type: FaxMachine + name: Офис НР + destinationAddress: Офис НР + - uid: 10913 components: - type: Transform - pos: 24.5,17.5 - parent: 89 - - uid: 19232 + pos: -104.5,7.5 + parent: 2 + - type: FaxMachine + name: Офис СИ + destinationAddress: Офис СИ + - uid: 10914 components: - type: Transform - pos: 24.5,16.5 - parent: 89 - - uid: 19237 + pos: -105.5,21.5 + parent: 2 + - type: FaxMachine + name: Телекоммуникации + destinationAddress: Телекоммуникации + - uid: 10915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 89 - - uid: 19238 + pos: -54.5,43.5 + parent: 2 + - type: FaxMachine + name: КПП СБ Отбытия + destinationAddress: КПП СБ Отбытия + - uid: 10916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,15.5 - parent: 89 - - uid: 19239 + pos: 57.5,6.5 + parent: 2 + - type: FaxMachine + name: Мостик + destinationAddress: Мостик + - uid: 10917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 89 - - uid: 19240 + pos: 44.5,4.5 + parent: 2 + - type: FaxMachine + name: Офис ГП + destinationAddress: Офис ГП + - uid: 24107 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,15.5 - parent: 89 - - uid: 19241 + pos: 5.5,3.5 + parent: 23919 +- proto: FaxMachineCaptain + entities: + - uid: 10918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,15.5 - parent: 89 - - uid: 19242 + pos: 48.5,10.5 + parent: 2 + - type: FaxMachine + name: Офис Капитана + destinationAddress: Офис Капитана +- proto: FaxMachineSyndie + entities: + - uid: 10919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,15.5 - parent: 89 - - uid: 19243 + pos: -88.5,30.5 + parent: 2 +- proto: FenceMetalCorner + entities: + - uid: 10920 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,15.5 - parent: 89 - - uid: 19244 + rot: 1.5707963267948966 rad + pos: 58.5,-13.5 + parent: 2 + - uid: 10921 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.5,15.5 - parent: 89 - - uid: 19245 + pos: 56.5,-13.5 + parent: 2 + - uid: 10922 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,15.5 - parent: 89 - - uid: 19246 + rot: 1.5707963267948966 rad + pos: 56.5,-12.5 + parent: 2 +- proto: FenceMetalStraight + entities: + - uid: 10923 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,15.5 - parent: 89 - - uid: 19255 + pos: -92.5,26.5 + parent: 2 + - uid: 10924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,27.5 - parent: 89 - - uid: 19256 + rot: 1.5707963267948966 rad + pos: 54.5,-12.5 + parent: 2 + - uid: 10925 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,26.5 - parent: 89 - - uid: 19257 + rot: 1.5707963267948966 rad + pos: 55.5,-12.5 + parent: 2 + - uid: 10926 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,25.5 - parent: 89 - - uid: 19258 + pos: 58.5,-14.5 + parent: 2 + - uid: 10927 components: - type: Transform rot: 3.141592653589793 rad - pos: 14.5,24.5 - parent: 89 - - uid: 19259 + pos: 58.5,-15.5 + parent: 2 + - uid: 10928 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,23.5 - parent: 89 - - uid: 19260 + rot: -1.5707963267948966 rad + pos: 57.5,-13.5 + parent: 2 +- proto: FigureSpawner + entities: + - uid: 10929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 89 - - uid: 19261 + pos: -44.5,8.5 + parent: 2 + - uid: 10930 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,21.5 - parent: 89 - - uid: 19262 + pos: -49.5,9.5 + parent: 2 + - uid: 10931 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,20.5 - parent: 89 - - uid: 19263 + pos: 6.5,27.5 + parent: 2 +- proto: filingCabinet + entities: + - uid: 10932 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,19.5 - parent: 89 - - uid: 19264 + pos: -61.5,-6.5 + parent: 2 + - uid: 10933 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,18.5 - parent: 89 - - uid: 19265 + pos: -20.5,9.5 + parent: 2 + - uid: 10934 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,17.5 - parent: 89 - - uid: 19266 + pos: -43.5,0.5 + parent: 2 + - uid: 10935 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,16.5 - parent: 89 - - uid: 19269 + pos: -87.5,12.5 + parent: 2 + - uid: 10936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-37.5 - parent: 89 - - uid: 19270 + pos: -58.5,9.5 + parent: 2 + - uid: 10937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-38.5 - parent: 89 - - uid: 19271 + pos: -62.5,22.5 + parent: 2 + - uid: 10938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-38.5 - parent: 89 - - uid: 19275 + pos: 7.5,9.5 + parent: 2 + - uid: 10939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-36.5 - parent: 89 - - uid: 19276 + pos: 16.5,6.5 + parent: 2 + - uid: 10940 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-35.5 - parent: 89 - - uid: 19277 + pos: -2.5,20.5 + parent: 2 + - uid: 10941 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-34.5 - parent: 89 - - uid: 19278 + pos: 42.5,6.5 + parent: 2 + - uid: 10942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-33.5 - parent: 89 - - uid: 19279 + pos: -25.5,7.5 + parent: 2 +- proto: filingCabinetDrawer + entities: + - uid: 10943 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-32.5 - parent: 89 - - uid: 19280 + pos: 28.5,12.5 + parent: 2 + - uid: 10944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-31.5 - parent: 89 - - uid: 19281 + pos: -21.5,-15.5 + parent: 2 + - uid: 10945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-30.5 - parent: 89 - - uid: 19282 + pos: -2.5,-38.5 + parent: 2 + - uid: 10946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-29.5 - parent: 89 - - uid: 19283 + pos: 28.5,11.5 + parent: 2 +- proto: filingCabinetRandom + entities: + - uid: 10947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-28.5 - parent: 89 - - uid: 19284 + pos: 20.5,21.5 + parent: 2 + - uid: 10948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-27.5 - parent: 89 - - uid: 19285 + pos: 16.5,19.5 + parent: 2 + - uid: 10949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-26.5 - parent: 89 - - uid: 19290 + pos: 19.5,21.5 + parent: 2 +- proto: filingCabinetTall + entities: + - uid: 10950 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-24.5 - parent: 89 - - uid: 19291 + pos: -53.5,7.5 + parent: 2 + - uid: 10951 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,15.5 - parent: 89 - - uid: 19292 + pos: -12.5,12.5 + parent: 2 + - uid: 10952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-25.5 - parent: 89 - - uid: 19293 + pos: 25.5,31.5 + parent: 2 + - uid: 10953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 89 - - uid: 19294 + pos: 23.5,31.5 + parent: 2 + - uid: 10954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-25.5 - parent: 89 - - uid: 19295 + pos: -86.5,1.5 + parent: 2 + - uid: 10955 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-23.5 - parent: 89 - - uid: 19296 + pos: -24.5,9.5 + parent: 2 +- proto: FireAlarm + entities: + - uid: 10956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-22.5 - parent: 89 - - uid: 19297 + rot: 1.5707963267948966 rad + pos: -97.5,-8.5 + parent: 2 + - uid: 10957 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-21.5 - parent: 89 - - uid: 19298 + rot: 1.5707963267948966 rad + pos: -106.5,-12.5 + parent: 2 + - type: DeviceList + devices: + - 11228 + - 11226 + - 11061 + - 11230 + - 11229 + - 11231 + - 494 + - uid: 10958 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-20.5 - parent: 89 - - uid: 19302 + pos: -103.5,-11.5 + parent: 2 + - type: DeviceList + devices: + - 11003 + - 497 + - uid: 10959 components: - type: Transform - pos: 14.5,12.5 - parent: 89 - - uid: 19305 + pos: -52.5,-8.5 + parent: 2 + - type: DeviceList + devices: + - 499 + - 11047 + - 11053 + - uid: 10960 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,13.5 - parent: 89 - - uid: 19306 + pos: -57.5,-5.5 + parent: 2 + - type: DeviceList + devices: + - 500 + - 11072 + - 11073 + - 11074 + - 11075 + - uid: 10961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 89 - - uid: 19308 + pos: -52.5,2.5 + parent: 2 + - type: DeviceList + devices: + - 501 + - 11077 + - 11076 + - 11048 + - uid: 10962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 89 - - uid: 19309 + pos: -90.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 502 + - 11082 + - 11081 + - 11080 + - 11078 + - 11079 + - uid: 10963 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,13.5 - parent: 89 - - uid: 19310 + pos: -97.5,-2.5 + parent: 2 + - type: DeviceList + devices: + - 503 + - 11084 + - 11083 + - 11003 + - uid: 10964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 89 - - uid: 19311 + pos: -98.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 11080 + - 11081 + - 504 + - 11084 + - 11083 + - uid: 10965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,13.5 - parent: 89 - - uid: 19312 + rot: 3.141592653589793 rad + pos: -91.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 505 + - 11082 + - uid: 10966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,13.5 - parent: 89 - - uid: 19313 + pos: 21.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11006 + - 11005 + - 11004 + - 506 + - 11007 + - 11009 + - 11008 + - uid: 10967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,13.5 - parent: 89 - - uid: 19314 + pos: -2.5,4.5 + parent: 2 + - type: DeviceList + devices: + - 11010 + - 11011 + - 11012 + - 11008 + - 11009 + - 11007 + - 507 + - 11013 + - 11014 + - 11015 + - 11016 + - 11017 + - 11018 + - 11019 + - uid: 10968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 - - uid: 19315 + pos: -13.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 508 + - 11020 + - 11021 + - 11022 + - 11023 + - 11024 + - 11012 + - 11011 + - 11010 + - 11025 + - 11026 + - uid: 10969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,13.5 - parent: 89 - - uid: 19316 + rot: 3.141592653589793 rad + pos: -23.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 11028 + - 11027 + - 11022 + - 11021 + - 11020 + - 509 + - uid: 10970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,13.5 - parent: 89 - - uid: 19317 + rot: 3.141592653589793 rad + pos: -34.5,1.5 + parent: 2 + - type: DeviceList + devices: + - 11028 + - 11027 + - 11033 + - 11032 + - 11031 + - 11030 + - 11029 + - 510 + - uid: 10971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,13.5 - parent: 89 - - uid: 19318 + pos: -39.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 11029 + - 11030 + - 11037 + - 11040 + - 11039 + - 11038 + - 11036 + - 11035 + - 11034 + - 511 + - uid: 10972 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-15.5 - parent: 89 - - uid: 19319 + pos: -54.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 11038 + - 11039 + - 11040 + - 512 + - 11091 + - 11090 + - 11089 + - 11092 + - 14445 + - 14607 + - 14611 + - 14449 + - 14446 + - uid: 10973 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 89 - - uid: 19321 + pos: -65.5,12.5 + parent: 2 + - type: DeviceList + devices: + - 11090 + - 11089 + - 11111 + - 11112 + - 11103 + - 11104 + - 513 + - uid: 10974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-4.5 - parent: 89 - - uid: 19322 + pos: -31.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11033 + - 11032 + - 11031 + - 11093 + - 518 + - 11094 + - 11095 + - 11096 + - uid: 10975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-3.5 - parent: 89 - - uid: 19323 + pos: -40.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11094 + - 11095 + - 11096 + - 519 + - 11097 + - 11098 + - 11099 + - uid: 10976 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 89 - - uid: 19324 + pos: -47.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11097 + - 11098 + - 11099 + - 11102 + - 11101 + - 11100 + - 517 + - uid: 10977 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-1.5 - parent: 89 - - uid: 19325 + pos: -57.5,15.5 + parent: 2 + - type: DeviceList + devices: + - 515 + - 11103 + - 11104 + - uid: 10978 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-0.5 - parent: 89 - - uid: 19326 + pos: -59.5,19.5 + parent: 2 + - type: DeviceList + devices: + - 11100 + - 11101 + - 11102 + - 11105 + - 11106 + - 11107 + - 516 + - 11108 + - 11109 + - 11110 + - uid: 10979 + components: + - type: Transform + pos: -75.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 11113 + - 11114 + - 11111 + - 11112 + - 514 + - 11108 + - 11109 + - 11110 + - uid: 10980 + components: + - type: Transform + pos: -84.5,11.5 + parent: 2 + - type: DeviceList + devices: + - 11079 + - 11078 + - 11113 + - 11114 + - 520 + - 11136 + - 11137 + - 11138 + - uid: 10981 + components: + - type: Transform + pos: -27.5,-9.5 + parent: 2 + - type: DeviceList + devices: + - 11036 + - 11035 + - 11034 + - 11116 + - 11118 + - 11119 + - 11120 + - 11015 + - 11014 + - 11013 + - 521 + - 11117 + - 11115 + - uid: 10982 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,0.5 - parent: 89 - - uid: 19327 + pos: 2.5,-14.5 + parent: 2 + - type: DeviceList + devices: + - 11018 + - 11019 + - uid: 10983 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,1.5 - parent: 89 - - uid: 19330 + pos: 37.5,0.5 + parent: 2 + - type: DeviceList + devices: + - 11004 + - 11005 + - 11006 + - 11042 + - 11041 + - 11049 + - 11050 + - 523 + - 11043 + - uid: 10984 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 89 - - uid: 19331 + pos: -16.5,-6.5 + parent: 2 + - type: DeviceList + devices: + - 11115 + - 11117 + - 11026 + - 11025 + - 524 + - uid: 10985 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 89 - - uid: 19333 + pos: -54.5,20.5 + parent: 2 + - type: DeviceList + devices: + - 11105 + - 11106 + - 11107 + - uid: 10986 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,0.5 - parent: 89 - - uid: 19335 + pos: 56.5,6.5 + parent: 2 + - type: DeviceList + devices: + - 525 + - 11052 + - 11051 + - uid: 10987 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,12.5 - parent: 89 - - uid: 19336 + pos: -28.5,22.5 + parent: 2 + - type: DeviceList + devices: + - 14630 + - 14463 + - 526 + - 11122 + - 11121 + - uid: 10988 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 89 - - uid: 19337 + pos: -9.5,5.5 + parent: 2 + - type: DeviceList + devices: + - 11129 + - 11130 + - 529 + - 11128 + - 11127 + - 11024 + - 11023 + - uid: 10989 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 89 - - uid: 19338 + pos: -28.5,38.5 + parent: 2 + - type: DeviceList + devices: + - 11055 + - 11054 + - 536 + - uid: 10990 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 89 - - uid: 19339 + pos: -124.5,-0.5 + parent: 2 + - type: DeviceList + devices: + - 11086 + - 11088 + - 11065 + - 11087 + - 11064 + - 11126 + - 542 + - 541 + - 11085 + - 11124 + - uid: 10991 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,8.5 - parent: 89 - - uid: 19341 + pos: -127.5,10.5 + parent: 2 + - type: DeviceList + devices: + - 14616 + - 14483 + - 538 + - 11124 + - 11085 + - uid: 10992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,2.5 - parent: 89 - - uid: 19342 + rot: 3.141592653589793 rad + pos: 36.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 11219 + - 565 + - uid: 10993 components: - type: Transform - pos: 27.5,-4.5 - parent: 89 - - uid: 19343 + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 + - type: DeviceList + devices: + - 11219 + - 566 + - uid: 10994 components: - type: Transform - pos: 27.5,-5.5 - parent: 89 - - uid: 19344 + pos: -35.5,-15.5 + parent: 2 + - type: DeviceList + devices: + - 569 + - 568 + - 567 + - 11046 + - 11002 + - 11044 + - 11045 + - uid: 10995 components: - type: Transform - pos: 27.5,-6.5 - parent: 89 - - uid: 19345 + rot: -1.5707963267948966 rad + pos: -110.5,-19.5 + parent: 2 + - type: DeviceList + devices: + - 11231 + - 11234 + - 11232 + - 11233 + - 573 + - uid: 23800 components: - type: Transform - pos: 27.5,-7.5 - parent: 89 - - uid: 19346 + rot: 3.141592653589793 rad + pos: 5.5,-3.5 + parent: 23711 + - type: DeviceList + devices: + - 23801 + - 23803 + - 23804 + - 23802 + - 23720 + - 23721 + - 23722 + - uid: 24392 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,-8.5 - parent: 89 - - uid: 19347 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 89 - - uid: 19352 + pos: 1.5,-5.5 + parent: 24340 + - type: DeviceList + devices: + - 24396 + - 24395 + - 24394 + - 24393 + - 24344 + - uid: 25891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 89 - - uid: 19353 + rot: 3.141592653589793 rad + pos: -16.5,-20.5 + parent: 24450 + - type: DeviceList + devices: + - 25917 + - 25918 + - 24524 + - 25920 + - 25919 + - 25922 + - 25921 + - uid: 27614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,-9.5 - parent: 89 - - uid: 19354 + rot: 3.141592653589793 rad + pos: -0.5,-10.5 + parent: 27260 + - type: DeviceList + devices: + - 27274 + - 27616 + - 27617 + - 27618 + - 27619 + - 27620 + - 27621 + - 27615 +- proto: FireAlarmElectronics + entities: + - uid: 10996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 89 - - uid: 19355 + pos: -98.713394,-8.672226 + parent: 2 + - uid: 10997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 89 - - uid: 19356 + pos: -98.307144,-8.750351 + parent: 2 +- proto: FireAxeCabinetFilled + entities: + - uid: 10998 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 89 - - uid: 19357 + pos: 53.5,4.5 + parent: 2 + - uid: 10999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 89 - - uid: 19358 + pos: -99.5,-11.5 + parent: 2 +- proto: FireExtinguisher + entities: + - uid: 11000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 18.5,-9.5 - parent: 89 - - uid: 19359 + pos: -2.512826,-41.501106 + parent: 2 +- proto: Firelock + entities: + - uid: 11001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 89 - - uid: 19360 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11002 components: - type: Transform rot: -1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 89 - - uid: 19361 + pos: -42.5,-4.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 11003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,-9.5 - parent: 89 - - uid: 19362 + rot: 3.141592653589793 rad + pos: -99.5,-6.5 + parent: 2 + - uid: 11004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 89 - - uid: 19363 + rot: 3.141592653589793 rad + pos: 33.5,3.5 + parent: 2 + - uid: 11005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 89 - - uid: 19364 + rot: 3.141592653589793 rad + pos: 33.5,2.5 + parent: 2 + - uid: 11006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,-9.5 - parent: 89 - - uid: 19365 + rot: 3.141592653589793 rad + pos: 33.5,1.5 + parent: 2 + - uid: 11007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 89 - - uid: 19369 + pos: 1.5,1.5 + parent: 2 + - uid: 11008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,2.5 - parent: 89 - - uid: 19370 + pos: 1.5,3.5 + parent: 2 + - uid: 11009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 89 - - uid: 19371 + pos: 1.5,2.5 + parent: 2 + - uid: 11010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,2.5 - parent: 89 - - uid: 19372 + pos: -4.5,1.5 + parent: 2 + - uid: 11011 components: - type: Transform - rot: -1.5707963267948966 rad pos: -4.5,2.5 - parent: 89 - - uid: 19373 + parent: 2 + - uid: 11012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,2.5 - parent: 89 - - uid: 19374 + pos: -4.5,3.5 + parent: 2 + - uid: 11013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,2.5 - parent: 89 - - uid: 19375 + pos: -4.5,-11.5 + parent: 2 + - uid: 11014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 89 - - uid: 19376 + pos: -4.5,-12.5 + parent: 2 + - uid: 11015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 89 - - uid: 19377 + pos: -4.5,-13.5 + parent: 2 + - uid: 11016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,2.5 - parent: 89 - - uid: 19378 + pos: -2.5,-18.5 + parent: 2 + - uid: 11017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,2.5 - parent: 89 - - uid: 19380 + pos: -0.5,-18.5 + parent: 2 + - uid: 11018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-1.5 - parent: 89 - - uid: 19381 + pos: 1.5,-12.5 + parent: 2 + - uid: 11019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 89 - - uid: 19382 + pos: 1.5,-10.5 + parent: 2 + - uid: 11020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-1.5 - parent: 89 - - uid: 19383 + pos: -21.5,1.5 + parent: 2 + - uid: 11021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-1.5 - parent: 89 - - uid: 19384 + pos: -21.5,2.5 + parent: 2 + - uid: 11022 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-1.5 - parent: 89 - - uid: 19386 + pos: -21.5,3.5 + parent: 2 + - uid: 11023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 89 - - uid: 19387 + pos: -12.5,5.5 + parent: 2 + - uid: 11024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 89 - - uid: 19388 + pos: -11.5,5.5 + parent: 2 + - uid: 11025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 89 - - uid: 19389 + pos: -17.5,0.5 + parent: 2 + - uid: 11026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 89 - - uid: 19390 + pos: -19.5,0.5 + parent: 2 + - uid: 11027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 89 - - uid: 19391 + pos: -28.5,4.5 + parent: 2 + - uid: 11028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 89 - - uid: 19392 + pos: -28.5,3.5 + parent: 2 + - uid: 11029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-8.5 - parent: 89 - - uid: 19393 + rot: 3.141592653589793 rad + pos: -38.5,3.5 + parent: 2 + - uid: 11030 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-2.5 - parent: 89 - - uid: 19394 + pos: -38.5,4.5 + parent: 2 + - uid: 11031 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-3.5 - parent: 89 - - uid: 19395 + pos: -32.5,6.5 + parent: 2 + - uid: 11032 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-4.5 - parent: 89 - - uid: 19396 + pos: -31.5,6.5 + parent: 2 + - uid: 11033 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-5.5 - parent: 89 - - uid: 19397 + pos: -30.5,6.5 + parent: 2 + - uid: 11034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-6.5 - parent: 89 - - uid: 19398 + pos: -38.5,-13.5 + parent: 2 + - uid: 11035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-7.5 - parent: 89 - - uid: 19402 + pos: -38.5,-12.5 + parent: 2 + - uid: 11036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-17.5 - parent: 89 - - uid: 19404 + pos: -38.5,-11.5 + parent: 2 + - uid: 11037 components: - type: Transform - pos: 51.5,8.5 - parent: 89 - - uid: 19405 + pos: -40.5,6.5 + parent: 2 + - uid: 11038 components: - type: Transform - pos: 51.5,9.5 - parent: 89 - - uid: 19406 + pos: -42.5,3.5 + parent: 2 + - uid: 11039 components: - type: Transform - pos: 51.5,10.5 - parent: 89 - - uid: 19407 + pos: -42.5,4.5 + parent: 2 + - uid: 11040 components: - type: Transform - pos: 52.5,12.5 - parent: 89 - - uid: 19413 + pos: -42.5,5.5 + parent: 2 + - uid: 11041 components: - type: Transform - pos: 61.5,3.5 - parent: 89 - - uid: 19414 + pos: 42.5,1.5 + parent: 2 + - uid: 11042 components: - type: Transform - pos: 61.5,2.5 - parent: 89 - - uid: 19415 + pos: 42.5,0.5 + parent: 2 + - uid: 11043 components: - type: Transform - pos: 61.5,1.5 - parent: 89 - - uid: 19417 + pos: 35.5,9.5 + parent: 2 + - uid: 11044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,0.5 - parent: 89 - - uid: 19418 + rot: -1.5707963267948966 rad + pos: -44.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - uid: 11045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,0.5 - parent: 89 - - uid: 19419 + rot: -1.5707963267948966 rad + pos: -23.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 10994 + - 83 + - uid: 11046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,0.5 - parent: 89 - - uid: 19420 + rot: -1.5707963267948966 rad + pos: -46.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 83 + - 10994 + - 22 + - uid: 23801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,0.5 - parent: 89 - - uid: 19421 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 23711 + - uid: 23802 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,0.5 - parent: 89 - - uid: 19422 + rot: 3.141592653589793 rad + pos: 4.5,-3.5 + parent: 23711 + - uid: 23803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,0.5 - parent: 89 - - uid: 19423 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 23711 + - uid: 23804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,0.5 - parent: 89 - - uid: 19424 + rot: -1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 23711 + - uid: 25892 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,0.5 - parent: 89 - - uid: 19529 + rot: -1.5707963267948966 rad + pos: -13.5,8.5 + parent: 24450 + - uid: 25893 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,5.5 - parent: 89 - - uid: 23863 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 24450 + - uid: 25894 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 22565 - - uid: 23864 + rot: -1.5707963267948966 rad + pos: -15.5,1.5 + parent: 24450 + - uid: 25895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,13.5 - parent: 22565 - - uid: 23865 + rot: -1.5707963267948966 rad + pos: -8.5,1.5 + parent: 24450 + - uid: 25896 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 22565 - - uid: 23866 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 24450 + - uid: 25897 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 22565 - - uid: 23867 + rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 24450 + - uid: 25898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 22565 - - uid: 23868 + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 24450 + - uid: 25899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 22565 - - uid: 23869 + rot: -1.5707963267948966 rad + pos: -15.5,10.5 + parent: 24450 + - uid: 25900 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 22565 - - uid: 23870 + rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 24450 + - uid: 25901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,0.5 - parent: 22565 - - uid: 23871 + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 24450 + - uid: 25902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,0.5 - parent: 22565 - - uid: 23872 + rot: -1.5707963267948966 rad + pos: -10.5,3.5 + parent: 24450 + - uid: 25903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 22565 - - uid: 23873 + rot: -1.5707963267948966 rad + pos: -13.5,3.5 + parent: 24450 + - uid: 25904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 22565 - - uid: 23874 + rot: -1.5707963267948966 rad + pos: -13.5,0.5 + parent: 24450 + - uid: 25905 components: - type: Transform - pos: -13.5,-1.5 - parent: 22565 - - uid: 23875 + rot: -1.5707963267948966 rad + pos: -10.5,0.5 + parent: 24450 + - uid: 25906 components: - type: Transform - pos: -13.5,-0.5 - parent: 22565 - - uid: 23876 + rot: -1.5707963267948966 rad + pos: -28.5,5.5 + parent: 24450 + - uid: 25907 components: - type: Transform - pos: -13.5,0.5 - parent: 22565 - - uid: 23877 + rot: -1.5707963267948966 rad + pos: -23.5,12.5 + parent: 24450 + - uid: 25908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 22565 - - uid: 23878 + rot: -1.5707963267948966 rad + pos: -22.5,12.5 + parent: 24450 + - uid: 25909 components: - type: Transform - pos: -7.5,2.5 - parent: 22565 - - uid: 23879 + rot: -1.5707963267948966 rad + pos: -21.5,12.5 + parent: 24450 + - uid: 25910 components: - type: Transform - pos: -7.5,4.5 - parent: 22565 - - uid: 23880 + rot: -1.5707963267948966 rad + pos: -20.5,12.5 + parent: 24450 + - uid: 25911 components: - type: Transform - pos: -7.5,5.5 - parent: 22565 - - uid: 23881 + rot: -1.5707963267948966 rad + pos: -3.5,12.5 + parent: 24450 + - uid: 25912 components: - type: Transform - pos: -7.5,6.5 - parent: 22565 - - uid: 23882 + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 24450 + - uid: 25913 components: - type: Transform - pos: -7.5,7.5 - parent: 22565 - - uid: 23883 + rot: -1.5707963267948966 rad + pos: -1.5,12.5 + parent: 24450 + - uid: 25914 components: - type: Transform - pos: -7.5,8.5 - parent: 22565 - - uid: 23884 + rot: -1.5707963267948966 rad + pos: -0.5,12.5 + parent: 24450 + - uid: 25915 components: - type: Transform - pos: -7.5,9.5 - parent: 22565 - - uid: 23885 + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 24450 +- proto: FirelockEdge + entities: + - uid: 11047 components: - type: Transform - pos: -16.5,2.5 - parent: 22565 - - uid: 23886 + rot: -1.5707963267948966 rad + pos: -52.5,-9.5 + parent: 2 + - uid: 11048 components: - type: Transform - pos: -16.5,3.5 - parent: 22565 - - uid: 23887 + pos: -51.5,-4.5 + parent: 2 + - uid: 11049 components: - type: Transform - pos: -16.5,4.5 - parent: 22565 - - uid: 23888 + rot: 1.5707963267948966 rad + pos: 39.5,4.5 + parent: 2 + - uid: 11050 components: - type: Transform - pos: -16.5,5.5 - parent: 22565 - - uid: 23889 + rot: 1.5707963267948966 rad + pos: 39.5,9.5 + parent: 2 + - uid: 11051 components: - type: Transform - pos: -16.5,6.5 - parent: 22565 - - uid: 23890 + pos: 58.5,1.5 + parent: 2 + - uid: 11052 components: - type: Transform - pos: -16.5,7.5 - parent: 22565 - - uid: 23891 + rot: 3.141592653589793 rad + pos: 58.5,7.5 + parent: 2 + - uid: 11053 components: - type: Transform - pos: -16.5,8.5 - parent: 22565 - - uid: 23892 + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 + - uid: 11054 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-2.5 - parent: 22565 - - uid: 23893 + pos: -30.5,37.5 + parent: 2 + - uid: 11055 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,2.5 - parent: 22565 - - uid: 23894 + pos: -29.5,37.5 + parent: 2 + - uid: 11056 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,3.5 - parent: 22565 - - uid: 23895 + pos: -4.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 22565 - - uid: 23896 + rot: 3.141592653589793 rad + pos: -8.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 24393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,10.5 - parent: 22565 - - uid: 23897 + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 24340 + - uid: 24394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 22565 - - uid: 23898 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 24340 + - uid: 24395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,10.5 - parent: 22565 - - uid: 23899 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 24340 + - uid: 25916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,10.5 - parent: 22565 - - uid: 23900 + rot: 3.141592653589793 rad + pos: -13.5,-24.5 + parent: 24450 + - uid: 25917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,10.5 - parent: 22565 - - uid: 23901 + rot: 3.141592653589793 rad + pos: -15.5,-21.5 + parent: 24450 + - uid: 25918 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,10.5 - parent: 22565 - - uid: 23902 + rot: 3.141592653589793 rad + pos: -11.5,-21.5 + parent: 24450 + - uid: 25919 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 22565 - - uid: 23903 + pos: -17.5,-26.5 + parent: 24450 + - uid: 25920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,10.5 - parent: 22565 - - uid: 23904 + pos: -15.5,-26.5 + parent: 24450 + - uid: 25921 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,9.5 - parent: 22565 - - uid: 23905 + pos: -11.5,-26.5 + parent: 24450 + - uid: 25922 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,9.5 - parent: 22565 - - uid: 23906 + pos: -9.5,-26.5 + parent: 24450 +- proto: FirelockElectronics + entities: + - uid: 11058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,9.5 - parent: 22565 - - uid: 23907 + pos: -98.66652,-9.219101 + parent: 2 + - uid: 11059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 22565 - - uid: 23908 + pos: -98.338394,-9.359726 + parent: 2 +- proto: FirelockGlass + entities: + - uid: 11060 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,9.5 - parent: 22565 - - uid: 23909 + pos: -34.5,20.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,9.5 - parent: 22565 - - uid: 23910 + pos: -78.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,9.5 - parent: 22565 - - uid: 23911 + pos: 16.5,-11.5 + parent: 2 + - uid: 11063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,9.5 - parent: 22565 - - uid: 23912 + rot: 3.141592653589793 rad + pos: -99.5,23.5 + parent: 2 + - uid: 11064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,9.5 - parent: 22565 - - uid: 23913 + rot: 3.141592653589793 rad + pos: -118.5,9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11065 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,9.5 - parent: 22565 - - uid: 23914 + rot: 3.141592653589793 rad + pos: -118.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,9.5 - parent: 22565 - - uid: 23915 + rot: -1.5707963267948966 rad + pos: -1.5,10.5 + parent: 2 + - uid: 11067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,9.5 - parent: 22565 - - uid: 23916 + pos: 41.5,9.5 + parent: 2 + - uid: 11068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,9.5 - parent: 22565 - - uid: 23917 + pos: 46.5,1.5 + parent: 2 + - uid: 11069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,10.5 - parent: 22565 - - uid: 23918 + pos: 46.5,0.5 + parent: 2 + - uid: 11070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,11.5 - parent: 22565 - - uid: 23919 + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 2 + - uid: 11071 components: - type: Transform - pos: -31.5,12.5 - parent: 22565 - - uid: 23920 + rot: -1.5707963267948966 rad + pos: 6.5,10.5 + parent: 2 + - uid: 11072 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,8.5 - parent: 22565 - - uid: 23921 + pos: -59.5,-3.5 + parent: 2 + - uid: 11073 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,7.5 - parent: 22565 - - uid: 23922 + pos: -62.5,-3.5 + parent: 2 + - uid: 11074 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,7.5 - parent: 22565 - - uid: 23923 + pos: -63.5,-3.5 + parent: 2 + - uid: 11075 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,5.5 - parent: 22565 - - uid: 23924 + pos: -66.5,-3.5 + parent: 2 + - uid: 11076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,6.5 - parent: 22565 - - uid: 23925 + pos: -50.5,2.5 + parent: 2 + - uid: 11077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,4.5 - parent: 22565 - - uid: 23926 + pos: -49.5,2.5 + parent: 2 + - uid: 11078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 22565 - - uid: 23927 + pos: -89.5,0.5 + parent: 2 + - uid: 11079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,3.5 - parent: 22565 - - uid: 23928 + pos: -88.5,0.5 + parent: 2 + - uid: 11080 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,3.5 - parent: 22565 - - uid: 23929 + pos: -96.5,7.5 + parent: 2 + - uid: 11081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,3.5 - parent: 22565 - - uid: 23930 + pos: -96.5,8.5 + parent: 2 + - uid: 11082 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,3.5 - parent: 22565 - - uid: 23931 + pos: -93.5,11.5 + parent: 2 + - uid: 11083 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,3.5 - parent: 22565 - - uid: 23932 + pos: -106.5,-4.5 + parent: 2 + - uid: 11084 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,3.5 - parent: 22565 - - uid: 23933 + pos: -106.5,-3.5 + parent: 2 + - uid: 11085 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 22565 - - uid: 23934 + rot: 3.141592653589793 rad + pos: -126.5,11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 10990 + - uid: 11086 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 22565 - - uid: 23935 + rot: 3.141592653589793 rad + pos: -127.5,-7.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 10990 + - uid: 11087 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 22565 - - uid: 23936 + rot: 3.141592653589793 rad + pos: -127.5,-6.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,3.5 - parent: 22565 - - uid: 23937 + rot: 3.141592653589793 rad + pos: -118.5,17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 22565 - - uid: 23938 + pos: -66.5,6.5 + parent: 2 + - uid: 11090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,3.5 - parent: 22565 - - uid: 23939 + pos: -65.5,6.5 + parent: 2 + - uid: 11091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,3.5 - parent: 22565 - - uid: 23940 + pos: -55.5,-4.5 + parent: 2 + - uid: 11092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,3.5 - parent: 22565 -- proto: DisposalRouterFlipped - entities: - - uid: 19366 + pos: -70.5,-4.5 + parent: 2 + - uid: 11093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,2.5 - parent: 89 -- proto: DisposalTrunk - entities: - - uid: 211 + pos: -28.5,13.5 + parent: 2 + - uid: 11094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-20.5 - parent: 89 - - uid: 4285 + pos: -34.5,16.5 + parent: 2 + - uid: 11095 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 89 - - uid: 7376 + pos: -34.5,17.5 + parent: 2 + - uid: 11096 components: - type: Transform - pos: -33.5,-7.5 - parent: 89 - - uid: 7687 + pos: -34.5,18.5 + parent: 2 + - uid: 11097 components: - type: Transform - pos: 14.5,9.5 - parent: 89 - - uid: 7697 + pos: -46.5,16.5 + parent: 2 + - uid: 11098 components: - type: Transform - pos: -97.5,27.5 - parent: 89 - - uid: 8711 + pos: -46.5,17.5 + parent: 2 + - uid: 11099 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 89 - - uid: 10965 + pos: -46.5,18.5 + parent: 2 + - uid: 11100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 89 - - uid: 15495 + pos: -50.5,16.5 + parent: 2 + - uid: 11101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,32.5 - parent: 89 - - uid: 16926 + pos: -50.5,17.5 + parent: 2 + - uid: 11102 components: - type: Transform - pos: 52.5,13.5 - parent: 89 - - uid: 18431 + pos: -50.5,18.5 + parent: 2 + - uid: 11103 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,7.5 - parent: 89 - - uid: 18433 + pos: -65.5,13.5 + parent: 2 + - uid: 11104 components: - type: Transform - rot: 3.141592653589793 rad - pos: -77.5,7.5 - parent: 89 - - uid: 18437 + pos: -65.5,14.5 + parent: 2 + - uid: 11105 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,10.5 - parent: 89 - - uid: 18447 + pos: -55.5,19.5 + parent: 2 + - uid: 11106 components: - type: Transform - pos: 50.5,9.5 - parent: 89 - - uid: 18461 + pos: -56.5,19.5 + parent: 2 + - uid: 11107 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,15.5 - parent: 89 - - uid: 18521 + pos: -57.5,19.5 + parent: 2 + - uid: 11108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-17.5 - parent: 89 - - uid: 18539 + pos: -70.5,16.5 + parent: 2 + - uid: 11109 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 - parent: 89 - - uid: 18544 + pos: -70.5,17.5 + parent: 2 + - uid: 11110 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,16.5 - parent: 89 - - uid: 18547 + pos: -70.5,18.5 + parent: 2 + - uid: 11111 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-15.5 - parent: 89 - - uid: 18548 + pos: -70.5,9.5 + parent: 2 + - uid: 11112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-13.5 - parent: 89 - - uid: 18565 + pos: -70.5,10.5 + parent: 2 + - uid: 11113 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-15.5 - parent: 89 - - uid: 18583 + pos: -76.5,8.5 + parent: 2 + - uid: 11114 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,-11.5 - parent: 89 - - uid: 18645 + pos: -76.5,9.5 + parent: 2 + - uid: 11115 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-3.5 - parent: 89 - - uid: 18687 + pos: -20.5,-9.5 + parent: 2 + - uid: 11116 components: - type: Transform - pos: -97.5,9.5 - parent: 89 - - uid: 18691 + pos: -22.5,-14.5 + parent: 2 + - uid: 11117 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,-12.5 - parent: 89 - - uid: 18738 + pos: -22.5,-9.5 + parent: 2 + - uid: 11118 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-5.5 - parent: 89 - - uid: 18742 + pos: -20.5,-14.5 + parent: 2 + - uid: 11119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-18.5 - parent: 89 - - uid: 18744 + pos: -19.5,-14.5 + parent: 2 + - uid: 11120 components: - type: Transform - pos: -60.5,5.5 - parent: 89 - - uid: 18756 + pos: -18.5,-14.5 + parent: 2 + - uid: 11121 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 89 - - uid: 18783 + pos: -29.5,19.5 + parent: 2 + - uid: 11122 components: - type: Transform - pos: -104.5,15.5 - parent: 89 - - uid: 18798 + pos: -30.5,19.5 + parent: 2 + - uid: 11123 + components: + - type: Transform + pos: 24.5,26.5 + parent: 2 + - uid: 11124 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,12.5 - parent: 89 - - uid: 18818 + pos: -126.5,13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - 10990 + - uid: 11125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,9.5 - parent: 89 - - uid: 18819 + pos: 26.5,30.5 + parent: 2 + - uid: 11126 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,12.5 - parent: 89 - - uid: 18873 + pos: -119.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 + - uid: 11127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,23.5 - parent: 89 - - uid: 18887 + pos: -8.5,7.5 + parent: 2 + - uid: 11128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 89 - - uid: 18894 + pos: -8.5,8.5 + parent: 2 + - uid: 11129 components: - type: Transform - pos: -105.5,-2.5 - parent: 89 - - uid: 18902 + pos: -11.5,10.5 + parent: 2 + - uid: 11130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,14.5 - parent: 89 - - uid: 18999 + pos: -10.5,10.5 + parent: 2 + - uid: 11131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,1.5 - parent: 89 - - uid: 19015 + pos: 22.5,30.5 + parent: 2 + - uid: 11132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,14.5 - parent: 89 - - uid: 19070 + pos: -1.5,24.5 + parent: 2 + - uid: 11133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,20.5 - parent: 89 - - uid: 19080 + pos: -2.5,24.5 + parent: 2 + - uid: 11134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,32.5 - parent: 89 - - uid: 19120 + pos: -3.5,24.5 + parent: 2 + - uid: 11135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,12.5 - parent: 89 - - uid: 19125 + pos: -127.5,20.5 + parent: 2 + - uid: 11136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-3.5 - parent: 89 - - uid: 19192 + pos: -82.5,11.5 + parent: 2 + - uid: 11137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-19.5 - parent: 89 - - uid: 19198 + pos: -81.5,11.5 + parent: 2 + - uid: 11138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,8.5 - parent: 89 - - uid: 19247 + pos: -80.5,11.5 + parent: 2 + - uid: 11139 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,11.5 - parent: 89 - - uid: 19267 + pos: 35.5,23.5 + parent: 2 + - uid: 11140 components: - type: Transform - pos: -6.5,-15.5 - parent: 89 - - uid: 19268 + pos: 35.5,22.5 + parent: 2 + - uid: 11141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-38.5 - parent: 89 - - uid: 19320 + pos: -18.5,21.5 + parent: 2 + - uid: 11142 components: - type: Transform - pos: 11.5,14.5 - parent: 89 - - uid: 19332 + pos: -18.5,20.5 + parent: 2 + - uid: 11143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,5.5 - parent: 89 - - uid: 19348 + pos: -37.5,26.5 + parent: 2 + - uid: 11144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,-1.5 - parent: 89 - - uid: 19379 + pos: -22.5,26.5 + parent: 2 + - uid: 11145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-1.5 - parent: 89 - - uid: 19411 + pos: -115.5,18.5 + parent: 2 + - uid: 11146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 89 - - uid: 19526 + pos: -115.5,17.5 + parent: 2 + - uid: 11147 components: - type: Transform - pos: -22.5,6.5 - parent: 89 - - uid: 19762 + pos: -16.5,15.5 + parent: 2 + - uid: 11148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-8.5 - parent: 89 - - uid: 19808 + pos: -15.5,15.5 + parent: 2 + - uid: 11149 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 89 - - uid: 20051 + pos: -14.5,15.5 + parent: 2 + - uid: 11150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,17.5 - parent: 89 - - uid: 20092 + pos: -76.5,18.5 + parent: 2 + - uid: 11151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,7.5 - parent: 89 - - uid: 23941 + pos: -57.5,44.5 + parent: 2 + - uid: 11152 components: - type: Transform - pos: -9.5,4.5 - parent: 22565 - - uid: 23942 + pos: -57.5,45.5 + parent: 2 + - uid: 11153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-0.5 - parent: 22565 - - uid: 23943 + pos: -56.5,46.5 + parent: 2 + - uid: 11154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-0.5 - parent: 22565 - - uid: 23944 + pos: -55.5,46.5 + parent: 2 + - uid: 11155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-3.5 - parent: 22565 - - uid: 23945 + pos: -53.5,44.5 + parent: 2 + - uid: 11156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,3.5 - parent: 22565 - - uid: 23946 + pos: -53.5,40.5 + parent: 2 + - uid: 11157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,3.5 - parent: 22565 -- proto: DisposalUnit - entities: - - uid: 334 + pos: -55.5,37.5 + parent: 2 + - uid: 11158 components: - type: Transform - pos: -15.5,-5.5 - parent: 89 - - uid: 1187 + pos: -56.5,37.5 + parent: 2 + - uid: 11159 components: - type: Transform - pos: -9.5,-20.5 - parent: 89 - - uid: 1558 + pos: -54.5,35.5 + parent: 2 + - uid: 11160 components: - type: Transform - pos: 62.5,4.5 - parent: 89 - - uid: 1563 + pos: -58.5,35.5 + parent: 2 + - uid: 11161 components: - type: Transform - pos: 52.5,13.5 - parent: 89 - - uid: 2170 + pos: -58.5,33.5 + parent: 2 + - uid: 11162 components: - type: Transform - pos: 37.5,16.5 - parent: 89 - - uid: 2832 + pos: -52.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11163 components: - type: Transform - pos: -7.5,5.5 - parent: 89 - - uid: 2957 + pos: 14.5,31.5 + parent: 2 + - uid: 11164 components: - type: Transform - pos: 22.5,0.5 - parent: 89 - - uid: 3125 + pos: 13.5,31.5 + parent: 2 + - uid: 11165 components: - type: Transform - pos: 28.5,-3.5 - parent: 89 - - uid: 3564 + pos: 14.5,28.5 + parent: 2 + - uid: 11166 components: - type: Transform - pos: 30.5,-1.5 - parent: 89 - - uid: 3969 + pos: 13.5,28.5 + parent: 2 + - uid: 11167 components: - type: Transform - pos: 10.5,-3.5 - parent: 89 - - uid: 4378 + pos: 14.5,24.5 + parent: 2 + - uid: 11168 + components: + - type: Transform + pos: 13.5,24.5 + parent: 2 + - uid: 11169 components: - type: Transform - pos: 9.5,-12.5 - parent: 89 - - uid: 4877 + pos: 14.5,16.5 + parent: 2 + - uid: 11170 components: - type: Transform - pos: -41.5,-8.5 - parent: 89 - - uid: 5839 + pos: 13.5,16.5 + parent: 2 + - uid: 11171 components: - type: Transform - pos: -50.5,-17.5 - parent: 89 - - uid: 6365 + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 + - uid: 11172 components: - type: Transform - pos: -20.5,8.5 - parent: 89 - - uid: 6801 + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 + - uid: 11173 components: - type: Transform - pos: -43.5,-1.5 - parent: 89 - - uid: 7408 + rot: -1.5707963267948966 rad + pos: -2.5,12.5 + parent: 2 + - uid: 11174 components: - type: Transform - pos: -64.5,-15.5 - parent: 89 - - uid: 7409 + rot: -1.5707963267948966 rad + pos: 4.5,13.5 + parent: 2 + - uid: 11175 components: - type: Transform - pos: -71.5,-15.5 - parent: 89 - - uid: 7419 + rot: -1.5707963267948966 rad + pos: 4.5,11.5 + parent: 2 + - uid: 11176 components: - type: Transform - pos: -47.5,1.5 - parent: 89 - - uid: 7422 + rot: -1.5707963267948966 rad + pos: 7.5,15.5 + parent: 2 + - uid: 11177 components: - type: Transform - pos: -33.5,-7.5 - parent: 89 - - uid: 8098 + rot: -1.5707963267948966 rad + pos: 9.5,15.5 + parent: 2 + - uid: 11178 components: - type: Transform - pos: -84.5,12.5 - parent: 89 - - uid: 8168 + rot: -1.5707963267948966 rad + pos: 24.5,33.5 + parent: 2 + - uid: 11179 components: - type: Transform - pos: -58.5,10.5 - parent: 89 - - uid: 8320 + rot: -1.5707963267948966 rad + pos: -8.5,15.5 + parent: 2 + - uid: 11180 components: - type: Transform - pos: -63.5,20.5 - parent: 89 - - uid: 9331 + rot: -1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 11181 components: - type: Transform - pos: -4.5,17.5 - parent: 89 - - uid: 9961 + rot: -1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - uid: 11182 components: - type: Transform - pos: -65.5,23.5 - parent: 89 - - uid: 10400 + rot: -1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 + - uid: 11183 components: - type: Transform - pos: -89.5,10.5 - parent: 89 - - uid: 10471 + rot: -1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 + - uid: 11184 components: - type: Transform - pos: 22.5,9.5 - parent: 89 - - uid: 10501 + rot: -1.5707963267948966 rad + pos: 24.5,21.5 + parent: 2 + - uid: 11185 components: - type: Transform - pos: 14.5,9.5 - parent: 89 - - uid: 10830 + rot: -1.5707963267948966 rad + pos: 29.5,19.5 + parent: 2 + - uid: 11186 components: - type: Transform - pos: -33.5,14.5 - parent: 89 - - uid: 10840 + rot: -1.5707963267948966 rad + pos: 24.5,38.5 + parent: 2 + - uid: 11187 components: - type: Transform - pos: 1.5,-4.5 - parent: 89 - - uid: 10941 + rot: 1.5707963267948966 rad + pos: -1.5,-37.5 + parent: 2 + - uid: 11188 components: - type: Transform - pos: -4.5,-38.5 - parent: 89 - - uid: 10993 + rot: 1.5707963267948966 rad + pos: 1.5,-42.5 + parent: 2 + - uid: 11189 components: - type: Transform - pos: -69.5,-13.5 - parent: 89 - - uid: 10996 + rot: 1.5707963267948966 rad + pos: -6.5,-42.5 + parent: 2 + - uid: 11190 components: - type: Transform - pos: -77.5,7.5 - parent: 89 - - uid: 11002 + rot: 1.5707963267948966 rad + pos: -1.5,-32.5 + parent: 2 + - uid: 11191 components: - type: Transform - pos: -69.5,7.5 - parent: 89 - - uid: 11009 + rot: 1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 + - uid: 11192 components: - type: Transform - pos: -54.5,12.5 - parent: 89 - - uid: 11011 + rot: 1.5707963267948966 rad + pos: -2.5,-23.5 + parent: 2 + - uid: 11193 components: - type: Transform - pos: -60.5,5.5 - parent: 89 - - uid: 11012 + rot: 1.5707963267948966 rad + pos: -0.5,-23.5 + parent: 2 + - uid: 11194 components: - type: Transform - pos: 1.5,-19.5 - parent: 89 - - uid: 15015 + rot: 1.5707963267948966 rad + pos: 2.5,-23.5 + parent: 2 + - uid: 11195 components: - type: Transform - pos: 25.5,27.5 - parent: 89 - - uid: 15404 + rot: 1.5707963267948966 rad + pos: 2.5,-26.5 + parent: 2 + - uid: 11196 components: - type: Transform - pos: 10.5,32.5 - parent: 89 - - uid: 15513 + rot: 1.5707963267948966 rad + pos: 5.5,-24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11197 components: - type: Transform - pos: -46.5,14.5 - parent: 89 - - uid: 16556 + rot: 1.5707963267948966 rad + pos: -8.5,-19.5 + parent: 2 + - uid: 11198 components: - type: Transform - pos: -86.5,32.5 - parent: 89 - - uid: 18342 + rot: 1.5707963267948966 rad + pos: -10.5,-22.5 + parent: 2 + - uid: 11199 components: - type: Transform - pos: -101.5,7.5 - parent: 89 - - uid: 18436 + rot: 1.5707963267948966 rad + pos: -3.5,-35.5 + parent: 2 + - uid: 11200 components: - type: Transform - pos: -97.5,9.5 - parent: 89 - - uid: 18441 + rot: 1.5707963267948966 rad + pos: -17.5,-16.5 + parent: 2 + - uid: 11201 components: - type: Transform - pos: -105.5,-2.5 - parent: 89 - - uid: 18443 + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 2 + - uid: 11202 components: - type: Transform - pos: -107.5,-18.5 - parent: 89 - - uid: 18445 + rot: -1.5707963267948966 rad + pos: 2.5,-17.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11203 components: - type: Transform - pos: -111.5,-11.5 - parent: 89 - - uid: 18446 + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 + - uid: 11204 components: - type: Transform - pos: -119.5,-3.5 - parent: 89 - - uid: 18448 + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 + - uid: 11205 components: - type: Transform - pos: -126.5,15.5 - parent: 89 - - uid: 18457 + rot: 1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 + - uid: 11206 components: - type: Transform - pos: 50.5,9.5 - parent: 89 - - uid: 18655 + rot: 1.5707963267948966 rad + pos: 39.5,-21.5 + parent: 2 + - uid: 11207 components: - type: Transform - pos: -104.5,15.5 - parent: 89 - - uid: 18705 + rot: 1.5707963267948966 rad + pos: 37.5,-20.5 + parent: 2 + - uid: 11208 components: - type: Transform - pos: 11.5,14.5 - parent: 89 - - uid: 18707 + rot: 1.5707963267948966 rad + pos: 52.5,-22.5 + parent: 2 + - uid: 11209 components: - type: Transform - pos: 28.5,15.5 - parent: 89 - - uid: 18817 + rot: 1.5707963267948966 rad + pos: 52.5,-25.5 + parent: 2 + - uid: 11210 components: - type: Transform - pos: -91.5,12.5 - parent: 89 - - uid: 18974 + rot: 1.5707963267948966 rad + pos: 52.5,-20.5 + parent: 2 + - uid: 11211 components: - type: Transform - pos: 14.5,11.5 - parent: 89 - - uid: 19235 + rot: 1.5707963267948966 rad + pos: 47.5,-23.5 + parent: 2 + - uid: 11212 components: - type: Transform - pos: -6.5,-15.5 - parent: 89 - - uid: 19530 + rot: 1.5707963267948966 rad + pos: 47.5,-22.5 + parent: 2 + - uid: 11213 components: - type: Transform - pos: -22.5,6.5 - parent: 89 - - uid: 19761 + rot: 1.5707963267948966 rad + pos: 54.5,-30.5 + parent: 2 + - uid: 11214 components: - type: Transform - pos: -17.5,-6.5 - parent: 89 - - uid: 19763 + rot: 1.5707963267948966 rad + pos: 57.5,-23.5 + parent: 2 + - uid: 11215 components: - type: Transform - pos: -24.5,-8.5 - parent: 89 - - uid: 23947 + rot: 1.5707963267948966 rad + pos: 57.5,-18.5 + parent: 2 + - uid: 11216 components: - type: Transform - pos: -9.5,4.5 - parent: 22565 - - uid: 23948 + pos: 43.5,-26.5 + parent: 2 + - uid: 11217 components: - type: Transform - pos: -15.5,-0.5 - parent: 22565 - - uid: 23949 + pos: 42.5,-26.5 + parent: 2 + - uid: 11218 components: - type: Transform - pos: -8.5,-0.5 - parent: 22565 - - uid: 23950 + pos: 45.5,-26.5 + parent: 2 + - uid: 11219 components: - type: Transform - pos: -13.5,-3.5 - parent: 22565 - - uid: 23951 + rot: 3.141592653589793 rad + pos: 37.5,-22.5 + parent: 2 + - uid: 11220 components: - type: Transform - pos: -32.5,3.5 - parent: 22565 - - uid: 23952 + rot: -1.5707963267948966 rad + pos: 37.5,-16.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 84 + - uid: 11221 components: - type: Transform - pos: 8.5,3.5 - parent: 22565 -- proto: DisposalYJunction - entities: - - uid: 18523 + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11222 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-3.5 - parent: 89 - - uid: 18566 + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-1.5 - parent: 89 - - uid: 18663 + rot: -1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11224 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,4.5 - parent: 89 - - uid: 19062 + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 11225 components: - type: Transform - pos: -11.5,7.5 - parent: 89 - - uid: 19425 + pos: -94.5,-3.5 + parent: 2 + - uid: 11226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-9.5 - parent: 89 -- proto: DogBed - entities: - - uid: 1927 + pos: -92.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11227 components: - type: Transform - pos: 40.5,12.5 - parent: 89 - - uid: 4579 + pos: -95.5,-3.5 + parent: 2 + - uid: 11228 components: - type: Transform - pos: 7.5,-9.5 - parent: 89 - - uid: 5816 + pos: -94.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11229 components: - type: Transform - pos: -74.5,-15.5 - parent: 89 - - uid: 8382 + rot: -1.5707963267948966 rad + pos: -109.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11230 components: - type: Transform - pos: -93.5,-9.5 - parent: 89 - - uid: 10262 + rot: -1.5707963267948966 rad + pos: -107.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - uid: 11231 components: - type: Transform - pos: -33.5,27.5 - parent: 89 - - uid: 15308 + rot: -1.5707963267948966 rad + pos: -110.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 + - 10957 + - 86 + - 10995 + - uid: 11232 components: - type: Transform - pos: 48.5,12.5 - parent: 89 - - uid: 19995 + rot: -1.5707963267948966 rad + pos: -115.5,-11.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 11233 components: - - type: MetaData - name: лежанка - type: Transform - pos: 26.5,35.5 - parent: 89 -- proto: DonkpocketBoxSpawner - entities: - - uid: 7157 + rot: -1.5707963267948966 rad + pos: -116.5,-10.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 11234 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-15.5 - parent: 89 - - uid: 10937 + rot: -1.5707963267948966 rad + pos: -111.5,-3.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 + - 10995 + - uid: 11235 components: - type: Transform - pos: -118.5,-15.5 - parent: 89 - - uid: 14701 + pos: -54.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11236 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 14702 + pos: -48.5,19.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 88 + - uid: 11237 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 20089 + rot: -1.5707963267948966 rad + pos: -31.5,23.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 + - uid: 11238 components: - type: Transform - pos: -115.5,1.5 - parent: 89 - - uid: 25680 + rot: -1.5707963267948966 rad + pos: -31.5,27.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 + - uid: 11239 components: - type: Transform - pos: 22.5,-17.5 - parent: 89 -- proto: DoorElectronics - entities: - - uid: 7062 + rot: -1.5707963267948966 rad + pos: -31.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 + - uid: 11240 components: - type: Transform - pos: -104.67677,-7.256445 - parent: 89 - - uid: 7063 + rot: -1.5707963267948966 rad + pos: -28.5,31.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 + - uid: 11241 components: - type: Transform - pos: -104.67677,-7.475195 - parent: 89 - - uid: 7066 + rot: -1.5707963267948966 rad + pos: -28.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 + - uid: 11242 components: - type: Transform - pos: -104.36427,-7.475195 - parent: 89 - - uid: 7069 + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 + - uid: 24108 components: - type: Transform - pos: -104.36427,-7.256445 - parent: 89 -- proto: DoorRemoteArmory - entities: - - uid: 4921 + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24109 components: - type: Transform - pos: 8.483128,-12.300071 - parent: 89 -- proto: Dresser - entities: - - uid: 435 + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24110 components: - type: Transform - pos: 40.5,14.5 - parent: 89 - - uid: 10143 + rot: -1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24111 components: - type: Transform - pos: -25.5,33.5 - parent: 89 - - uid: 10144 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 23919 + - uid: 24112 components: - type: Transform - pos: -25.5,29.5 - parent: 89 - - uid: 10145 + rot: 3.141592653589793 rad + pos: 2.5,2.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23923 + - uid: 24113 components: - type: Transform - pos: -25.5,25.5 - parent: 89 - - uid: 10147 + rot: 3.141592653589793 rad + pos: 2.5,-0.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 + - uid: 24396 components: - type: Transform - pos: -34.5,29.5 - parent: 89 - - uid: 10148 + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 24340 + - uid: 27615 components: - type: Transform - pos: -34.5,33.5 - parent: 89 - - uid: 10378 + rot: 1.5707963267948966 rad + pos: -2.5,-5.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27616 components: - type: Transform - pos: -20.5,26.5 - parent: 89 - - uid: 10379 + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27617 components: - type: Transform - pos: -36.5,27.5 - parent: 89 - - uid: 10459 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27618 components: - type: Transform - pos: 22.5,12.5 - parent: 89 - - uid: 10511 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27619 components: - type: Transform - pos: -34.5,25.5 - parent: 89 - - uid: 11076 + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27620 components: - type: Transform - pos: 16.5,18.5 - parent: 89 - - type: ContainerContainer - containers: - storagebase: !type:Container - showEnts: False - occludes: True - ents: - - 11087 - - 11090 - - 11378 - - 11404 - - 11158 - - 11159 -- proto: DresserCaptainFilled - entities: - - uid: 7149 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 + - uid: 27621 components: - type: Transform - pos: 46.5,15.5 - parent: 89 -- proto: DresserHeadOfPersonnelFilled + rot: 1.5707963267948966 rad + pos: -0.5,-3.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27614 +- proto: Fireplace entities: - - uid: 13682 + - uid: 11243 components: - type: Transform - pos: 43.5,14.5 - parent: 89 -- proto: DresserHeadOfSecurityFilled + pos: 56.5,-24.5 + parent: 2 +- proto: FlashlightLantern entities: - - uid: 6121 + - uid: 11244 components: - type: Transform - pos: 34.5,-0.5 - parent: 89 -- proto: DresserQuarterMasterFilled - entities: - - uid: 5461 + pos: -25.593971,25.761902 + parent: 2 + - uid: 11245 components: - type: Transform - pos: -69.5,-17.5 - parent: 89 -- proto: DrinkAbsintheGlass - entities: - - uid: 17272 + rot: 3.141592653589793 rad + pos: 22.783228,-16.650192 + parent: 2 + - uid: 11246 components: - type: Transform - pos: -51.421,47.763172 - parent: 89 -- proto: DrinkBahamaMama - entities: - - uid: 17271 + pos: -113.51567,-5.446479 + parent: 2 + - uid: 11247 components: - type: Transform - pos: -51.61521,48.200672 - parent: 89 -- proto: DrinkBananaHonkGlass - entities: - - uid: 5333 + pos: -99.97467,2.4873905 + parent: 2 + - uid: 11248 components: - type: Transform - pos: 30.46677,-5.2915163 - parent: 89 -- proto: DrinkBeepskySmashGlass - entities: - - uid: 17292 + pos: -91.41225,5.4460807 + parent: 2 + - uid: 11249 components: - type: Transform - pos: -51.686626,48.310047 - parent: 89 -- proto: DrinkBeerBottleFull - entities: - - uid: 3055 + pos: -89.445175,6.290927 + parent: 2 + - uid: 11250 components: - type: Transform - pos: 33.648262,29.424652 - parent: 89 - - uid: 17874 + pos: -57.67143,12.341514 + parent: 2 + - uid: 11251 components: - type: Transform - pos: 62.468678,-9.397333 - parent: 89 - - uid: 21121 + pos: -34.97496,5.4803944 + parent: 2 + - uid: 25650 components: - type: Transform - parent: 21120 + parent: 25649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21122 + - uid: 25651 components: - type: Transform - parent: 21120 + parent: 25649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21123 + - uid: 25652 components: - type: Transform - parent: 21120 + parent: 25649 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21124 + - uid: 25660 components: - type: Transform - parent: 21120 + parent: 25659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21125 + - uid: 25661 components: - type: Transform - parent: 21120 + parent: 25659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21126 + - uid: 25662 components: - type: Transform - parent: 21120 + parent: 25659 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 21127 +- proto: FlashlightSeclite + entities: + - uid: 11252 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21128 + pos: 25.487007,-6.1841216 + parent: 2 + - uid: 11253 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21129 + pos: 25.502632,-6.4341216 + parent: 2 + - uid: 11254 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21130 + pos: 25.518257,-6.7153716 + parent: 2 +- proto: FloodlightBroken + entities: + - uid: 11255 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21131 + pos: -132.48235,20.537903 + parent: 2 +- proto: FloorDrain + entities: + - uid: 11256 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21132 + pos: 50.5,14.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11257 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21133 + pos: -13.5,-9.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11258 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 21134 + pos: -21.5,-22.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11259 components: - type: Transform - parent: 21120 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22309 + pos: -73.5,-12.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11260 components: - type: Transform - pos: 45.40097,-37.246986 - parent: 89 - - uid: 22310 + pos: 6.5,17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11261 components: - type: Transform - pos: 45.166595,-37.246986 - parent: 89 - - uid: 22315 + rot: 3.141592653589793 rad + pos: -45.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11262 components: - type: Transform - pos: 45.604095,-37.246986 - parent: 89 - - uid: 23954 + pos: 7.5,-28.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11263 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23955 + pos: -37.5,8.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11264 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkBeerCan - entities: - - uid: 25698 + rot: -1.5707963267948966 rad + pos: -1.5,7.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11265 components: - type: Transform - pos: 3.5264907,-1.3255532 - parent: 89 -- proto: DrinkBlueCuracaoGlass - entities: - - uid: 16424 + pos: 10.5,17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11266 components: - type: Transform - pos: -123.16864,-13.288413 - parent: 89 -- proto: DrinkBottleCognac + pos: 8.5,7.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11267 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 40.5,17.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11268 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -46.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11269 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -44.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11270 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11271 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -42.5,25.5 + parent: 2 + - type: Fixtures + fixtures: {} + - uid: 11272 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 47.5,-26.5 + parent: 2 + - type: Fixtures + fixtures: {} +- proto: FloorTileItemGold entities: - - uid: 10317 + - uid: 11273 components: - type: Transform - pos: -36.558395,29.720085 - parent: 89 -- proto: DrinkBottleGoldschlager + pos: 48.53125,-3.1239183 + parent: 2 + - type: Item + size: 150 + - type: Stack + count: 30 +- proto: FloorWaterEntity entities: - - uid: 5393 + - uid: 11274 components: - type: Transform - pos: -53.445843,48.137283 - parent: 89 - - uid: 7108 + rot: 3.141592653589793 rad + pos: -80.5,-12.5 + parent: 2 + - uid: 11275 components: - type: Transform - pos: -54.477093,48.137283 - parent: 89 -- proto: DrinkBottleOfNothingFull - entities: - - uid: 7454 + rot: 3.141592653589793 rad + pos: -80.5,-11.5 + parent: 2 + - uid: 11276 components: - type: Transform - pos: -33.752167,-9.276451 - parent: 89 - - uid: 7455 + rot: 3.141592653589793 rad + pos: -79.5,-11.5 + parent: 2 +- proto: FloraTree06 + entities: + - uid: 11277 components: - type: Transform - pos: -33.51779,-9.276451 - parent: 89 -- proto: DrinkBottleVodka + rot: 3.141592653589793 rad + pos: -92.38655,-14.519233 + parent: 2 +- proto: FoamCrossbow entities: - - uid: 10315 + - uid: 11278 components: - type: Transform - pos: -38.620895,29.751335 - parent: 89 - - uid: 10316 + pos: 4.5889907,-1.4036782 + parent: 2 + - uid: 11279 components: - type: Transform - pos: -38.07402,29.563835 - parent: 89 -- proto: DrinkCafeLatte - entities: - - uid: 16943 + pos: 50.491665,-18.456736 + parent: 2 + - uid: 11280 components: - type: Transform - pos: -9.703323,-16.228903 - parent: 89 - - uid: 16981 + pos: 48.559834,-21.37915 + parent: 2 + - uid: 11281 components: - type: Transform - pos: -10.093948,-16.166403 - parent: 89 -- proto: DrinkChampagneBottleFull + pos: 49.47713,-21.360804 + parent: 2 + - uid: 11282 + components: + - type: Transform + pos: 50.741665,-18.62861 + parent: 2 +- proto: FoodBadRecipe entities: - - uid: 7481 + - uid: 11283 components: - type: Transform - pos: 50.736675,-4.4515657 - parent: 89 -- proto: DrinkCoffee + pos: -50.536972,43.736313 + parent: 2 +- proto: FoodBakedBunHoney entities: - - uid: 4923 + - uid: 11284 components: - type: Transform - pos: 8.123753,-12.362571 - parent: 89 - - uid: 17220 + pos: 2.7143266,17.792904 + parent: 2 + - uid: 11285 components: - type: Transform - pos: 33.49264,14.72666 - parent: 89 - - uid: 17221 + pos: 2.6987016,19.480404 + parent: 2 + - uid: 11286 components: - type: Transform - pos: 35.539516,13.617285 - parent: 89 -- proto: DrinkCognacBottleFull + pos: 2.6674516,15.464779 + parent: 2 + - uid: 11287 + components: + - type: Transform + pos: 2.6987016,21.792904 + parent: 2 +- proto: FoodBakedNugget entities: - - uid: 3790 + - uid: 11288 components: - type: Transform - pos: -27.49241,32.79545 - parent: 89 - - uid: 12800 + pos: 33.613174,13.64916 + parent: 2 + - type: RandomSprite + selected: + enum.DamageStateVisualLayers.Base: + lizard: null + - uid: 11289 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: DrinkColaBottleFull + pos: 33.394424,13.508535 + parent: 2 + - type: RandomSprite + selected: + enum.DamageStateVisualLayers.Base: + corgi: null +- proto: FoodBakedWaffleRoffle entities: - - uid: 10375 + - uid: 11290 components: - type: Transform - pos: -23.521883,28.72285 - parent: 89 - - uid: 14898 + pos: 65.51178,-1.3788319 + parent: 2 +- proto: FoodBanana + entities: + - uid: 11291 components: - type: Transform - pos: -10.639323,-36.20387 - parent: 89 - - uid: 14934 + pos: -33.28767,-3.4614453 + parent: 2 + - uid: 11292 components: - type: Transform - pos: -10.311198,-36.188244 - parent: 89 -- proto: DrinkEnergyDrinkCan + pos: -33.428295,-3.4458203 + parent: 2 + - uid: 11293 + components: + - type: Transform + pos: -33.56892,-3.4077 + parent: 2 +- proto: FoodBoxDonkpocket entities: - - uid: 16933 + - uid: 11294 components: - type: Transform - pos: 4.3478365,-19.622332 - parent: 89 - - uid: 16934 + pos: 31.32444,-5.3839784 + parent: 2 + - uid: 11295 components: - type: Transform - pos: 4.4923315,-20.44095 - parent: 89 -- proto: DrinkFlask + pos: -71.492424,-11.436115 + parent: 2 + - uid: 11296 + components: + - type: Transform + pos: -96.61137,-5.059809 + parent: 2 +- proto: FoodBoxDonkpocketBerry entities: - - uid: 861 + - uid: 11297 components: - type: Transform - pos: 47.55086,10.622266 - parent: 89 -- proto: DrinkGildlagerBottleFull + pos: 32.557034,-5.374509 + parent: 2 + - uid: 11298 + components: + - type: Transform + pos: -96.58012,-6.059809 + parent: 2 +- proto: FoodBoxDonkpocketDink entities: - - uid: 18244 + - uid: 25869 components: - type: Transform - pos: -98.478195,31.59029 - parent: 89 -- proto: DrinkGlass + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketHonk entities: - - uid: 199 + - uid: 11299 components: - type: Transform - pos: 4.5901623,-21.062885 - parent: 89 - - uid: 200 + pos: 31.57096,-5.3839784 + parent: 2 + - uid: 11300 components: - type: Transform - pos: 4.3714123,-21.437885 - parent: 89 - - uid: 7748 + pos: -71.429924,-12.029865 + parent: 2 +- proto: FoodBoxDonkpocketPizza + entities: + - uid: 11301 components: - type: Transform - pos: -1.492651,45.647552 - parent: 89 - - uid: 8003 + pos: 31.845922,-5.3839784 + parent: 2 + - uid: 11302 components: - type: Transform - pos: -5.508276,45.585052 - parent: 89 - - uid: 10376 + pos: -96.43949,-5.575434 + parent: 2 + - uid: 25870 components: - type: Transform - pos: -23.553133,28.0041 - parent: 89 -- proto: DrinkGoldenCup - entities: - - uid: 2578 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25871 components: - type: Transform - pos: 50.492214,-4.3728843 - parent: 89 - - uid: 20384 + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodBoxDonkpocketSpicy + entities: + - uid: 11303 components: - - type: MetaData - desc: Если вы видите это на своей станции... Жаль вас. - name: Кубок "Самый несчастный Капитан 3024" - type: Transform - pos: 46.47793,12.463007 - parent: 89 -- proto: DrinkHosFlask + pos: 32.80355,-5.374509 + parent: 2 +- proto: FoodBoxDonkpocketTeriyaki entities: - - uid: 6064 + - uid: 11304 components: - type: Transform - pos: 33.00601,-0.4120643 - parent: 89 -- proto: DrinkHotCoffee + pos: 32.07348,-5.374509 + parent: 2 +- proto: FoodBoxDonut entities: - - uid: 15760 + - uid: 11305 components: - type: Transform - pos: 15.505661,11.6435375 - parent: 89 - - uid: 17222 + pos: 7.6550026,-12.300071 + parent: 2 + - uid: 11306 components: - type: Transform - pos: 34.508266,14.742285 - parent: 89 -- proto: DrinkJarWhat + pos: -16.490608,8.670728 + parent: 2 +- proto: FoodBoxNugget entities: - - uid: 16932 + - uid: 11307 components: - - type: MetaData - name: Кротовуха - type: Transform - pos: 4.5164137,-22.102266 - parent: 89 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 50 - name: null - reagents: - - data: null - ReagentId: DrGibb - Quantity: 10 - - data: null - ReagentId: JuiceTomato - Quantity: 10 - - data: null - ReagentId: GinFizz - Quantity: 10 - - data: null - ReagentId: Frezon - Quantity: 5 - - data: null - ReagentId: JuiceBerry - Quantity: 5 - - data: null - ReagentId: Milk - Quantity: 5 - - data: null - ReagentId: Antifreeze - Quantity: 5 -- proto: DrinkMug + pos: 34.788673,13.833639 + parent: 2 +- proto: FoodBoxPizzaFilled entities: - - uid: 16016 + - uid: 11308 components: - type: Transform - pos: 16.404638,18.863092 - parent: 89 -- proto: DrinkMugBlue + pos: -12.436198,-36.45387 + parent: 2 +- proto: FoodBreadPlain entities: - - uid: 2014 + - uid: 11309 components: - type: Transform - pos: 44.80428,5.9828796 - parent: 89 - - uid: 7397 + pos: -132.48235,23.069153 + parent: 2 +- proto: FoodBreadVolcanic + entities: + - uid: 11310 components: + - type: MetaData + desc: как всегда.... с пивом. + name: syxapik - type: Transform - pos: 25.620392,13.633 - parent: 89 - - type: SolutionContainerManager - solutions: - drink: - temperature: 293.15 - canMix: True - canReact: True - maxVol: 20 - name: null - reagents: - - data: null - ReagentId: Coffee - Quantity: 10 - - data: null - ReagentId: IrishCoffee - Quantity: 10 - - uid: 16775 + pos: 33.445137,29.596706 + parent: 2 +- proto: FoodBurgerBacon + entities: + - uid: 11311 components: - type: Transform - pos: 2.27967,21.466866 - parent: 89 - - uid: 16776 + pos: 4.495135,-18.356115 + parent: 2 +- proto: FoodBurgerEmpowered + entities: + - uid: 11312 components: - type: Transform - pos: 2.264045,19.471586 - parent: 89 - - uid: 16777 + pos: -2.5179825,-48.507328 + parent: 2 +- proto: FoodBurgerMime + entities: + - uid: 11313 components: - type: Transform - pos: 2.264045,17.443998 - parent: 89 - - uid: 16785 + pos: -33.513412,-9.430157 + parent: 2 +- proto: FoodBurgerRobot + entities: + - uid: 11314 components: - type: Transform - pos: 2.24842,15.443485 - parent: 89 - - uid: 21557 + pos: 17.72694,-1.3729725 + parent: 2 +- proto: FoodBurgerSpell + entities: + - uid: 11315 components: - type: Transform - pos: 19.277308,18.697405 - parent: 89 -- proto: DrinkMugDog + pos: -6.535371,-48.554203 + parent: 2 +- proto: FoodCarrot entities: - - uid: 5786 + - uid: 11316 components: - type: Transform - pos: -34.203346,28.793152 - parent: 89 - - uid: 15008 + pos: -10.123768,-9.461199 + parent: 2 + - uid: 11317 components: - type: Transform - pos: 25.80995,29.817919 - parent: 89 -- proto: DrinkMugOne - entities: - - uid: 9177 + pos: -8.248768,-9.554949 + parent: 2 + - uid: 11318 components: - type: Transform - pos: -111.5746,21.603405 - parent: 89 - - uid: 15762 + pos: -7.510698,-7.948451 + parent: 2 + - uid: 11319 components: - type: Transform - pos: 25.267576,36.804634 - parent: 89 -- proto: DrinkMugRainbow + pos: -10.326893,-7.211199 + parent: 2 + - uid: 11320 + components: + - type: Transform + pos: -9.123768,-6.742449 + parent: 2 +- proto: FoodCartCold entities: - - uid: 4957 + - uid: 11321 components: - type: Transform - pos: 34.3472,-2.8853703 - parent: 89 -- proto: DrinkRootBeerCan + rot: 1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 +- proto: FoodCartHot entities: - - uid: 16935 + - uid: 11322 components: - type: Transform - pos: 4.47943,-18.812798 - parent: 89 - - type: CollisionWake - enabled: False - - type: Physics - sleepingAllowed: False -- proto: DrinkRumBottleFull + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 +- proto: FoodCheeseSlice entities: - - uid: 1471 + - uid: 11323 components: - type: Transform - pos: 48.765263,10.867164 - parent: 89 -- proto: DrinkSbitenGlass + pos: -13.634424,-2.4830256 + parent: 2 +- proto: FoodCondimentBottleEnzyme entities: - - uid: 17291 + - uid: 11324 components: - type: Transform - pos: -51.59029,48.700672 - parent: 89 -- proto: DrinkShaker + pos: -13.176779,-2.1402254 + parent: 2 +- proto: FoodCondimentPacketFrostoil entities: - - uid: 4230 + - uid: 11325 components: - type: Transform - pos: -30.46853,0.627223 - parent: 89 - - uid: 8001 + pos: -13.0428295,-0.38803613 + parent: 2 +- proto: FoodDonkpocketHonkWarm + entities: + - uid: 11326 components: - type: Transform - pos: -1.5121098,44.69217 - parent: 89 - - uid: 8002 + pos: 51.573746,-33.424797 + parent: 2 +- proto: FoodDonutChaos + entities: + - uid: 11327 components: - type: Transform - pos: -5.5589848,44.62967 - parent: 89 -- proto: DrinkShakeWhite + pos: 3.514162,28.464619 + parent: 2 +- proto: FoodDonutJellySweetpea entities: - - uid: 16423 + - uid: 11328 components: - type: Transform - pos: -123.653015,-12.913413 - parent: 89 -- proto: DrinkShotGlass + pos: -105.04697,21.522427 + parent: 2 +- proto: FoodFrozenPopsicleTrash entities: - - uid: 2570 + - uid: 11329 components: - type: Transform - rot: 50.265482457436725 rad - pos: -77.30986,-24.162506 - parent: 89 - - uid: 2573 + pos: -34.15423,24.30383 + parent: 2 +- proto: FoodMeatFiestaKebab + entities: + - uid: 11330 components: - type: Transform - rot: 50.265482457436725 rad - pos: -77.18486,-24.600006 - parent: 89 - - uid: 4681 + pos: -0.5881367,-28.311087 + parent: 2 +- proto: FoodMeatRatdoubleKebab + entities: + - uid: 11331 components: - type: Transform - pos: -34.314835,31.617702 - parent: 89 - - uid: 10190 + pos: 48.413338,-28.104477 + parent: 2 + - uid: 11332 components: - type: Transform - pos: -34.689835,31.617702 - parent: 89 - - uid: 12573 + pos: 48.569588,-28.245102 + parent: 2 + - uid: 11333 components: - type: Transform - pos: 17.683292,5.579408 - parent: 89 - - uid: 12574 + pos: -93.517395,-4.3078394 + parent: 2 +- proto: FoodMeatRotten + entities: + - uid: 11334 components: - type: Transform - pos: 17.322052,5.7720246 - parent: 89 - - uid: 20001 + pos: 40.47344,22.541035 + parent: 2 +- proto: FoodMeatSpiderLeg + entities: + - uid: 11335 components: - type: Transform - pos: -11.289598,24.446281 - parent: 89 - - uid: 20003 + rot: -1.5707963267948966 rad + pos: 46.80032,-9.570213 + parent: 2 +- proto: FoodMeatXeno + entities: + - uid: 11336 components: - type: Transform - pos: -11.711473,24.602531 - parent: 89 -- proto: DrinkSingulo - entities: - - uid: 14658 + pos: -129.90422,22.600403 + parent: 2 + - uid: 11337 components: - type: Transform - pos: -131.50919,23.442694 - parent: 89 -- proto: DrinkSodaWaterCan + pos: -129.31047,21.819153 + parent: 2 +- proto: FoodNoodlesBoiled entities: - - uid: 18428 + - uid: 11338 components: - type: Transform - pos: 18.787956,-14.249105 - parent: 89 - - uid: 21029 + pos: -96.61855,-17.472294 + parent: 2 +- proto: FoodPieBananaCream + entities: + - uid: 11339 components: - type: Transform - pos: 18.751822,-14.499105 - parent: 89 - - uid: 21031 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11340 components: - type: Transform - pos: 21.783072,-14.249105 - parent: 89 - - uid: 21032 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11341 components: - type: Transform - pos: 21.767447,-14.561605 - parent: 89 - - uid: 21033 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11342 components: - type: Transform - pos: 24.652481,-14.284261 - parent: 89 - - uid: 21034 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11343 components: - type: Transform - pos: 24.795654,-14.561605 - parent: 89 - - uid: 21035 + pos: -33.522045,-3.360825 + parent: 2 + - uid: 11344 components: - type: Transform - pos: 27.704758,-14.230448 - parent: 89 - - uid: 21036 + pos: -33.522045,-3.360825 + parent: 2 +- proto: FoodPizzaDank + entities: + - uid: 25872 components: - type: Transform - pos: 27.780474,-14.54598 - parent: 89 -- proto: DrinkSpaceLube + parent: 25863 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: FoodPizzaSassysageSlice entities: - - uid: 1619 + - uid: 11345 components: - type: Transform - pos: -35.73411,-5.180784 - parent: 89 -- proto: DrinkToxinsSpecialGlass - entities: - - uid: 17293 + pos: 4.4923315,-19.911255 + parent: 2 + - uid: 11346 components: - type: Transform - pos: -51.418415,47.950672 - parent: 89 -- proto: DrinkVodkaGlass + pos: 4.3237543,-20.826183 + parent: 2 +- proto: FoodPlate entities: - - uid: 4787 + - uid: 11347 components: - type: Transform - pos: -48.540546,-7.4118657 - parent: 89 -- proto: DrinkWaterBottleFull + pos: -96.62795,-17.441044 + parent: 2 +- proto: FoodPoppy entities: - - uid: 23956 + - uid: 11348 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23957 + rot: 3.141592653589793 rad + pos: 50.63735,-2.4820957 + parent: 2 +- proto: FoodPotato + entities: + - uid: 11349 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23958 + pos: -7.414382,-6.7354665 + parent: 2 + - uid: 11350 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23963 + pos: -9.701893,-7.554949 + parent: 2 + - uid: 11351 components: - type: Transform - pos: -14.740829,4.583781 - parent: 22565 - - uid: 23964 + pos: -10.795643,-7.758074 + parent: 2 + - uid: 11352 components: - type: Transform - pos: -14.17833,4.568156 - parent: 22565 - - uid: 23965 + pos: -9.436268,-6.429949 + parent: 2 +- proto: FoodShakerPepper + entities: + - uid: 11353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.39708,4.7843614 - parent: 22565 - - uid: 25850 + pos: -19.430532,-2.9313784 + parent: 2 + - uid: 11354 components: - type: Transform - pos: -25.28652,16.888733 - parent: 89 - - uid: 25851 + pos: -13.379187,-2.4313784 + parent: 2 +- proto: FoodShakerSalt + entities: + - uid: 11355 components: - type: Transform - pos: -25.145895,16.716858 - parent: 89 - - uid: 25852 + pos: -22.993032,-6.4157534 + parent: 2 + - uid: 11356 components: - type: Transform - pos: -25.28652,16.560608 - parent: 89 -- proto: DrinkWaterCup + pos: -13.332312,-2.7907534 + parent: 2 +- proto: FoodSnackChocolate entities: - - uid: 5976 + - uid: 11357 components: - type: Transform - pos: -45.484257,11.485884 - parent: 89 - - uid: 5979 + pos: 21.70988,31.555183 + parent: 2 + - uid: 11358 components: - type: Transform - pos: -45.78113,11.704634 - parent: 89 - - uid: 10149 + pos: 27.33488,31.555183 + parent: 2 +- proto: FoodSnackEnergy + entities: + - uid: 11359 components: - type: Transform - pos: -27.287731,21.773132 - parent: 89 - - uid: 10150 + pos: -9.953323,-16.541403 + parent: 2 +- proto: FoodSoupClown + entities: + - uid: 11360 components: - type: Transform - pos: -27.662731,21.741882 - parent: 89 - - uid: 10154 + pos: -29.498123,-17.317171 + parent: 2 +- proto: FoodSoupSlime + entities: + - uid: 11361 components: - type: Transform - pos: -27.443981,21.538757 - parent: 89 - - uid: 14122 + pos: 63.43366,0.63679314 + parent: 2 +- proto: FoodSpaceshroom + entities: + - uid: 11362 components: - type: Transform - pos: -45.24988,11.689009 - parent: 89 - - uid: 17388 + pos: -14.440111,21.490667 + parent: 2 +- proto: FoodTinBeans + entities: + - uid: 11363 components: - type: Transform - pos: -41.77214,-12.345528 - parent: 89 - - uid: 17390 + rot: 3.141592653589793 rad + pos: -22.222778,36.44787 + parent: 2 +- proto: Football + entities: + - uid: 11364 components: - type: Transform - pos: -41.694016,-12.486153 - parent: 89 - - uid: 17391 + pos: -10.490348,-38.553753 + parent: 2 +- proto: ForkPlastic + entities: + - uid: 11365 components: - type: Transform - pos: -41.45964,-12.392403 - parent: 89 -- proto: DrinkWhiskeyBottleFull + rot: -1.5707963267948966 rad + pos: 18.511847,21.85918 + parent: 2 +- proto: GasCanisterBrokenBase entities: - - uid: 2564 + - uid: 11366 components: - type: Transform - rot: 50.265482457436725 rad - pos: -77.731735,-24.303131 - parent: 89 - - uid: 4682 + pos: -28.5,-20.5 + parent: 2 +- proto: GasDualPortVentPump + entities: + - uid: 11367 components: - type: Transform - pos: -34.471085,32.352077 - parent: 89 - - uid: 6954 + rot: 1.5707963267948966 rad + pos: -8.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' +- proto: GasFilter + entities: + - uid: 11368 components: + - type: MetaData + name: фильтр О2 - type: Transform - pos: -89.282906,29.581888 - parent: 89 - - uid: 12567 + rot: 1.5707963267948966 rad + pos: -100.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11369 components: + - type: MetaData + name: фильтр N2 - type: Transform - pos: 18.62251,5.627563 - parent: 89 - - uid: 12568 + rot: 1.5707963267948966 rad + pos: -98.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11370 components: + - type: MetaData + name: фильтр CO2 - type: Transform - pos: 18.189026,5.6997943 - parent: 89 -- proto: DrinkWineBottleFull - entities: - - uid: 14655 + rot: 1.5707963267948966 rad + pos: -96.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11371 components: + - type: MetaData + name: фильтр водяного пара - type: Transform - pos: -123.1743,21.519472 - parent: 89 - - uid: 19950 + rot: 1.5707963267948966 rad + pos: -94.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11372 components: + - type: MetaData + name: фильтр плазмы - type: Transform - pos: -11.164598,25.024406 - parent: 89 -- proto: Dropper - entities: - - uid: 3212 + rot: 1.5707963267948966 rad + pos: -92.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11373 components: + - type: MetaData + name: фильтр N2O - type: Transform - rot: 3.141592653589793 rad - pos: -8.443167,-8.148901 - parent: 89 - - uid: 4496 + rot: 1.5707963267948966 rad + pos: -90.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11374 components: + - type: MetaData + name: фильтр трития - type: Transform - pos: -3.481449,6.2247124 - parent: 89 - - uid: 10132 + rot: 1.5707963267948966 rad + pos: -88.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11375 components: + - type: MetaData + name: фильтр газа - type: Transform - pos: 24.52668,12.685545 - parent: 89 - - uid: 21444 + rot: 1.5707963267948966 rad + pos: -86.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11376 components: - type: Transform - pos: -8.527368,-8.311418 - parent: 89 - - uid: 21445 + pos: -121.5,0.5 + parent: 2 + - uid: 11377 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.261743,-4.3624306 - parent: 89 - - uid: 21550 + pos: -130.5,8.5 + parent: 2 + - uid: 11378 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.4912267,5.6659956 - parent: 89 -- proto: EggSpider + rot: 1.5707963267948966 rad + pos: 8.5,22.5 + parent: 2 + - uid: 11379 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.5,22.5 + parent: 2 +- proto: GasMinerCarbonDioxide entities: - - uid: 21063 + - uid: 11380 components: - type: Transform - pos: 39.347435,21.359114 - parent: 89 -- proto: ElectricGuitarInstrument + pos: -96.5,-24.5 + parent: 2 +- proto: GasMinerNitrogen entities: - - uid: 23 + - uid: 25923 components: - type: Transform - pos: -35.432793,-7.4938426 - parent: 89 - - uid: 7794 + rot: 1.5707963267948966 rad + pos: -20.5,-10.5 + parent: 24450 +- proto: GasMinerNitrogenStationLarge + entities: + - uid: 11381 components: - type: Transform - pos: -3.4961429,46.508736 - parent: 89 - - type: Instrument - program: 28 -- proto: EmergencyLight + pos: -98.5,-24.5 + parent: 2 +- proto: GasMinerOxygen entities: - - uid: 482 + - uid: 25924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,-3.5 - parent: 89 - - uid: 5319 + pos: -20.5,-12.5 + parent: 24450 +- proto: GasMinerOxygenStationLarge + entities: + - uid: 11382 components: - type: Transform - pos: 19.5,-4.5 - parent: 89 - - uid: 7446 + pos: -100.5,-24.5 + parent: 2 +- proto: GasMinerWaterVapor + entities: + - uid: 11383 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-4.5 - parent: 89 - - uid: 9235 + pos: -94.5,-24.5 + parent: 2 +- proto: GasMixer + entities: + - uid: 11384 components: + - type: MetaData + name: микс O2, N2 - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,1.5 - parent: 89 - - uid: 9798 + rot: 1.5707963267948966 rad + pos: -99.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11385 components: + - type: MetaData + name: микс CO2 - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 10264 + pos: -97.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11386 components: + - type: MetaData + name: микс водяного пара - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-15.5 - parent: 89 - - uid: 12148 + rot: 1.5707963267948966 rad + pos: -95.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11387 components: + - type: MetaData + name: микс плазмы - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 12572 + pos: -93.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11388 components: + - type: MetaData + name: микс N2O - type: Transform - pos: 30.5,31.5 - parent: 89 - - uid: 13612 + rot: 1.5707963267948966 rad + pos: -91.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11389 components: + - type: MetaData + name: микс трития - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,43.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13613 + rot: 1.5707963267948966 rad + pos: -89.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11390 components: + - type: MetaData + name: микс газа - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13614 + pos: -87.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13615 + rot: 3.141592653589793 rad + pos: -101.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' +- proto: GasMixerFlipped + entities: + - uid: 25925 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13616 + pos: -17.5,-12.5 + parent: 24450 + - type: GasMixer + targetPressure: 200 + - type: AtmosPipeColor + color: '#17E8E2FF' +- proto: GasOutletInjector + entities: + - uid: 11392 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13618 + rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 2 + - uid: 11393 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,22.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13619 + rot: 3.141592653589793 rad + pos: -86.5,-23.5 + parent: 2 + - uid: 11394 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,32.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13620 + pos: -100.5,-23.5 + parent: 2 + - uid: 11395 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13621 + rot: 3.141592653589793 rad + pos: -98.5,-23.5 + parent: 2 + - uid: 11396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,44.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13622 + rot: 3.141592653589793 rad + pos: -96.5,-23.5 + parent: 2 + - uid: 11397 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13623 + rot: 3.141592653589793 rad + pos: -94.5,-23.5 + parent: 2 + - uid: 11398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,35.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13624 + rot: 3.141592653589793 rad + pos: -92.5,-23.5 + parent: 2 + - uid: 11399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13625 + rot: 3.141592653589793 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 11400 components: - type: Transform - pos: -54.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13626 + rot: 3.141592653589793 rad + pos: -90.5,-23.5 + parent: 2 + - uid: 11401 components: - type: Transform - pos: -65.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13627 + rot: 3.141592653589793 rad + pos: -88.5,-23.5 + parent: 2 +- proto: GasPassiveVent + entities: + - uid: 11402 components: - type: Transform - pos: -58.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13628 + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 2 + - uid: 11403 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13629 + rot: 3.141592653589793 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 11404 components: - type: Transform - pos: -68.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13630 + rot: -1.5707963267948966 rad + pos: -14.5,-8.5 + parent: 2 + - uid: 11405 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -69.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13681 + rot: -1.5707963267948966 rad + pos: -14.5,-9.5 + parent: 2 + - uid: 11406 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13684 + pos: -100.5,-25.5 + parent: 2 + - uid: 11407 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13685 + pos: -86.5,-25.5 + parent: 2 + - uid: 11408 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13686 + pos: -94.5,-25.5 + parent: 2 + - uid: 11409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13687 + rot: -1.5707963267948966 rad + pos: -98.5,-25.5 + parent: 2 + - uid: 11410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13688 + rot: -1.5707963267948966 rad + pos: -96.5,-25.5 + parent: 2 + - uid: 11411 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13689 + pos: -92.5,-25.5 + parent: 2 + - uid: 11412 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,-21.5 + parent: 2 + - uid: 11413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,26.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13690 + pos: -90.5,-25.5 + parent: 2 + - uid: 11414 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,41.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13691 + pos: -88.5,-25.5 + parent: 2 + - uid: 11415 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13692 + rot: -1.5707963267948966 rad + pos: -76.5,-16.5 + parent: 2 + - uid: 11416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13694 + pos: -132.5,8.5 + parent: 2 + - uid: 11417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13695 + rot: 3.141592653589793 rad + pos: -84.5,-21.5 + parent: 2 + - uid: 24114 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13696 + pos: 8.5,-7.5 + parent: 23919 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 24397 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13697 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 24340 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 25926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13698 + pos: -19.5,-12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 25927 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13699 + pos: -19.5,-10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25928 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13700 + pos: -7.5,-23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25929 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13701 + pos: -11.5,-10.5 + parent: 24450 + - uid: 27622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13702 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 27260 +- proto: GasPipeBend + entities: + - uid: 11418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13703 + pos: -94.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13704 + pos: -5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11420 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13705 + pos: -131.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11421 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13706 + rot: 3.141592653589793 rad + pos: -104.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11422 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13707 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11423 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13708 + pos: -6.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13709 + rot: -1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11425 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13710 + pos: -40.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11426 components: - type: Transform rot: 1.5707963267948966 rad - pos: -112.5,25.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13711 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,25.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13712 + pos: -97.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11427 components: - type: Transform - pos: -116.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13713 + rot: 1.5707963267948966 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 11428 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13714 + pos: -15.5,-9.5 + parent: 2 + - uid: 11429 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13724 + rot: 3.141592653589793 rad + pos: -87.5,-25.5 + parent: 2 + - uid: 11430 components: - type: Transform - pos: -120.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13725 + rot: 3.141592653589793 rad + pos: -93.5,-25.5 + parent: 2 + - uid: 11431 components: - type: Transform - pos: -125.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13728 + rot: 3.141592653589793 rad + pos: -95.5,-25.5 + parent: 2 + - uid: 11432 components: - type: Transform rot: 3.141592653589793 rad - pos: -116.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13729 + pos: -97.5,-25.5 + parent: 2 + - uid: 11433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13730 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13731 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11435 components: - type: Transform - pos: -118.5,-10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13733 + rot: 3.141592653589793 rad + pos: -100.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13734 + rot: 1.5707963267948966 rad + pos: -128.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13735 + rot: 3.141592653589793 rad + pos: -123.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11438 components: - type: Transform - pos: -130.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13736 + rot: 3.141592653589793 rad + pos: -91.5,-25.5 + parent: 2 + - uid: 11439 components: - type: Transform - pos: -117.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13737 + rot: 3.141592653589793 rad + pos: -89.5,-25.5 + parent: 2 + - uid: 11440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13738 + pos: -79.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 11441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13739 + rot: 3.141592653589793 rad + pos: -81.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 11442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13740 + pos: -78.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11443 components: - type: Transform - pos: -72.5,-15.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13741 + pos: -103.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13742 + pos: -96.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,-14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13743 + pos: -95.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13744 + rot: -1.5707963267948966 rad + pos: -89.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11447 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13745 + pos: -88.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11448 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13746 + rot: -1.5707963267948966 rad + pos: -99.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11449 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13747 + pos: -39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11450 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11451 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -88.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11452 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -87.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13750 + pos: -89.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11454 components: - type: Transform - pos: -76.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13751 + rot: -1.5707963267948966 rad + pos: -88.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11455 components: - type: Transform - pos: -75.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13752 + rot: -1.5707963267948966 rad + pos: -87.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11456 components: - type: Transform - pos: -62.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13753 + pos: -78.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11457 components: - type: Transform - pos: -47.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13754 + pos: -77.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11458 components: - type: Transform rot: -1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13896 + pos: -74.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11459 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,-4.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13897 + pos: -77.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11460 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13898 + pos: -78.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11461 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13899 + pos: -75.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11462 components: - type: Transform - pos: -35.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13900 + rot: -1.5707963267948966 rad + pos: -75.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11463 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13901 + pos: -74.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11464 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,16.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13926 + pos: -66.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11465 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,16.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13927 + pos: -65.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11466 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13928 + pos: -30.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13929 + pos: -40.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11468 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13930 + rot: 1.5707963267948966 rad + pos: -37.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11469 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13931 + pos: -36.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11470 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13932 + rot: -1.5707963267948966 rad + pos: -36.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11471 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13937 + rot: -1.5707963267948966 rad + pos: -37.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11472 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13938 + pos: -31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13956 + pos: -30.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11474 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13957 + pos: -31.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11475 components: - type: Transform - pos: -24.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13959 + rot: -1.5707963267948966 rad + pos: -19.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11476 components: - type: Transform - pos: -7.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13960 + rot: 3.141592653589793 rad + pos: -23.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11477 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13961 + pos: -23.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11478 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13962 + pos: -24.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13963 + pos: -24.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11480 + components: + - type: Transform + pos: 35.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11481 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13964 + pos: 35.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11482 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13965 + pos: 34.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11483 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13966 + rot: 3.141592653589793 rad + pos: 34.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11484 components: - type: Transform - pos: -31.5,21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13967 + pos: 41.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,26.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13968 + rot: 3.141592653589793 rad + pos: 41.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,32.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13969 + pos: 40.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13970 + pos: 39.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,24.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13971 + rot: 3.141592653589793 rad + pos: 36.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11489 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,24.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13972 + pos: 34.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11490 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13973 + rot: 1.5707963267948966 rad + pos: 36.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11491 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,32.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13991 + rot: 3.141592653589793 rad + pos: 40.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11492 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13992 + pos: -66.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11493 components: - type: Transform rot: 1.5707963267948966 rad - pos: 34.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13993 + pos: -12.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11494 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13994 + pos: -1.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11495 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13996 + rot: 1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11496 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13997 + rot: -1.5707963267948966 rad + pos: -1.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11497 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13998 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 13999 + pos: 5.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11498 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14000 + pos: 3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14001 + pos: 3.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11500 components: - type: Transform - pos: 48.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14006 + rot: 1.5707963267948966 rad + pos: 1.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11501 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,10.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14007 + pos: -5.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11502 components: - type: Transform rot: 3.141592653589793 rad - pos: 63.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14008 + pos: -4.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11503 components: - type: Transform - pos: 63.5,3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14009 + pos: -4.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14010 + rot: 3.141592653589793 rad + pos: -5.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14011 + pos: -5.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,12.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14012 + rot: 3.141592653589793 rad + pos: -6.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11507 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,4.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14013 + pos: -9.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14014 + pos: 38.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11509 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14027 + pos: -66.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11510 components: - type: Transform - pos: -90.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14074 + rot: 3.141592653589793 rad + pos: -56.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11511 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14075 + pos: -71.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11512 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14077 + pos: -69.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,7.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14262 + pos: -6.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14263 + rot: -1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14264 + pos: -48.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14265 + rot: 3.141592653589793 rad + pos: -54.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11517 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14266 + pos: 11.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11518 components: - type: Transform - pos: 8.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14267 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11519 components: - type: Transform - pos: 13.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14270 + rot: 3.141592653589793 rad + pos: 37.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14272 + rot: 3.141592653589793 rad + pos: 36.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11521 components: - type: Transform - pos: 23.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14273 + rot: 1.5707963267948966 rad + pos: -72.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11522 components: - type: Transform - pos: 29.5,-8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14274 + rot: 1.5707963267948966 rad + pos: -73.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11523 components: - type: Transform - pos: 37.5,-5.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14275 + rot: -1.5707963267948966 rad + pos: -29.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11524 components: - type: Transform - pos: 34.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14277 + pos: -39.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14278 + pos: -40.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11526 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14365 + rot: 3.141592653589793 rad + pos: -39.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11527 components: - type: Transform - pos: -7.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14368 + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14369 + rot: 3.141592653589793 rad + pos: -98.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11529 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14370 + pos: -99.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11530 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14372 + pos: -3.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11531 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14373 + rot: 1.5707963267948966 rad + pos: -6.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11532 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14374 + pos: -7.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11533 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14375 + pos: -66.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11534 components: - type: Transform - pos: -13.5,-21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14376 + rot: 3.141592653589793 rad + pos: -67.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-21.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14377 + pos: -55.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14378 + pos: -57.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11537 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14379 + rot: 1.5707963267948966 rad + pos: -67.5,44.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11538 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-20.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14380 + pos: -67.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11539 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14381 + pos: -68.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11540 + components: + - type: Transform + pos: -55.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11541 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-29.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14382 + pos: -71.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11542 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14383 + rot: 1.5707963267948966 rad + pos: -69.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11543 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,-36.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14384 + pos: -71.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11544 components: - type: Transform - pos: -2.5,-38.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14386 + rot: -1.5707963267948966 rad + pos: -69.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14387 + pos: -39.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11546 components: - type: Transform - pos: -49.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14389 + rot: 1.5707963267948966 rad + pos: -41.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11547 components: - type: Transform - pos: -43.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14428 + rot: 3.141592653589793 rad + pos: -127.5,1.5 + parent: 2 + - uid: 11548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14429 + pos: -75.5,-11.5 + parent: 2 + - uid: 11549 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-17.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14430 + pos: -75.5,-13.5 + parent: 2 + - uid: 11550 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14516 + rot: 1.5707963267948966 rad + pos: -1.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 14517 + pos: -129.5,8.5 + parent: 2 + - uid: 11552 components: - type: Transform rot: 3.141592653589793 rad - pos: 19.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15067 + pos: -116.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11553 components: - type: Transform - pos: 9.5,42.5 - parent: 89 - - uid: 15246 + rot: -1.5707963267948966 rad + pos: -121.5,5.5 + parent: 2 + - uid: 11554 components: - type: Transform - pos: 18.5,31.5 - parent: 89 - - uid: 15405 + pos: -121.5,2.5 + parent: 2 + - uid: 11555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,32.5 - parent: 89 - - uid: 15735 + rot: -1.5707963267948966 rad + pos: -122.5,-0.5 + parent: 2 + - uid: 11556 components: - type: Transform - pos: -112.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 15748 + rot: -1.5707963267948966 rad + pos: -121.5,-1.5 + parent: 2 + - uid: 11557 components: - type: Transform - pos: -114.5,-13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16396 + rot: 1.5707963267948966 rad + pos: -124.5,-1.5 + parent: 2 + - uid: 11558 components: - type: Transform - pos: 19.5,8.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16397 + rot: -1.5707963267948966 rad + pos: -124.5,-3.5 + parent: 2 + - uid: 11559 components: - type: Transform rot: 3.141592653589793 rad - pos: 20.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16438 + pos: -129.5,-3.5 + parent: 2 + - uid: 11560 + components: + - type: Transform + pos: -124.5,6.5 + parent: 2 + - uid: 11561 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,-6.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16536 + pos: -130.5,9.5 + parent: 2 + - uid: 11562 components: - type: Transform - pos: -1.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16538 + pos: -121.5,9.5 + parent: 2 + - uid: 11563 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,11.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16539 + rot: -1.5707963267948966 rad + pos: -124.5,1.5 + parent: 2 + - uid: 11564 components: - type: Transform - pos: 9.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16540 + rot: 1.5707963267948966 rad + pos: -124.5,2.5 + parent: 2 + - uid: 11565 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -124.5,5.5 + parent: 2 + - uid: 11566 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16541 + pos: -127.5,6.5 + parent: 2 + - uid: 11567 components: - type: Transform rot: 3.141592653589793 rad - pos: 21.5,14.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16544 + pos: -120.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11568 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11569 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,13.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16547 + pos: -119.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11570 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -119.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11571 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16553 + pos: -120.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11572 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,28.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 16658 + pos: -120.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11573 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -123.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11574 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 17098 + pos: -14.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11575 components: - type: Transform - pos: -28.5,37.5 - parent: 89 - - uid: 17099 + pos: -92.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11576 components: - type: Transform - pos: -29.5,50.5 - parent: 89 - - uid: 17590 + pos: -93.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11577 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11578 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 89 - - uid: 18316 + pos: -56.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11579 components: - type: Transform rot: 1.5707963267948966 rad - pos: 50.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18317 + pos: -56.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-3.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18319 + rot: -1.5707963267948966 rad + pos: -55.5,35.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11581 components: - type: Transform - pos: 63.5,-1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 18335 + rot: 3.141592653589793 rad + pos: 23.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11582 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-4.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19410 + pos: -14.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11583 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,20.5 - parent: 89 - - uid: 19531 + pos: 24.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11584 components: - type: Transform - pos: -27.5,9.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19532 + rot: 3.141592653589793 rad + pos: -29.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11585 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,1.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19975 + pos: 2.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11586 components: - type: Transform - pos: 23.5,37.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 19976 + pos: 2.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11587 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11588 components: - type: Transform rot: 1.5707963267948966 rad - pos: 23.5,40.5 - parent: 89 - - type: PointLight - enabled: True - - type: ActiveEmergencyLight - - uid: 21039 + pos: 6.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11589 components: - type: Transform - pos: -14.5,-0.5 - parent: 89 - - uid: 22449 + pos: 6.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11590 components: - type: Transform - pos: 45.5,9.5 - parent: 89 - - uid: 23966 + rot: 1.5707963267948966 rad + pos: 10.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11591 components: - type: Transform - pos: -14.5,2.5 - parent: 22565 - - uid: 23967 + rot: 1.5707963267948966 rad + pos: 15.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11592 components: - type: Transform - pos: -26.5,6.5 - parent: 22565 - - uid: 23968 + rot: 1.5707963267948966 rad + pos: 16.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,24.5 - parent: 22565 - - uid: 23969 + pos: 13.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 22565 - - uid: 23970 + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11595 + components: + - type: Transform + pos: -3.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11596 + components: + - type: Transform + pos: 11.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11597 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,9.5 - parent: 22565 - - uid: 23971 + pos: 8.5,21.5 + parent: 2 + - uid: 11598 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,7.5 - parent: 22565 - - uid: 23972 + pos: -1.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11599 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,16.5 - parent: 22565 - - uid: 23973 + pos: 27.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11600 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,24.5 - parent: 22565 - - uid: 23974 + rot: -1.5707963267948966 rad + pos: 28.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11601 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11602 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,16.5 - parent: 22565 - - uid: 23975 + pos: 13.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11603 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-0.5 - parent: 22565 - - uid: 23976 + pos: 14.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11604 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 22565 -- proto: EmergencyMedipen - entities: - - uid: 21636 + pos: 8.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11605 components: - type: Transform - parent: 21634 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22652 + rot: 1.5707963267948966 rad + pos: 6.5,30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11606 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22653 + rot: 3.141592653589793 rad + pos: 0.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11607 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22654 + rot: 3.141592653589793 rad + pos: 7.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11608 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: EmergencyOxygenTankFilled - entities: - - uid: 22210 + pos: -81.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11609 components: - type: Transform - pos: 51.87392,-8.591503 - parent: 89 -- proto: EmergencyRollerBed - entities: - - uid: 12665 + rot: 3.141592653589793 rad + pos: -84.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11610 components: - type: Transform - pos: 28.46604,20.857737 - parent: 89 - - uid: 14788 + rot: 3.141592653589793 rad + pos: -85.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11611 components: - type: Transform - pos: 28.481665,20.342112 - parent: 89 -- proto: EmergencyRollerBedSpawnFolded - entities: - - uid: 15915 + pos: -82.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11612 components: - type: Transform - pos: 16.47677,23.62731 - parent: 89 - - uid: 20106 + pos: 11.5,24.5 + parent: 2 + - uid: 11613 components: - type: Transform - pos: 2.6214988,11.504413 - parent: 89 -- proto: Emitter - entities: - - uid: 8783 + rot: 1.5707963267948966 rad + pos: 6.5,24.5 + parent: 2 + - uid: 11614 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,-8.5 - parent: 89 - - uid: 8784 + pos: 6.5,21.5 + parent: 2 + - uid: 11615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,-7.5 - parent: 89 - - uid: 8785 + pos: 11.5,22.5 + parent: 2 + - uid: 11616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-6.5 - parent: 89 - - uid: 8786 + pos: 18.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-5.5 - parent: 89 - - uid: 8788 + rot: 1.5707963267948966 rad + pos: -116.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-5.5 - parent: 89 - - uid: 8790 + pos: 39.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-6.5 - parent: 89 - - uid: 8791 + pos: 43.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11620 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,-7.5 - parent: 89 - - uid: 8792 + pos: 24.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11621 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 25.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11622 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,-8.5 - parent: 89 -- proto: EpinephrineChemistryBottle - entities: - - uid: 1665 + pos: 26.5,34.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11623 components: - type: Transform - pos: 26.012112,13.75499 - parent: 89 - - uid: 6318 + pos: 26.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11624 components: - type: Transform - pos: 26.11628,13.629903 - parent: 89 - - uid: 17699 + rot: 3.141592653589793 rad + pos: 23.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11625 components: - type: Transform - pos: -10.723903,17.760052 - parent: 89 -- proto: ExosuitFabricator - entities: - - uid: 185 + rot: 3.141592653589793 rad + pos: -11.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11626 components: - type: Transform - pos: -22.5,-20.5 - parent: 89 - - uid: 23977 + rot: 1.5707963267948966 rad + pos: -4.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11627 components: - type: Transform - pos: -27.5,4.5 - parent: 22565 - - uid: 23978 + rot: -1.5707963267948966 rad + pos: 0.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11628 components: - type: Transform - pos: 3.5,4.5 - parent: 22565 -- proto: ExplosivePayload - entities: - - uid: 23979 + pos: 0.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11629 components: - type: Transform - pos: 4.7115273,11.752999 - parent: 22565 - - uid: 23980 + pos: -28.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11630 components: - type: Transform - pos: 4.3209023,11.674874 - parent: 22565 -- proto: ExplosivesSignMed - entities: - - uid: 7474 + pos: -29.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11631 components: - type: Transform - pos: 36.5,-35.5 - parent: 89 - - uid: 9654 + rot: -1.5707963267948966 rad + pos: -28.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11632 components: - type: Transform - pos: 57.5,-16.5 - parent: 89 - - uid: 21331 + rot: 3.141592653589793 rad + pos: -30.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11633 components: - type: Transform - pos: 59.5,-38.5 - parent: 89 - - uid: 21450 + pos: 47.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11634 components: - type: Transform - pos: 50.5,-34.5 - parent: 89 - - uid: 21778 + pos: 44.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11635 components: - type: Transform - pos: 38.5,-27.5 - parent: 89 - - uid: 21933 + rot: 1.5707963267948966 rad + pos: 41.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11636 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 21954 + pos: 45.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11637 components: - type: Transform - pos: 39.5,-34.5 - parent: 89 - - uid: 25353 + pos: 48.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11638 components: - type: Transform - pos: 59.5,-32.5 - parent: 89 -- proto: ExtendedEmergencyOxygenTankFilled - entities: - - uid: 23981 + rot: 1.5707963267948966 rad + pos: 43.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11639 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.050642,-17.142916 - parent: 22565 - - uid: 23982 + pos: 56.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.8145213,-16.995424 - parent: 22565 -- proto: ExtinguisherCabinetFilled - entities: - - uid: 1855 + rot: 3.141592653589793 rad + pos: 44.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11641 components: - type: Transform - pos: -11.5,16.5 - parent: 89 - - uid: 2227 + pos: 44.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11642 components: - type: Transform - pos: -84.5,5.5 - parent: 89 - - uid: 2934 + rot: 3.141592653589793 rad + pos: 38.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11643 components: - type: Transform - pos: 33.5,10.5 - parent: 89 - - uid: 2937 + rot: 3.141592653589793 rad + pos: 41.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11644 components: - type: Transform - pos: 33.5,5.5 - parent: 89 - - uid: 2938 + rot: 1.5707963267948966 rad + pos: -8.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11645 components: - type: Transform - pos: 54.5,1.5 - parent: 89 - - uid: 2939 + rot: -1.5707963267948966 rad + pos: -4.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11646 components: - type: Transform - pos: 54.5,7.5 - parent: 89 - - uid: 2941 + rot: -1.5707963267948966 rad + pos: -3.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11647 components: - type: Transform - pos: 63.5,9.5 - parent: 89 - - uid: 3713 + rot: -1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11648 components: - type: Transform - pos: -42.5,1.5 - parent: 89 - - uid: 5349 + rot: 1.5707963267948966 rad + pos: -9.5,-1.5 + parent: 2 + - uid: 11649 components: - type: Transform - pos: -61.5,2.5 - parent: 89 - - uid: 5350 + rot: 3.141592653589793 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 11650 components: - type: Transform - pos: -68.5,-14.5 - parent: 89 - - uid: 5351 + pos: -3.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11651 components: - type: Transform - pos: -34.5,6.5 - parent: 89 - - uid: 5352 + rot: 3.141592653589793 rad + pos: -92.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11652 components: - type: Transform - pos: -76.5,6.5 - parent: 89 - - uid: 7513 + rot: 1.5707963267948966 rad + pos: -92.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11653 components: - type: Transform - pos: -96.5,1.5 - parent: 89 - - uid: 7708 + pos: -100.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11654 components: - type: Transform - pos: -97.5,-10.5 - parent: 89 - - uid: 15475 + rot: 1.5707963267948966 rad + pos: -101.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11655 components: - type: Transform - pos: -7.5,4.5 - parent: 89 - - uid: 19803 + pos: -123.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11656 components: - type: Transform - pos: 19.5,13.5 - parent: 89 - - uid: 21542 + rot: 3.141592653589793 rad + pos: -100.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,30.5 - parent: 89 - - uid: 21543 + rot: 3.141592653589793 rad + pos: -125.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,19.5 - parent: 89 -- proto: FaxMachineBase - entities: - - uid: 4356 + rot: -1.5707963267948966 rad + pos: -124.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11659 components: - type: Transform - pos: 33.5,-0.5 - parent: 89 - - type: FaxMachine - name: Кабинет ГСБ - - uid: 6099 + rot: 3.141592653589793 rad + pos: -122.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11660 components: - type: Transform - pos: -48.5,11.5 - parent: 89 - - type: FaxMachine - name: Библиотека - - uid: 14525 + rot: -1.5707963267948966 rad + pos: -136.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11661 components: - type: Transform - pos: -76.5,-5.5 - parent: 89 - - type: FaxMachine - name: Офис АВД - - uid: 15851 + rot: -1.5707963267948966 rad + pos: -130.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11662 components: - type: Transform - pos: 23.5,29.5 - parent: 89 - - type: FaxMachine - name: Псих. Диспансер - - uid: 19894 + rot: 1.5707963267948966 rad + pos: -130.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11663 components: - type: Transform - pos: 26.5,37.5 - parent: 89 -- proto: FaxMachineCaptain - entities: - - uid: 16863 + rot: -1.5707963267948966 rad + pos: -99.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11664 components: - type: Transform - pos: 57.5,6.5 - parent: 89 - - type: FaxMachine - name: Офис капитана -- proto: FenceMetalCorner - entities: - - uid: 22227 + rot: -1.5707963267948966 rad + pos: -103.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,-13.5 - parent: 89 - - uid: 22235 + rot: -1.5707963267948966 rad + pos: -128.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11666 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-13.5 - parent: 89 - - uid: 22236 + pos: -103.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-12.5 - parent: 89 -- proto: FenceMetalStraight - entities: - - uid: 4179 + rot: 3.141592653589793 rad + pos: -128.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11668 + components: + - type: Transform + pos: -120.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11669 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,26.5 - parent: 89 - - uid: 7174 + pos: -123.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11670 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-12.5 - parent: 89 - - uid: 9817 + pos: -125.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11671 components: - type: Transform rot: 1.5707963267948966 rad - pos: 55.5,-12.5 - parent: 89 - - uid: 21291 + pos: -124.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-14.5 - parent: 89 - - uid: 22131 + pos: -128.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11673 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-15.5 - parent: 89 - - uid: 22259 + pos: -131.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,-13.5 - parent: 89 -- proto: FigureSpawner - entities: - - uid: 6143 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11675 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 6144 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11676 components: - type: Transform - pos: -49.5,9.5 - parent: 89 - - uid: 16283 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11677 components: - type: Transform - pos: 6.5,27.5 - parent: 89 -- proto: filingCabinet - entities: - - uid: 3948 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11678 components: - type: Transform - pos: 10.5,-2.5 - parent: 89 - - uid: 5325 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11679 components: - type: Transform - pos: 8.5,-8.5 - parent: 89 - - uid: 5360 + rot: 3.141592653589793 rad + pos: -99.5,-25.5 + parent: 2 + - uid: 11680 components: - type: Transform - pos: -61.5,-6.5 - parent: 89 - - uid: 6173 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11681 components: - type: Transform - pos: -20.5,9.5 - parent: 89 - - uid: 6826 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11682 components: - type: Transform - pos: -43.5,0.5 - parent: 89 - - uid: 8107 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11683 components: - type: Transform - pos: -87.5,12.5 - parent: 89 - - uid: 8163 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11684 components: - type: Transform - pos: -58.5,9.5 - parent: 89 - - uid: 8335 + rot: 3.141592653589793 rad + pos: -101.5,-25.5 + parent: 2 + - uid: 11685 components: - type: Transform - pos: -62.5,22.5 - parent: 89 - - uid: 12809 + rot: 1.5707963267948966 rad + pos: -94.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 23805 components: - type: Transform - pos: 7.5,9.5 - parent: 89 - - uid: 12839 + rot: 3.141592653589793 rad + pos: 0.5,-3.5 + parent: 23711 + - uid: 23806 components: - type: Transform - pos: 16.5,6.5 - parent: 89 - - uid: 15082 + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 23711 + - uid: 23807 components: - type: Transform - pos: -2.5,20.5 - parent: 89 - - uid: 15310 + rot: -1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 23808 components: - type: Transform - pos: 42.5,6.5 - parent: 89 - - uid: 15381 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 23809 components: - type: Transform - pos: -25.5,7.5 - parent: 89 -- proto: filingCabinetDrawer - entities: - - uid: 12815 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 23810 components: - type: Transform - pos: 28.5,12.5 - parent: 89 - - uid: 16938 + pos: 5.5,-4.5 + parent: 23711 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 24115 components: - type: Transform - pos: -21.5,-15.5 - parent: 89 - - uid: 16939 + rot: 3.141592653589793 rad + pos: 4.5,-8.5 + parent: 23919 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 24116 components: - type: Transform - pos: -11.5,-16.5 - parent: 89 - - uid: 16985 + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 23919 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 24117 components: - type: Transform - pos: -2.5,-38.5 - parent: 89 - - uid: 17010 + rot: -1.5707963267948966 rad + pos: 4.5,3.5 + parent: 23919 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 24118 components: - type: Transform - pos: 28.5,11.5 - parent: 89 -- proto: filingCabinetRandom - entities: - - uid: 16525 + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 23919 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 24119 components: - type: Transform - pos: 20.5,21.5 - parent: 89 - - uid: 17594 + rot: 1.5707963267948966 rad + pos: 4.5,3.5 + parent: 23919 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 25930 components: - type: Transform - pos: 16.5,19.5 - parent: 89 - - uid: 19954 + rot: -1.5707963267948966 rad + pos: -11.5,-25.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25931 components: - type: Transform - pos: 19.5,21.5 - parent: 89 -- proto: filingCabinetTall - entities: - - uid: 6032 + rot: 3.141592653589793 rad + pos: -26.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25932 components: - type: Transform - pos: -53.5,7.5 - parent: 89 - - uid: 12121 + pos: -17.5,-10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#990000FF' + - uid: 25933 components: - type: Transform - pos: -12.5,12.5 - parent: 89 - - uid: 15083 + pos: -26.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25934 components: - type: Transform - pos: 25.5,31.5 - parent: 89 - - uid: 15084 + pos: -10.5,-12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25935 components: - type: Transform - pos: 23.5,31.5 - parent: 89 - - uid: 15491 + rot: -1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25936 components: - type: Transform - pos: -86.5,1.5 - parent: 89 - - uid: 15601 + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25937 components: - type: Transform - pos: -24.5,9.5 - parent: 89 - - uid: 17303 + pos: -12.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25938 components: - type: Transform - pos: -3.5,-0.5 - parent: 89 -- proto: FireAlarm - entities: - - uid: 2011 + rot: 3.141592653589793 rad + pos: -13.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25939 components: - type: Transform - pos: -100.5,-11.5 - parent: 89 - - type: DeviceList - devices: - - 2013 - - 2004 - - 2005 - - 2007 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2930 + rot: 1.5707963267948966 rad + pos: -17.5,1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-8.5 - parent: 89 - - type: DeviceList - devices: - - 2912 - - 2932 - - 2907 - - 2007 - - 2933 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3072 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-12.5 - parent: 89 - - type: DeviceList - devices: - - 2004 - - 2005 - - 2003 - - 2002 - - 3085 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3101 + pos: -7.5,1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25942 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-11.5 - parent: 89 - - type: DeviceList - devices: - - 3099 - - 3097 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6698 + pos: -7.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25943 components: - type: Transform - pos: -64.5,2.5 - parent: 89 - - type: DeviceList - devices: - - 6624 - - 6614 - - 6615 - - 6616 - - 6617 - - 6618 - - 6619 - - 6620 - - 6613 - - 6612 - - 6611 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6703 + rot: 1.5707963267948966 rad + pos: -13.5,9.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25944 components: - type: Transform - pos: -52.5,-8.5 - parent: 89 - - type: DeviceList - devices: - - 6701 - - 6724 - - 16298 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6751 + pos: -11.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 89 - - type: DeviceList - devices: - - 6750 - - 6617 - - 6618 - - 6619 - - 6620 - - type: AtmosDevice - joinedGrid: 89 - - uid: 6784 + pos: -31.5,11.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25946 components: - type: Transform - pos: -52.5,2.5 - parent: 89 - - type: DeviceList - devices: - - 6772 - - 6771 - - 6769 - - 6789 - - 6788 - - 6787 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7396 + rot: 3.141592653589793 rad + pos: -12.5,-22.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25947 components: - type: Transform - pos: -90.5,0.5 - parent: 89 - - type: DeviceList - devices: - - 7395 - - 7393 - - 7392 - - 7391 - - 2933 - - 2932 - - 2912 - - 7388 - - 7389 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7420 + rot: 1.5707963267948966 rad + pos: -15.5,-23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25948 components: - type: Transform rot: -1.5707963267948966 rad - pos: -97.5,-2.5 - parent: 89 - - type: DeviceList - devices: - - 7412 - - 7411 - - 7410 - - 3099 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7424 + pos: 2.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25949 components: - type: Transform - pos: -98.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 7391 - - 7392 - - 7430 - - 7411 - - 7410 - - 2003 - - 2002 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7464 + rot: 1.5707963267948966 rad + pos: 2.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,11.5 - parent: 89 - - type: DeviceList - devices: - - 7459 - - 7393 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7885 + rot: 1.5707963267948966 rad + pos: 7.5,11.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25951 components: - type: Transform - pos: -85.5,-12.5 - parent: 89 - - type: DeviceList - devices: - - 7478 - - 7383 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9441 + rot: 1.5707963267948966 rad + pos: -16.5,-24.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25952 components: - type: Transform - pos: 21.5,4.5 - parent: 89 - - type: DeviceList - devices: - - 9437 - - 9436 - - 9435 - - 9443 - - 9438 - - 9440 - - 9439 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9454 + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25953 components: - type: Transform - pos: -2.5,4.5 - parent: 89 - - type: DeviceList - devices: - - 9444 - - 9445 - - 9446 - - 9439 - - 9440 - - 9438 - - 9456 - - 9447 - - 9448 - - 9449 - - 9450 - - 9451 - - 9452 - - 9453 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9463 + rot: 1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25954 components: - type: Transform - pos: -13.5,5.5 - parent: 89 - - type: DeviceList - devices: - - 9457 - - 9458 - - 9459 - - 9460 - - 9461 - - 9462 - - 9446 - - 9445 - - 9444 - - 9465 - - 9466 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9470 + rot: -1.5707963267948966 rad + pos: -10.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25955 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,0.5 - parent: 89 - - type: DeviceList - devices: - - 9468 - - 9467 - - 9460 - - 9459 - - 9458 - - 9469 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9481 + pos: -17.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,1.5 - parent: 89 - - type: DeviceList - devices: - - 9468 - - 9467 - - 9477 - - 9476 - - 9475 - - 9474 - - 9473 - - 9472 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9491 + pos: -17.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25957 components: - type: Transform - pos: -39.5,6.5 - parent: 89 - - type: DeviceList - devices: - - 9473 - - 9474 - - 9486 - - 9489 - - 9488 - - 9487 - - 9485 - - 9484 - - 9483 - - 9490 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9500 + pos: -30.5,12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25958 components: - type: Transform - pos: -54.5,6.5 - parent: 89 - - type: DeviceList - devices: - - 9487 - - 9488 - - 9489 - - 9502 - - 9498 - - 6616 - - 6615 - - 6614 - - 9496 - - 9419 - - 6611 - - 6612 - - 6613 - - 9499 - - 6802 - - 6799 - - 6863 - - 6862 - - 6824 - - 6803 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9527 + pos: -29.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25959 components: - type: Transform - pos: -65.5,12.5 - parent: 89 - - type: DeviceList - devices: - - 9496 - - 9419 - - 9560 - - 9561 - - 9544 - - 9545 - - 9514 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9528 + rot: 3.141592653589793 rad + pos: -30.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25960 components: - type: Transform - pos: -31.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9477 - - 9476 - - 9475 - - 9523 - - 9521 - - 9524 - - 9525 - - 9526 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9530 + rot: -1.5707963267948966 rad + pos: -7.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25961 components: - type: Transform - pos: -40.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9524 - - 9525 - - 9526 - - 9522 - - 9531 - - 9532 - - 9533 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9540 + rot: 1.5707963267948966 rad + pos: -7.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25962 components: - type: Transform - pos: -47.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9531 - - 9532 - - 9533 - - 9536 - - 9535 - - 9534 - - 9520 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9543 + rot: 1.5707963267948966 rad + pos: -2.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25963 components: - type: Transform - pos: -57.5,15.5 - parent: 89 - - type: DeviceList - devices: - - 9547 - - 9546 - - 9516 - - 9544 - - 9545 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9553 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27623 components: - type: Transform - pos: -59.5,19.5 - parent: 89 - - type: DeviceList - devices: - - 9534 - - 9535 - - 9536 - - 9549 - - 9550 - - 9552 - - 9517 - - 9554 - - 9555 - - 9556 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9559 + rot: 1.5707963267948966 rad + pos: -4.5,-8.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27624 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27625 components: - type: Transform - pos: -75.5,11.5 - parent: 89 - - type: DeviceList - devices: - - 9562 - - 9563 - - 9560 - - 9561 - - 9515 - - 9554 - - 9555 - - 9556 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9568 + rot: 1.5707963267948966 rad + pos: -3.5,-9.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27626 components: - type: Transform - pos: -84.5,11.5 - parent: 89 - - type: DeviceList - devices: - - 7389 - - 7388 - - 9562 - - 9563 - - 9569 - - 15772 - - 15853 - - 15854 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9578 + pos: 4.5,-9.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27627 components: - type: Transform - pos: -27.5,-9.5 - parent: 89 - - type: DeviceList - devices: - - 9485 - - 9484 - - 9483 - - 9573 - - 9575 - - 9576 - - 9577 - - 9449 - - 9448 - - 9447 - - 9571 - - 9579 - - 9574 - - 9572 - - 9581 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9583 + rot: -1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27628 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-14.5 - parent: 89 - - type: DeviceList - devices: - - 9452 - - 9453 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9586 + pos: 1.5,-1.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeFourway + entities: + - uid: 11686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,0.5 - parent: 89 - - type: DeviceList - devices: - - 9435 - - 9436 - - 9437 - - 9590 - - 9589 - - 9587 - - 9588 - - 9585 - - 9591 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9592 + pos: -109.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11687 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-6.5 - parent: 89 - - type: DeviceList - devices: - - 9572 - - 9574 - - 9466 - - 9465 - - 9595 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9969 + pos: -12.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,20.5 - parent: 89 - - type: DeviceList - devices: - - 9549 - - 9550 - - 9552 - - type: AtmosDevice - joinedGrid: 89 - - uid: 10056 + pos: -17.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,6.5 - parent: 89 - - type: DeviceList - devices: - - 10051 - - 10057 - - 10055 - - type: AtmosDevice - joinedGrid: 89 - - uid: 10177 + pos: -103.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,22.5 - parent: 89 - - type: DeviceList - devices: - - 10118 - - 10129 - - 10174 - - 10176 - - 10175 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14276 + pos: -95.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11691 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,5.5 - parent: 89 - - type: DeviceList - devices: - - 14284 - - 14285 - - 12847 - - 12851 - - 12850 - - 9462 - - 9461 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17139 + pos: -94.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,38.5 - parent: 89 - - type: DeviceList - devices: - - 17138 - - 17137 - - 17017 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17140 + pos: -107.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11693 components: - type: Transform - pos: -28.5,46.5 - parent: 89 - - type: DeviceList - devices: - - 17136 - - 17135 - - 17088 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20102 + pos: -49.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11694 components: - type: Transform - pos: -124.5,-0.5 - parent: 89 - - type: DeviceList - devices: - - 9011 - - 9010 - - 8972 - - 8973 - - 8580 - - 117 - - 8579 - - 115 - - 12128 - - 20107 - - 20103 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20105 + pos: -19.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11695 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,10.5 - parent: 89 - - type: DeviceList - devices: - - 8758 - - 15725 - - 19409 - - 10758 - - 8531 - - type: AtmosDevice - joinedGrid: 89 - - uid: 21679 + pos: -17.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 21627 - - type: DeviceList - devices: - - 21683 - - 21682 - - 21681 - - 21680 - - 21631 - - type: AtmosDevice - joinedGrid: 21627 - - uid: 23983 + pos: -11.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-20.5 - parent: 22565 - - type: DeviceList - devices: - - 24009 - - 24010 - - 22639 - - 24012 - - 24011 - - 24014 - - 24013 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25419 + pos: 52.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11698 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-21.5 - parent: 89 - - type: DeviceList - devices: - - 25418 - - 25416 - - type: AtmosDevice - joinedGrid: 89 - - uid: 25420 + pos: -2.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11699 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-21.5 - parent: 89 - - type: DeviceList - devices: - - 25418 - - 25417 - - type: AtmosDevice - joinedGrid: 89 - - uid: 25504 + pos: -2.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-3.5 - parent: 18153 - - type: DeviceList - devices: - - 25505 - - 25507 - - 25508 - - 25506 - - 25424 - - 25425 - - 25426 - - type: AtmosDevice - joinedGrid: 18153 -- proto: FireAlarmElectronics - entities: - - uid: 7047 + pos: -0.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11701 components: - type: Transform - pos: -98.713394,-8.672226 - parent: 89 - - uid: 7048 + pos: -2.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11702 components: - type: Transform - pos: -98.307144,-8.750351 - parent: 89 -- proto: FireAxeCabinetFilled - entities: - - uid: 1522 + pos: 1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,4.5 - parent: 89 - - uid: 2638 + pos: 3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11704 components: - type: Transform - pos: -99.5,-11.5 - parent: 89 -- proto: FireExtinguisher - entities: - - uid: 5334 + pos: -54.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11705 components: - type: Transform - pos: -46.266693,-10.403386 - parent: 89 - - uid: 5335 + pos: -7.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11706 components: - type: Transform - pos: -46.50107,-10.403386 - parent: 89 - - uid: 5344 + pos: -56.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11707 components: - type: Transform - pos: -46.399864,-10.379426 - parent: 89 - - uid: 14707 + pos: 3.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11708 components: - type: Transform - pos: -78.550995,-9.487332 - parent: 89 - - uid: 19585 + pos: 5.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11709 components: - type: Transform - pos: -2.512826,-41.501106 - parent: 89 -- proto: Firelock - entities: - - uid: 3099 + pos: 51.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-6.5 - parent: 89 - - uid: 9435 + pos: 27.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11711 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,3.5 - parent: 89 - - uid: 9436 + pos: 36.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,2.5 - parent: 89 - - uid: 9437 + pos: -73.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,1.5 - parent: 89 - - uid: 9438 + pos: -72.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11714 components: - type: Transform - pos: 1.5,1.5 - parent: 89 - - uid: 9439 + pos: 25.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11715 components: - type: Transform - pos: 1.5,3.5 - parent: 89 - - uid: 9440 + pos: 23.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11716 components: - type: Transform - pos: 1.5,2.5 - parent: 89 - - uid: 9444 + pos: 7.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11717 components: - type: Transform - pos: -4.5,1.5 - parent: 89 - - uid: 9445 + pos: 25.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11718 components: - type: Transform - pos: -4.5,2.5 - parent: 89 - - uid: 9446 + pos: 7.5,22.5 + parent: 2 + - uid: 11719 components: - type: Transform - pos: -4.5,3.5 - parent: 89 - - uid: 9447 + pos: -5.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11720 components: - type: Transform - pos: -4.5,-11.5 - parent: 89 - - uid: 9448 + pos: -30.5,32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11721 components: - type: Transform - pos: -4.5,-12.5 - parent: 89 - - uid: 9449 + pos: -30.5,28.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11722 components: - type: Transform - pos: -4.5,-13.5 - parent: 89 - - uid: 9450 + pos: -29.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11723 components: - type: Transform - pos: -2.5,-18.5 - parent: 89 - - uid: 9451 + pos: -29.5,33.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11724 components: - type: Transform - pos: -0.5,-18.5 - parent: 89 - - uid: 9452 + pos: -30.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11725 components: - type: Transform - pos: 1.5,-12.5 - parent: 89 - - uid: 9453 + pos: 41.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11726 components: - type: Transform - pos: 1.5,-10.5 - parent: 89 - - uid: 9458 + pos: 40.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11727 components: - type: Transform - pos: -21.5,1.5 - parent: 89 - - uid: 9459 + pos: -92.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11728 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - uid: 9460 + pos: -102.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11729 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - uid: 9461 + pos: -103.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 25964 components: - type: Transform - pos: -12.5,5.5 - parent: 89 - - uid: 9462 + pos: -13.5,1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25965 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - uid: 9465 + pos: -31.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25966 components: - type: Transform - pos: -17.5,0.5 - parent: 89 - - uid: 9466 + pos: -10.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25967 components: - type: Transform - pos: -19.5,0.5 - parent: 89 - - uid: 9467 + pos: 7.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25968 components: - type: Transform - pos: -28.5,4.5 - parent: 89 - - uid: 9468 + pos: -29.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 25969 components: - type: Transform - pos: -28.5,3.5 - parent: 89 - - uid: 9473 + pos: -20.5,10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,3.5 - parent: 89 - - uid: 9474 + pos: 1.5,-8.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' + - uid: 27630 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,4.5 - parent: 89 - - uid: 9475 + pos: 0.5,-9.5 + parent: 27260 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27631 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 89 - - uid: 9476 + pos: 1.5,-6.5 + parent: 27260 + - type: AtmosPipeColor + color: '#0000FFFF' +- proto: GasPipeStraight + entities: + - uid: 11730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,6.5 - parent: 89 - - uid: 9477 + pos: -136.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11731 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,6.5 - parent: 89 - - uid: 9483 - components: - - type: Transform - pos: -38.5,-13.5 - parent: 89 - - uid: 9484 + pos: -96.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11732 components: - type: Transform - pos: -38.5,-12.5 - parent: 89 - - uid: 9485 + rot: -1.5707963267948966 rad + pos: -82.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11733 components: - type: Transform - pos: -38.5,-11.5 - parent: 89 - - uid: 9486 + rot: 1.5707963267948966 rad + pos: -134.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11734 components: - type: Transform - pos: -40.5,6.5 - parent: 89 - - uid: 9487 + rot: 3.141592653589793 rad + pos: -96.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11735 components: - type: Transform - pos: -42.5,3.5 - parent: 89 - - uid: 9488 + rot: 1.5707963267948966 rad + pos: -135.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11736 components: - type: Transform - pos: -42.5,4.5 - parent: 89 - - uid: 9489 + pos: -101.5,-24.5 + parent: 2 + - uid: 11737 components: - type: Transform - pos: -42.5,5.5 - parent: 89 - - uid: 9589 + rot: 3.141592653589793 rad + pos: -128.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11738 components: - type: Transform - pos: 42.5,1.5 - parent: 89 - - uid: 9590 + rot: 1.5707963267948966 rad + pos: -132.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11739 components: - type: Transform - pos: 42.5,0.5 - parent: 89 - - uid: 9591 + rot: -1.5707963267948966 rad + pos: -99.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11740 components: - type: Transform - pos: 35.5,9.5 - parent: 89 - - uid: 23984 + pos: -101.5,-23.5 + parent: 2 + - uid: 11741 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,8.5 - parent: 22565 - - uid: 23985 + pos: -107.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,2.5 - parent: 22565 - - uid: 23986 + rot: 3.141592653589793 rad + pos: -120.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,1.5 - parent: 22565 - - uid: 23987 + pos: -109.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,1.5 - parent: 22565 - - uid: 23988 + pos: -122.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11745 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 22565 - - uid: 23989 + rot: 1.5707963267948966 rad + pos: -135.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11746 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 22565 - - uid: 23990 + pos: -136.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11747 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,10.5 - parent: 22565 - - uid: 23991 + pos: -110.5,-18.5 + parent: 2 + - uid: 11748 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,10.5 - parent: 22565 - - uid: 23992 + pos: -110.5,-16.5 + parent: 2 + - uid: 11749 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,9.5 - parent: 22565 - - uid: 23993 + pos: -109.5,-16.5 + parent: 2 + - uid: 11750 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 22565 - - uid: 23994 + pos: -108.5,-16.5 + parent: 2 + - uid: 11751 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,3.5 - parent: 22565 - - uid: 23995 + pos: -110.5,-17.5 + parent: 2 + - uid: 11752 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,3.5 - parent: 22565 - - uid: 23996 + rot: 3.141592653589793 rad + pos: -4.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11753 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,0.5 - parent: 22565 - - uid: 23997 + rot: 1.5707963267948966 rad + pos: -18.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,0.5 - parent: 22565 - - uid: 23998 + rot: 1.5707963267948966 rad + pos: -123.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,5.5 - parent: 22565 - - uid: 23999 + rot: 1.5707963267948966 rad + pos: -108.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11756 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,12.5 - parent: 22565 - - uid: 24000 + pos: 25.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11757 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,12.5 - parent: 22565 - - uid: 24001 + pos: 10.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,12.5 - parent: 22565 - - uid: 24002 + rot: 1.5707963267948966 rad + pos: -98.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11759 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,12.5 - parent: 22565 - - uid: 24003 + pos: -122.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11760 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,12.5 - parent: 22565 - - uid: 24004 + rot: 3.141592653589793 rad + pos: -101.5,-24.5 + parent: 2 + - uid: 11761 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 22565 - - uid: 24005 + rot: 1.5707963267948966 rad + pos: -13.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,12.5 - parent: 22565 - - uid: 24006 + rot: 1.5707963267948966 rad + pos: -107.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,12.5 - parent: 22565 - - uid: 24007 + pos: -107.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 22565 - - uid: 25505 + rot: 1.5707963267948966 rad + pos: -17.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11765 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-10.5 - parent: 18153 - - uid: 25506 + pos: 11.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11766 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 18153 - - uid: 25507 + pos: 11.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11767 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 18153 - - uid: 25508 + pos: 0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 18153 -- proto: FirelockEdge - entities: - - uid: 6724 + pos: -66.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11769 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 89 - - uid: 6787 + rot: 3.141592653589793 rad + pos: -87.5,-20.5 + parent: 2 + - uid: 11770 components: - type: Transform - pos: -52.5,-4.5 - parent: 89 - - uid: 6788 + rot: 3.141592653589793 rad + pos: -86.5,-22.5 + parent: 2 + - uid: 11771 components: - type: Transform - pos: -51.5,-4.5 - parent: 89 - - uid: 6789 + rot: 3.141592653589793 rad + pos: -86.5,-21.5 + parent: 2 + - uid: 11772 components: - type: Transform - pos: -50.5,-4.5 - parent: 89 - - uid: 7478 + rot: 3.141592653589793 rad + pos: -86.5,-20.5 + parent: 2 + - uid: 11773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-11.5 - parent: 89 - - uid: 9581 + rot: 3.141592653589793 rad + pos: -88.5,-22.5 + parent: 2 + - uid: 11774 components: - type: Transform - pos: -11.5,-13.5 - parent: 89 - - uid: 9587 + rot: 3.141592653589793 rad + pos: -88.5,-21.5 + parent: 2 + - uid: 11775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,4.5 - parent: 89 - - uid: 9588 + rot: 3.141592653589793 rad + pos: -88.5,-20.5 + parent: 2 + - uid: 11776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,9.5 - parent: 89 - - uid: 10055 + rot: 3.141592653589793 rad + pos: -87.5,-24.5 + parent: 2 + - uid: 11777 components: - type: Transform - pos: 58.5,1.5 - parent: 89 - - uid: 10057 + rot: 3.141592653589793 rad + pos: -87.5,-23.5 + parent: 2 + - uid: 11778 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,7.5 - parent: 89 - - uid: 16298 + pos: -87.5,-22.5 + parent: 2 + - uid: 11779 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 89 - - uid: 17135 + pos: -93.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,45.5 - parent: 89 - - uid: 17136 + rot: 1.5707963267948966 rad + pos: -134.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,45.5 - parent: 89 - - uid: 17137 + rot: 1.5707963267948966 rad + pos: -131.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11782 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,37.5 - parent: 89 - - uid: 17138 + pos: -100.5,-22.5 + parent: 2 + - uid: 11783 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,37.5 - parent: 89 - - uid: 21680 + pos: -96.5,-21.5 + parent: 2 + - uid: 11784 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-2.5 - parent: 21627 - - uid: 21681 + pos: -94.5,-21.5 + parent: 2 + - uid: 11785 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-2.5 - parent: 21627 - - uid: 21682 + pos: -94.5,-22.5 + parent: 2 + - uid: 11786 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-2.5 - parent: 21627 - - uid: 24008 + pos: -94.5,-20.5 + parent: 2 + - uid: 11787 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-24.5 - parent: 22565 - - uid: 24009 + pos: -96.5,-22.5 + parent: 2 + - uid: 11788 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-21.5 - parent: 22565 - - uid: 24010 + pos: -96.5,-20.5 + parent: 2 + - uid: 11789 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-21.5 - parent: 22565 - - uid: 24011 - components: - - type: Transform - pos: -17.5,-26.5 - parent: 22565 - - uid: 24012 + pos: -92.5,-22.5 + parent: 2 + - uid: 11790 components: - type: Transform - pos: -15.5,-26.5 - parent: 22565 - - uid: 24013 + rot: 3.141592653589793 rad + pos: -92.5,-21.5 + parent: 2 + - uid: 11791 components: - type: Transform - pos: -11.5,-26.5 - parent: 22565 - - uid: 24014 + rot: 3.141592653589793 rad + pos: -92.5,-20.5 + parent: 2 + - uid: 11792 components: - type: Transform - pos: -9.5,-26.5 - parent: 22565 -- proto: FirelockElectronics - entities: - - uid: 7045 + rot: 3.141592653589793 rad + pos: -98.5,-22.5 + parent: 2 + - uid: 11793 components: - type: Transform - pos: -98.66652,-9.219101 - parent: 89 - - uid: 7046 + rot: 3.141592653589793 rad + pos: -98.5,-21.5 + parent: 2 + - uid: 11794 components: - type: Transform - pos: -98.338394,-9.359726 - parent: 89 -- proto: FirelockGlass - entities: - - uid: 114 + rot: 3.141592653589793 rad + pos: -98.5,-20.5 + parent: 2 + - uid: 11795 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,23.5 - parent: 89 - - uid: 115 + pos: -100.5,-21.5 + parent: 2 + - uid: 11796 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,9.5 - parent: 89 - - uid: 117 + pos: -100.5,-20.5 + parent: 2 + - uid: 11797 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,-1.5 - parent: 89 - - uid: 121 + pos: -101.5,-22.5 + parent: 2 + - uid: 11798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,10.5 - parent: 89 - - uid: 2002 + rot: 3.141592653589793 rad + pos: -101.5,-23.5 + parent: 2 + - uid: 11799 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,-17.5 - parent: 89 - - uid: 2003 + pos: -101.5,-21.5 + parent: 2 + - uid: 11800 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,-16.5 - parent: 89 - - uid: 2004 + pos: -101.5,-20.5 + parent: 2 + - uid: 11801 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-13.5 - parent: 89 - - uid: 2005 + pos: -99.5,-24.5 + parent: 2 + - uid: 11802 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,-12.5 - parent: 89 - - uid: 2007 + pos: -99.5,-23.5 + parent: 2 + - uid: 11803 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-12.5 - parent: 89 - - uid: 2912 + pos: -99.5,-22.5 + parent: 2 + - uid: 11804 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-6.5 - parent: 89 - - uid: 2932 + pos: -99.5,-21.5 + parent: 2 + - uid: 11805 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-6.5 - parent: 89 - - uid: 2933 + pos: -99.5,-20.5 + parent: 2 + - uid: 11806 components: - type: Transform - pos: -95.5,-6.5 - parent: 89 - - uid: 3026 + rot: 3.141592653589793 rad + pos: -97.5,-24.5 + parent: 2 + - uid: 11807 components: - type: Transform - pos: 41.5,9.5 - parent: 89 - - uid: 3417 + rot: 3.141592653589793 rad + pos: -97.5,-23.5 + parent: 2 + - uid: 11808 components: - type: Transform - pos: 46.5,1.5 - parent: 89 - - uid: 3419 + rot: 3.141592653589793 rad + pos: -97.5,-22.5 + parent: 2 + - uid: 11809 components: - type: Transform - pos: 46.5,0.5 - parent: 89 - - uid: 5414 + rot: 3.141592653589793 rad + pos: -97.5,-21.5 + parent: 2 + - uid: 11810 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 89 - - uid: 5426 + rot: 3.141592653589793 rad + pos: -97.5,-20.5 + parent: 2 + - uid: 11811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,10.5 - parent: 89 - - uid: 6611 + rot: 3.141592653589793 rad + pos: -95.5,-21.5 + parent: 2 + - uid: 11812 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,0.5 - parent: 89 - - uid: 6612 + pos: -95.5,-20.5 + parent: 2 + - uid: 11813 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,-0.5 - parent: 89 - - uid: 6613 + pos: -95.5,-22.5 + parent: 2 + - uid: 11814 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,-1.5 - parent: 89 - - uid: 6614 + pos: -95.5,-23.5 + parent: 2 + - uid: 11815 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,0.5 - parent: 89 - - uid: 6615 + pos: -95.5,-24.5 + parent: 2 + - uid: 11816 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-0.5 - parent: 89 - - uid: 6616 + pos: -95.5,-20.5 + parent: 2 + - uid: 11817 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,-1.5 - parent: 89 - - uid: 6617 + pos: -93.5,-24.5 + parent: 2 + - uid: 11818 components: - type: Transform rot: 3.141592653589793 rad - pos: -59.5,-3.5 - parent: 89 - - uid: 6618 + pos: -93.5,-23.5 + parent: 2 + - uid: 11819 components: - type: Transform rot: 3.141592653589793 rad - pos: -62.5,-3.5 - parent: 89 - - uid: 6619 + pos: -93.5,-22.5 + parent: 2 + - uid: 11820 components: - type: Transform rot: 3.141592653589793 rad - pos: -63.5,-3.5 - parent: 89 - - uid: 6620 + pos: -93.5,-21.5 + parent: 2 + - uid: 11821 components: - type: Transform rot: 3.141592653589793 rad - pos: -66.5,-3.5 - parent: 89 - - uid: 6769 + pos: -93.5,-20.5 + parent: 2 + - uid: 11822 components: - type: Transform - pos: -50.5,2.5 - parent: 89 - - uid: 6771 + rot: 1.5707963267948966 rad + pos: -97.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11823 components: - type: Transform - pos: -49.5,2.5 - parent: 89 - - uid: 7388 + rot: 3.141592653589793 rad + pos: -100.5,-19.5 + parent: 2 + - uid: 11824 components: - type: Transform - pos: -89.5,0.5 - parent: 89 - - uid: 7389 + rot: 3.141592653589793 rad + pos: -98.5,-19.5 + parent: 2 + - uid: 11825 components: - type: Transform - pos: -88.5,0.5 - parent: 89 - - uid: 7391 + rot: 3.141592653589793 rad + pos: -96.5,-19.5 + parent: 2 + - uid: 11826 components: - type: Transform - pos: -96.5,7.5 - parent: 89 - - uid: 7392 + rot: 3.141592653589793 rad + pos: -94.5,-19.5 + parent: 2 + - uid: 11827 components: - type: Transform - pos: -96.5,8.5 - parent: 89 - - uid: 7393 + rot: 3.141592653589793 rad + pos: -92.5,-19.5 + parent: 2 + - uid: 11828 components: - type: Transform - pos: -93.5,11.5 - parent: 89 - - uid: 7410 + rot: -1.5707963267948966 rad + pos: -101.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11829 components: - type: Transform - pos: -106.5,-4.5 - parent: 89 - - uid: 7411 + rot: -1.5707963267948966 rad + pos: -99.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11830 components: - type: Transform - pos: -106.5,-3.5 - parent: 89 - - uid: 8531 + rot: -1.5707963267948966 rad + pos: -97.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11831 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,11.5 - parent: 89 - - uid: 8532 + rot: -1.5707963267948966 rad + pos: -95.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11832 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-7.5 - parent: 89 - - uid: 8579 + pos: -102.5,-20.5 + parent: 2 + - uid: 11833 components: - type: Transform rot: 3.141592653589793 rad - pos: -127.5,-6.5 - parent: 89 - - uid: 8580 + pos: -101.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11834 components: - type: Transform rot: 3.141592653589793 rad - pos: -118.5,17.5 - parent: 89 - - uid: 9419 - components: - - type: Transform - pos: -66.5,6.5 - parent: 89 - - uid: 9496 + pos: -87.5,-21.5 + parent: 2 + - uid: 11835 components: - type: Transform - pos: -65.5,6.5 - parent: 89 - - uid: 9498 + rot: 3.141592653589793 rad + pos: -99.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11836 components: - type: Transform - pos: -55.5,-4.5 - parent: 89 - - uid: 9499 + rot: 3.141592653589793 rad + pos: -100.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11837 components: - type: Transform - pos: -70.5,-4.5 - parent: 89 - - uid: 9523 + rot: 1.5707963267948966 rad + pos: -100.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 11838 components: - type: Transform - pos: -28.5,13.5 - parent: 89 - - uid: 9524 + rot: 1.5707963267948966 rad + pos: -98.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11839 components: - type: Transform - pos: -34.5,16.5 - parent: 89 - - uid: 9525 + rot: 1.5707963267948966 rad + pos: -96.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11840 components: - type: Transform - pos: -34.5,17.5 - parent: 89 - - uid: 9526 + rot: 1.5707963267948966 rad + pos: -94.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11841 components: - type: Transform - pos: -34.5,18.5 - parent: 89 - - uid: 9531 + pos: -97.5,-17.5 + parent: 2 + - uid: 11842 components: - type: Transform - pos: -46.5,16.5 - parent: 89 - - uid: 9532 + pos: -97.5,-18.5 + parent: 2 + - uid: 11843 components: - type: Transform - pos: -46.5,17.5 - parent: 89 - - uid: 9533 + pos: -95.5,-17.5 + parent: 2 + - uid: 11844 components: - type: Transform - pos: -46.5,18.5 - parent: 89 - - uid: 9534 + pos: -95.5,-18.5 + parent: 2 + - uid: 11845 components: - type: Transform - pos: -50.5,16.5 - parent: 89 - - uid: 9535 + pos: -93.5,-17.5 + parent: 2 + - uid: 11846 components: - type: Transform - pos: -50.5,17.5 - parent: 89 - - uid: 9536 + pos: -93.5,-18.5 + parent: 2 + - uid: 11847 components: - type: Transform - pos: -50.5,18.5 - parent: 89 - - uid: 9544 + pos: -102.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11848 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - uid: 9545 + pos: -102.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11849 components: - type: Transform - pos: -65.5,14.5 - parent: 89 - - uid: 9546 + rot: 1.5707963267948966 rad + pos: -92.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11850 components: - type: Transform - pos: -54.5,15.5 - parent: 89 - - uid: 9547 + rot: 1.5707963267948966 rad + pos: -90.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11851 components: - type: Transform - pos: -52.5,15.5 - parent: 89 - - uid: 9549 + rot: 1.5707963267948966 rad + pos: -122.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11852 components: - type: Transform - pos: -55.5,19.5 - parent: 89 - - uid: 9550 + rot: -1.5707963267948966 rad + pos: -108.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11853 components: - type: Transform - pos: -56.5,19.5 - parent: 89 - - uid: 9552 + rot: 1.5707963267948966 rad + pos: -98.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11854 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - uid: 9554 + pos: -95.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11855 components: - type: Transform - pos: -70.5,16.5 - parent: 89 - - uid: 9555 + pos: -95.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11856 components: - type: Transform - pos: -70.5,17.5 - parent: 89 - - uid: 9556 + rot: 1.5707963267948966 rad + pos: -120.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11857 components: - type: Transform - pos: -70.5,18.5 - parent: 89 - - uid: 9560 + rot: 3.141592653589793 rad + pos: -120.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11858 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - uid: 9561 + rot: 3.141592653589793 rad + pos: -91.5,-24.5 + parent: 2 + - uid: 11859 components: - type: Transform - pos: -70.5,10.5 - parent: 89 - - uid: 9562 + rot: 3.141592653589793 rad + pos: -91.5,-23.5 + parent: 2 + - uid: 11860 components: - type: Transform - pos: -76.5,8.5 - parent: 89 - - uid: 9563 + rot: 3.141592653589793 rad + pos: -91.5,-22.5 + parent: 2 + - uid: 11861 components: - type: Transform - pos: -76.5,9.5 - parent: 89 - - uid: 9571 + rot: 3.141592653589793 rad + pos: -91.5,-21.5 + parent: 2 + - uid: 11862 components: - type: Transform - pos: -9.5,-10.5 - parent: 89 - - uid: 9572 + rot: 3.141592653589793 rad + pos: -91.5,-20.5 + parent: 2 + - uid: 11863 components: - type: Transform - pos: -20.5,-9.5 - parent: 89 - - uid: 9573 + rot: 3.141592653589793 rad + pos: -89.5,-24.5 + parent: 2 + - uid: 11864 components: - type: Transform - pos: -22.5,-14.5 - parent: 89 - - uid: 9574 + rot: 3.141592653589793 rad + pos: -89.5,-23.5 + parent: 2 + - uid: 11865 components: - type: Transform - pos: -22.5,-9.5 - parent: 89 - - uid: 9575 + rot: 3.141592653589793 rad + pos: -89.5,-22.5 + parent: 2 + - uid: 11866 components: - type: Transform - pos: -20.5,-14.5 - parent: 89 - - uid: 9576 + rot: 3.141592653589793 rad + pos: -89.5,-21.5 + parent: 2 + - uid: 11867 components: - type: Transform - pos: -19.5,-14.5 - parent: 89 - - uid: 9577 + rot: 3.141592653589793 rad + pos: -89.5,-20.5 + parent: 2 + - uid: 11868 components: - type: Transform - pos: -18.5,-14.5 - parent: 89 - - uid: 10175 + rot: 1.5707963267948966 rad + pos: -91.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11869 components: - type: Transform - pos: -29.5,19.5 - parent: 89 - - uid: 10176 + rot: 3.141592653589793 rad + pos: -90.5,-22.5 + parent: 2 + - uid: 11870 components: - type: Transform - pos: -30.5,19.5 - parent: 89 - - uid: 10668 + rot: 1.5707963267948966 rad + pos: -88.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11871 components: - type: Transform - pos: 24.5,26.5 - parent: 89 - - uid: 10758 + rot: 3.141592653589793 rad + pos: -90.5,-21.5 + parent: 2 + - uid: 11872 components: - type: Transform rot: 3.141592653589793 rad - pos: -126.5,13.5 - parent: 89 - - uid: 11064 + pos: -90.5,-20.5 + parent: 2 + - uid: 11873 components: - type: Transform - pos: 26.5,30.5 - parent: 89 - - uid: 12128 + rot: -1.5707963267948966 rad + pos: -89.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11874 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-10.5 - parent: 89 - - uid: 12850 + pos: -91.5,-18.5 + parent: 2 + - uid: 11875 components: - type: Transform - pos: -8.5,7.5 - parent: 89 - - uid: 12851 + pos: -91.5,-17.5 + parent: 2 + - uid: 11876 components: - type: Transform - pos: -8.5,8.5 - parent: 89 - - uid: 14284 + pos: -89.5,-18.5 + parent: 2 + - uid: 11877 components: - type: Transform - pos: -11.5,10.5 - parent: 89 - - uid: 14285 + pos: -89.5,-17.5 + parent: 2 + - uid: 11878 components: - type: Transform - pos: -10.5,10.5 - parent: 89 - - uid: 14330 + pos: -87.5,-18.5 + parent: 2 + - uid: 11879 components: - type: Transform - pos: 22.5,30.5 - parent: 89 - - uid: 15047 + pos: -87.5,-17.5 + parent: 2 + - uid: 11880 components: - type: Transform - pos: -1.5,24.5 - parent: 89 - - uid: 15049 + pos: -88.5,-19.5 + parent: 2 + - uid: 11881 components: - type: Transform - pos: -2.5,24.5 - parent: 89 - - uid: 15050 + pos: -90.5,-19.5 + parent: 2 + - uid: 11882 components: - type: Transform - pos: -3.5,24.5 - parent: 89 - - uid: 15289 + pos: -86.5,-19.5 + parent: 2 + - uid: 11883 components: - type: Transform - pos: -127.5,20.5 - parent: 89 - - uid: 15772 + rot: -1.5707963267948966 rad + pos: -91.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11884 components: - type: Transform - pos: -82.5,11.5 - parent: 89 - - uid: 15853 + rot: -1.5707963267948966 rad + pos: -87.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11885 components: - type: Transform - pos: -81.5,11.5 - parent: 89 - - uid: 15854 + rot: 3.141592653589793 rad + pos: -81.5,-22.5 + parent: 2 + - uid: 11886 components: - type: Transform - pos: -80.5,11.5 - parent: 89 - - uid: 16783 + rot: 3.141592653589793 rad + pos: -80.5,-22.5 + parent: 2 + - uid: 11887 components: - type: Transform - pos: 35.5,23.5 - parent: 89 - - uid: 16784 + rot: 3.141592653589793 rad + pos: -79.5,-22.5 + parent: 2 + - uid: 11888 components: - type: Transform - pos: 35.5,22.5 - parent: 89 - - uid: 16787 + rot: 3.141592653589793 rad + pos: -81.5,-21.5 + parent: 2 + - uid: 11889 components: - type: Transform - pos: -18.5,21.5 - parent: 89 - - uid: 16788 + rot: 3.141592653589793 rad + pos: -80.5,-21.5 + parent: 2 + - uid: 11890 components: - type: Transform - pos: -18.5,20.5 - parent: 89 - - uid: 16789 + rot: 3.141592653589793 rad + pos: -79.5,-21.5 + parent: 2 + - uid: 11891 components: - type: Transform - pos: -37.5,26.5 - parent: 89 - - uid: 16790 + rot: 3.141592653589793 rad + pos: -81.5,-20.5 + parent: 2 + - uid: 11892 components: - type: Transform - pos: -22.5,26.5 - parent: 89 - - uid: 16791 + rot: 3.141592653589793 rad + pos: -80.5,-20.5 + parent: 2 + - uid: 11893 components: - type: Transform - pos: -51.5,21.5 - parent: 89 - - uid: 16792 + rot: 3.141592653589793 rad + pos: -79.5,-20.5 + parent: 2 + - uid: 11894 components: - type: Transform - pos: -51.5,20.5 - parent: 89 - - uid: 16793 + pos: -79.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF9900FF' + - uid: 11895 components: - type: Transform - pos: -41.5,21.5 - parent: 89 - - uid: 16794 + rot: -1.5707963267948966 rad + pos: -85.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11896 components: - type: Transform - pos: -41.5,20.5 - parent: 89 - - uid: 16795 + pos: -136.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11897 components: - type: Transform - pos: -53.5,27.5 - parent: 89 - - uid: 16802 + rot: -1.5707963267948966 rad + pos: -82.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11898 components: - type: Transform - pos: -115.5,18.5 - parent: 89 - - uid: 16803 + rot: -1.5707963267948966 rad + pos: -81.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11899 components: - type: Transform - pos: -115.5,17.5 - parent: 89 - - uid: 16806 + rot: 3.141592653589793 rad + pos: -80.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11900 components: - type: Transform - pos: -77.5,-8.5 - parent: 89 - - uid: 16807 + rot: 3.141592653589793 rad + pos: -80.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#FFD800FF' + - uid: 11901 components: - type: Transform - pos: -77.5,-9.5 - parent: 89 - - uid: 16808 + pos: -78.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11902 components: - type: Transform - pos: -44.5,-11.5 - parent: 89 - - uid: 16809 + rot: -1.5707963267948966 rad + pos: -77.5,-16.5 + parent: 2 + - uid: 11903 components: - type: Transform - pos: -43.5,-11.5 - parent: 89 - - uid: 16810 + rot: 3.141592653589793 rad + pos: -96.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11904 components: - type: Transform - pos: -42.5,-15.5 - parent: 89 - - uid: 16811 + rot: -1.5707963267948966 rad + pos: -80.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11905 components: - type: Transform - pos: -42.5,-16.5 - parent: 89 - - uid: 16812 + rot: 3.141592653589793 rad + pos: -82.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11906 components: - type: Transform - pos: -42.5,-17.5 - parent: 89 - - uid: 16813 + rot: 3.141592653589793 rad + pos: -82.5,-16.5 + parent: 2 + - type: AtmosPipeColor + color: '#947507FF' + - uid: 11907 components: - type: Transform - pos: -31.5,-15.5 - parent: 89 - - uid: 16814 + rot: -1.5707963267948966 rad + pos: -100.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11908 components: - type: Transform - pos: -31.5,-16.5 - parent: 89 - - uid: 16815 + rot: 3.141592653589793 rad + pos: -88.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11909 components: - type: Transform - pos: -31.5,-17.5 - parent: 89 - - uid: 16816 + rot: -1.5707963267948966 rad + pos: -0.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11910 components: - type: Transform - pos: -26.5,-18.5 - parent: 89 - - uid: 16817 + rot: 3.141592653589793 rad + pos: -95.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11911 components: - type: Transform - pos: -25.5,-18.5 - parent: 89 - - uid: 16818 + rot: 1.5707963267948966 rad + pos: -102.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11912 components: - type: Transform - pos: -24.5,-18.5 - parent: 89 - - uid: 16819 + rot: 1.5707963267948966 rad + pos: -101.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11913 components: - type: Transform - pos: -21.5,-25.5 - parent: 89 - - uid: 16820 + rot: -1.5707963267948966 rad + pos: 50.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11914 components: - type: Transform - pos: -13.5,-27.5 - parent: 89 - - uid: 16821 + rot: 3.141592653589793 rad + pos: -95.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11915 components: - type: Transform - pos: -13.5,-26.5 - parent: 89 - - uid: 16822 + rot: 3.141592653589793 rad + pos: -96.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11916 components: - type: Transform - pos: -13.5,-25.5 - parent: 89 - - uid: 16823 + rot: 3.141592653589793 rad + pos: -96.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11917 components: - type: Transform - pos: -12.5,-29.5 - parent: 89 - - uid: 16824 + rot: 3.141592653589793 rad + pos: -95.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11918 components: - type: Transform - pos: -11.5,-29.5 - parent: 89 - - uid: 16825 + rot: 1.5707963267948966 rad + pos: -97.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11919 components: - type: Transform - pos: 6.5,-17.5 - parent: 89 - - uid: 16826 + rot: 3.141592653589793 rad + pos: -95.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11920 components: - type: Transform - pos: 7.5,-17.5 - parent: 89 - - uid: 16827 + rot: 1.5707963267948966 rad + pos: -96.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11921 components: - type: Transform - pos: 5.5,-16.5 - parent: 89 - - uid: 16828 + rot: 1.5707963267948966 rad + pos: -97.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11922 components: - type: Transform - pos: 5.5,-15.5 - parent: 89 - - uid: 16829 + rot: 3.141592653589793 rad + pos: -103.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11923 components: - type: Transform - pos: 13.5,-11.5 - parent: 89 - - uid: 16830 + rot: 1.5707963267948966 rad + pos: -98.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11924 components: - type: Transform - pos: -16.5,15.5 - parent: 89 - - uid: 16831 + rot: 1.5707963267948966 rad + pos: -98.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11925 components: - type: Transform - pos: -15.5,15.5 - parent: 89 - - uid: 16832 + rot: 1.5707963267948966 rad + pos: -99.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11926 components: - type: Transform - pos: -14.5,15.5 - parent: 89 - - uid: 16833 + rot: 1.5707963267948966 rad + pos: -105.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11927 components: - type: Transform - pos: -76.5,18.5 - parent: 89 - - uid: 16860 + rot: 1.5707963267948966 rad + pos: -106.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11928 components: - type: Transform - pos: -82.5,1.5 - parent: 89 - - uid: 16861 + rot: 1.5707963267948966 rad + pos: -106.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11929 components: - type: Transform - pos: -81.5,1.5 - parent: 89 - - uid: 19749 + rot: 1.5707963267948966 rad + pos: -102.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11930 components: - type: Transform - pos: -57.5,44.5 - parent: 89 - - uid: 19750 + rot: 1.5707963267948966 rad + pos: -104.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11931 components: - type: Transform - pos: -57.5,45.5 - parent: 89 - - uid: 19751 + rot: 1.5707963267948966 rad + pos: -105.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11932 components: - type: Transform - pos: -56.5,46.5 - parent: 89 - - uid: 19752 + rot: 3.141592653589793 rad + pos: -103.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11933 components: - type: Transform - pos: -55.5,46.5 - parent: 89 - - uid: 19753 + rot: 3.141592653589793 rad + pos: -103.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11934 components: - type: Transform - pos: -53.5,44.5 - parent: 89 - - uid: 19754 + rot: 3.141592653589793 rad + pos: -103.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11935 components: - type: Transform - pos: -53.5,40.5 - parent: 89 - - uid: 19755 + rot: 3.141592653589793 rad + pos: -103.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11936 components: - type: Transform - pos: -55.5,37.5 - parent: 89 - - uid: 19756 + rot: 1.5707963267948966 rad + pos: -103.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11937 components: - type: Transform - pos: -56.5,37.5 - parent: 89 - - uid: 19757 + rot: 3.141592653589793 rad + pos: -103.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11938 components: - type: Transform - pos: -54.5,35.5 - parent: 89 - - uid: 19758 + rot: 1.5707963267948966 rad + pos: -104.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11939 components: - type: Transform - pos: -58.5,35.5 - parent: 89 - - uid: 19759 + rot: 1.5707963267948966 rad + pos: -101.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11940 components: - type: Transform - pos: -58.5,33.5 - parent: 89 - - uid: 19760 + rot: 1.5707963267948966 rad + pos: -100.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11941 components: - type: Transform - pos: -52.5,33.5 - parent: 89 - - uid: 20010 + rot: -1.5707963267948966 rad + pos: -103.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 11942 components: - type: Transform - pos: 14.5,31.5 - parent: 89 - - uid: 20011 + rot: 3.141592653589793 rad + pos: -99.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11943 components: - type: Transform - pos: 13.5,31.5 - parent: 89 - - uid: 20012 + rot: 3.141592653589793 rad + pos: -99.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11944 components: - type: Transform - pos: 14.5,28.5 - parent: 89 - - uid: 20013 + rot: 3.141592653589793 rad + pos: -99.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11945 components: - type: Transform - pos: 13.5,28.5 - parent: 89 - - uid: 20018 + rot: 3.141592653589793 rad + pos: -95.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11946 components: - type: Transform - pos: 14.5,24.5 - parent: 89 - - uid: 20019 + rot: 3.141592653589793 rad + pos: -96.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11947 components: - type: Transform - pos: 13.5,24.5 - parent: 89 - - uid: 20020 + rot: 3.141592653589793 rad + pos: -96.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11948 components: - type: Transform - pos: 14.5,16.5 - parent: 89 - - uid: 20021 + rot: 3.141592653589793 rad + pos: -96.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11949 components: - type: Transform - pos: 13.5,16.5 - parent: 89 - - uid: 20111 + rot: 3.141592653589793 rad + pos: -95.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11950 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 89 - - uid: 20112 + rot: 3.141592653589793 rad + pos: -95.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 89 - - uid: 20122 + rot: 3.141592653589793 rad + pos: -95.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,12.5 - parent: 89 - - uid: 20123 + rot: 3.141592653589793 rad + pos: -95.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 - - uid: 20124 + rot: 3.141592653589793 rad + pos: -95.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,11.5 - parent: 89 - - uid: 20127 + rot: 3.141592653589793 rad + pos: -95.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,15.5 - parent: 89 - - uid: 20128 + rot: 1.5707963267948966 rad + pos: -94.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11956 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,15.5 - parent: 89 - - uid: 20129 + rot: 3.141592653589793 rad + pos: -95.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11957 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,33.5 - parent: 89 - - uid: 20130 + rot: 3.141592653589793 rad + pos: -95.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11958 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,15.5 - parent: 89 - - uid: 20131 + rot: 3.141592653589793 rad + pos: -94.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,13.5 - parent: 89 - - uid: 20132 + rot: 3.141592653589793 rad + pos: -94.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11960 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,12.5 - parent: 89 - - uid: 20134 + rot: 3.141592653589793 rad + pos: -94.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,14.5 - parent: 89 - - uid: 20136 + rot: 3.141592653589793 rad + pos: -94.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11962 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,15.5 - parent: 89 - - uid: 20137 + rot: 3.141592653589793 rad + pos: -94.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11963 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,21.5 - parent: 89 - - uid: 20138 + rot: 3.141592653589793 rad + pos: -94.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 89 - - uid: 20145 + rot: 3.141592653589793 rad + pos: -94.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,38.5 - parent: 89 - - uid: 20161 + rot: 3.141592653589793 rad + pos: -94.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11966 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-37.5 - parent: 89 - - uid: 20162 + rot: 3.141592653589793 rad + pos: -94.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11967 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-42.5 - parent: 89 - - uid: 20163 + rot: 3.141592653589793 rad + pos: -94.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11968 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-42.5 - parent: 89 - - uid: 20164 + pos: -94.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11969 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-32.5 - parent: 89 - - uid: 20165 + pos: -94.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11970 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 89 - - uid: 20166 + pos: -95.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11971 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-23.5 - parent: 89 - - uid: 20167 + pos: -95.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11972 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-23.5 - parent: 89 - - uid: 20168 + pos: -94.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11973 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-23.5 - parent: 89 - - uid: 20169 + pos: -92.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11974 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-26.5 - parent: 89 - - uid: 20170 + pos: -93.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11975 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-24.5 - parent: 89 - - uid: 20171 + pos: -97.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11976 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-19.5 - parent: 89 - - uid: 20172 + pos: -94.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11977 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-22.5 - parent: 89 - - uid: 20173 + pos: -93.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11978 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-35.5 - parent: 89 - - uid: 20174 + pos: -92.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11979 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,-16.5 - parent: 89 - - uid: 20175 + pos: -90.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11980 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 89 - - uid: 20177 + pos: -89.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-17.5 - parent: 89 - - uid: 21683 + rot: 3.141592653589793 rad + pos: -88.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11982 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 21627 - - uid: 22434 + pos: -89.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11983 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-20.5 - parent: 89 - - uid: 22435 + rot: 3.141592653589793 rad + pos: -99.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11984 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-19.5 - parent: 89 - - uid: 22436 + pos: -96.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11985 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 89 - - uid: 22438 + pos: -96.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 89 - - uid: 22440 + rot: 3.141592653589793 rad + pos: -97.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11987 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-21.5 - parent: 89 - - uid: 22441 + rot: 3.141592653589793 rad + pos: -97.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-20.5 - parent: 89 - - uid: 22442 + rot: 3.141592653589793 rad + pos: -97.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-22.5 - parent: 89 - - uid: 22443 + rot: 3.141592653589793 rad + pos: -97.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-25.5 - parent: 89 - - uid: 22444 + rot: -1.5707963267948966 rad + pos: -101.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 52.5,-20.5 - parent: 89 - - uid: 22445 + pos: -98.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11992 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-23.5 - parent: 89 - - uid: 22446 + pos: -99.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11993 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 89 - - uid: 22463 + pos: -100.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 89 - - uid: 22464 + pos: -100.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11995 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-23.5 - parent: 89 - - uid: 22465 + pos: -101.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 57.5,-18.5 - parent: 89 - - uid: 22467 - components: - - type: Transform - pos: 43.5,-26.5 - parent: 89 - - uid: 22468 - components: - - type: Transform - pos: 42.5,-26.5 - parent: 89 - - uid: 22471 - components: - - type: Transform - pos: 45.5,-26.5 - parent: 89 - - uid: 25418 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-22.5 - parent: 89 - - uid: 25672 + pos: -102.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11997 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-18.5 - parent: 89 -- proto: Fireplace - entities: - - uid: 22017 + pos: -103.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 11998 components: - type: Transform - pos: 56.5,-24.5 - parent: 89 -- proto: FlashlightLantern - entities: - - uid: 10253 + pos: -102.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 11999 components: - type: Transform - pos: -25.593971,25.761902 - parent: 89 - - uid: 10335 + pos: -104.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.783228,-16.650192 - parent: 89 - - uid: 16755 + pos: -104.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12001 components: - type: Transform - pos: -113.51567,-5.446479 - parent: 89 - - uid: 16756 + pos: -104.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12002 components: - type: Transform - pos: -99.97467,2.4873905 - parent: 89 - - uid: 16757 + pos: -104.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12003 components: - type: Transform - pos: -91.41225,5.4460807 - parent: 89 - - uid: 16758 + pos: -102.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12004 components: - type: Transform - pos: -89.445175,6.290927 - parent: 89 - - uid: 16759 + pos: -102.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12005 components: - type: Transform - pos: -57.67143,12.341514 - parent: 89 - - uid: 16762 + pos: -102.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12006 components: - type: Transform - pos: -34.97496,5.4803944 - parent: 89 - - uid: 23754 + rot: -1.5707963267948966 rad + pos: -103.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12007 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23755 + rot: 1.5707963267948966 rad + pos: -104.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12008 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23756 + rot: 1.5707963267948966 rad + pos: -105.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12009 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23764 + rot: 1.5707963267948966 rad + pos: -106.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12010 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23765 + rot: 1.5707963267948966 rad + pos: -105.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12011 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23766 + rot: 1.5707963267948966 rad + pos: -107.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12012 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FlashlightSeclite - entities: - - uid: 5340 + rot: 1.5707963267948966 rad + pos: -106.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12013 components: - type: Transform - pos: 25.487007,-6.1841216 - parent: 89 - - uid: 5343 + rot: 1.5707963267948966 rad + pos: -108.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12014 components: - type: Transform - pos: 25.502632,-6.4341216 - parent: 89 - - uid: 5345 + pos: -109.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12015 components: - type: Transform - pos: 25.518257,-6.7153716 - parent: 89 -- proto: FloodlightBroken - entities: - - uid: 14650 + pos: -109.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12016 components: - type: Transform - pos: -132.48235,20.537903 - parent: 89 -- proto: FloorDrain - entities: - - uid: 716 + pos: -109.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12017 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 3562 + pos: -109.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12018 components: - type: Transform - pos: -13.5,-9.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 4979 + pos: -109.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12019 components: - type: Transform - pos: -21.5,-22.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 5790 + pos: -107.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12020 components: - type: Transform - pos: -73.5,-12.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 6152 + pos: -107.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12021 components: - type: Transform - pos: 6.5,17.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 8559 + rot: -1.5707963267948966 rad + pos: -24.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12022 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 9189 + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12023 components: - type: Transform - pos: 7.5,-28.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 9537 + rot: -1.5707963267948966 rad + pos: -18.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12024 components: - type: Transform - pos: -37.5,8.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 16918 + pos: -107.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,7.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 19673 + pos: -107.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12026 components: - type: Transform - pos: 10.5,17.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 20744 + pos: -107.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12027 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 20982 + pos: -107.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,17.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21498 + pos: -107.5,11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21499 + pos: -107.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21500 + pos: -107.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12031 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 21501 + pos: -107.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12032 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,25.5 - parent: 89 - - type: Fixtures - fixtures: {} - - uid: 25382 + rot: -1.5707963267948966 rad + pos: -20.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12033 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-26.5 - parent: 89 - - type: Fixtures - fixtures: {} -- proto: FloorTileItemGold - entities: - - uid: 20968 + rot: -1.5707963267948966 rad + pos: -20.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12034 components: - type: Transform - pos: 49.707867,-4.473658 - parent: 89 - - type: Item - size: 150 - - type: Stack - count: 30 -- proto: FoamCrossbow - entities: - - uid: 24 + pos: -109.5,12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12035 components: - type: Transform - pos: 4.5889907,-1.4036782 - parent: 89 - - uid: 21742 + pos: -109.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12036 components: - type: Transform - pos: 50.491665,-18.456736 - parent: 89 - - uid: 21745 + rot: -1.5707963267948966 rad + pos: -108.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12037 components: - type: Transform - pos: 48.559834,-21.37915 - parent: 89 - - uid: 21746 + rot: -1.5707963267948966 rad + pos: -109.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12038 components: - type: Transform - pos: 49.47713,-21.360804 - parent: 89 - - uid: 21823 + rot: 3.141592653589793 rad + pos: -109.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12039 components: - type: Transform - pos: 50.741665,-18.62861 - parent: 89 -- proto: FoodBadRecipe - entities: - - uid: 732 + rot: 3.141592653589793 rad + pos: -109.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12040 components: - type: Transform - pos: -50.536972,43.736313 - parent: 89 -- proto: FoodBakedBunHoney - entities: - - uid: 3663 + rot: 3.141592653589793 rad + pos: -107.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12041 components: - type: Transform - pos: 2.7143266,17.792904 - parent: 89 - - uid: 3664 + pos: -109.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12042 components: - type: Transform - pos: 2.6987016,19.480404 - parent: 89 - - uid: 17031 + rot: 3.141592653589793 rad + pos: -107.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12043 components: - type: Transform - pos: 2.6674516,15.464779 - parent: 89 - - uid: 21541 + rot: 3.141592653589793 rad + pos: -109.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12044 components: - type: Transform - pos: 2.6987016,21.792904 - parent: 89 -- proto: FoodBakedNugget - entities: - - uid: 17190 + rot: 3.141592653589793 rad + pos: -109.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12045 components: - type: Transform - pos: 33.613174,13.64916 - parent: 89 - - type: RandomSprite - selected: - enum.DamageStateVisualLayers.Base: - lizard: null - - uid: 17203 + rot: 3.141592653589793 rad + pos: -107.5,0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12046 components: - type: Transform - pos: 33.394424,13.508535 - parent: 89 - - type: RandomSprite - selected: - enum.DamageStateVisualLayers.Base: - corgi: null - - uid: 25854 + rot: 3.141592653589793 rad + pos: -107.5,-0.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12047 components: - type: Transform - pos: -25.79127,16.712238 - parent: 89 -- proto: FoodBakedWaffleRoffle - entities: - - uid: 19516 + rot: 3.141592653589793 rad + pos: -109.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12048 components: - type: Transform - pos: 65.51178,-1.3788319 - parent: 89 -- proto: FoodBanana - entities: - - uid: 7434 + rot: 3.141592653589793 rad + pos: -107.5,-1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12049 components: - type: Transform - pos: -33.28767,-3.4614453 - parent: 89 - - uid: 7435 + rot: 3.141592653589793 rad + pos: -109.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12050 components: - type: Transform - pos: -33.428295,-3.4458203 - parent: 89 - - uid: 7445 + rot: 3.141592653589793 rad + pos: -109.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12051 components: - type: Transform - pos: -33.56892,-3.4077 - parent: 89 -- proto: FoodBoxDonkpocket - entities: - - uid: 3458 + rot: 3.141592653589793 rad + pos: -107.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12052 components: - type: Transform - pos: 12.448042,-0.7995776 - parent: 89 - - uid: 25853 + rot: 3.141592653589793 rad + pos: -107.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12053 components: - type: Transform - pos: -25.66152,16.638733 - parent: 89 -- proto: FoodBoxDonkpocketDink - entities: - - uid: 20806 + pos: -100.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12054 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.397133,52.459045 - parent: 89 - - uid: 23959 + pos: -107.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12055 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBoxDonkpocketHonk - entities: - - uid: 2924 + pos: -109.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12056 components: - type: Transform - pos: 33.34177,-5.2602663 - parent: 89 - - uid: 3850 + pos: -109.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12057 components: - type: Transform - pos: 12.354292,-0.4714526 - parent: 89 - - uid: 6450 + pos: -109.5,14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12058 components: - type: Transform - pos: 32.857395,-5.2758913 - parent: 89 -- proto: FoodBoxDonkpocketPizza - entities: - - uid: 23960 + pos: -109.5,16.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12059 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23961 + pos: -109.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12060 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodBoxDonut - entities: - - uid: 4924 + pos: -107.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12061 components: - type: Transform - pos: 7.6550026,-12.300071 - parent: 89 - - uid: 5635 + pos: -107.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12062 components: - type: Transform - pos: -16.490608,8.670728 - parent: 89 -- proto: FoodBoxNugget - entities: - - uid: 19518 + pos: -107.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12063 components: - type: Transform - pos: 34.788673,13.833639 - parent: 89 -- proto: FoodBoxPizzaFilled - entities: - - uid: 14874 + pos: -109.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12064 components: - type: Transform - pos: -12.436198,-36.45387 - parent: 89 -- proto: FoodBreadPlain - entities: - - uid: 14648 + pos: -107.5,20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12065 components: - type: Transform - pos: -132.48235,23.069153 - parent: 89 -- proto: FoodBreadVolcanic - entities: - - uid: 3010 + pos: -109.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12066 components: - - type: MetaData - desc: как всегда.... с пивом. - name: syxapik - type: Transform - pos: 33.445137,29.596706 - parent: 89 - - uid: 21112 + pos: -107.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12067 components: - type: Transform - pos: 38.960247,38.39267 - parent: 89 -- proto: FoodBreadVolcanicSlice - entities: - - uid: 21113 + pos: -109.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12068 components: - type: Transform - pos: 39.72515,38.344387 - parent: 89 -- proto: FoodBurgerBacon - entities: - - uid: 225 + pos: -109.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12069 components: - type: Transform - pos: 4.495135,-18.356115 - parent: 89 -- proto: FoodBurgerEmpowered - entities: - - uid: 18059 + pos: -107.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12070 components: - type: Transform - pos: -2.5179825,-48.507328 - parent: 89 -- proto: FoodBurgerMime - entities: - - uid: 4267 + pos: -109.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12071 components: - type: Transform - pos: -33.513412,-9.430157 - parent: 89 -- proto: FoodBurgerRobot - entities: - - uid: 19707 + pos: -107.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12072 components: - type: Transform - pos: 17.72694,-1.3729725 - parent: 89 -- proto: FoodBurgerSpell - entities: - - uid: 18056 + rot: -1.5707963267948966 rad + pos: -108.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12073 components: - type: Transform - pos: -6.535371,-48.554203 - parent: 89 -- proto: FoodCakeChocolateSlice - entities: - - uid: 19973 + rot: -1.5707963267948966 rad + pos: -107.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12074 components: - type: Transform - pos: 25.538666,39.596962 - parent: 89 -- proto: FoodCartCold - entities: - - uid: 21082 + rot: -1.5707963267948966 rad + pos: -106.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12075 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 89 -- proto: FoodCartHot - entities: - - uid: 5321 + rot: -1.5707963267948966 rad + pos: -106.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12076 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 89 -- proto: FoodCheeseSlice - entities: - - uid: 14983 + pos: -101.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12077 components: - type: Transform - pos: -13.634424,-2.4830256 - parent: 89 -- proto: FoodCondimentBottleEnzyme - entities: - - uid: 14977 + rot: -1.5707963267948966 rad + pos: -105.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12078 components: - type: Transform - pos: -13.176779,-2.1402254 - parent: 89 -- proto: FoodCondimentPacketFrostoil - entities: - - uid: 4527 + rot: -1.5707963267948966 rad + pos: -105.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12079 components: - type: Transform - pos: -13.0428295,-0.38803613 - parent: 89 -- proto: FoodDonkpocketHonkWarm - entities: - - uid: 21871 + rot: -1.5707963267948966 rad + pos: -103.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12080 components: - type: Transform - pos: 51.573746,-33.424797 - parent: 89 -- proto: FoodDonutChaos - entities: - - uid: 8156 + rot: -1.5707963267948966 rad + pos: -104.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12081 components: - type: Transform - pos: 3.514162,28.464619 - parent: 89 -- proto: FoodDonutJellySweetpea - entities: - - uid: 7238 + rot: -1.5707963267948966 rad + pos: -104.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12082 components: - type: Transform - pos: -105.04697,21.522427 - parent: 89 -- proto: FoodFrozenPopsicleTrash - entities: - - uid: 10248 + rot: -1.5707963267948966 rad + pos: -103.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12083 components: - type: Transform - pos: -34.15423,24.30383 - parent: 89 -- proto: FoodMeatFiestaKebab - entities: - - uid: 16961 + rot: -1.5707963267948966 rad + pos: -102.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12084 components: - type: Transform - pos: -0.5881367,-28.311087 - parent: 89 - - uid: 21118 + rot: -1.5707963267948966 rad + pos: -102.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12085 components: - type: Transform - pos: 38.284306,38.58346 - parent: 89 -- proto: FoodMeatRatdoubleKebab - entities: - - uid: 21817 + rot: -1.5707963267948966 rad + pos: -101.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12086 components: - type: Transform - pos: 48.413338,-28.104477 - parent: 89 - - uid: 21818 + rot: -1.5707963267948966 rad + pos: -99.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12087 components: - type: Transform - pos: 48.569588,-28.245102 - parent: 89 -- proto: FoodMeatRotten - entities: - - uid: 21104 + rot: -1.5707963267948966 rad + pos: -100.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12088 components: - type: Transform - pos: 40.47344,22.541035 - parent: 89 -- proto: FoodMeatXeno - entities: - - uid: 14643 + rot: -1.5707963267948966 rad + pos: -100.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12089 components: - type: Transform - pos: -129.90422,22.600403 - parent: 89 - - uid: 14644 + rot: 3.141592653589793 rad + pos: -99.5,25.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12090 components: - type: Transform - pos: -129.31047,21.819153 - parent: 89 -- proto: FoodNoodlesBoiled - entities: - - uid: 20914 + rot: 3.141592653589793 rad + pos: -99.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12091 components: - type: Transform - pos: -89.909225,-14.737919 - parent: 89 - - uid: 21277 + rot: 3.141592653589793 rad + pos: -99.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12092 components: - type: Transform - pos: -83.846725,-17.472294 - parent: 89 - - uid: 21278 + rot: 3.141592653589793 rad + pos: -98.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12093 components: - type: Transform - pos: -96.61855,-17.472294 - parent: 89 -- proto: FoodPieBananaCream - entities: - - uid: 7439 + rot: 3.141592653589793 rad + pos: -98.5,23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12094 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7440 + rot: 3.141592653589793 rad + pos: -98.5,22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12095 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7441 + pos: -107.5,26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12096 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7442 + pos: -88.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12097 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7443 + pos: -89.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12098 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 - - uid: 7444 + pos: -89.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12099 components: - type: Transform - pos: -33.522045,-3.360825 - parent: 89 -- proto: FoodPineapple - entities: - - uid: 3297 + pos: -89.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12100 components: - - type: MetaData - desc: Ммм, секретный. - name: секретный ананас - type: Transform - pos: 47.477936,-8.598001 - parent: 89 - - type: SolutionContainerManager - solutions: - food: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 16 - name: null - reagents: - - data: null - ReagentId: Ichor - Quantity: 16 -- proto: FoodPizzaDank - entities: - - uid: 23962 + pos: -88.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12101 components: - type: Transform - parent: 23953 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: FoodPizzaSassysageSlice - entities: - - uid: 16936 + pos: -88.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12102 components: - type: Transform - pos: 4.4923315,-19.911255 - parent: 89 - - uid: 16937 + pos: -88.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12103 components: - type: Transform - pos: 4.3237543,-20.826183 - parent: 89 -- proto: FoodPlate - entities: - - uid: 7263 + pos: -88.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12104 components: - type: Transform - pos: -96.62795,-17.441044 - parent: 89 - - uid: 19910 + pos: -88.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12105 components: - type: Transform - pos: -89.94045,-14.659794 - parent: 89 - - uid: 20854 + pos: -87.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12106 components: - type: Transform - pos: -83.877975,-17.441044 - parent: 89 -- proto: FoodPotato - entities: - - uid: 13958 + rot: -1.5707963267948966 rad + pos: -84.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12107 components: - type: Transform - pos: -7.216362,-5.633604 - parent: 89 -- proto: FoodShakerPepper - entities: - - uid: 4849 + pos: -87.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12108 components: - type: Transform - pos: -19.430532,-2.9313784 - parent: 89 - - uid: 21086 + pos: -87.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12109 components: - type: Transform - pos: -13.379187,-2.4313784 - parent: 89 -- proto: FoodShakerSalt - entities: - - uid: 4973 + rot: -1.5707963267948966 rad + pos: -84.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12110 components: - type: Transform - pos: -22.993032,-6.4157534 - parent: 89 - - uid: 21085 + rot: -1.5707963267948966 rad + pos: -83.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12111 components: - type: Transform - pos: -13.332312,-2.7907534 - parent: 89 -- proto: FoodSnackChocolate - entities: - - uid: 138 + rot: -1.5707963267948966 rad + pos: -81.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12112 components: - type: Transform - pos: 21.70988,31.555183 - parent: 89 - - uid: 6333 + pos: -87.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12113 components: - type: Transform - pos: 27.33488,31.555183 - parent: 89 -- proto: FoodSnackEnergy - entities: - - uid: 16982 + rot: -1.5707963267948966 rad + pos: -85.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12114 components: - type: Transform - pos: -9.953323,-16.541403 - parent: 89 -- proto: FoodSoupClown - entities: - - uid: 7275 + rot: -1.5707963267948966 rad + pos: -87.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12115 components: - type: Transform - pos: -29.498123,-17.317171 - parent: 89 -- proto: FoodSoupSlime - entities: - - uid: 19514 + rot: -1.5707963267948966 rad + pos: -85.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12116 components: - type: Transform - pos: 63.43366,0.63679314 - parent: 89 -- proto: FoodSpaceshroom - entities: - - uid: 15098 + rot: -1.5707963267948966 rad + pos: -86.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12117 components: - type: Transform - pos: -14.440111,21.490667 - parent: 89 -- proto: FoodTartGapple - entities: - - uid: 20868 + rot: -1.5707963267948966 rad + pos: -86.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12118 components: - type: Transform - pos: 50.58392,-5.426783 - parent: 89 -- proto: FoodTinBeans - entities: - - uid: 7617 + rot: -1.5707963267948966 rad + pos: -82.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12119 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.222778,36.44787 - parent: 89 -- proto: Football - entities: - - uid: 18199 + rot: -1.5707963267948966 rad + pos: -83.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12120 components: - type: Transform - pos: -10.490348,-38.553753 - parent: 89 -- proto: ForkPlastic - entities: - - uid: 19996 + rot: -1.5707963267948966 rad + pos: -80.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12121 components: - type: Transform rot: -1.5707963267948966 rad - pos: 18.511847,21.85918 - parent: 89 -- proto: GasCanisterBrokenBase - entities: - - uid: 18212 + pos: -80.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12122 components: - type: Transform - pos: -28.5,-20.5 - parent: 89 -- proto: GasFilter - entities: - - uid: 1455 + rot: -1.5707963267948966 rad + pos: -79.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12123 components: - - type: MetaData - name: фильтр О2 - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -79.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1456 + color: '#4169E1FF' + - uid: 12124 components: - - type: MetaData - name: фильтр N2 - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -78.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1457 + color: '#DC143CFF' + - uid: 12125 components: - - type: MetaData - name: фильтр CO2 - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: 3.141592653589793 rad + pos: -66.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1459 + color: '#4169E1FF' + - uid: 12126 components: - - type: MetaData - name: фильтр водяного пара - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -74.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1460 + color: '#DC143CFF' + - uid: 12127 components: - - type: MetaData - name: фильтр плазмы - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -73.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2103 + color: '#4169E1FF' + - uid: 12128 components: - - type: MetaData - name: фильтр N2O - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -72.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2104 + color: '#DC143CFF' + - uid: 12129 components: - - type: MetaData - name: фильтр трития - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -72.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2105 + color: '#4169E1FF' + - uid: 12130 components: - - type: MetaData - name: фильтр газа - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -71.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 8782 + color: '#4169E1FF' + - uid: 12131 components: - type: Transform - pos: -121.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8860 + rot: -1.5707963267948966 rad + pos: -71.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -130.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16361 + pos: -70.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16363 + pos: -64.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasMinerCarbonDioxide - entities: - - uid: 1135 + rot: -1.5707963267948966 rad + pos: -70.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12135 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasMinerNitrogen - entities: - - uid: 1112 + pos: -69.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12136 components: - type: Transform - pos: -98.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24015 + rot: -1.5707963267948966 rad + pos: -69.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: GasMinerOxygen - entities: - - uid: 19588 + rot: -1.5707963267948966 rad + pos: -68.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12138 components: - type: Transform - pos: -100.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24016 + rot: -1.5707963267948966 rad + pos: -67.5,9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: GasMinerWaterVapor - entities: - - uid: 1136 + rot: 3.141592653589793 rad + pos: -65.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasMixer - entities: - - uid: 1429 + rot: 3.141592653589793 rad + pos: -66.5,6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12141 components: - - type: MetaData - name: смеситель воздушной смеси - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-13.5 - parent: 89 - - type: GasMixer - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 + rot: 3.141592653589793 rad + pos: -65.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1495 + color: '#DC143CFF' + - uid: 12142 components: - - type: MetaData - name: микс O2, N2 - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -64.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1496 + color: '#4169E1FF' + - uid: 12143 components: - - type: MetaData - name: микс CO2 - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -63.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1497 + color: '#DC143CFF' + - uid: 12144 components: - - type: MetaData - name: микс водяного пара - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -66.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1498 + color: '#DC143CFF' + - uid: 12145 components: - - type: MetaData - name: микс плазмы - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -65.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2058 + color: '#DC143CFF' + - uid: 12146 components: - - type: MetaData - name: микс N2O - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -66.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2059 + color: '#4169E1FF' + - uid: 12147 components: - - type: MetaData - name: микс трития - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -65.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2060 + color: '#4169E1FF' + - uid: 12148 components: - - type: MetaData - name: микс газа - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -62.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2471 + color: '#4169E1FF' + - uid: 12149 components: - - type: MetaData - name: дополнительный микс 1 - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2472 + rot: -1.5707963267948966 rad + pos: -61.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12150 components: - - type: MetaData - name: дополнительный микс 2 - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + rot: -1.5707963267948966 rad + pos: -61.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' -- proto: GasMixerFlipped - entities: - - uid: 24017 + color: '#DC143CFF' + - uid: 12151 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 22565 - - type: GasMixer - targetPressure: 200 - - type: AtmosDevice - joinedGrid: 22565 + pos: -60.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasOutletInjector - entities: - - uid: 252 + color: '#DC143CFF' + - uid: 12152 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 639 + rot: -1.5707963267948966 rad + pos: -60.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1149 + rot: -1.5707963267948966 rad + pos: -59.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12154 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1150 + rot: -1.5707963267948966 rad + pos: -59.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1151 + rot: -1.5707963267948966 rad + pos: -58.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1152 + rot: -1.5707963267948966 rad + pos: -58.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1155 + rot: -1.5707963267948966 rad + pos: -57.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1285 + rot: -1.5707963267948966 rad + pos: -57.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1977 + rot: -1.5707963267948966 rad + pos: -55.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1980 + pos: -56.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2221 + rot: -1.5707963267948966 rad + pos: -55.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2222 + rot: -1.5707963267948966 rad + pos: -56.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7465 + rot: -1.5707963267948966 rad + pos: -54.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12164 components: - type: Transform - pos: -87.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasPassiveGate - entities: - - uid: 976 + rot: -1.5707963267948966 rad + pos: -53.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12165 components: - - type: MetaData - name: защита портов для выброса скрубберов - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -53.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1561 + color: '#4169E1FF' + - uid: 12166 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -52.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12167 components: - - type: MetaData - name: защита портов канистр - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -52.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' -- proto: GasPassiveVent - entities: - - uid: 249 + color: '#DC143CFF' + - uid: 12168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 264 + rot: -1.5707963267948966 rad + pos: -51.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12169 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 323 + rot: -1.5707963267948966 rad + pos: -50.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12170 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 324 + pos: -49.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12171 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 622 + pos: -48.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12172 components: - type: Transform rot: -1.5707963267948966 rad - pos: -100.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 640 + pos: -47.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12173 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1143 + pos: -43.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12174 components: - type: Transform rot: -1.5707963267948966 rad - pos: -94.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1144 + pos: -45.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12175 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1145 + pos: -46.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12176 components: - type: Transform rot: -1.5707963267948966 rad - pos: -96.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1148 + pos: -46.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12177 components: - type: Transform rot: -1.5707963267948966 rad - pos: -92.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1474 + pos: -45.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12178 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1975 + rot: -1.5707963267948966 rad + pos: -44.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12179 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1976 + pos: -44.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12180 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2223 + pos: -43.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2390 + rot: -1.5707963267948966 rad + pos: -42.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12182 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 4047 + pos: -42.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12183 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 + pos: -41.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7534 + color: '#DC143CFF' + - uid: 12184 components: - type: Transform - pos: -88.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8841 + rot: -1.5707963267948966 rad + pos: -40.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 21684 + rot: -1.5707963267948966 rad + pos: -22.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12186 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-3.5 - parent: 21627 - - type: AtmosDevice - joinedGrid: 21627 + rot: -1.5707963267948966 rad + pos: -21.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24018 + color: '#4169E1FF' + - uid: 12187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + rot: -1.5707963267948966 rad + pos: -21.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24019 + color: '#DC143CFF' + - uid: 12188 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + pos: -38.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 24020 + color: '#DC143CFF' + - uid: 12189 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-23.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + pos: -22.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24021 + color: '#4169E1FF' + - uid: 12190 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: GasPipeBend - entities: - - uid: 34 + rot: -1.5707963267948966 rad + pos: -27.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12191 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -27.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 219 + color: '#4169E1FF' + - uid: 12192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -29.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 325 + color: '#DC143CFF' + - uid: 12193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-8.5 - parent: 89 - - uid: 326 + rot: -1.5707963267948966 rad + pos: -29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12194 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-9.5 - parent: 89 - - uid: 641 + rot: -1.5707963267948966 rad + pos: -28.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12195 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-25.5 - parent: 89 - - uid: 940 + rot: -1.5707963267948966 rad + pos: -28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12196 components: - type: Transform - pos: -78.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 978 + color: '#4169E1FF' + - uid: 12197 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-6.5 - parent: 89 + pos: -33.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1313 + color: '#4169E1FF' + - uid: 12198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-25.5 - parent: 89 - - uid: 1314 + rot: -1.5707963267948966 rad + pos: -33.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-25.5 - parent: 89 - - uid: 1315 + rot: -1.5707963267948966 rad + pos: -36.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-25.5 - parent: 89 - - uid: 1316 + rot: -1.5707963267948966 rad + pos: -34.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-25.5 - parent: 89 - - uid: 1317 + rot: -1.5707963267948966 rad + pos: -34.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-25.5 - parent: 89 - - uid: 1485 + rot: -1.5707963267948966 rad + pos: -35.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12203 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-13.5 - parent: 89 + pos: -39.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1491 + color: '#4169E1FF' + - uid: 12204 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1527 + color: '#4169E1FF' + - uid: 12205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1550 + color: '#4169E1FF' + - uid: 12206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-14.5 - parent: 89 + pos: -54.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1559 + color: '#DC143CFF' + - uid: 12207 components: - type: Transform - pos: -98.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1560 + color: '#DC143CFF' + - uid: 12208 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1564 + color: '#4169E1FF' + - uid: 12209 components: - type: Transform - pos: -95.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1573 + color: '#4169E1FF' + - uid: 12210 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1591 + color: '#DC143CFF' + - uid: 12211 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-13.5 - parent: 89 + pos: -24.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1607 + color: '#DC143CFF' + - uid: 12212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -23.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1626 + color: '#4169E1FF' + - uid: 12213 components: - type: Transform - pos: -96.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -77.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1664 + color: '#4169E1FF' + - uid: 12214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -76.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1936 + color: '#4169E1FF' + - uid: 12215 components: - type: Transform - pos: -91.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -75.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1952 + color: '#4169E1FF' + - uid: 12216 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -76.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1954 + color: '#DC143CFF' + - uid: 12217 components: - type: Transform - pos: -90.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1978 + color: '#4169E1FF' + - uid: 12218 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-25.5 - parent: 89 - - uid: 1979 + pos: -56.5,-4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12219 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-25.5 - parent: 89 - - uid: 2387 + pos: -19.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12220 components: - type: Transform - pos: -79.5,-17.5 - parent: 89 + pos: -19.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2508 + color: '#4169E1FF' + - uid: 12221 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-17.5 - parent: 89 + pos: -17.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2529 + color: '#DC143CFF' + - uid: 12222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2536 + color: '#4169E1FF' + - uid: 12223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,-14.5 - parent: 89 + pos: -17.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2538 + color: '#DC143CFF' + - uid: 12224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-15.5 - parent: 89 + pos: -17.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2976 + color: '#DC143CFF' + - uid: 12225 components: - type: Transform - pos: -103.5,-0.5 - parent: 89 + pos: -17.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3012 + color: '#DC143CFF' + - uid: 12226 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-24.5 - parent: 89 + pos: -56.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3044 + color: '#4169E1FF' + - uid: 12227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,-10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -23.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3070 + color: '#4169E1FF' + - uid: 12228 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,-9.5 - parent: 89 + pos: -21.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3071 + color: '#4169E1FF' + - uid: 12229 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -20.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3258 + color: '#4169E1FF' + - uid: 12230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3265 + color: '#4169E1FF' + - uid: 12231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3340 + color: '#DC143CFF' + - uid: 12232 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,-1.5 - parent: 89 + pos: -20.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3341 + color: '#DC143CFF' + - uid: 12233 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-2.5 - parent: 89 + pos: -21.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3381 + color: '#DC143CFF' + - uid: 12234 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,5.5 - parent: 89 + pos: -22.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3550 + color: '#DC143CFF' + - uid: 12235 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -23.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3648 + color: '#DC143CFF' + - uid: 12236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -24.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3653 + color: '#DC143CFF' + - uid: 12237 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -17.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3654 + color: '#4169E1FF' + - uid: 12238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3655 + color: '#4169E1FF' + - uid: 12239 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3656 + color: '#DC143CFF' + - uid: 12240 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,4.5 - parent: 89 + pos: -16.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3658 + color: '#DC143CFF' + - uid: 12241 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,3.5 - parent: 89 + pos: -15.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3669 + color: '#DC143CFF' + - uid: 12242 components: - type: Transform - pos: -78.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -14.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3671 + color: '#4169E1FF' + - uid: 12243 components: - type: Transform - pos: -77.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3672 + color: '#4169E1FF' + - uid: 12244 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,8.5 - parent: 89 + pos: -13.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3673 + color: '#DC143CFF' + - uid: 12245 components: - type: Transform rot: 3.141592653589793 rad - pos: -77.5,9.5 - parent: 89 + pos: -15.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3674 + color: '#4169E1FF' + - uid: 12246 components: - type: Transform rot: 3.141592653589793 rad - pos: -78.5,8.5 - parent: 89 + pos: -15.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3675 + color: '#4169E1FF' + - uid: 12247 components: - type: Transform rot: 1.5707963267948966 rad - pos: -75.5,10.5 - parent: 89 + pos: -19.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3677 + color: '#DC143CFF' + - uid: 12248 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,9.5 - parent: 89 + pos: -19.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3679 + color: '#4169E1FF' + - uid: 12249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3706 + color: '#DC143CFF' + - uid: 12250 components: - type: Transform - pos: -66.5,9.5 - parent: 89 + pos: -19.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3711 + color: '#4169E1FF' + - uid: 12251 components: - type: Transform - pos: -65.5,10.5 - parent: 89 + pos: -17.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3731 + color: '#DC143CFF' + - uid: 12252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,4.5 - parent: 89 + pos: -17.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3763 + color: '#DC143CFF' + - uid: 12253 components: - type: Transform - pos: -40.5,4.5 - parent: 89 + pos: -19.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3785 + color: '#4169E1FF' + - uid: 12254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,5.5 - parent: 89 + pos: -19.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3786 + color: '#4169E1FF' + - uid: 12255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,4.5 - parent: 89 + pos: -17.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3787 + color: '#DC143CFF' + - uid: 12256 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,3.5 - parent: 89 + pos: -20.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3789 + color: '#4169E1FF' + - uid: 12257 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,4.5 - parent: 89 + pos: -19.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3794 + color: '#DC143CFF' + - uid: 12258 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -21.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12259 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -18.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12260 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,3.5 - parent: 89 + pos: -17.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3795 + color: '#DC143CFF' + - uid: 12261 components: - type: Transform - pos: -30.5,5.5 - parent: 89 + pos: -22.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3797 + color: '#4169E1FF' + - uid: 12262 components: - type: Transform - pos: -31.5,4.5 - parent: 89 + pos: -22.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3798 + color: '#4169E1FF' + - uid: 12263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-6.5 - parent: 89 + pos: -20.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3805 + color: '#DC143CFF' + - uid: 12264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,3.5 - parent: 89 + pos: -20.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3806 + color: '#DC143CFF' + - uid: 12265 components: - type: Transform - pos: -23.5,4.5 - parent: 89 + pos: -22.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3807 + color: '#4169E1FF' + - uid: 12266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,2.5 - parent: 89 + pos: 52.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3808 + color: '#4169E1FF' + - uid: 12267 components: - type: Transform - pos: -24.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4121 + color: '#DC143CFF' + - uid: 12268 components: - type: Transform - pos: 35.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -16.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4122 + color: '#4169E1FF' + - uid: 12269 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4123 + color: '#4169E1FF' + - uid: 12270 components: - type: Transform - pos: 34.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4124 + color: '#4169E1FF' + - uid: 12271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4135 + color: '#4169E1FF' + - uid: 12272 components: - type: Transform - pos: 41.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4136 + color: '#4169E1FF' + - uid: 12273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -16.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4137 + color: '#DC143CFF' + - uid: 12274 components: - type: Transform - pos: 40.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4147 + color: '#DC143CFF' + - uid: 12275 components: - type: Transform - pos: 39.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4155 + color: '#DC143CFF' + - uid: 12276 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4156 + color: '#4169E1FF' + - uid: 12277 components: - type: Transform - pos: 34.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4157 + color: '#DC143CFF' + - uid: 12278 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,11.5 - parent: 89 + pos: -9.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4163 + color: '#DC143CFF' + - uid: 12279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4351 + color: '#4169E1FF' + - uid: 12280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4366 + color: '#4169E1FF' + - uid: 12281 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,8.5 - parent: 89 + pos: -8.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4427 + color: '#DC143CFF' + - uid: 12282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4429 + color: '#DC143CFF' + - uid: 12283 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-10.5 - parent: 89 + pos: -7.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4576 + color: '#4169E1FF' + - uid: 12284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4580 + color: '#4169E1FF' + - uid: 12285 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-6.5 - parent: 89 + pos: -6.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4651 + color: '#DC143CFF' + - uid: 12286 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-5.5 - parent: 89 + pos: -5.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4687 + color: '#DC143CFF' + - uid: 12287 components: - type: Transform - pos: 3.5,-21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4689 + color: '#4169E1FF' + - uid: 12288 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-22.5 - parent: 89 + pos: -4.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4768 + color: '#4169E1FF' + - uid: 12289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4769 + color: '#DC143CFF' + - uid: 12290 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -3.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12291 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -2.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12292 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,-24.5 - parent: 89 + pos: -2.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4770 + color: '#DC143CFF' + - uid: 12293 components: - type: Transform - pos: -4.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4771 + color: '#4169E1FF' + - uid: 12294 components: - type: Transform - pos: -5.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4783 + color: '#4169E1FF' + - uid: 12295 components: - type: Transform - pos: -6.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4784 + color: '#DC143CFF' + - uid: 12296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4785 + color: '#DC143CFF' + - uid: 12297 components: - type: Transform - pos: -5.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4786 + color: '#4169E1FF' + - uid: 12298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4845 + color: '#4169E1FF' + - uid: 12299 components: - type: Transform - pos: -9.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4872 + color: '#4169E1FF' + - uid: 12300 components: - type: Transform - pos: 38.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4956 + color: '#DC143CFF' + - uid: 12301 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,-1.5 - parent: 89 + pos: 4.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4991 + color: '#DC143CFF' + - uid: 12302 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5055 + color: '#4169E1FF' + - uid: 12303 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,-10.5 - parent: 89 + pos: 5.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5056 + color: '#4169E1FF' + - uid: 12304 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,-11.5 - parent: 89 + pos: 5.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5097 + color: '#DC143CFF' + - uid: 12305 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-7.5 - parent: 89 + pos: 6.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5098 + color: '#DC143CFF' + - uid: 12306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5146 + color: '#4169E1FF' + - uid: 12307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5173 + color: '#4169E1FF' + - uid: 12308 components: - type: Transform - pos: -48.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5174 + color: '#DC143CFF' + - uid: 12309 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5249 + color: '#DC143CFF' + - uid: 12310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5250 + color: '#4169E1FF' + - uid: 12311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5470 + color: '#4169E1FF' + - uid: 12312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5475 + color: '#DC143CFF' + - uid: 12313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5620 + color: '#DC143CFF' + - uid: 12314 components: - type: Transform rot: 1.5707963267948966 rad - pos: -72.5,17.5 - parent: 89 + pos: 10.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5621 + color: '#4169E1FF' + - uid: 12315 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,18.5 - parent: 89 + pos: 11.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5640 + color: '#4169E1FF' + - uid: 12316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5696 + color: '#DC143CFF' + - uid: 12317 components: - type: Transform - pos: -39.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5709 + color: '#DC143CFF' + - uid: 12318 components: - type: Transform - pos: -40.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5738 + color: '#4169E1FF' + - uid: 12319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5740 + color: '#4169E1FF' + - uid: 12320 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5803 + color: '#DC143CFF' + - uid: 12321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 14.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5804 + color: '#DC143CFF' + - uid: 12322 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 14.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6221 + color: '#4169E1FF' + - uid: 12323 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 15.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6268 + color: '#4169E1FF' + - uid: 12324 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,13.5 - parent: 89 + pos: 15.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6322 + color: '#DC143CFF' + - uid: 12325 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,14.5 - parent: 89 + pos: 16.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6528 + color: '#DC143CFF' + - uid: 12326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 16.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6529 + color: '#4169E1FF' + - uid: 12327 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6530 + color: '#4169E1FF' + - uid: 12328 components: - type: Transform - pos: -55.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6531 + color: '#DC143CFF' + - uid: 12329 components: - type: Transform - pos: -57.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6536 + color: '#DC143CFF' + - uid: 12330 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,44.5 - parent: 89 + pos: 19.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6576 + color: '#4169E1FF' + - uid: 12331 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,13.5 - parent: 89 + pos: 19.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6577 + color: '#DC143CFF' + - uid: 12332 components: - type: Transform rot: 1.5707963267948966 rad - pos: -68.5,14.5 - parent: 89 + pos: 20.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6598 + color: '#4169E1FF' + - uid: 12333 components: - type: Transform - pos: -55.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6825 + color: '#DC143CFF' + - uid: 12334 + components: + - type: Transform + pos: 39.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12335 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,4.5 - parent: 89 + pos: 22.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6827 + color: '#DC143CFF' + - uid: 12336 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 22.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12337 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,5.5 - parent: 89 + pos: 23.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6828 + color: '#4169E1FF' + - uid: 12338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6829 + color: '#DC143CFF' + - uid: 12339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6879 + color: '#4169E1FF' + - uid: 12340 components: - type: Transform - pos: -39.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 25.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6880 + color: '#4169E1FF' + - uid: 12341 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,8.5 - parent: 89 + pos: 25.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 7193 + color: '#DC143CFF' + - uid: 12342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,1.5 - parent: 89 - - uid: 7413 + rot: 1.5707963267948966 rad + pos: 26.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12343 components: - type: Transform - pos: -75.5,-11.5 - parent: 89 - - uid: 7421 + rot: 1.5707963267948966 rad + pos: 26.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-13.5 - parent: 89 - - uid: 8353 + rot: 1.5707963267948966 rad + pos: 27.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12345 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,26.5 - parent: 89 + pos: 27.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8537 + color: '#DC143CFF' + - uid: 12346 components: - type: Transform - pos: -129.5,8.5 - parent: 89 - - uid: 8748 + rot: 1.5707963267948966 rad + pos: 28.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12347 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 28.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8801 + color: '#4169E1FF' + - uid: 12348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,5.5 - parent: 89 - - uid: 8804 + rot: 1.5707963267948966 rad + pos: 29.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12349 components: - type: Transform - pos: -121.5,2.5 - parent: 89 - - uid: 8806 + rot: 1.5707963267948966 rad + pos: 29.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-0.5 - parent: 89 - - uid: 8808 + rot: 1.5707963267948966 rad + pos: 30.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,-1.5 - parent: 89 - - uid: 8811 + rot: 1.5707963267948966 rad + pos: 30.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,-1.5 - parent: 89 - - uid: 8815 + pos: 31.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,-3.5 - parent: 89 - - uid: 8824 + rot: 1.5707963267948966 rad + pos: 31.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,-3.5 - parent: 89 - - uid: 8849 + rot: 1.5707963267948966 rad + pos: 32.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12355 components: - type: Transform - pos: -124.5,6.5 - parent: 89 - - uid: 8861 + rot: 1.5707963267948966 rad + pos: 32.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12356 components: - type: Transform rot: 1.5707963267948966 rad - pos: -130.5,9.5 - parent: 89 - - uid: 8871 + pos: 33.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12357 components: - type: Transform - pos: -121.5,9.5 - parent: 89 - - uid: 8885 + rot: 1.5707963267948966 rad + pos: 33.5,3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,1.5 - parent: 89 - - uid: 8886 + rot: 1.5707963267948966 rad + pos: 35.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12359 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,2.5 - parent: 89 - - uid: 8887 + pos: 37.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12360 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,5.5 - parent: 89 - - uid: 8891 + rot: 1.5707963267948966 rad + pos: 36.5,2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12361 components: - type: Transform rot: 1.5707963267948966 rad - pos: -127.5,6.5 - parent: 89 - - uid: 8960 + pos: 36.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 37.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8961 + color: '#DC143CFF' + - uid: 12363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8995 + color: '#DC143CFF' + - uid: 12364 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,-2.5 - parent: 89 + pos: 38.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8996 + color: '#4169E1FF' + - uid: 12365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8997 + color: '#DC143CFF' + - uid: 12366 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,-0.5 - parent: 89 + pos: 40.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8998 + color: '#DC143CFF' + - uid: 12367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-2.5 - parent: 89 + pos: 39.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9007 + color: '#4169E1FF' + - uid: 12368 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-2.5 - parent: 89 + pos: 39.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9008 + color: '#4169E1FF' + - uid: 12369 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,-3.5 - parent: 89 + pos: 39.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9041 + color: '#4169E1FF' + - uid: 12370 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,7.5 - parent: 89 + pos: 39.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9605 + color: '#4169E1FF' + - uid: 12371 components: - type: Transform - pos: -92.5,20.5 - parent: 89 + pos: 34.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9608 + color: '#DC143CFF' + - uid: 12372 components: - type: Transform - pos: -93.5,21.5 - parent: 89 + pos: 34.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9892 + color: '#DC143CFF' + - uid: 12373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,36.5 - parent: 89 + pos: 34.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9895 + color: '#DC143CFF' + - uid: 12374 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,36.5 - parent: 89 + pos: 38.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9899 + color: '#4169E1FF' + - uid: 12375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,35.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9901 + color: '#4169E1FF' + - uid: 12376 components: - type: Transform rot: -1.5707963267948966 rad - pos: -55.5,35.5 - parent: 89 + pos: 37.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10969 + color: '#4169E1FF' + - uid: 12377 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,26.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11312 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,23.5 - parent: 89 + pos: 34.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11314 + color: '#DC143CFF' + - uid: 12378 components: - type: Transform - pos: 24.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 34.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11605 + color: '#DC143CFF' + - uid: 12379 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,22.5 - parent: 89 + pos: 34.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12696 + color: '#DC143CFF' + - uid: 12380 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,11.5 - parent: 89 + pos: 36.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12697 + color: '#4169E1FF' + - uid: 12381 components: - type: Transform - pos: 2.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 45.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12709 + color: '#4169E1FF' + - uid: 12382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12710 + color: '#4169E1FF' + - uid: 12383 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 89 + pos: 42.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12734 + color: '#4169E1FF' + - uid: 12384 components: - type: Transform - pos: 6.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12737 + color: '#DC143CFF' + - uid: 12385 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,17.5 - parent: 89 + pos: 43.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12750 + color: '#DC143CFF' + - uid: 12386 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,15.5 - parent: 89 + pos: 43.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12751 + color: '#4169E1FF' + - uid: 12387 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,14.5 - parent: 89 + pos: 44.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12774 + color: '#4169E1FF' + - uid: 12388 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12775 + color: '#DC143CFF' + - uid: 12389 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 45.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12803 + color: '#DC143CFF' + - uid: 12390 components: - type: Transform - pos: -3.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 46.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12825 + color: '#4169E1FF' + - uid: 12391 components: - type: Transform - pos: 11.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 46.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15057 + color: '#DC143CFF' + - uid: 12392 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,21.5 - parent: 89 - - uid: 15120 + rot: 1.5707963267948966 rad + pos: 47.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12393 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 47.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15126 + color: '#4169E1FF' + - uid: 12394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 48.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15131 + color: '#4169E1FF' + - uid: 12395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 48.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15176 + color: '#DC143CFF' + - uid: 12396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 49.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15390 + color: '#DC143CFF' + - uid: 12397 components: - type: Transform rot: 1.5707963267948966 rad - pos: 13.5,12.5 - parent: 89 + pos: 49.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15394 + color: '#4169E1FF' + - uid: 12398 components: - type: Transform - pos: 14.5,21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 52.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15442 + color: '#DC143CFF' + - uid: 12399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,30.5 - parent: 89 + pos: 51.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15443 + color: '#4169E1FF' + - uid: 12400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 50.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15503 + color: '#DC143CFF' + - uid: 12401 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,25.5 - parent: 89 + pos: 51.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15529 + color: '#DC143CFF' + - uid: 12402 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,32.5 - parent: 89 + pos: 51.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15842 + color: '#DC143CFF' + - uid: 12403 components: - type: Transform - pos: -81.5,20.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 51.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15843 + color: '#DC143CFF' + - uid: 12404 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,20.5 - parent: 89 + pos: 51.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15844 + color: '#DC143CFF' + - uid: 12405 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,19.5 - parent: 89 + pos: 51.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15845 + color: '#DC143CFF' + - uid: 12406 components: - type: Transform - pos: -82.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 51.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16359 - components: - - type: Transform - pos: 11.5,24.5 - parent: 89 - - uid: 16360 + color: '#DC143CFF' + - uid: 12407 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,24.5 - parent: 89 - - uid: 16362 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,21.5 - parent: 89 - - uid: 16366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,22.5 - parent: 89 - - uid: 17720 - components: - - type: Transform - pos: 18.5,17.5 - parent: 89 + pos: 53.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18425 + color: '#DC143CFF' + - uid: 12408 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,35.5 - parent: 89 + pos: 54.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19137 + color: '#DC143CFF' + - uid: 12409 components: - type: Transform rot: 1.5707963267948966 rad - pos: -116.5,3.5 - parent: 89 + pos: 56.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19778 + color: '#DC143CFF' + - uid: 12410 components: - type: Transform - pos: 39.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 55.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19780 + color: '#DC143CFF' + - uid: 12411 components: - type: Transform - pos: 43.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 58.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20040 + color: '#DC143CFF' + - uid: 12412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 57.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20057 + color: '#DC143CFF' + - uid: 12413 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,34.5 - parent: 89 + pos: 59.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20058 + color: '#DC143CFF' + - uid: 12414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,34.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 60.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20060 + color: '#DC143CFF' + - uid: 12415 components: - type: Transform - pos: 26.5,36.5 - parent: 89 + pos: 60.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20061 + color: '#DC143CFF' + - uid: 12416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,36.5 - parent: 89 + pos: 60.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20119 + color: '#DC143CFF' + - uid: 12417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,18.5 - parent: 89 + pos: 60.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20157 + color: '#DC143CFF' + - uid: 12418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,17.5 - parent: 89 + pos: 60.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20809 + color: '#DC143CFF' + - uid: 12419 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,18.5 - parent: 89 + pos: 60.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20817 + color: '#DC143CFF' + - uid: 12420 components: - type: Transform - pos: 0.5,17.5 - parent: 89 + pos: 60.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20970 + color: '#DC143CFF' + - uid: 12421 components: - type: Transform - pos: -28.5,22.5 - parent: 89 + pos: 60.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21186 + color: '#DC143CFF' + - uid: 12422 components: - type: Transform - pos: -29.5,23.5 - parent: 89 + pos: 52.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21229 + color: '#4169E1FF' + - uid: 12423 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,20.5 - parent: 89 + pos: 52.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21253 + color: '#4169E1FF' + - uid: 12424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,23.5 - parent: 89 + pos: 52.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21456 + color: '#4169E1FF' + - uid: 12425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-20.5 - parent: 89 + pos: 52.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21685 + color: '#4169E1FF' + - uid: 12426 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 21627 - - uid: 21686 + pos: 52.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12427 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 21627 - - uid: 21687 + pos: 52.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 21627 + rot: -1.5707963267948966 rad + pos: 53.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22432 + color: '#4169E1FF' + - uid: 12429 components: - type: Transform - pos: 47.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 54.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22477 + color: '#4169E1FF' + - uid: 12430 components: - type: Transform - pos: 44.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 55.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22480 + color: '#4169E1FF' + - uid: 12431 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 56.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22498 + color: '#4169E1FF' + - uid: 12432 components: - type: Transform - pos: 45.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 57.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22526 + color: '#4169E1FF' + - uid: 12433 components: - type: Transform - pos: 48.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 58.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22527 + color: '#4169E1FF' + - uid: 12434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 59.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22528 + color: '#4169E1FF' + - uid: 12435 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-29.5 - parent: 89 + pos: 60.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22541 + color: '#4169E1FF' + - uid: 12436 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-29.5 - parent: 89 + pos: 61.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22542 + color: '#4169E1FF' + - uid: 12437 components: - type: Transform - pos: 44.5,-27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 61.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24022 + color: '#4169E1FF' + - uid: 12438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-25.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24023 + color: '#4169E1FF' + - uid: 12439 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-0.5 - parent: 22565 + pos: 61.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24024 + color: '#4169E1FF' + - uid: 12440 components: - type: Transform - pos: -17.5,-10.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#990000FF' - - uid: 24025 + color: '#4169E1FF' + - uid: 12441 components: - type: Transform - pos: -26.5,5.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24026 + color: '#4169E1FF' + - uid: 12442 components: - type: Transform - pos: -10.5,-12.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24027 + color: '#4169E1FF' + - uid: 12443 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 61.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24028 + color: '#4169E1FF' + - uid: 12444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 22565 + pos: 31.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24029 + color: '#DC143CFF' + - uid: 12445 components: - type: Transform - pos: -12.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 34.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24030 + color: '#DC143CFF' + - uid: 12446 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-0.5 - parent: 22565 + pos: -0.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24031 + color: '#4169E1FF' + - uid: 12447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,1.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24032 + color: '#DC143CFF' + - uid: 12448 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24033 + color: '#4169E1FF' + - uid: 12449 components: - type: Transform - pos: -7.5,1.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24034 + color: '#4169E1FF' + - uid: 12450 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-0.5 - parent: 22565 + pos: -12.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24035 + color: '#DC143CFF' + - uid: 12451 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,9.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24036 + color: '#4169E1FF' + - uid: 12452 components: - type: Transform - pos: -11.5,6.5 - parent: 22565 + pos: -12.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24037 + color: '#DC143CFF' + - uid: 12453 components: - type: Transform - pos: -31.5,11.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -11.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24038 + color: '#DC143CFF' + - uid: 12454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-22.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -10.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24039 + color: '#DC143CFF' + - uid: 12455 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-23.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -10.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24040 + color: '#4169E1FF' + - uid: 12456 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 22565 + pos: -9.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24041 + color: '#4169E1FF' + - uid: 12457 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -9.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24042 + color: '#DC143CFF' + - uid: 12458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,11.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -8.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24043 + color: '#DC143CFF' + - uid: 12459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-24.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -8.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24044 + color: '#4169E1FF' + - uid: 12460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -20.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24045 + color: '#DC143CFF' + - uid: 12461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -20.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24046 + color: '#DC143CFF' + - uid: 12462 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -22.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24047 + color: '#4169E1FF' + - uid: 12463 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,2.5 - parent: 22565 + pos: -22.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24048 + color: '#4169E1FF' + - uid: 12464 components: - type: Transform - pos: -17.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -22.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24049 + color: '#4169E1FF' + - uid: 12465 components: - type: Transform - pos: -30.5,12.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -21.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24050 + color: '#4169E1FF' + - uid: 12466 components: - type: Transform - pos: -29.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -20.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24051 + color: '#4169E1FF' + - uid: 12467 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -19.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24052 + color: '#4169E1FF' + - uid: 12468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,2.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24053 + color: '#DC143CFF' + - uid: 12469 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,5.5 - parent: 22565 + pos: -18.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24054 + color: '#4169E1FF' + - uid: 12470 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,6.5 - parent: 22565 + pos: -17.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24055 + color: '#4169E1FF' + - uid: 12471 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,12.5 - parent: 22565 + pos: -17.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25509 + color: '#DC143CFF' + - uid: 12472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-3.5 - parent: 18153 - - uid: 25510 + rot: 1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12473 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 18153 - - uid: 25511 + rot: 1.5707963267948966 rad + pos: -16.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12474 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-11.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -15.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25512 + color: '#4169E1FF' + - uid: 12475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -15.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25513 + color: '#DC143CFF' + - uid: 12476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -14.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25514 + color: '#4169E1FF' + - uid: 12477 components: - type: Transform - pos: 5.5,-4.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -14.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasPipeFourway - entities: - - uid: 120 + color: '#DC143CFF' + - uid: 12478 components: - type: Transform - pos: -109.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 189 + color: '#DC143CFF' + - uid: 12479 components: - type: Transform - pos: -12.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 317 + color: '#4169E1FF' + - uid: 12480 components: - type: Transform - pos: -17.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 910 + color: '#4169E1FF' + - uid: 12481 components: - type: Transform - pos: -82.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2506 + color: '#DC143CFF' + - uid: 12482 components: - type: Transform - pos: -81.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2898 + color: '#DC143CFF' + - uid: 12483 components: - type: Transform - pos: -78.5,-16.5 - parent: 89 - - uid: 2985 + rot: 1.5707963267948966 rad + pos: -11.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12484 components: - type: Transform - pos: -103.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3238 + color: '#4169E1FF' + - uid: 12485 components: - type: Transform - pos: -95.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3239 + color: '#DC143CFF' + - uid: 12486 components: - type: Transform - pos: -94.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3433 + color: '#4169E1FF' + - uid: 12487 components: - type: Transform - pos: -107.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3743 + color: '#DC143CFF' + - uid: 12488 components: - type: Transform - pos: -49.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3846 + color: '#DC143CFF' + - uid: 12489 components: - type: Transform - pos: -19.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3860 + color: '#4169E1FF' + - uid: 12490 components: - type: Transform - pos: -17.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4002 + color: '#4169E1FF' + - uid: 12491 components: - type: Transform - pos: -11.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4197 + color: '#DC143CFF' + - uid: 12492 components: - type: Transform - pos: 52.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4425 + color: '#4169E1FF' + - uid: 12493 components: - type: Transform - pos: -2.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4528 + color: '#4169E1FF' + - uid: 12494 components: - type: Transform - pos: -2.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4529 + color: '#DC143CFF' + - uid: 12495 components: - type: Transform - pos: -0.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4560 + color: '#DC143CFF' + - uid: 12496 components: - type: Transform - pos: -2.5,-29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4634 + color: '#4169E1FF' + - uid: 12497 components: - type: Transform - pos: 1.5,-25.5 - parent: 89 + pos: -1.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4637 + color: '#DC143CFF' + - uid: 12498 components: - type: Transform - pos: 3.5,-24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4737 + color: '#DC143CFF' + - uid: 12499 components: - type: Transform - pos: -54.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4781 + color: '#DC143CFF' + - uid: 12500 components: - type: Transform - pos: -7.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4941 + color: '#DC143CFF' + - uid: 12501 components: - type: Transform - pos: -56.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5130 + color: '#4169E1FF' + - uid: 12502 components: - type: Transform - pos: 3.5,-10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5132 + color: '#4169E1FF' + - uid: 12503 components: - type: Transform - pos: 5.5,-12.5 - parent: 89 + pos: -2.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5137 + color: '#DC143CFF' + - uid: 12504 components: - type: Transform - pos: 51.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5237 + color: '#4169E1FF' + - uid: 12505 components: - type: Transform - pos: 27.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5359 + color: '#4169E1FF' + - uid: 12506 components: - type: Transform - pos: 36.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6604 + color: '#4169E1FF' + - uid: 12507 components: - type: Transform - pos: -73.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6605 + color: '#DC143CFF' + - uid: 12508 components: - type: Transform - pos: -72.5,9.5 - parent: 89 + pos: -0.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11096 + color: '#4169E1FF' + - uid: 12509 components: - type: Transform - pos: 25.5,29.5 - parent: 89 + pos: -2.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 11879 + color: '#DC143CFF' + - uid: 12510 components: - type: Transform - pos: 23.5,31.5 - parent: 89 + pos: -2.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12711 + color: '#DC143CFF' + - uid: 12511 components: - type: Transform - pos: 7.5,12.5 - parent: 89 + pos: -0.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14050 + color: '#4169E1FF' + - uid: 12512 components: - type: Transform - pos: 25.5,14.5 - parent: 89 + pos: -0.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16364 + color: '#4169E1FF' + - uid: 12513 components: - type: Transform - pos: 7.5,22.5 - parent: 89 - - uid: 20091 + pos: -2.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12514 components: - type: Transform - pos: -5.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21204 + color: '#4169E1FF' + - uid: 12515 components: - type: Transform - pos: -30.5,32.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21210 + color: '#4169E1FF' + - uid: 12516 components: - type: Transform - pos: -30.5,28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -0.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21238 + color: '#4169E1FF' + - uid: 12517 components: - type: Transform - pos: -29.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21242 + color: '#DC143CFF' + - uid: 12518 components: - type: Transform - pos: -29.5,33.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21265 + color: '#DC143CFF' + - uid: 12519 components: - type: Transform - pos: -30.5,24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24056 + color: '#DC143CFF' + - uid: 12520 components: - type: Transform - pos: -13.5,1.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -2.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24057 + color: '#DC143CFF' + - uid: 12521 components: - type: Transform - pos: -31.5,5.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -0.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24058 + color: '#4169E1FF' + - uid: 12522 components: - type: Transform - pos: -10.5,2.5 - parent: 22565 + pos: -0.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24059 + color: '#4169E1FF' + - uid: 12523 components: - type: Transform - pos: 7.5,5.5 - parent: 22565 + pos: -2.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24060 + color: '#DC143CFF' + - uid: 12524 components: - type: Transform - pos: -29.5,6.5 - parent: 22565 + pos: -2.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24061 + color: '#DC143CFF' + - uid: 12525 components: - type: Transform - pos: -20.5,10.5 - parent: 22565 + pos: -0.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasPipeStraight - entities: - - uid: 17 + color: '#4169E1FF' + - uid: 12526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,3.5 - parent: 89 + pos: -2.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21 + color: '#DC143CFF' + - uid: 12527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,11.5 - parent: 89 + pos: -2.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 36 + color: '#DC143CFF' + - uid: 12528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -108.5,15.5 - parent: 89 + pos: -0.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 111 + color: '#4169E1FF' + - uid: 12529 components: - type: Transform - pos: 25.5,26.5 - parent: 89 + pos: -0.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 204 + color: '#4169E1FF' + - uid: 12530 components: - type: Transform - pos: 10.5,36.5 - parent: 89 + pos: -54.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 222 + color: '#DC143CFF' + - uid: 12531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 240 + color: '#DC143CFF' + - uid: 12532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -64.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 261 + color: '#4169E1FF' + - uid: 12533 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,-24.5 - parent: 89 - - uid: 313 + pos: -0.5,-29.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12534 components: - type: Transform rot: 1.5707963267948966 rad - pos: -13.5,3.5 - parent: 89 + pos: -1.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 319 + color: '#DC143CFF' + - uid: 12535 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,15.5 - parent: 89 + pos: -0.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 327 + color: '#DC143CFF' + - uid: 12536 components: - type: Transform - pos: -107.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 330 + color: '#DC143CFF' + - uid: 12537 components: - type: Transform rot: 1.5707963267948966 rad - pos: -17.5,2.5 - parent: 89 + pos: 0.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 332 + color: '#4169E1FF' + - uid: 12538 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,-5.5 - parent: 89 + pos: 12.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 333 + color: '#DC143CFF' + - uid: 12539 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 335 + color: '#DC143CFF' + - uid: 12540 + components: + - type: Transform + pos: 3.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12541 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,3.5 - parent: 89 + pos: 2.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 369 + color: '#DC143CFF' + - uid: 12542 components: - type: Transform - pos: -66.5,26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 2.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 537 + color: '#4169E1FF' + - uid: 12543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 632 + color: '#4169E1FF' + - uid: 12544 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-20.5 - parent: 89 - - uid: 633 + pos: 1.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12545 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-22.5 - parent: 89 - - uid: 634 + pos: 1.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12546 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-21.5 - parent: 89 - - uid: 635 + pos: 3.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12547 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-20.5 - parent: 89 - - uid: 636 + pos: 3.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12548 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-22.5 - parent: 89 - - uid: 637 + pos: 1.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12549 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-21.5 - parent: 89 - - uid: 638 + pos: 1.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12550 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,-20.5 - parent: 89 - - uid: 642 + pos: 3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12551 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-24.5 - parent: 89 - - uid: 643 + pos: 3.5,-26.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12552 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-23.5 - parent: 89 - - uid: 644 + pos: 3.5,-27.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12553 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-22.5 - parent: 89 - - uid: 850 + pos: 4.5,-3.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12554 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 912 + color: '#DC143CFF' + - uid: 12555 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 966 + color: '#4169E1FF' + - uid: 12556 components: - type: Transform - pos: -78.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 981 + color: '#4169E1FF' + - uid: 12557 components: - type: Transform - pos: -91.5,-7.5 - parent: 89 + pos: -2.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1097 + color: '#DC143CFF' + - uid: 12558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-22.5 - parent: 89 - - uid: 1153 + pos: -2.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-21.5 - parent: 89 - - uid: 1154 + pos: -2.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12560 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-21.5 - parent: 89 - - uid: 1156 + pos: -2.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-22.5 - parent: 89 - - uid: 1157 + pos: -2.5,-35.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-20.5 - parent: 89 - - uid: 1158 + pos: -2.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-22.5 - parent: 89 - - uid: 1159 + pos: -2.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-20.5 - parent: 89 - - uid: 1160 + pos: -2.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-22.5 - parent: 89 - - uid: 1161 + pos: -0.5,-31.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12566 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-21.5 - parent: 89 - - uid: 1162 + pos: -0.5,-32.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12567 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-20.5 - parent: 89 - - uid: 1163 + pos: -0.5,-33.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12568 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-22.5 - parent: 89 - - uid: 1164 + pos: -0.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12569 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-21.5 - parent: 89 - - uid: 1165 + pos: -0.5,-36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12570 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-20.5 - parent: 89 - - uid: 1166 + pos: -0.5,-37.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-21.5 - parent: 89 - - uid: 1167 + pos: -0.5,-38.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12572 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-20.5 - parent: 89 - - uid: 1168 + rot: 1.5707963267948966 rad + pos: -1.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-22.5 - parent: 89 - - uid: 1288 + rot: 1.5707963267948966 rad + pos: -2.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12574 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-23.5 - parent: 89 - - uid: 1289 + rot: 1.5707963267948966 rad + pos: -3.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12575 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-21.5 - parent: 89 - - uid: 1290 + rot: 1.5707963267948966 rad + pos: -4.5,-25.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-20.5 - parent: 89 - - uid: 1292 + rot: -1.5707963267948966 rad + pos: -3.5,-24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12577 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-24.5 - parent: 89 - - uid: 1293 + pos: -7.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12578 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-23.5 - parent: 89 - - uid: 1294 + pos: -9.5,-20.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-22.5 - parent: 89 - - uid: 1295 + rot: 1.5707963267948966 rad + pos: -10.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-21.5 - parent: 89 - - uid: 1296 + rot: 1.5707963267948966 rad + pos: -11.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-20.5 - parent: 89 - - uid: 1297 + rot: 1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12582 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-24.5 - parent: 89 - - uid: 1298 + rot: 1.5707963267948966 rad + pos: -10.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-23.5 - parent: 89 - - uid: 1299 + rot: 1.5707963267948966 rad + pos: -9.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-22.5 - parent: 89 - - uid: 1300 + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-21.5 - parent: 89 - - uid: 1301 + rot: -1.5707963267948966 rad + pos: -7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-20.5 - parent: 89 - - uid: 1302 + rot: -1.5707963267948966 rad + pos: -8.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12587 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-21.5 - parent: 89 - - uid: 1303 + pos: -7.5,-22.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12588 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 1304 + pos: -7.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12589 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-22.5 - parent: 89 - - uid: 1305 + rot: -1.5707963267948966 rad + pos: -12.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-23.5 - parent: 89 - - uid: 1306 + rot: -1.5707963267948966 rad + pos: -13.5,-21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-24.5 - parent: 89 - - uid: 1307 + rot: -1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 1308 + rot: -1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-24.5 - parent: 89 - - uid: 1309 + rot: 1.5707963267948966 rad + pos: -11.5,-17.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12594 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-23.5 - parent: 89 - - uid: 1310 + pos: -7.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12595 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-22.5 - parent: 89 - - uid: 1311 + pos: -7.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-21.5 - parent: 89 - - uid: 1312 + pos: -9.5,-18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-20.5 - parent: 89 - - uid: 1321 + pos: -9.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12598 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1426 + color: '#DC143CFF' + - uid: 12599 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-12.5 - parent: 89 + pos: -1.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1427 + color: '#DC143CFF' + - uid: 12600 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-12.5 - parent: 89 + pos: -0.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1450 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-19.5 - parent: 89 - - uid: 1451 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-19.5 - parent: 89 - - uid: 1452 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-19.5 - parent: 89 - - uid: 1453 + color: '#DC143CFF' + - uid: 12601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-19.5 - parent: 89 - - uid: 1454 + rot: 1.5707963267948966 rad + pos: 0.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-19.5 - parent: 89 - - uid: 1467 + rot: 1.5707963267948966 rad + pos: 1.5,-15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1468 + color: '#4169E1FF' + - uid: 12604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1469 + color: '#4169E1FF' + - uid: 12605 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1470 + color: '#4169E1FF' + - uid: 12606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,-18.5 - parent: 89 + pos: -56.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1473 + color: '#4169E1FF' + - uid: 12607 components: - type: Transform - pos: -102.5,-20.5 - parent: 89 - - uid: 1480 + pos: -56.5,1.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-18.5 - parent: 89 + pos: -54.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1481 + color: '#DC143CFF' + - uid: 12609 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-17.5 - parent: 89 + pos: -54.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1482 + color: '#DC143CFF' + - uid: 12610 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-15.5 - parent: 89 + pos: -54.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1483 + color: '#DC143CFF' + - uid: 12611 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-21.5 - parent: 89 - - uid: 1484 + pos: -54.5,-2.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12612 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,-14.5 - parent: 89 + pos: -54.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1490 + color: '#DC143CFF' + - uid: 12613 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-18.5 - parent: 89 + pos: -54.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1492 + color: '#DC143CFF' + - uid: 12614 components: - type: Transform rot: 3.141592653589793 rad - pos: -100.5,-16.5 - parent: 89 + pos: -54.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1493 + color: '#DC143CFF' + - uid: 12615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -57.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1494 + color: '#4169E1FF' + - uid: 12616 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1499 + color: '#4169E1FF' + - uid: 12617 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-16.5 - parent: 89 + pos: -55.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1500 + color: '#DC143CFF' + - uid: 12618 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-16.5 - parent: 89 + pos: -56.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1501 + color: '#DC143CFF' + - uid: 12619 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-16.5 - parent: 89 + pos: -57.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1502 + color: '#DC143CFF' + - uid: 12620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,-16.5 - parent: 89 + pos: -58.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1503 + color: '#DC143CFF' + - uid: 12621 components: - type: Transform - pos: -97.5,-17.5 - parent: 89 - - uid: 1504 + rot: 3.141592653589793 rad + pos: -54.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12622 components: - type: Transform - pos: -97.5,-18.5 - parent: 89 - - uid: 1505 + rot: 1.5707963267948966 rad + pos: -56.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12623 components: - type: Transform - pos: -95.5,-17.5 - parent: 89 - - uid: 1506 + rot: 1.5707963267948966 rad + pos: -57.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12624 components: - type: Transform - pos: -95.5,-18.5 - parent: 89 - - uid: 1507 + rot: 1.5707963267948966 rad + pos: -57.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12625 components: - type: Transform - pos: -93.5,-17.5 - parent: 89 - - uid: 1508 + rot: 1.5707963267948966 rad + pos: -58.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12626 components: - type: Transform - pos: -93.5,-18.5 - parent: 89 - - uid: 1513 + rot: 1.5707963267948966 rad + pos: -58.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12627 components: - type: Transform - pos: -102.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1514 + color: '#4169E1FF' + - uid: 12628 components: - type: Transform - pos: -102.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1515 + color: '#4169E1FF' + - uid: 12629 components: - type: Transform - pos: -102.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1523 + color: '#4169E1FF' + - uid: 12630 components: - type: Transform rot: 1.5707963267948966 rad - pos: -92.5,-16.5 - parent: 89 + pos: -64.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1524 + color: '#4169E1FF' + - uid: 12631 components: - type: Transform rot: 1.5707963267948966 rad - pos: -90.5,-16.5 - parent: 89 + pos: -63.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 1557 + color: '#4169E1FF' + - uid: 12632 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-12.5 - parent: 89 + pos: -62.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1593 + color: '#4169E1FF' + - uid: 12633 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-14.5 - parent: 89 + pos: -61.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1601 + color: '#4169E1FF' + - uid: 12634 components: - type: Transform - pos: -102.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1667 + color: '#4169E1FF' + - uid: 12635 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-11.5 - parent: 89 + pos: -60.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1669 + color: '#DC143CFF' + - uid: 12636 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,11.5 - parent: 89 + pos: -61.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1681 + color: '#DC143CFF' + - uid: 12637 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-9.5 - parent: 89 + pos: -62.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1682 + color: '#DC143CFF' + - uid: 12638 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-9.5 - parent: 89 + pos: -63.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1685 + color: '#DC143CFF' + - uid: 12639 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-9.5 - parent: 89 + pos: -64.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1687 + color: '#DC143CFF' + - uid: 12640 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,-11.5 - parent: 89 + pos: -65.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1688 + color: '#DC143CFF' + - uid: 12641 components: - type: Transform - pos: -95.5,-10.5 - parent: 89 + pos: -73.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1689 + color: '#DC143CFF' + - uid: 12642 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1742 + color: '#4169E1FF' + - uid: 12643 components: - type: Transform - pos: -95.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1906 + color: '#4169E1FF' + - uid: 12644 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,11.5 - parent: 89 + pos: -68.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1937 + color: '#4169E1FF' + - uid: 12645 components: - type: Transform - pos: -91.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1943 + color: '#4169E1FF' + - uid: 12646 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,-8.5 - parent: 89 + pos: 9.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1944 + color: '#4169E1FF' + - uid: 12647 components: - type: Transform rot: 1.5707963267948966 rad - pos: -94.5,-8.5 - parent: 89 + pos: 8.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1945 + color: '#DC143CFF' + - uid: 12648 components: - type: Transform rot: 1.5707963267948966 rad - pos: -93.5,-8.5 - parent: 89 + pos: 9.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1955 + color: '#DC143CFF' + - uid: 12649 components: - type: Transform - pos: -90.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1956 + color: '#DC143CFF' + - uid: 12650 components: - type: Transform - pos: -90.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1964 + color: '#DC143CFF' + - uid: 12651 components: - type: Transform - pos: -90.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1981 + color: '#DC143CFF' + - uid: 12652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-24.5 - parent: 89 - - uid: 1982 + pos: -65.5,-6.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-23.5 - parent: 89 - - uid: 1983 + pos: -65.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-22.5 - parent: 89 - - uid: 1984 + pos: -65.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-21.5 - parent: 89 - - uid: 1985 + pos: -65.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-20.5 - parent: 89 - - uid: 1986 + pos: -65.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12657 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-24.5 - parent: 89 - - uid: 1987 + pos: -65.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12658 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-23.5 - parent: 89 - - uid: 1989 + pos: -65.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-22.5 - parent: 89 - - uid: 1990 + pos: -65.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-21.5 - parent: 89 - - uid: 1991 + rot: 1.5707963267948966 rad + pos: -63.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12661 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-20.5 - parent: 89 - - uid: 1995 + pos: -59.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-2.5 - parent: 89 + pos: -59.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2025 + color: '#DC143CFF' + - uid: 12663 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-22.5 - parent: 89 - - uid: 2026 + pos: -59.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12664 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-16.5 - parent: 89 + pos: -59.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2027 + color: '#DC143CFF' + - uid: 12665 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-21.5 - parent: 89 - - uid: 2028 + pos: -59.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12666 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-20.5 - parent: 89 - - uid: 2057 + pos: -59.5,-14.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -62.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2106 + color: '#4169E1FF' + - uid: 12668 components: - type: Transform - pos: -91.5,-18.5 - parent: 89 - - uid: 2107 + rot: 1.5707963267948966 rad + pos: -61.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12669 components: - type: Transform - pos: -91.5,-17.5 - parent: 89 - - uid: 2108 + rot: 1.5707963267948966 rad + pos: -60.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12670 components: - type: Transform - pos: -89.5,-18.5 - parent: 89 - - uid: 2109 + rot: 3.141592653589793 rad + pos: 5.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12671 components: - type: Transform - pos: -89.5,-17.5 - parent: 89 - - uid: 2110 + rot: 3.141592653589793 rad + pos: 5.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12672 components: - type: Transform - pos: -87.5,-18.5 - parent: 89 - - uid: 2111 + rot: 3.141592653589793 rad + pos: 3.5,-8.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12673 components: - type: Transform - pos: -87.5,-17.5 - parent: 89 - - uid: 2114 + rot: 3.141592653589793 rad + pos: 3.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12674 components: - type: Transform - pos: -88.5,-19.5 - parent: 89 - - uid: 2115 + rot: 3.141592653589793 rad + pos: 5.5,-9.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12675 components: - type: Transform - pos: -90.5,-19.5 - parent: 89 - - uid: 2116 + rot: 3.141592653589793 rad + pos: 5.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12676 components: - type: Transform - pos: -86.5,-19.5 - parent: 89 - - uid: 2117 + rot: 1.5707963267948966 rad + pos: -59.5,-5.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 12677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-18.5 - parent: 89 + pos: -60.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2119 + color: '#DC143CFF' + - uid: 12678 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-18.5 - parent: 89 + pos: -61.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2229 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-22.5 - parent: 89 - - uid: 2230 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-22.5 - parent: 89 - - uid: 2231 + color: '#DC143CFF' + - uid: 12679 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-22.5 - parent: 89 - - uid: 2232 + rot: -1.5707963267948966 rad + pos: -62.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-21.5 - parent: 89 - - uid: 2233 + rot: -1.5707963267948966 rad + pos: -63.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12681 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-21.5 - parent: 89 - - uid: 2234 + rot: -1.5707963267948966 rad + pos: -64.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12682 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-21.5 - parent: 89 - - uid: 2235 + rot: -1.5707963267948966 rad + pos: -65.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12683 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-20.5 - parent: 89 - - uid: 2236 + rot: -1.5707963267948966 rad + pos: -66.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,-20.5 - parent: 89 - - uid: 2237 + rot: -1.5707963267948966 rad + pos: -67.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12685 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-20.5 - parent: 89 - - uid: 2349 + rot: -1.5707963267948966 rad + pos: -68.5,-10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12686 components: - type: Transform - pos: -79.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2370 + color: '#DC143CFF' + - uid: 12687 components: - type: Transform rot: -1.5707963267948966 rad - pos: -85.5,-18.5 - parent: 89 + pos: -70.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2371 + color: '#DC143CFF' + - uid: 12688 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,-18.5 - parent: 89 + pos: -68.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2372 + color: '#4169E1FF' + - uid: 12689 components: - type: Transform rot: -1.5707963267948966 rad - pos: -83.5,-18.5 - parent: 89 + pos: -67.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2377 + color: '#4169E1FF' + - uid: 12690 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,-16.5 - parent: 89 + pos: -66.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2378 + color: '#4169E1FF' + - uid: 12691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -71.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2381 + color: '#DC143CFF' + - uid: 12692 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-18.5 - parent: 89 + pos: -71.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2382 + color: '#DC143CFF' + - uid: 12693 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-17.5 - parent: 89 + pos: -71.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2388 + color: '#DC143CFF' + - uid: 12694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -69.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2389 + color: '#4169E1FF' + - uid: 12695 components: - type: Transform - pos: -78.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -69.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2391 + color: '#4169E1FF' + - uid: 12696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-16.5 - parent: 89 - - uid: 2487 + pos: -6.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12697 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-6.5 - parent: 89 + pos: -10.5,-10.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 2498 + - uid: 12698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -4.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2504 + color: '#DC143CFF' + - uid: 12699 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-16.5 - parent: 89 + pos: -8.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2531 + color: '#4169E1FF' + - uid: 12700 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-17.5 - parent: 89 + pos: -8.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2533 + color: '#4169E1FF' + - uid: 12701 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-16.5 - parent: 89 + pos: -8.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2534 + color: '#4169E1FF' + - uid: 12702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-14.5 - parent: 89 + pos: -6.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2535 + color: '#DC143CFF' + - uid: 12703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,-14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -4.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2537 + color: '#DC143CFF' + - uid: 12704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2539 + color: '#4169E1FF' + - uid: 12705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -54.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2540 + color: '#DC143CFF' + - uid: 12706 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-15.5 - parent: 89 + pos: 7.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2541 + color: '#DC143CFF' + - uid: 12707 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,-15.5 - parent: 89 + pos: 2.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2542 + color: '#DC143CFF' + - uid: 12708 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-15.5 - parent: 89 + pos: 2.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2543 + color: '#4169E1FF' + - uid: 12709 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-15.5 - parent: 89 + pos: 3.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2656 + color: '#4169E1FF' + - uid: 12710 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2676 + color: '#4169E1FF' + - uid: 12711 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,3.5 - parent: 89 + pos: 4.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2842 + color: '#DC143CFF' + - uid: 12712 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2925 + color: '#DC143CFF' + - uid: 12713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2927 + color: '#DC143CFF' + - uid: 12714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -101.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2935 + color: '#4169E1FF' + - uid: 12715 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,0.5 - parent: 89 + pos: 7.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2945 + color: '#4169E1FF' + - uid: 12716 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-9.5 - parent: 89 + pos: 37.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2960 + color: '#4169E1FF' + - uid: 12717 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-7.5 - parent: 89 + pos: 11.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2961 + color: '#4169E1FF' + - uid: 12718 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-7.5 - parent: 89 + pos: 12.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2963 + color: '#DC143CFF' + - uid: 12719 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-5.5 - parent: 89 + pos: -56.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2964 + color: '#4169E1FF' + - uid: 12720 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-5.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2966 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,-3.5 - parent: 89 + pos: -56.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2967 + color: '#4169E1FF' + - uid: 12721 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-4.5 - parent: 89 + pos: -56.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2968 + color: '#4169E1FF' + - uid: 12722 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-3.5 - parent: 89 + pos: -55.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2969 + color: '#4169E1FF' + - uid: 12723 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,-4.5 - parent: 89 + pos: -54.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2970 + color: '#4169E1FF' + - uid: 12724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2971 + color: '#4169E1FF' + - uid: 12725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-4.5 - parent: 89 + pos: -52.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2972 + color: '#4169E1FF' + - uid: 12726 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,-3.5 - parent: 89 + pos: -51.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2973 + color: '#4169E1FF' + - uid: 12727 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,-3.5 - parent: 89 + pos: -49.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2975 + color: '#4169E1FF' + - uid: 12728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-4.5 - parent: 89 + pos: -54.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2977 + color: '#DC143CFF' + - uid: 12729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -53.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2978 + color: '#DC143CFF' + - uid: 12730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -52.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2979 + color: '#DC143CFF' + - uid: 12731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 47.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2980 + color: '#DC143CFF' + - uid: 12732 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-4.5 - parent: 89 + pos: 14.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2981 + color: '#4169E1FF' + - uid: 12733 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-4.5 - parent: 89 + pos: 15.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2982 + color: '#4169E1FF' + - uid: 12734 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,-3.5 - parent: 89 + pos: 16.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2984 + color: '#4169E1FF' + - uid: 12735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2986 + color: '#4169E1FF' + - uid: 12736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 19.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2992 + color: '#4169E1FF' + - uid: 12737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 20.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2995 + color: '#4169E1FF' + - uid: 12738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 22.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2996 + color: '#4169E1FF' + - uid: 12739 components: - type: Transform rot: 1.5707963267948966 rad - pos: -103.5,-4.5 - parent: 89 + pos: 23.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2997 + color: '#4169E1FF' + - uid: 12740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 25.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2998 + color: '#4169E1FF' + - uid: 12741 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-3.5 - parent: 89 + pos: 26.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3000 + color: '#4169E1FF' + - uid: 12742 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-3.5 - parent: 89 + pos: 28.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3001 + color: '#4169E1FF' + - uid: 12743 components: - type: Transform rot: 1.5707963267948966 rad - pos: -100.5,-3.5 - parent: 89 + pos: 29.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3031 + color: '#4169E1FF' + - uid: 12744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 32.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3059 + color: '#4169E1FF' + - uid: 12745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 34.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3060 + color: '#4169E1FF' + - uid: 12746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 35.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3061 + color: '#4169E1FF' + - uid: 12747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 37.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3068 + color: '#4169E1FF' + - uid: 12748 components: - type: Transform - pos: -104.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 14.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3069 + color: '#DC143CFF' + - uid: 12749 components: - type: Transform - pos: -104.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 15.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3073 + color: '#DC143CFF' + - uid: 12750 components: - type: Transform - pos: -105.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 16.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3074 + color: '#DC143CFF' + - uid: 12751 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3075 + color: '#DC143CFF' + - uid: 12752 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3076 + color: '#DC143CFF' + - uid: 12753 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 20.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3077 + color: '#DC143CFF' + - uid: 12754 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3078 + color: '#DC143CFF' + - uid: 12755 components: - type: Transform - pos: -105.5,-15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3079 + color: '#DC143CFF' + - uid: 12756 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3080 + color: '#DC143CFF' + - uid: 12757 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 27.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3213 + color: '#DC143CFF' + - uid: 12758 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 29.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3214 + color: '#DC143CFF' + - uid: 12759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 30.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3215 + color: '#DC143CFF' + - uid: 12760 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 32.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3217 + color: '#DC143CFF' + - uid: 12761 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 33.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3218 + color: '#DC143CFF' + - uid: 12762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 36.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3219 + color: '#DC143CFF' + - uid: 12763 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,2.5 - parent: 89 + pos: 12.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3220 + color: '#DC143CFF' + - uid: 12764 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,4.5 - parent: 89 + pos: 12.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3221 + color: '#DC143CFF' + - uid: 12765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 10.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3222 + color: '#DC143CFF' + - uid: 12766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3223 + color: '#DC143CFF' + - uid: 12767 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,8.5 - parent: 89 + pos: 11.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3224 + color: '#4169E1FF' + - uid: 12768 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,9.5 - parent: 89 + pos: 11.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3225 + color: '#4169E1FF' + - uid: 12769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3227 + color: '#4169E1FF' + - uid: 12770 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-1.5 - parent: 89 + pos: 26.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3228 + color: '#DC143CFF' + - uid: 12771 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,0.5 - parent: 89 + pos: 26.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3229 + color: '#DC143CFF' + - uid: 12772 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,2.5 - parent: 89 + pos: 26.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3230 + color: '#DC143CFF' + - uid: 12773 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,1.5 - parent: 89 + pos: 26.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3231 + color: '#DC143CFF' + - uid: 12774 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,3.5 - parent: 89 + pos: 27.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3232 + color: '#4169E1FF' + - uid: 12775 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,4.5 - parent: 89 + pos: 27.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3233 + color: '#4169E1FF' + - uid: 12776 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,5.5 - parent: 89 + pos: 27.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3234 + color: '#4169E1FF' + - uid: 12777 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,6.5 - parent: 89 + pos: 27.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3235 + color: '#4169E1FF' + - uid: 12778 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,7.5 - parent: 89 + pos: 27.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3236 + color: '#4169E1FF' + - uid: 12779 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,9.5 - parent: 89 + pos: 18.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3237 + color: '#4169E1FF' + - uid: 12780 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,10.5 - parent: 89 + pos: 18.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3240 + color: '#4169E1FF' + - uid: 12781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,7.5 - parent: 89 + pos: 18.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3241 + color: '#4169E1FF' + - uid: 12782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,0.5 - parent: 89 + pos: 19.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3268 + color: '#DC143CFF' + - uid: 12783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,8.5 - parent: 89 + pos: 19.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3307 + color: '#DC143CFF' + - uid: 12784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-1.5 - parent: 89 + pos: 19.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3310 + color: '#DC143CFF' + - uid: 12785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-1.5 - parent: 89 + pos: 19.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3315 + color: '#DC143CFF' + - uid: 12786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-1.5 - parent: 89 + pos: 21.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3319 + color: '#4169E1FF' + - uid: 12787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-1.5 - parent: 89 + pos: 21.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3320 + color: '#4169E1FF' + - uid: 12788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-1.5 - parent: 89 + pos: 21.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3322 + color: '#4169E1FF' + - uid: 12789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,-1.5 - parent: 89 + pos: 22.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3324 + color: '#DC143CFF' + - uid: 12790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,7.5 - parent: 89 + pos: 22.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3326 + color: '#DC143CFF' + - uid: 12791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,-2.5 - parent: 89 + pos: 22.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3328 + color: '#DC143CFF' + - uid: 12792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -93.5,-2.5 - parent: 89 + pos: 22.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3329 + color: '#DC143CFF' + - uid: 12793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,-2.5 - parent: 89 + pos: 24.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3331 + color: '#4169E1FF' + - uid: 12794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,-2.5 - parent: 89 + pos: 24.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3333 + color: '#4169E1FF' + - uid: 12795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-2.5 - parent: 89 + pos: 24.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3345 + color: '#4169E1FF' + - uid: 12796 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,0.5 - parent: 89 + pos: 25.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3349 + color: '#DC143CFF' + - uid: 12797 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,0.5 - parent: 89 + pos: 25.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3371 + color: '#DC143CFF' + - uid: 12798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,6.5 - parent: 89 + pos: 25.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3374 + color: '#DC143CFF' + - uid: 12799 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,8.5 - parent: 89 + pos: 25.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3375 + color: '#DC143CFF' + - uid: 12800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,7.5 - parent: 89 + pos: 27.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3376 + color: '#4169E1FF' + - uid: 12801 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,6.5 - parent: 89 + pos: 27.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3377 + color: '#4169E1FF' + - uid: 12802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,7.5 - parent: 89 + pos: 27.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3378 + color: '#4169E1FF' + - uid: 12803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,5.5 - parent: 89 + pos: 28.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3379 + color: '#DC143CFF' + - uid: 12804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,4.5 - parent: 89 + pos: 28.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3385 + color: '#DC143CFF' + - uid: 12805 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,3.5 - parent: 89 + pos: 28.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3388 + color: '#DC143CFF' + - uid: 12806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,3.5 - parent: 89 + pos: 28.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3392 + color: '#DC143CFF' + - uid: 12807 components: - type: Transform rot: 1.5707963267948966 rad - pos: -99.5,3.5 - parent: 89 + pos: 30.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3403 + color: '#4169E1FF' + - uid: 12808 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3404 + color: '#DC143CFF' + - uid: 12809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3405 + color: '#DC143CFF' + - uid: 12810 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,5.5 - parent: 89 + pos: -68.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3406 + color: '#DC143CFF' + - uid: 12811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3410 + color: '#DC143CFF' + - uid: 12812 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3414 + color: '#DC143CFF' + - uid: 12813 components: - type: Transform - pos: -102.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 35.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3418 + color: '#DC143CFF' + - uid: 12814 components: - type: Transform - pos: -104.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3420 + color: '#4169E1FF' + - uid: 12815 components: - type: Transform - pos: -104.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3421 + color: '#4169E1FF' + - uid: 12816 components: - type: Transform - pos: -104.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3422 + color: '#4169E1FF' + - uid: 12817 components: - type: Transform - pos: -104.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3426 + color: '#4169E1FF' + - uid: 12818 components: - type: Transform - pos: -102.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3428 + color: '#4169E1FF' + - uid: 12819 components: - type: Transform - pos: -102.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 36.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3429 + color: '#4169E1FF' + - uid: 12820 components: - type: Transform - pos: -102.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3430 + pos: 2.5,-42.5 + parent: 2 + - uid: 12821 components: - type: Transform rot: -1.5707963267948966 rad - pos: -103.5,3.5 - parent: 89 + pos: 48.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3434 + color: '#DC143CFF' + - uid: 12822 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -104.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 49.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3435 + color: '#DC143CFF' + - uid: 12823 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,3.5 - parent: 89 + pos: 39.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3436 + color: '#4169E1FF' + - uid: 12824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -106.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3437 + pos: 0.5,-42.5 + parent: 2 + - uid: 12825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 50.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3438 + color: '#DC143CFF' + - uid: 12826 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,5.5 - parent: 89 + pos: 38.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3439 + color: '#4169E1FF' + - uid: 12827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -106.5,5.5 - parent: 89 + pos: 36.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3440 + color: '#DC143CFF' + - uid: 12828 components: - type: Transform rot: 1.5707963267948966 rad - pos: -108.5,5.5 - parent: 89 + pos: 37.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3441 + color: '#DC143CFF' + - uid: 12829 components: - type: Transform - pos: -109.5,6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3442 + color: '#DC143CFF' + - uid: 12830 components: - type: Transform - pos: -109.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3446 + color: '#DC143CFF' + - uid: 12831 components: - type: Transform - pos: -109.5,8.5 - parent: 89 + pos: 37.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3447 + color: '#4169E1FF' + - uid: 12832 components: - type: Transform - pos: -109.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3449 + color: '#DC143CFF' + - uid: 12833 components: - type: Transform - pos: -109.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3453 + color: '#4169E1FF' + - uid: 12834 components: - type: Transform - pos: -107.5,4.5 - parent: 89 + pos: 36.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3454 + color: '#4169E1FF' + - uid: 12835 components: - type: Transform - pos: -107.5,5.5 - parent: 89 + pos: 37.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3455 + color: '#DC143CFF' + - uid: 12836 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-1.5 - parent: 89 + pos: 46.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3456 + color: '#DC143CFF' + - uid: 12837 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 89 + pos: 45.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3457 + color: '#DC143CFF' + - uid: 12838 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-1.5 - parent: 89 + pos: 51.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3466 + color: '#4169E1FF' + - uid: 12839 components: - type: Transform - pos: -107.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 50.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3467 + color: '#4169E1FF' + - uid: 12840 components: - type: Transform - pos: -107.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 49.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3482 + color: '#4169E1FF' + - uid: 12841 components: - type: Transform - pos: -107.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 48.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3483 + color: '#4169E1FF' + - uid: 12842 components: - type: Transform - pos: -107.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 47.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3486 + color: '#4169E1FF' + - uid: 12843 components: - type: Transform - pos: -107.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 46.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3487 + color: '#4169E1FF' + - uid: 12844 components: - type: Transform - pos: -107.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 45.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3492 + color: '#4169E1FF' + - uid: 12845 components: - type: Transform - pos: -107.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3493 + pos: -99.5,21.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 12846 components: - type: Transform - pos: -107.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -67.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3495 + color: '#DC143CFF' + - uid: 12847 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -66.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3496 + color: '#DC143CFF' + - uid: 12848 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3497 + color: '#DC143CFF' + - uid: 12849 components: - type: Transform - pos: -109.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -64.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3508 + color: '#DC143CFF' + - uid: 12850 components: - type: Transform - pos: -109.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -63.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3509 + color: '#DC143CFF' + - uid: 12851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -62.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3510 + color: '#DC143CFF' + - uid: 12852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -61.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3511 + color: '#DC143CFF' + - uid: 12853 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3513 + color: '#DC143CFF' + - uid: 12854 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3515 + color: '#DC143CFF' + - uid: 12855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -56.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3516 + color: '#DC143CFF' + - uid: 12856 components: - type: Transform - pos: -109.5,19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -55.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3517 + color: '#DC143CFF' + - uid: 12857 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -54.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3518 + color: '#DC143CFF' + - uid: 12858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3519 + color: '#DC143CFF' + - uid: 12859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -52.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3520 + color: '#DC143CFF' + - uid: 12860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -51.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3521 + color: '#DC143CFF' + - uid: 12861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -50.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3523 + color: '#DC143CFF' + - uid: 12862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -49.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3524 + color: '#DC143CFF' + - uid: 12863 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -48.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3526 + color: '#DC143CFF' + - uid: 12864 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -46.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3527 + color: '#DC143CFF' + - uid: 12865 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -45.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3528 + color: '#DC143CFF' + - uid: 12866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -44.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3529 + color: '#DC143CFF' + - uid: 12867 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -43.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3530 + color: '#DC143CFF' + - uid: 12868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -42.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3531 + color: '#DC143CFF' + - uid: 12869 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -41.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3532 + color: '#DC143CFF' + - uid: 12870 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -40.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3533 + color: '#DC143CFF' + - uid: 12871 components: - type: Transform - pos: -109.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -39.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3556 + color: '#DC143CFF' + - uid: 12872 components: - type: Transform - pos: -109.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3557 + color: '#DC143CFF' + - uid: 12873 components: - type: Transform - pos: -109.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3559 + color: '#DC143CFF' + - uid: 12874 components: - type: Transform - pos: -109.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -36.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3560 + color: '#DC143CFF' + - uid: 12875 components: - type: Transform - pos: -109.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -35.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3565 + color: '#DC143CFF' + - uid: 12876 components: - type: Transform - pos: -107.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3566 + color: '#DC143CFF' + - uid: 12877 components: - type: Transform - pos: -107.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3567 + color: '#DC143CFF' + - uid: 12878 components: - type: Transform - pos: -107.5,19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -67.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3568 + color: '#4169E1FF' + - uid: 12879 components: - type: Transform - pos: -109.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -66.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3569 + color: '#4169E1FF' + - uid: 12880 components: - type: Transform - pos: -107.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3573 + color: '#4169E1FF' + - uid: 12881 components: - type: Transform - pos: -109.5,22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -64.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3574 + color: '#4169E1FF' + - uid: 12882 components: - type: Transform - pos: -107.5,22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -63.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3575 + color: '#4169E1FF' + - uid: 12883 components: - type: Transform - pos: -109.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -62.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3576 + color: '#4169E1FF' + - uid: 12884 components: - type: Transform - pos: -109.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3577 + color: '#4169E1FF' + - uid: 12885 components: - type: Transform - pos: -107.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -59.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3578 + color: '#4169E1FF' + - uid: 12886 components: - type: Transform - pos: -109.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3579 + color: '#4169E1FF' + - uid: 12887 components: - type: Transform - pos: -107.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -57.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3582 + color: '#4169E1FF' + - uid: 12888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -56.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3583 + color: '#4169E1FF' + - uid: 12889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -54.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3584 + color: '#4169E1FF' + - uid: 12890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3585 + color: '#4169E1FF' + - uid: 12891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -52.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3586 + color: '#4169E1FF' + - uid: 12892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -51.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3587 + color: '#4169E1FF' + - uid: 12893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -50.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3588 + color: '#4169E1FF' + - uid: 12894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -48.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3589 + color: '#4169E1FF' + - uid: 12895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -47.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3590 + color: '#4169E1FF' + - uid: 12896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -46.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3591 + color: '#4169E1FF' + - uid: 12897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -45.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3592 + color: '#4169E1FF' + - uid: 12898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -44.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3594 + color: '#4169E1FF' + - uid: 12899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -43.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3595 + color: '#4169E1FF' + - uid: 12900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -42.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3596 + color: '#4169E1FF' + - uid: 12901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -101.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -41.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3597 + color: '#4169E1FF' + - uid: 12902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -40.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3598 + color: '#4169E1FF' + - uid: 12903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -39.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3599 + color: '#4169E1FF' + - uid: 12904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3606 + color: '#4169E1FF' + - uid: 12905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3607 + color: '#4169E1FF' + - uid: 12906 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -36.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3609 + color: '#4169E1FF' + - uid: 12907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -35.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3610 + color: '#4169E1FF' + - uid: 12908 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3611 + color: '#4169E1FF' + - uid: 12909 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3612 + color: '#4169E1FF' + - uid: 12910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,23.5 - parent: 89 + pos: -73.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3613 + color: '#DC143CFF' + - uid: 12911 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,22.5 - parent: 89 + pos: -73.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3623 + color: '#DC143CFF' + - uid: 12912 components: - type: Transform - pos: -107.5,26.5 - parent: 89 + pos: -73.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3629 + color: '#DC143CFF' + - uid: 12913 components: - type: Transform - pos: -88.5,9.5 - parent: 89 + pos: -73.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3632 + color: '#DC143CFF' + - uid: 12914 components: - type: Transform - pos: -89.5,1.5 - parent: 89 + pos: -73.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3633 + color: '#DC143CFF' + - uid: 12915 components: - type: Transform - pos: -89.5,2.5 - parent: 89 + pos: -73.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3634 + color: '#DC143CFF' + - uid: 12916 components: - type: Transform - pos: -89.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -72.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3635 + color: '#DC143CFF' + - uid: 12917 components: - type: Transform - pos: -88.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -71.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3636 + color: '#DC143CFF' + - uid: 12918 components: - type: Transform - pos: -88.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -70.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3637 + color: '#DC143CFF' + - uid: 12919 components: - type: Transform - pos: -88.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3639 + color: '#DC143CFF' + - uid: 12920 components: - type: Transform - pos: -88.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3640 + color: '#4169E1FF' + - uid: 12921 components: - type: Transform - pos: -88.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3641 + color: '#4169E1FF' + - uid: 12922 components: - type: Transform - pos: -87.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3642 + color: '#4169E1FF' + - uid: 12923 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3643 + color: '#4169E1FF' + - uid: 12924 components: - type: Transform - pos: -87.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3644 + color: '#4169E1FF' + - uid: 12925 components: - type: Transform - pos: -87.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -72.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3646 + color: '#4169E1FF' + - uid: 12926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -71.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3647 + color: '#4169E1FF' + - uid: 12927 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -70.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3649 + color: '#4169E1FF' + - uid: 12928 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -69.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3650 + color: '#4169E1FF' + - uid: 12929 components: - type: Transform - pos: -87.5,8.5 - parent: 89 + pos: -32.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3651 + color: '#4169E1FF' + - uid: 12930 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,10.5 - parent: 89 + pos: -32.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3652 + color: '#4169E1FF' + - uid: 12931 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,10.5 - parent: 89 + pos: -32.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3657 + color: '#4169E1FF' + - uid: 12932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3659 + color: '#DC143CFF' + - uid: 12933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3660 + color: '#DC143CFF' + - uid: 12934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3661 + color: '#DC143CFF' + - uid: 12935 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3662 + color: '#4169E1FF' + - uid: 12936 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3665 + color: '#4169E1FF' + - uid: 12937 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,9.5 - parent: 89 + pos: -30.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3666 + color: '#DC143CFF' + - uid: 12938 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,10.5 - parent: 89 + pos: -30.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3667 + color: '#DC143CFF' + - uid: 12939 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3668 + color: '#4169E1FF' + - uid: 12940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,9.5 - parent: 89 + pos: -30.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3670 + color: '#DC143CFF' + - uid: 12941 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,10.5 - parent: 89 + pos: -30.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3676 + color: '#4169E1FF' + - uid: 12942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3678 + color: '#DC143CFF' + - uid: 12943 components: - type: Transform rot: -1.5707963267948966 rad - pos: -74.5,10.5 - parent: 89 + pos: -31.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3680 + color: '#DC143CFF' + - uid: 12944 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -30.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3683 + color: '#DC143CFF' + - uid: 12945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -21.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3684 + color: '#DC143CFF' + - uid: 12946 components: - type: Transform - pos: -72.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3685 + color: '#DC143CFF' + - uid: 12947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3687 + color: '#DC143CFF' + - uid: 12948 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -24.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3688 + color: '#DC143CFF' + - uid: 12949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3689 + color: '#DC143CFF' + - uid: 12950 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,5.5 - parent: 89 + pos: -26.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3690 + color: '#DC143CFF' + - uid: 12951 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3691 + color: '#DC143CFF' + - uid: 12952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3692 + color: '#DC143CFF' + - uid: 12953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3697 + color: '#DC143CFF' + - uid: 12954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3700 + color: '#DC143CFF' + - uid: 12955 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3701 + color: '#DC143CFF' + - uid: 12956 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3704 + color: '#DC143CFF' + - uid: 12957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3705 + color: '#DC143CFF' + - uid: 12958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3707 + color: '#DC143CFF' + - uid: 12959 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,4.5 - parent: 89 + pos: -35.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3710 + color: '#DC143CFF' + - uid: 12960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,5.5 - parent: 89 + pos: -36.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3714 + color: '#DC143CFF' + - uid: 12961 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,10.5 - parent: 89 + pos: -37.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3715 + color: '#DC143CFF' + - uid: 12962 components: - type: Transform - pos: -65.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3716 + color: '#DC143CFF' + - uid: 12963 components: - type: Transform - pos: -66.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3718 + color: '#4169E1FF' + - uid: 12964 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -26.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3720 + color: '#4169E1FF' + - uid: 12965 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3721 + color: '#4169E1FF' + - uid: 12966 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3722 + color: '#4169E1FF' + - uid: 12967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3723 + color: '#4169E1FF' + - uid: 12968 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3724 + color: '#4169E1FF' + - uid: 12969 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3725 + color: '#4169E1FF' + - uid: 12970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3726 + color: '#4169E1FF' + - uid: 12971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3727 + color: '#4169E1FF' + - uid: 12972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -34.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3728 + color: '#4169E1FF' + - uid: 12973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -35.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3729 + color: '#4169E1FF' + - uid: 12974 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -36.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3730 + color: '#4169E1FF' + - uid: 12975 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -37.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3732 + color: '#4169E1FF' + - uid: 12976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -38.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3733 + color: '#4169E1FF' + - uid: 12977 components: - type: Transform - pos: -56.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -39.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3734 + color: '#4169E1FF' + - uid: 12978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,4.5 - parent: 89 + pos: -39.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3735 + color: '#DC143CFF' + - uid: 12979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,5.5 - parent: 89 + pos: -39.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3736 + color: '#DC143CFF' + - uid: 12980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,4.5 - parent: 89 + pos: -39.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3738 + color: '#DC143CFF' + - uid: 12981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,5.5 - parent: 89 + pos: -39.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3739 + color: '#DC143CFF' + - uid: 12982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,4.5 - parent: 89 + pos: -39.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3740 + color: '#DC143CFF' + - uid: 12983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,4.5 - parent: 89 + pos: -39.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3741 + color: '#DC143CFF' + - uid: 12984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -52.5,5.5 - parent: 89 + pos: -39.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3742 + color: '#DC143CFF' + - uid: 12985 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,5.5 - parent: 89 + pos: -39.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3744 + color: '#DC143CFF' + - uid: 12986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,5.5 - parent: 89 + pos: -39.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3746 + color: '#DC143CFF' + - uid: 12987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,4.5 - parent: 89 + pos: -39.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3747 + color: '#DC143CFF' + - uid: 12988 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -48.5,5.5 - parent: 89 + pos: -39.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3749 + color: '#DC143CFF' + - uid: 12989 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,4.5 - parent: 89 + pos: -40.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3750 + color: '#4169E1FF' + - uid: 12990 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,4.5 - parent: 89 + pos: -40.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3751 + color: '#4169E1FF' + - uid: 12991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,4.5 - parent: 89 + pos: -40.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3752 + color: '#4169E1FF' + - uid: 12992 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,4.5 - parent: 89 + pos: -40.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3753 + color: '#4169E1FF' + - uid: 12993 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,5.5 - parent: 89 + pos: -40.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3754 + color: '#4169E1FF' + - uid: 12994 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,5.5 - parent: 89 + pos: -40.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3755 + color: '#4169E1FF' + - uid: 12995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,5.5 - parent: 89 + pos: -40.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3756 + color: '#4169E1FF' + - uid: 12996 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,4.5 - parent: 89 + pos: -40.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3757 + color: '#4169E1FF' + - uid: 12997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,5.5 - parent: 89 + pos: -40.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3758 + color: '#4169E1FF' + - uid: 12998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,5.5 - parent: 89 + pos: -40.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3759 + color: '#4169E1FF' + - uid: 12999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,4.5 - parent: 89 + pos: -40.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3761 + color: '#4169E1FF' + - uid: 13000 components: - type: Transform rot: -1.5707963267948966 rad - pos: -41.5,5.5 - parent: 89 + pos: -41.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3762 + color: '#4169E1FF' + - uid: 13001 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,5.5 - parent: 89 + pos: -50.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3764 + color: '#4169E1FF' + - uid: 13002 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,3.5 - parent: 89 + pos: -50.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3765 + color: '#4169E1FF' + - uid: 13003 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,2.5 - parent: 89 + pos: -50.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3766 + color: '#4169E1FF' + - uid: 13004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,3.5 - parent: 89 + pos: -50.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3767 + color: '#4169E1FF' + - uid: 13005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,4.5 - parent: 89 + pos: -50.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3768 + color: '#4169E1FF' + - uid: 13006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,2.5 - parent: 89 + pos: -50.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3769 + color: '#4169E1FF' + - uid: 13007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,4.5 - parent: 89 + pos: -49.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3770 + color: '#DC143CFF' + - uid: 13008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,3.5 - parent: 89 + pos: -49.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3771 + color: '#DC143CFF' + - uid: 13009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,4.5 - parent: 89 + pos: -49.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3772 + color: '#DC143CFF' + - uid: 13010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,3.5 - parent: 89 + pos: -49.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3773 + color: '#DC143CFF' + - uid: 13011 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,4.5 - parent: 89 + pos: -49.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3774 + color: '#DC143CFF' + - uid: 13012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,3.5 - parent: 89 + pos: -49.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3776 + color: '#DC143CFF' + - uid: 13013 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,4.5 - parent: 89 + pos: -49.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3777 + color: '#DC143CFF' + - uid: 13014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3778 + color: '#DC143CFF' + - uid: 13015 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3779 + color: '#DC143CFF' + - uid: 13016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,5.5 - parent: 89 + pos: -50.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3781 + color: '#4169E1FF' + - uid: 13017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -49.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3782 + color: '#DC143CFF' + - uid: 13018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -34.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -49.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3784 + color: '#DC143CFF' + - uid: 13019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -51.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3799 + color: '#4169E1FF' + - uid: 13020 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -51.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3800 + color: '#4169E1FF' + - uid: 13021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -51.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3801 + color: '#4169E1FF' + - uid: 13022 components: - type: Transform rot: 1.5707963267948966 rad - pos: -37.5,3.5 - parent: 89 + pos: -87.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3802 + color: '#4169E1FF' + - uid: 13023 components: - type: Transform - pos: -54.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -86.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3803 + color: '#4169E1FF' + - uid: 13024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,5.5 - parent: 89 + pos: -85.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3804 + color: '#4169E1FF' + - uid: 13025 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,3.5 - parent: 89 + pos: -83.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3810 + color: '#4169E1FF' + - uid: 13026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -82.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3811 + color: '#4169E1FF' + - uid: 13027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -81.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3813 + color: '#4169E1FF' + - uid: 13028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -80.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3814 + color: '#4169E1FF' + - uid: 13029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -79.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3815 + color: '#4169E1FF' + - uid: 13030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -78.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3816 + color: '#4169E1FF' + - uid: 13031 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -77.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3817 + color: '#4169E1FF' + - uid: 13032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -88.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3818 + color: '#DC143CFF' + - uid: 13033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -87.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3822 + color: '#DC143CFF' + - uid: 13034 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -86.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3824 + color: '#DC143CFF' + - uid: 13035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -85.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3828 + color: '#DC143CFF' + - uid: 13036 components: - type: Transform - pos: -19.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -84.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3829 + color: '#DC143CFF' + - uid: 13037 components: - type: Transform - pos: -19.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -83.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3831 + color: '#DC143CFF' + - uid: 13038 components: - type: Transform - pos: -17.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -81.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3834 + color: '#DC143CFF' + - uid: 13039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -80.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3835 + color: '#DC143CFF' + - uid: 13040 components: - type: Transform - pos: -17.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -79.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3837 + color: '#DC143CFF' + - uid: 13041 components: - type: Transform - pos: -17.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -78.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3839 + color: '#DC143CFF' + - uid: 13042 components: - type: Transform - pos: -17.5,-1.5 - parent: 89 + pos: -77.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3841 + color: '#DC143CFF' + - uid: 13043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-0.5 - parent: 89 + pos: -94.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3844 + color: '#4169E1FF' + - uid: 13044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-1.5 - parent: 89 + pos: -94.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3845 + color: '#4169E1FF' + - uid: 13045 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 89 + pos: -95.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3847 + color: '#DC143CFF' + - uid: 13046 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 89 + pos: -95.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3848 + color: '#DC143CFF' + - uid: 13047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -97.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3849 + color: '#4169E1FF' + - uid: 13048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -97.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3851 + color: '#DC143CFF' + - uid: 13049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3856 + color: '#4169E1FF' + - uid: 13050 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3857 + color: '#DC143CFF' + - uid: 13051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3858 + color: '#4169E1FF' + - uid: 13052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3859 + color: '#DC143CFF' + - uid: 13053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -94.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3865 + color: '#DC143CFF' + - uid: 13054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -98.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3866 + color: '#DC143CFF' + - uid: 13055 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 89 + pos: -31.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3867 + color: '#4169E1FF' + - uid: 13056 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-3.5 - parent: 89 + pos: -3.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3870 + color: '#DC143CFF' + - uid: 13057 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 89 + pos: -2.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3875 + color: '#4169E1FF' + - uid: 13058 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,-2.5 - parent: 89 + pos: -13.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3876 + color: '#4169E1FF' + - uid: 13059 components: - type: Transform rot: -1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 89 + pos: 4.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3877 + color: '#FF0000FF' + - uid: 13060 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 89 + pos: 4.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3879 + color: '#4169E1FF' + - uid: 13061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -7.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3881 + color: '#DC143CFF' + - uid: 13062 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-2.5 - parent: 89 + pos: -7.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3882 + color: '#DC143CFF' + - uid: 13063 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-3.5 - parent: 89 + pos: -7.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3885 + color: '#DC143CFF' + - uid: 13064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,3.5 - parent: 89 + pos: -7.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3949 + color: '#DC143CFF' + - uid: 13065 components: - type: Transform - pos: -19.5,-3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3959 + color: '#4169E1FF' + - uid: 13066 components: - type: Transform rot: 3.141592653589793 rad - pos: 4.5,-4.5 - parent: 89 + pos: -6.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3963 + color: '#4169E1FF' + - uid: 13067 components: - type: Transform - pos: -19.5,-2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3965 + color: '#4169E1FF' + - uid: 13068 components: - type: Transform - pos: -17.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -7.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3966 + color: '#4169E1FF' + - uid: 13069 components: - type: Transform - pos: -17.5,-3.5 - parent: 89 + pos: -6.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3967 + color: '#4169E1FF' + - uid: 13070 components: - type: Transform - pos: -19.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3968 + color: '#DC143CFF' + - uid: 13071 components: - type: Transform - pos: -19.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -4.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3970 + color: '#4169E1FF' + - uid: 13072 components: - type: Transform - pos: -17.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -4.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3973 + color: '#DC143CFF' + - uid: 13073 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-6.5 - parent: 89 + pos: -3.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3974 + color: '#4169E1FF' + - uid: 13074 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-7.5 - parent: 89 + pos: -5.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3975 + color: '#DC143CFF' + - uid: 13075 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,-6.5 - parent: 89 + pos: -6.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3978 + color: '#DC143CFF' + - uid: 13076 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-7.5 - parent: 89 + pos: -3.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3979 + color: '#4169E1FF' + - uid: 13077 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-6.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3991 - components: - - type: Transform - pos: -22.5,-7.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3992 - components: - - type: Transform - pos: -22.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3994 - components: - - type: Transform - pos: -20.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3996 - components: - - type: Transform - pos: -20.5,-9.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3997 - components: - - type: Transform - pos: -22.5,-9.5 - parent: 89 + pos: -18.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3998 + color: '#4169E1FF' + - uid: 13078 components: - type: Transform - pos: 52.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4001 + color: '#4169E1FF' + - uid: 13079 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4009 + color: '#4169E1FF' + - uid: 13080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4010 + color: '#4169E1FF' + - uid: 13081 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4011 + color: '#DC143CFF' + - uid: 13082 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4012 + color: '#DC143CFF' + - uid: 13083 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4013 + color: '#DC143CFF' + - uid: 13084 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,2.5 - parent: 89 + pos: -8.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4014 + color: '#DC143CFF' + - uid: 13085 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,3.5 - parent: 89 + pos: -7.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4015 + color: '#4169E1FF' + - uid: 13086 components: - type: Transform rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 89 + pos: -8.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4016 + color: '#4169E1FF' + - uid: 13087 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 89 + pos: -4.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4018 + color: '#4169E1FF' + - uid: 13088 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4019 + color: '#DC143CFF' + - uid: 13089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4020 + color: '#DC143CFF' + - uid: 13090 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4022 + color: '#DC143CFF' + - uid: 13091 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -57.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4024 + color: '#DC143CFF' + - uid: 13092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4025 + color: '#4169E1FF' + - uid: 13093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4026 + color: '#4169E1FF' + - uid: 13094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4027 + color: '#4169E1FF' + - uid: 13095 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4028 + color: '#4169E1FF' + - uid: 13096 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4029 + color: '#4169E1FF' + - uid: 13097 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,3.5 - parent: 89 + pos: -65.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4030 + color: '#DC143CFF' + - uid: 13098 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,3.5 - parent: 89 + pos: -65.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4031 + color: '#4169E1FF' + - uid: 13099 components: - type: Transform rot: 1.5707963267948966 rad - pos: -5.5,2.5 - parent: 89 + pos: -64.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4032 + color: '#DC143CFF' + - uid: 13100 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,2.5 - parent: 89 + pos: -64.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4034 + color: '#4169E1FF' + - uid: 13101 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,3.5 - parent: 89 + pos: -63.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4036 + color: '#DC143CFF' + - uid: 13102 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,2.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4041 - components: - - type: Transform - pos: -2.5,1.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4043 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,2.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4044 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,2.5 - parent: 89 + pos: -63.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4045 + color: '#4169E1FF' + - uid: 13103 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,2.5 - parent: 89 + pos: -62.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4048 + color: '#DC143CFF' + - uid: 13104 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,2.5 - parent: 89 + pos: -62.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4050 + color: '#4169E1FF' + - uid: 13105 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,3.5 - parent: 89 + pos: -61.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4051 + color: '#DC143CFF' + - uid: 13106 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,3.5 - parent: 89 + pos: -61.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4052 + color: '#4169E1FF' + - uid: 13107 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,2.5 - parent: 89 + pos: -60.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4053 + color: '#DC143CFF' + - uid: 13108 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,2.5 - parent: 89 + pos: -60.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4054 + color: '#4169E1FF' + - uid: 13109 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,2.5 - parent: 89 + pos: -59.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4055 + color: '#DC143CFF' + - uid: 13110 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,3.5 - parent: 89 + pos: -59.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4056 + color: '#4169E1FF' + - uid: 13111 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,3.5 - parent: 89 + pos: -58.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4057 + color: '#DC143CFF' + - uid: 13112 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,2.5 - parent: 89 + pos: -58.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4058 + color: '#4169E1FF' + - uid: 13113 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,2.5 - parent: 89 + pos: -57.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4059 + color: '#4169E1FF' + - uid: 13114 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,3.5 - parent: 89 + pos: -56.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4060 + color: '#4169E1FF' + - uid: 13115 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,3.5 - parent: 89 + pos: -55.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4061 + color: '#4169E1FF' + - uid: 13116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,2.5 - parent: 89 + pos: -66.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4062 + color: '#4169E1FF' + - uid: 13117 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,2.5 - parent: 89 + pos: -66.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4063 + color: '#4169E1FF' + - uid: 13118 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,3.5 - parent: 89 + pos: -66.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4064 + color: '#4169E1FF' + - uid: 13119 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,3.5 - parent: 89 + pos: -66.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4065 + color: '#4169E1FF' + - uid: 13120 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,2.5 - parent: 89 + pos: -66.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4066 + color: '#4169E1FF' + - uid: 13121 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,2.5 - parent: 89 + pos: -66.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4067 + color: '#4169E1FF' + - uid: 13122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,3.5 - parent: 89 + pos: -66.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4068 + color: '#4169E1FF' + - uid: 13123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,3.5 - parent: 89 + pos: -66.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4069 + color: '#4169E1FF' + - uid: 13124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 89 + pos: -66.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4070 + color: '#4169E1FF' + - uid: 13125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 89 + pos: -66.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4071 + color: '#4169E1FF' + - uid: 13126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,3.5 - parent: 89 + pos: -66.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4072 + color: '#4169E1FF' + - uid: 13127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,3.5 - parent: 89 + pos: -66.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4073 + color: '#4169E1FF' + - uid: 13128 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,2.5 - parent: 89 + pos: -66.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4074 + color: '#DC143CFF' + - uid: 13129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4075 + color: '#DC143CFF' + - uid: 13130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4076 + color: '#DC143CFF' + - uid: 13131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4077 + color: '#DC143CFF' + - uid: 13132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,2.5 - parent: 89 + pos: -67.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4079 + color: '#DC143CFF' + - uid: 13133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,2.5 - parent: 89 + pos: -67.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4080 + color: '#DC143CFF' + - uid: 13134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,3.5 - parent: 89 + pos: -67.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4081 + color: '#DC143CFF' + - uid: 13135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,3.5 - parent: 89 + pos: -67.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4082 + color: '#DC143CFF' + - uid: 13136 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,2.5 - parent: 89 + pos: -67.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4083 + color: '#DC143CFF' + - uid: 13137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,2.5 - parent: 89 + pos: -67.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4084 + color: '#DC143CFF' + - uid: 13138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,3.5 - parent: 89 + pos: -67.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4085 + color: '#DC143CFF' + - uid: 13139 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,3.5 - parent: 89 + pos: -67.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4087 + color: '#DC143CFF' + - uid: 13140 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,2.5 - parent: 89 + pos: -67.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4088 + color: '#DC143CFF' + - uid: 13141 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,3.5 - parent: 89 + pos: -67.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4090 + color: '#DC143CFF' + - uid: 13142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,2.5 - parent: 89 + pos: -67.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4092 + color: '#DC143CFF' + - uid: 13143 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,3.5 - parent: 89 + pos: -67.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4093 + color: '#DC143CFF' + - uid: 13144 components: - type: Transform - pos: 39.5,4.5 - parent: 89 + pos: -67.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4094 + color: '#DC143CFF' + - uid: 13145 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,3.5 - parent: 89 + pos: -67.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4095 + color: '#DC143CFF' + - uid: 13146 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,2.5 - parent: 89 + pos: -67.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4096 + color: '#DC143CFF' + - uid: 13147 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,2.5 - parent: 89 + pos: -67.5,42.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4098 + color: '#DC143CFF' + - uid: 13148 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,3.5 - parent: 89 + pos: -67.5,43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4099 + color: '#DC143CFF' + - uid: 13149 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,2.5 - parent: 89 + pos: 33.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4100 + color: '#4169E1FF' + - uid: 13150 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,2.5 - parent: 89 + pos: 31.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4101 + color: '#4169E1FF' + - uid: 13151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4102 + color: '#DC143CFF' + - uid: 13152 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4103 + color: '#DC143CFF' + - uid: 13153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4104 + color: '#DC143CFF' + - uid: 13154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4106 + color: '#DC143CFF' + - uid: 13155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4107 + color: '#DC143CFF' + - uid: 13156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4108 + color: '#DC143CFF' + - uid: 13157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4109 + color: '#DC143CFF' + - uid: 13158 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4110 + color: '#4169E1FF' + - uid: 13159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4111 + color: '#4169E1FF' + - uid: 13160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4112 + color: '#4169E1FF' + - uid: 13161 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4113 + color: '#4169E1FF' + - uid: 13162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4114 + color: '#4169E1FF' + - uid: 13163 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4115 + color: '#4169E1FF' + - uid: 13164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4116 + rot: 3.141592653589793 rad + pos: -60.5,31.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13165 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -60.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4117 + color: '#4169E1FF' + - uid: 13166 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,2.5 - parent: 89 + pos: -65.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4118 + color: '#DC143CFF' + - uid: 13167 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,3.5 - parent: 89 + pos: -64.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4125 + color: '#DC143CFF' + - uid: 13168 components: - type: Transform rot: 1.5707963267948966 rad - pos: 35.5,1.5 - parent: 89 + pos: -63.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4126 + color: '#DC143CFF' + - uid: 13169 components: - type: Transform rot: 1.5707963267948966 rad - pos: 37.5,1.5 - parent: 89 + pos: -62.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4127 + color: '#DC143CFF' + - uid: 13170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4128 + color: '#DC143CFF' + - uid: 13171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -67.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4129 + color: '#DC143CFF' + - uid: 13172 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,2.5 - parent: 89 + pos: -59.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4130 + color: '#DC143CFF' + - uid: 13173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,2.5 - parent: 89 + pos: -47.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4131 + color: '#DC143CFF' + - uid: 13174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -67.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4133 + color: '#DC143CFF' + - uid: 13175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -67.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4134 + color: '#DC143CFF' + - uid: 13176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -68.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4138 + color: '#4169E1FF' + - uid: 13177 components: - type: Transform - pos: 39.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -68.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4139 + color: '#4169E1FF' + - uid: 13178 components: - type: Transform - pos: 39.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -68.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4140 + color: '#4169E1FF' + - uid: 13179 components: - type: Transform - pos: 39.5,5.5 - parent: 89 + pos: -68.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4142 + color: '#4169E1FF' + - uid: 13180 components: - type: Transform - pos: 39.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4143 + color: '#DC143CFF' + - uid: 13181 components: - type: Transform - pos: 34.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4144 + color: '#DC143CFF' + - uid: 13182 components: - type: Transform - pos: 34.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -64.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4145 + color: '#DC143CFF' + - uid: 13183 components: - type: Transform - pos: 34.5,6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -63.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4148 + color: '#DC143CFF' + - uid: 13184 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,8.5 - parent: 89 + pos: -62.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4149 + color: '#DC143CFF' + - uid: 13185 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -61.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4150 + color: '#DC143CFF' + - uid: 13186 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,8.5 - parent: 89 + pos: -60.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4151 + color: '#DC143CFF' + - uid: 13187 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -59.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4152 + color: '#DC143CFF' + - uid: 13188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -67.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4153 + color: '#4169E1FF' + - uid: 13189 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4154 + color: '#4169E1FF' + - uid: 13190 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4158 + color: '#4169E1FF' + - uid: 13191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -64.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4164 + color: '#4169E1FF' + - uid: 13192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -63.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4165 + color: '#4169E1FF' + - uid: 13193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -62.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4166 + color: '#4169E1FF' + - uid: 13194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -61.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4167 + color: '#4169E1FF' + - uid: 13195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -60.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4168 + color: '#4169E1FF' + - uid: 13196 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -59.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4169 + color: '#4169E1FF' + - uid: 13197 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -58.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4170 + color: '#4169E1FF' + - uid: 13198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -57.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4171 + color: '#4169E1FF' + - uid: 13199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -56.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4172 + color: '#4169E1FF' + - uid: 13200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -73.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4173 + color: '#DC143CFF' + - uid: 13201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,1.5 - parent: 89 + pos: -71.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4174 + color: '#4169E1FF' + - uid: 13202 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,1.5 - parent: 89 + pos: -71.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4175 + color: '#4169E1FF' + - uid: 13203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,0.5 - parent: 89 + pos: -71.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4176 + color: '#4169E1FF' + - uid: 13204 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,0.5 - parent: 89 + pos: -71.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4177 + color: '#4169E1FF' + - uid: 13205 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,1.5 - parent: 89 + pos: -71.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4178 + color: '#4169E1FF' + - uid: 13206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,1.5 - parent: 89 + pos: -71.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4180 + color: '#4169E1FF' + - uid: 13207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -70.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4198 + color: '#4169E1FF' + - uid: 13208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4199 + color: '#4169E1FF' + - uid: 13209 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,0.5 - parent: 89 + pos: -68.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4200 + color: '#4169E1FF' + - uid: 13210 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,1.5 - parent: 89 + pos: -67.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4203 + color: '#4169E1FF' + - uid: 13211 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -67.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4204 + color: '#DC143CFF' + - uid: 13212 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -68.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4205 + color: '#DC143CFF' + - uid: 13213 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,4.5 - parent: 89 + pos: -69.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4206 + color: '#DC143CFF' + - uid: 13214 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,5.5 - parent: 89 + pos: -69.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4207 + color: '#DC143CFF' + - uid: 13215 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,6.5 - parent: 89 + pos: -69.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4208 + color: '#DC143CFF' + - uid: 13216 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,7.5 - parent: 89 + pos: -69.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4210 + color: '#DC143CFF' + - uid: 13217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 53.5,8.5 - parent: 89 + pos: -66.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4211 + color: '#DC143CFF' + - uid: 13218 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,8.5 - parent: 89 + pos: -87.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4212 + color: '#DC143CFF' + - uid: 13219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -42.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4213 + color: '#4169E1FF' + - uid: 13220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -43.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4214 + color: '#4169E1FF' + - uid: 13221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 58.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -40.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4215 + color: '#DC143CFF' + - uid: 13222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -41.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4217 + color: '#DC143CFF' + - uid: 13223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -42.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4218 + color: '#DC143CFF' + - uid: 13224 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -43.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4220 + color: '#DC143CFF' + - uid: 13225 components: - type: Transform - pos: 60.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -40.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4221 + color: '#DC143CFF' + - uid: 13226 components: - type: Transform - pos: 60.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -23.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4223 + color: '#4169E1FF' + - uid: 13227 components: - type: Transform - pos: 60.5,5.5 - parent: 89 + pos: -32.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4224 + color: '#DC143CFF' + - uid: 13228 components: - type: Transform - pos: 60.5,4.5 - parent: 89 + pos: -62.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4225 + color: '#DC143CFF' + - uid: 13229 components: - type: Transform - pos: 60.5,3.5 - parent: 89 + pos: -47.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4226 + color: '#DC143CFF' + - uid: 13230 components: - type: Transform - pos: 60.5,2.5 - parent: 89 + pos: -12.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4227 + color: '#DC143CFF' + - uid: 13231 components: - type: Transform - pos: 60.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -41.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4233 + color: '#4169E1FF' + - uid: 13232 components: - type: Transform - pos: 51.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -41.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4234 + color: '#4169E1FF' + - uid: 13233 components: - type: Transform - pos: 52.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -41.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4235 + color: '#4169E1FF' + - uid: 13234 components: - type: Transform - pos: 52.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -39.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4236 + color: '#DC143CFF' + - uid: 13235 components: - type: Transform - pos: 52.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4237 + rot: 1.5707963267948966 rad + pos: -78.5,-13.5 + parent: 2 + - uid: 13236 components: - type: Transform - pos: 52.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4238 + rot: 1.5707963267948966 rad + pos: -78.5,-11.5 + parent: 2 + - uid: 13237 components: - type: Transform - pos: 52.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4240 + rot: 3.141592653589793 rad + pos: -75.5,-12.5 + parent: 2 + - uid: 13238 components: - type: Transform - pos: 52.5,8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4244 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 + parent: 2 + - uid: 13239 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,0.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4245 + rot: 1.5707963267948966 rad + pos: -77.5,-11.5 + parent: 2 + - uid: 13240 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,0.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4246 + pos: -141.5,-0.5 + parent: 2 + - uid: 13241 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,0.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4248 + pos: -140.5,-0.5 + parent: 2 + - uid: 13242 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4249 + color: '#4169E1FF' + - uid: 13243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4250 + color: '#4169E1FF' + - uid: 13244 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4251 + color: '#4169E1FF' + - uid: 13245 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,0.5 - parent: 89 + pos: -1.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4252 + color: '#4169E1FF' + - uid: 13246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,0.5 - parent: 89 + pos: -1.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4263 + color: '#4169E1FF' + - uid: 13247 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -12.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4264 + color: '#4169E1FF' + - uid: 13248 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,2.5 - parent: 89 + pos: -14.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4265 + color: '#4169E1FF' + - uid: 13249 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,3.5 - parent: 89 + pos: -14.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4266 + color: '#4169E1FF' + - uid: 13250 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,4.5 - parent: 89 + pos: -14.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4268 + color: '#4169E1FF' + - uid: 13251 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,5.5 - parent: 89 + pos: -14.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4269 + color: '#4169E1FF' + - uid: 13252 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,6.5 - parent: 89 + pos: -14.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4270 + color: '#4169E1FF' + - uid: 13253 components: - type: Transform rot: 3.141592653589793 rad - pos: 61.5,7.5 - parent: 89 + pos: -14.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4271 + color: '#4169E1FF' + - uid: 13254 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4327 + color: '#4169E1FF' + - uid: 13255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,-8.5 - parent: 89 - - uid: 4328 + rot: -1.5707963267948966 rad + pos: -126.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-8.5 - parent: 89 - - uid: 4353 + rot: -1.5707963267948966 rad + pos: -125.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13257 components: - type: Transform - pos: -0.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -123.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4357 + color: '#4169E1FF' + - uid: 13258 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 89 + pos: -116.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4358 + color: '#4169E1FF' + - uid: 13259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4359 + rot: 1.5707963267948966 rad + pos: -128.5,9.5 + parent: 2 + - uid: 13260 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4360 + color: '#DC143CFF' + - uid: 13261 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4361 + color: '#DC143CFF' + - uid: 13262 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4367 + color: '#DC143CFF' + - uid: 13263 components: - type: Transform - pos: -12.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4368 + color: '#DC143CFF' + - uid: 13264 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,8.5 - parent: 89 + pos: -115.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4369 + color: '#DC143CFF' + - uid: 13265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,8.5 - parent: 89 + pos: -121.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4370 + color: '#4169E1FF' + - uid: 13266 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,7.5 - parent: 89 + pos: -111.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4371 + color: '#4169E1FF' + - uid: 13267 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 89 + pos: -112.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4372 + color: '#4169E1FF' + - uid: 13268 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,8.5 - parent: 89 + pos: -113.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4373 + color: '#4169E1FF' + - uid: 13269 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,8.5 - parent: 89 + pos: -114.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4374 + color: '#4169E1FF' + - uid: 13270 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,7.5 - parent: 89 + pos: -115.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4384 + color: '#4169E1FF' + - uid: 13271 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-11.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4385 + pos: -5.5,-42.5 + parent: 2 + - uid: 13272 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4386 + pos: -121.5,6.5 + parent: 2 + - uid: 13273 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4387 + rot: -1.5707963267948966 rad + pos: -122.5,5.5 + parent: 2 + - uid: 13274 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4388 + rot: -1.5707963267948966 rad + pos: -122.5,2.5 + parent: 2 + - uid: 13275 + components: + - type: Transform + pos: -121.5,1.5 + parent: 2 + - uid: 13276 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4389 + pos: -121.5,-0.5 + parent: 2 + - uid: 13277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4390 + rot: -1.5707963267948966 rad + pos: -122.5,-1.5 + parent: 2 + - uid: 13278 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4391 + rot: -1.5707963267948966 rad + pos: -123.5,-1.5 + parent: 2 + - uid: 13279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4393 + pos: -124.5,-2.5 + parent: 2 + - uid: 13280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4394 + pos: -128.5,-3.5 + parent: 2 + - uid: 13281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4395 + rot: 3.141592653589793 rad + pos: -129.5,-2.5 + parent: 2 + - uid: 13282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4396 + rot: 3.141592653589793 rad + pos: -129.5,-1.5 + parent: 2 + - uid: 13283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4397 + rot: 3.141592653589793 rad + pos: -129.5,-0.5 + parent: 2 + - uid: 13284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4398 + rot: 3.141592653589793 rad + pos: -129.5,0.5 + parent: 2 + - uid: 13285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4399 + rot: 3.141592653589793 rad + pos: -129.5,1.5 + parent: 2 + - uid: 13286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4400 + rot: 3.141592653589793 rad + pos: -129.5,2.5 + parent: 2 + - uid: 13287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4401 + rot: 3.141592653589793 rad + pos: -129.5,3.5 + parent: 2 + - uid: 13288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4402 + rot: 3.141592653589793 rad + pos: -129.5,4.5 + parent: 2 + - uid: 13289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4403 + rot: 3.141592653589793 rad + pos: -129.5,5.5 + parent: 2 + - uid: 13290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4404 + rot: 3.141592653589793 rad + pos: -129.5,6.5 + parent: 2 + - uid: 13291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4405 + pos: -129.5,7.5 + parent: 2 + - uid: 13292 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -131.5,8.5 + parent: 2 + - uid: 13293 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4406 + pos: -129.5,9.5 + parent: 2 + - uid: 13294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4407 + pos: -127.5,9.5 + parent: 2 + - uid: 13295 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4408 + pos: -126.5,9.5 + parent: 2 + - uid: 13296 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4409 + pos: -125.5,9.5 + parent: 2 + - uid: 13297 components: - type: Transform rot: 1.5707963267948966 rad - pos: -10.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4411 + pos: -124.5,9.5 + parent: 2 + - uid: 13298 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4412 + pos: -123.5,9.5 + parent: 2 + - uid: 13299 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-13.5 - parent: 89 + pos: -122.5,9.5 + parent: 2 + - uid: 13300 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -108.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4414 + color: '#4169E1FF' + - uid: 13301 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-12.5 - parent: 89 + pos: 8.5,20.5 + parent: 2 + - uid: 13302 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -109.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4415 + color: '#4169E1FF' + - uid: 13303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4416 + color: '#4169E1FF' + - uid: 13304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4417 + color: '#4169E1FF' + - uid: 13305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4418 + color: '#4169E1FF' + - uid: 13306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4419 + color: '#4169E1FF' + - uid: 13307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4420 + color: '#4169E1FF' + - uid: 13308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4421 + color: '#4169E1FF' + - uid: 13309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -116.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4422 + color: '#4169E1FF' + - uid: 13310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4423 + color: '#4169E1FF' + - uid: 13311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -118.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4424 + color: '#4169E1FF' + - uid: 13312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4430 + color: '#DC143CFF' + - uid: 13313 components: - type: Transform - pos: -1.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4431 + color: '#DC143CFF' + - uid: 13314 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-10.5 - parent: 89 + pos: -112.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4432 + color: '#DC143CFF' + - uid: 13315 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 89 + pos: -113.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4433 + color: '#DC143CFF' + - uid: 13316 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 89 + pos: -114.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4434 + color: '#DC143CFF' + - uid: 13317 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 89 + pos: -115.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4435 + color: '#DC143CFF' + - uid: 13318 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 89 + pos: -116.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4436 + color: '#DC143CFF' + - uid: 13319 components: - type: Transform - pos: -2.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4437 + color: '#DC143CFF' + - uid: 13320 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-13.5 - parent: 89 + pos: -118.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4438 + color: '#DC143CFF' + - uid: 13321 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-13.5 - parent: 89 + pos: -119.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4439 + color: '#4169E1FF' + - uid: 13322 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-14.5 - parent: 89 + pos: -120.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4440 + color: '#4169E1FF' + - uid: 13323 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-14.5 - parent: 89 + pos: -120.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4453 + color: '#4169E1FF' + - uid: 13324 components: - type: Transform - pos: -0.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4455 + color: '#4169E1FF' + - uid: 13325 components: - type: Transform - pos: -2.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4456 + color: '#4169E1FF' + - uid: 13326 components: - type: Transform - pos: -2.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 13327 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4457 + color: '#DC143CFF' + - uid: 13328 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,13.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 13329 components: - type: Transform - pos: -0.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -119.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4458 + color: '#DC143CFF' + - uid: 13330 components: - type: Transform - pos: -0.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4459 + color: '#DC143CFF' + - uid: 13331 components: - type: Transform - pos: -2.5,-18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4462 + color: '#DC143CFF' + - uid: 13332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4463 + color: '#DC143CFF' + - uid: 13333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4464 + color: '#DC143CFF' + - uid: 13334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4465 + color: '#DC143CFF' + - uid: 13335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4466 + color: '#DC143CFF' + - uid: 13336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -116.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4467 + color: '#DC143CFF' + - uid: 13337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4468 + color: '#DC143CFF' + - uid: 13338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -118.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4469 + color: '#DC143CFF' + - uid: 13339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -108.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4532 + color: '#4169E1FF' + - uid: 13340 components: - type: Transform - pos: -0.5,-24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4545 + color: '#4169E1FF' + - uid: 13341 components: - type: Transform - pos: -2.5,-25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -110.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4546 + color: '#4169E1FF' + - uid: 13342 components: - type: Transform - pos: -2.5,-26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4547 + color: '#4169E1FF' + - uid: 13343 components: - type: Transform - pos: -0.5,-26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -112.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4549 + color: '#4169E1FF' + - uid: 13344 components: - type: Transform - pos: -2.5,-27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -113.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4550 + color: '#4169E1FF' + - uid: 13345 components: - type: Transform - pos: -2.5,-28.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4551 + color: '#4169E1FF' + - uid: 13346 components: - type: Transform - pos: -0.5,-27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4552 + color: '#4169E1FF' + - uid: 13347 components: - type: Transform - pos: -0.5,-28.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -116.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4566 + color: '#4169E1FF' + - uid: 13348 components: - type: Transform - pos: -54.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -117.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4577 + color: '#4169E1FF' + - uid: 13349 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -118.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4578 + color: '#4169E1FF' + - uid: 13350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -119.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4594 + color: '#DC143CFF' + - uid: 13351 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-29.5 - parent: 89 + pos: -120.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4603 + color: '#DC143CFF' + - uid: 13352 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-24.5 - parent: 89 + pos: -120.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4607 + color: '#4169E1FF' + - uid: 13353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-24.5 - parent: 89 + pos: -121.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4609 + color: '#4169E1FF' + - uid: 13354 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-24.5 - parent: 89 + pos: -121.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4610 + color: '#DC143CFF' + - uid: 13355 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-25.5 - parent: 89 + pos: -122.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4653 + color: '#DC143CFF' + - uid: 13356 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-4.5 - parent: 89 + pos: 5.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4655 + color: '#4169E1FF' + - uid: 13357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-24.5 - parent: 89 + pos: 5.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4656 + color: '#4169E1FF' + - uid: 13358 components: - type: Transform - pos: 3.5,-7.5 - parent: 89 + pos: 7.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4657 + color: '#DC143CFF' + - uid: 13359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-24.5 - parent: 89 + pos: 7.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4660 + color: '#DC143CFF' + - uid: 13360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-25.5 - parent: 89 + pos: 7.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4661 + color: '#DC143CFF' + - uid: 13361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-25.5 - parent: 89 + pos: 7.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4662 + color: '#DC143CFF' + - uid: 13362 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4663 + color: '#4169E1FF' + - uid: 13363 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 7.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4664 + color: '#4169E1FF' + - uid: 13364 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4667 + color: '#4169E1FF' + - uid: 13365 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4710 + color: '#4169E1FF' + - uid: 13366 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4711 + color: '#4169E1FF' + - uid: 13367 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4712 + color: '#4169E1FF' + - uid: 13368 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4713 + color: '#4169E1FF' + - uid: 13369 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4714 + color: '#DC143CFF' + - uid: 13370 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 9.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4729 + color: '#DC143CFF' + - uid: 13371 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4738 + color: '#DC143CFF' + - uid: 13372 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-29.5 - parent: 89 + pos: 11.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4739 + color: '#DC143CFF' + - uid: 13373 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-30.5 - parent: 89 + pos: 12.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4740 + color: '#DC143CFF' + - uid: 13374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-30.5 - parent: 89 + pos: 21.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4741 + color: '#4169E1FF' + - uid: 13375 components: - type: Transform - pos: -2.5,-30.5 - parent: 89 + pos: 23.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4742 + color: '#DC143CFF' + - uid: 13376 components: - type: Transform - pos: -2.5,-31.5 - parent: 89 + pos: 23.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4743 + color: '#DC143CFF' + - uid: 13377 components: - type: Transform - pos: -2.5,-32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -93.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4744 + color: '#DC143CFF' + - uid: 13378 components: - type: Transform - pos: -2.5,-33.5 - parent: 89 + pos: -24.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4746 + color: '#4169E1FF' + - uid: 13379 components: - type: Transform - pos: -2.5,-35.5 - parent: 89 + pos: -24.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4747 + color: '#4169E1FF' + - uid: 13380 components: - type: Transform - pos: -2.5,-36.5 - parent: 89 + pos: -24.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4748 + color: '#4169E1FF' + - uid: 13381 components: - type: Transform - pos: -2.5,-37.5 - parent: 89 + pos: -24.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4749 + color: '#4169E1FF' + - uid: 13382 components: - type: Transform - pos: -2.5,-38.5 - parent: 89 + pos: -24.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4750 + color: '#4169E1FF' + - uid: 13383 components: - type: Transform - pos: -0.5,-31.5 - parent: 89 + pos: -24.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4751 + color: '#4169E1FF' + - uid: 13384 components: - type: Transform - pos: -0.5,-32.5 - parent: 89 + pos: -24.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4752 + color: '#4169E1FF' + - uid: 13385 components: - type: Transform - pos: -0.5,-33.5 - parent: 89 + pos: -24.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4753 + color: '#4169E1FF' + - uid: 13386 components: - type: Transform - pos: -0.5,-34.5 - parent: 89 + pos: -24.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4755 + color: '#4169E1FF' + - uid: 13387 components: - type: Transform - pos: -0.5,-36.5 - parent: 89 + pos: -24.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4756 + color: '#4169E1FF' + - uid: 13388 components: - type: Transform - pos: -0.5,-37.5 - parent: 89 + pos: -24.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4757 + color: '#4169E1FF' + - uid: 13389 components: - type: Transform - pos: -0.5,-38.5 - parent: 89 + pos: -24.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4764 + color: '#4169E1FF' + - uid: 13390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-25.5 - parent: 89 + pos: -24.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4765 + color: '#4169E1FF' + - uid: 13391 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-25.5 - parent: 89 + pos: -57.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4766 + color: '#DC143CFF' + - uid: 13392 components: - type: Transform rot: 1.5707963267948966 rad - pos: -3.5,-25.5 - parent: 89 + pos: -58.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4767 + color: '#DC143CFF' + - uid: 13393 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-25.5 - parent: 89 + pos: -59.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4772 + color: '#4169E1FF' + - uid: 13394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -58.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4773 + color: '#4169E1FF' + - uid: 13395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -60.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4774 + color: '#DC143CFF' + - uid: 13396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -59.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4775 + color: '#DC143CFF' + - uid: 13397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4776 + color: '#4169E1FF' + - uid: 13398 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4777 + color: '#4169E1FF' + - uid: 13399 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -55.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4778 + color: '#DC143CFF' + - uid: 13400 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4779 + color: '#4169E1FF' + - uid: 13401 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -64.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4780 + color: '#4169E1FF' + - uid: 13402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -63.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4788 + color: '#4169E1FF' + - uid: 13403 components: - type: Transform rot: -1.5707963267948966 rad - pos: -7.5,-21.5 - parent: 89 + pos: -62.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4790 + color: '#4169E1FF' + - uid: 13404 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-21.5 - parent: 89 + pos: -61.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4792 + color: '#4169E1FF' + - uid: 13405 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 89 + pos: -61.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4793 + color: '#DC143CFF' + - uid: 13406 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 89 + pos: -66.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4800 + color: '#4169E1FF' + - uid: 13407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -66.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4801 + color: '#4169E1FF' + - uid: 13408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -66.5,42.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4802 + color: '#4169E1FF' + - uid: 13409 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 89 + pos: -31.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4804 + color: '#4169E1FF' + - uid: 13410 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 89 + pos: -30.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4814 + color: '#4169E1FF' + - uid: 13411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4838 + color: '#4169E1FF' + - uid: 13412 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 89 + pos: -29.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4839 + color: '#4169E1FF' + - uid: 13413 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-18.5 - parent: 89 + pos: -30.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4842 + color: '#DC143CFF' + - uid: 13414 components: - type: Transform - pos: -9.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -30.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4843 + color: '#DC143CFF' + - uid: 13415 components: - type: Transform - pos: -9.5,-19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 16.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4844 + color: '#4169E1FF' + - uid: 13416 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-17.5 - parent: 89 + pos: 10.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4852 + color: '#4169E1FF' + - uid: 13417 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,21.5 + parent: 2 + - uid: 13418 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,-15.5 - parent: 89 + pos: 9.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4854 + color: '#4169E1FF' + - uid: 13419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4855 + color: '#4169E1FF' + - uid: 13420 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4857 + pos: 9.5,20.5 + parent: 2 + - uid: 13421 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-15.5 - parent: 89 + pos: -124.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4859 + color: '#DC143CFF' + - uid: 13422 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -124.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4860 + color: '#4169E1FF' + - uid: 13423 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-16.5 - parent: 89 + pos: -125.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4874 + color: '#DC143CFF' + - uid: 13424 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-6.5 - parent: 89 + pos: 7.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4893 + color: '#D3FC03FF' + - uid: 13425 components: - type: Transform - pos: -56.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 23.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4895 + color: '#DC143CFF' + - uid: 13426 components: - type: Transform - pos: -56.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4897 + color: '#4169E1FF' + - uid: 13427 components: - type: Transform - pos: -54.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 7.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4898 + color: '#4169E1FF' + - uid: 13428 components: - type: Transform - pos: -54.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 19.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4899 + color: '#DC143CFF' + - uid: 13429 components: - type: Transform - pos: -54.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 24.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4903 + color: '#4169E1FF' + - uid: 13430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4904 + color: '#DC143CFF' + - uid: 13431 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-3.5 - parent: 89 + pos: -14.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4905 + color: '#4169E1FF' + - uid: 13432 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -8.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4906 + color: '#4169E1FF' + - uid: 13433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -3.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4909 + color: '#DC143CFF' + - uid: 13434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4912 + color: '#DC143CFF' + - uid: 13435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,0.5 - parent: 89 + pos: -14.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4915 + color: '#4169E1FF' + - uid: 13436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-1.5 - parent: 89 + pos: 10.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4917 + color: '#4169E1FF' + - uid: 13437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-1.5 - parent: 89 + pos: 10.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4918 + color: '#4169E1FF' + - uid: 13438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,-1.5 - parent: 89 + pos: -121.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4922 + color: '#DC143CFF' + - uid: 13439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4929 + color: '#4169E1FF' + - uid: 13440 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-6.5 - parent: 89 + pos: -14.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4932 + color: '#4169E1FF' + - uid: 13441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4933 + color: '#4169E1FF' + - uid: 13442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4934 + color: '#4169E1FF' + - uid: 13443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4936 + color: '#4169E1FF' + - uid: 13444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4937 + color: '#4169E1FF' + - uid: 13445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4938 + color: '#4169E1FF' + - uid: 13446 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-6.5 - parent: 89 + pos: -2.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4940 + color: '#DC143CFF' + - uid: 13447 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4960 + color: '#4169E1FF' + - uid: 13448 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -7.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4962 + color: '#4169E1FF' + - uid: 13449 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,0.5 - parent: 89 + pos: -1.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4963 + color: '#DC143CFF' + - uid: 13450 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,0.5 - parent: 89 + pos: -0.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4964 + color: '#DC143CFF' + - uid: 13451 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,0.5 - parent: 89 + pos: 0.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4965 + color: '#DC143CFF' + - uid: 13452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,0.5 - parent: 89 + pos: -1.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4967 + color: '#4169E1FF' + - uid: 13453 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,0.5 - parent: 89 + pos: -0.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4969 + color: '#4169E1FF' + - uid: 13454 components: - type: Transform rot: 1.5707963267948966 rad - pos: -60.5,-1.5 - parent: 89 + pos: 1.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4970 + color: '#4169E1FF' + - uid: 13455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-1.5 - parent: 89 + pos: 2.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4971 + color: '#4169E1FF' + - uid: 13456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,-1.5 - parent: 89 + pos: 3.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4972 + color: '#4169E1FF' + - uid: 13457 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,-1.5 - parent: 89 + pos: 4.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4974 + color: '#4169E1FF' + - uid: 13458 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,-1.5 - parent: 89 + pos: 3.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4975 + color: '#DC143CFF' + - uid: 13459 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,-1.5 - parent: 89 + pos: 4.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4978 + color: '#DC143CFF' + - uid: 13460 components: - type: Transform - pos: -73.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 5.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4987 + color: '#DC143CFF' + - uid: 13461 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-4.5 - parent: 89 + pos: 1.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4988 + color: '#DC143CFF' + - uid: 13462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-6.5 - parent: 89 + pos: 5.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4989 + color: '#4169E1FF' + - uid: 13463 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,17.5 - parent: 89 + pos: 5.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4990 + color: '#4169E1FF' + - uid: 13464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 89 + pos: 7.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4992 + color: '#DC143CFF' + - uid: 13465 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-6.5 - parent: 89 + pos: 8.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4993 + color: '#DC143CFF' + - uid: 13466 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,-5.5 - parent: 89 + pos: 9.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4994 + color: '#DC143CFF' + - uid: 13467 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,-5.5 - parent: 89 + pos: 7.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4996 + color: '#4169E1FF' + - uid: 13468 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-5.5 - parent: 89 + pos: 8.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4997 + color: '#4169E1FF' + - uid: 13469 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 89 + pos: 9.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4998 + color: '#4169E1FF' + - uid: 13470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,-5.5 - parent: 89 + pos: 9.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5008 + color: '#4169E1FF' + - uid: 13471 components: - type: Transform - pos: -65.5,-6.5 - parent: 89 + pos: 9.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5009 + color: '#4169E1FF' + - uid: 13472 components: - type: Transform - pos: -65.5,-7.5 - parent: 89 + pos: 10.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5010 + color: '#DC143CFF' + - uid: 13473 components: - type: Transform - pos: -65.5,-8.5 - parent: 89 + pos: 10.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5011 + color: '#DC143CFF' + - uid: 13474 components: - type: Transform - pos: -65.5,-9.5 - parent: 89 + pos: 10.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5012 + color: '#DC143CFF' + - uid: 13475 components: - type: Transform - pos: -65.5,-10.5 - parent: 89 + pos: 10.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5014 + color: '#DC143CFF' + - uid: 13476 components: - type: Transform - pos: -65.5,-12.5 - parent: 89 + pos: 6.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5015 + color: '#4169E1FF' + - uid: 13477 components: - type: Transform - pos: -65.5,-13.5 - parent: 89 + pos: 6.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5016 + color: '#4169E1FF' + - uid: 13478 components: - type: Transform - pos: -65.5,-14.5 - parent: 89 + pos: 6.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5017 + color: '#4169E1FF' + - uid: 13479 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-5.5 - parent: 89 + pos: 7.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5019 + color: '#DC143CFF' + - uid: 13480 components: - type: Transform - pos: -59.5,-8.5 - parent: 89 + pos: 7.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5020 + color: '#DC143CFF' + - uid: 13481 components: - type: Transform - pos: -59.5,-9.5 - parent: 89 + pos: 7.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5022 + color: '#DC143CFF' + - uid: 13482 components: - type: Transform - pos: -59.5,-11.5 - parent: 89 + pos: 7.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5023 + color: '#DC143CFF' + - uid: 13483 components: - type: Transform - pos: -59.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5024 + color: '#4169E1FF' + - uid: 13484 components: - type: Transform - pos: -59.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5026 + color: '#4169E1FF' + - uid: 13485 components: - type: Transform - pos: -59.5,-14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 15.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5027 + color: '#4169E1FF' + - uid: 13486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 16.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5028 + color: '#DC143CFF' + - uid: 13487 components: - type: Transform rot: 1.5707963267948966 rad - pos: -61.5,-5.5 - parent: 89 + pos: 14.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5029 + color: '#4169E1FF' + - uid: 13488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-5.5 - parent: 89 + pos: 13.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5030 + color: '#4169E1FF' + - uid: 13489 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-8.5 - parent: 89 + pos: 14.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5031 + color: '#DC143CFF' + - uid: 13490 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-11.5 - parent: 89 + pos: 14.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5032 + color: '#DC143CFF' + - uid: 13491 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 15.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5033 + color: '#DC143CFF' + - uid: 13492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5034 + color: '#DC143CFF' + - uid: 13493 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-9.5 - parent: 89 + pos: 13.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5035 + color: '#4169E1FF' + - uid: 13494 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-10.5 - parent: 89 + pos: 13.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5038 + color: '#4169E1FF' + - uid: 13495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5042 + color: '#4169E1FF' + - uid: 13496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5043 + color: '#4169E1FF' + - uid: 13497 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5044 + color: '#DC143CFF' + - uid: 13498 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 17.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5045 + color: '#4169E1FF' + - uid: 13499 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5046 + color: '#DC143CFF' + - uid: 13500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 19.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5047 + color: '#4169E1FF' + - uid: 13501 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 19.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5048 + color: '#DC143CFF' + - uid: 13502 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 20.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5051 + color: '#DC143CFF' + - uid: 13503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5052 + color: '#DC143CFF' + - uid: 13504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 21.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5053 + color: '#4169E1FF' + - uid: 13505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 22.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5054 + color: '#4169E1FF' + - uid: 13506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5059 + color: '#4169E1FF' + - uid: 13507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5060 + color: '#DC143CFF' + - uid: 13508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5062 + color: '#DC143CFF' + - uid: 13509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,-11.5 - parent: 89 + pos: 22.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5063 + color: '#DC143CFF' + - uid: 13510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-14.5 - parent: 89 + pos: 22.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5064 + color: '#DC143CFF' + - uid: 13511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5065 + color: '#4169E1FF' + - uid: 13512 components: - type: Transform rot: 3.141592653589793 rad - pos: -71.5,-13.5 - parent: 89 + pos: 18.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5067 + color: '#4169E1FF' + - uid: 13513 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-13.5 - parent: 89 + pos: 18.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5068 + color: '#4169E1FF' + - uid: 13514 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-14.5 - parent: 89 + pos: 18.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5080 + color: '#4169E1FF' + - uid: 13515 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-11.5 - parent: 89 + pos: 20.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5081 + color: '#DC143CFF' + - uid: 13516 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-10.5 - parent: 89 + pos: 20.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5082 + color: '#DC143CFF' + - uid: 13517 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-9.5 - parent: 89 + pos: 15.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5083 + color: '#4169E1FF' + - uid: 13518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -11.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5084 + color: '#4169E1FF' + - uid: 13519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -13.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5085 + color: '#4169E1FF' + - uid: 13520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -9.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5086 + color: '#4169E1FF' + - uid: 13521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -4.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5087 + color: '#4169E1FF' + - uid: 13522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 20.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5088 + color: '#4169E1FF' + - uid: 13523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-8.5 - parent: 89 + pos: 10.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5089 + color: '#4169E1FF' + - uid: 13524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 28.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5090 + color: '#DC143CFF' + - uid: 13525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 27.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5091 + color: '#4169E1FF' + - uid: 13526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 27.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5094 + color: '#DC143CFF' + - uid: 13527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-6.5 - parent: 89 + pos: 10.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5102 + color: '#4169E1FF' + - uid: 13528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-5.5 - parent: 89 + pos: 26.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5125 + color: '#4169E1FF' + - uid: 13529 components: - type: Transform rot: 3.141592653589793 rad - pos: -54.5,-8.5 - parent: 89 + pos: 28.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5127 + color: '#4169E1FF' + - uid: 13530 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-10.5 - parent: 89 + pos: -12.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5133 + color: '#4169E1FF' + - uid: 13531 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 89 + pos: -10.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5134 + color: '#4169E1FF' + - uid: 13532 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-12.5 - parent: 89 + pos: 21.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5135 + color: '#4169E1FF' + - uid: 13533 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,-12.5 - parent: 89 + pos: 20.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5136 + color: '#4169E1FF' + - uid: 13534 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-12.5 - parent: 89 + pos: 25.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5141 + color: '#DC143CFF' + - uid: 13535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-10.5 - parent: 89 + pos: 25.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5142 + color: '#DC143CFF' + - uid: 13536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 89 + pos: 26.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5143 + color: '#4169E1FF' + - uid: 13537 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 89 + pos: 24.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5144 + color: '#DC143CFF' + - uid: 13538 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-12.5 - parent: 89 + pos: 20.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5145 + color: '#DC143CFF' + - uid: 13539 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5149 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-6.5 - parent: 89 + pos: 19.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5150 + color: '#4169E1FF' + - uid: 13540 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5153 + color: '#DC143CFF' + - uid: 13541 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,-3.5 - parent: 89 + pos: 34.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5159 + color: '#DC143CFF' + - uid: 13542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,-6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5160 + color: '#DC143CFF' + - uid: 13543 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-7.5 - parent: 89 + pos: 27.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5161 + color: '#DC143CFF' + - uid: 13544 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5162 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -55.5,-9.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5163 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,-9.5 - parent: 89 + pos: 28.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5164 + color: '#4169E1FF' + - uid: 13545 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,-9.5 - parent: 89 + pos: 13.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5165 + color: '#4169E1FF' + - uid: 13546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 25.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5166 + color: '#4169E1FF' + - uid: 13547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 26.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5168 + color: '#DC143CFF' + - uid: 13548 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 27.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5169 + color: '#DC143CFF' + - uid: 13549 components: - type: Transform - pos: -54.5,-9.5 - parent: 89 + pos: 27.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5170 + color: '#DC143CFF' + - uid: 13550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-10.5 - parent: 89 + pos: 27.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5171 + color: '#DC143CFF' + - uid: 13551 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-10.5 - parent: 89 + pos: 28.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5191 + color: '#DC143CFF' + - uid: 13552 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,8.5 - parent: 89 + pos: 29.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5196 + color: '#4169E1FF' + - uid: 13553 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,-9.5 - parent: 89 + pos: 30.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5197 + color: '#DC143CFF' + - uid: 13554 components: - type: Transform rot: 1.5707963267948966 rad - pos: 15.5,-9.5 - parent: 89 + pos: 31.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5198 + color: '#DC143CFF' + - uid: 13555 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,-9.5 - parent: 89 + pos: 31.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5199 + color: '#4169E1FF' + - uid: 13556 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 29.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5201 + color: '#DC143CFF' + - uid: 13557 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 30.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5202 + color: '#4169E1FF' + - uid: 13558 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,-9.5 - parent: 89 + pos: 32.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5204 + color: '#4169E1FF' + - uid: 13559 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 89 + pos: 32.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5205 + color: '#DC143CFF' + - uid: 13560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 28.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5207 + color: '#4169E1FF' + - uid: 13561 components: - type: Transform rot: 1.5707963267948966 rad - pos: 25.5,-9.5 - parent: 89 + pos: 33.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5208 + color: '#DC143CFF' + - uid: 13562 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 26.5,-9.5 - parent: 89 + pos: 13.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5210 + color: '#4169E1FF' + - uid: 13563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 28.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5211 + color: '#4169E1FF' + - uid: 13564 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 29.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5214 + color: '#4169E1FF' + - uid: 13565 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 27.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5216 + color: '#4169E1FF' + - uid: 13566 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5217 + color: '#4169E1FF' + - uid: 13567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5219 + color: '#4169E1FF' + - uid: 13568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5223 + color: '#4169E1FF' + - uid: 13569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5224 + color: '#4169E1FF' + - uid: 13570 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5225 + color: '#4169E1FF' + - uid: 13571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5226 + color: '#4169E1FF' + - uid: 13572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5227 + color: '#4169E1FF' + - uid: 13573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5229 + color: '#4169E1FF' + - uid: 13574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5230 + color: '#4169E1FF' + - uid: 13575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5232 + color: '#4169E1FF' + - uid: 13576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5233 + color: '#DC143CFF' + - uid: 13577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5236 + color: '#DC143CFF' + - uid: 13578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5238 + color: '#DC143CFF' + - uid: 13579 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5239 + color: '#DC143CFF' + - uid: 13580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5241 + color: '#DC143CFF' + - uid: 13581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5242 + color: '#DC143CFF' + - uid: 13582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 33.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5245 + color: '#DC143CFF' + - uid: 13583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5252 + color: '#DC143CFF' + - uid: 13584 components: - type: Transform - pos: 12.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5253 + color: '#DC143CFF' + - uid: 13585 components: - type: Transform - pos: 12.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5254 + color: '#DC143CFF' + - uid: 13586 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,-5.5 - parent: 89 + pos: 25.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5255 + color: '#4169E1FF' + - uid: 13587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-5.5 - parent: 89 + pos: 9.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5256 + color: '#D3FC03FF' + - uid: 13588 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-7.5 - parent: 89 + pos: 24.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5257 + color: '#4169E1FF' + - uid: 13589 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-8.5 - parent: 89 + pos: 25.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5258 + color: '#DC143CFF' + - uid: 13590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,-9.5 - parent: 89 + pos: 25.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5259 + color: '#DC143CFF' + - uid: 13591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-7.5 - parent: 89 + pos: 9.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5260 + color: '#D3FC03FF' + - uid: 13592 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-6.5 - parent: 89 + pos: 9.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5261 + color: '#D3FC03FF' + - uid: 13593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 12.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5262 + color: '#4169E1FF' + - uid: 13594 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,-4.5 - parent: 89 + pos: 14.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5267 + color: '#DC143CFF' + - uid: 13595 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-8.5 - parent: 89 + pos: 13.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5268 + color: '#4169E1FF' + - uid: 13596 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-7.5 - parent: 89 + pos: 13.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5269 + color: '#4169E1FF' + - uid: 13597 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-6.5 - parent: 89 + pos: 13.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5270 + color: '#4169E1FF' + - uid: 13598 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-5.5 - parent: 89 + pos: 13.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5271 + color: '#4169E1FF' + - uid: 13599 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-4.5 - parent: 89 + pos: 13.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5276 + color: '#4169E1FF' + - uid: 13600 components: - type: Transform - pos: 18.5,-10.5 - parent: 89 + pos: 13.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5277 + color: '#4169E1FF' + - uid: 13601 components: - type: Transform - pos: 18.5,-11.5 - parent: 89 + pos: 13.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5278 + color: '#4169E1FF' + - uid: 13602 components: - type: Transform - pos: 18.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 13.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5282 + color: '#DC143CFF' + - uid: 13603 components: - type: Transform - pos: 19.5,-9.5 - parent: 89 + pos: 8.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5283 + color: '#4169E1FF' + - uid: 13604 components: - type: Transform - pos: 19.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5284 + color: '#4169E1FF' + - uid: 13605 components: - type: Transform - pos: 19.5,-11.5 - parent: 89 + pos: 13.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5285 + color: '#4169E1FF' + - uid: 13606 components: - type: Transform - pos: 19.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 29.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5287 + color: '#DC143CFF' + - uid: 13607 components: - type: Transform - pos: 21.5,-10.5 - parent: 89 + pos: 9.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5288 + color: '#D3FC03FF' + - uid: 13608 components: - type: Transform - pos: 21.5,-11.5 - parent: 89 + pos: 9.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5289 + color: '#D3FC03FF' + - uid: 13609 components: - type: Transform - pos: 21.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5290 + color: '#4169E1FF' + - uid: 13610 components: - type: Transform - pos: 22.5,-9.5 - parent: 89 + pos: 14.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5291 + color: '#DC143CFF' + - uid: 13611 components: - type: Transform - pos: 22.5,-10.5 - parent: 89 + pos: 14.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5292 + color: '#DC143CFF' + - uid: 13612 components: - type: Transform - pos: 22.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5293 + color: '#D3FC03FF' + - uid: 13613 components: - type: Transform - pos: 22.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 8.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5294 + color: '#D3FC03FF' + - uid: 13614 components: - type: Transform - pos: 24.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 10.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5295 + color: '#4169E1FF' + - uid: 13615 components: - type: Transform - pos: 24.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 10.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5296 + color: '#4169E1FF' + - uid: 13616 components: - type: Transform - pos: 24.5,-12.5 - parent: 89 + pos: 14.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5297 + color: '#DC143CFF' + - uid: 13617 components: - type: Transform - pos: 25.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 9.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5298 + color: '#D3FC03FF' + - uid: 13618 components: - type: Transform - pos: 25.5,-10.5 - parent: 89 + pos: 12.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5299 + color: '#D3FC03FF' + - uid: 13619 components: - type: Transform - pos: 25.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5300 + color: '#D3FC03FF' + - uid: 13620 components: - type: Transform - pos: 25.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 11.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5302 + color: '#D3FC03FF' + - uid: 13621 components: - type: Transform - pos: 27.5,-10.5 - parent: 89 + pos: 14.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5303 + color: '#DC143CFF' + - uid: 13622 components: - type: Transform - pos: 27.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5304 + color: '#4169E1FF' + - uid: 13623 components: - type: Transform - pos: 27.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -126.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5306 + color: '#DC143CFF' + - uid: 13624 components: - type: Transform - pos: 28.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5307 + color: '#DC143CFF' + - uid: 13625 components: - type: Transform - pos: 28.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5308 + color: '#DC143CFF' + - uid: 13626 components: - type: Transform - pos: 28.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5309 + color: '#DC143CFF' + - uid: 13627 components: - type: Transform - pos: 28.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5332 + color: '#DC143CFF' + - uid: 13628 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-9.5 - parent: 89 - - uid: 5362 + rot: 3.141592653589793 rad + pos: -82.5,15.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 13629 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-7.5 - parent: 89 + pos: -82.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5363 + color: '#DC143CFF' + - uid: 13630 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-6.5 - parent: 89 + pos: -82.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5364 + color: '#DC143CFF' + - uid: 13631 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -68.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -82.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5365 + color: '#DC143CFF' + - uid: 13632 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-4.5 - parent: 89 + pos: -81.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5366 + color: '#4169E1FF' + - uid: 13633 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-3.5 - parent: 89 + pos: -81.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5367 + color: '#4169E1FF' + - uid: 13634 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-2.5 - parent: 89 + pos: -81.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5368 + color: '#4169E1FF' + - uid: 13635 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-8.5 - parent: 89 + pos: -81.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5369 + color: '#4169E1FF' + - uid: 13636 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-7.5 - parent: 89 + pos: -81.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5371 + color: '#4169E1FF' + - uid: 13637 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-5.5 - parent: 89 + pos: -81.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5372 + color: '#4169E1FF' + - uid: 13638 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-4.5 - parent: 89 + pos: -81.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5373 + color: '#4169E1FF' + - uid: 13639 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-3.5 - parent: 89 + pos: -81.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5374 + color: '#4169E1FF' + - uid: 13640 components: - type: Transform rot: 3.141592653589793 rad - pos: 36.5,-2.5 - parent: 89 + pos: -81.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5388 + color: '#4169E1FF' + - uid: 13641 components: - type: Transform - pos: 2.5,-42.5 - parent: 89 - - uid: 5391 + rot: 3.141592653589793 rad + pos: -81.5,19.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5415 + color: '#DC143CFF' + - uid: 13643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5419 + color: '#DC143CFF' + - uid: 13644 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5428 + color: '#DC143CFF' + - uid: 13645 components: - type: Transform - pos: 0.5,-42.5 - parent: 89 - - uid: 5436 + rot: 3.141592653589793 rad + pos: -85.5,24.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 13646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5438 + color: '#DC143CFF' + - uid: 13647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5445 + color: '#DC143CFF' + - uid: 13648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5446 + color: '#DC143CFF' + - uid: 13649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5447 + color: '#DC143CFF' + - uid: 13650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5448 + color: '#DC143CFF' + - uid: 13651 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5468 + color: '#DC143CFF' + - uid: 13652 components: - type: Transform - pos: 37.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5480 + color: '#DC143CFF' + - uid: 13653 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,-11.5 - parent: 89 + pos: -85.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5483 + color: '#DC143CFF' + - uid: 13654 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5486 + color: '#DC143CFF' + - uid: 13655 components: - type: Transform - pos: 36.5,-10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5487 + color: '#DC143CFF' + - uid: 13656 components: - type: Transform - pos: 37.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5490 + color: '#DC143CFF' + - uid: 13657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5491 + color: '#4169E1FF' + - uid: 13658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5492 + color: '#4169E1FF' + - uid: 13659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5493 + color: '#4169E1FF' + - uid: 13660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5494 + color: '#4169E1FF' + - uid: 13661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5495 + color: '#4169E1FF' + - uid: 13662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5496 + color: '#4169E1FF' + - uid: 13663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5497 + color: '#4169E1FF' + - uid: 13664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,7.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5498 + rot: 3.141592653589793 rad + pos: -84.5,29.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5509 + color: '#4169E1FF' + - uid: 13666 components: - type: Transform - pos: -99.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5527 + color: '#4169E1FF' + - uid: 13667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5528 + color: '#4169E1FF' + - uid: 13668 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5529 + color: '#4169E1FF' + - uid: 13669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5530 + color: '#4169E1FF' + - uid: 13670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5531 + color: '#4169E1FF' + - uid: 13671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5532 + color: '#4169E1FF' + - uid: 13672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5533 + color: '#4169E1FF' + - uid: 13673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5534 + color: '#4169E1FF' + - uid: 13674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5536 + color: '#4169E1FF' + - uid: 13675 components: - type: Transform rot: 1.5707963267948966 rad - pos: -58.5,18.5 - parent: 89 + pos: -83.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5538 + color: '#DC143CFF' + - uid: 13676 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,18.5 - parent: 89 + pos: -84.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5539 + color: '#DC143CFF' + - uid: 13677 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,18.5 - parent: 89 + pos: -83.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5540 + color: '#4169E1FF' + - uid: 13678 components: - type: Transform rot: 1.5707963267948966 rad - pos: -54.5,18.5 - parent: 89 + pos: -82.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5541 + color: '#4169E1FF' + - uid: 13679 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,18.5 - parent: 89 + pos: -84.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5542 + color: '#DC143CFF' + - uid: 13680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 13.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5543 + color: '#4169E1FF' + - uid: 13681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -9.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5544 + color: '#4169E1FF' + - uid: 13682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,18.5 - parent: 89 + pos: 13.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5545 + color: '#4169E1FF' + - uid: 13683 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,18.5 - parent: 89 + pos: 14.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5546 + color: '#DC143CFF' + - uid: 13684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 15.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5548 + color: '#4169E1FF' + - uid: 13685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 16.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5549 + color: '#4169E1FF' + - uid: 13686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5550 + color: '#4169E1FF' + - uid: 13687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5551 + color: '#DC143CFF' + - uid: 13688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5552 + rot: -1.5707963267948966 rad + pos: 10.5,24.5 + parent: 2 + - uid: 13689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5553 + rot: -1.5707963267948966 rad + pos: 9.5,24.5 + parent: 2 + - uid: 13690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5554 + rot: -1.5707963267948966 rad + pos: 8.5,24.5 + parent: 2 + - uid: 13691 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5555 + rot: -1.5707963267948966 rad + pos: 7.5,24.5 + parent: 2 + - uid: 13692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5556 + pos: 6.5,23.5 + parent: 2 + - uid: 13693 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,23.5 + parent: 2 + - uid: 13694 components: - type: Transform rot: 1.5707963267948966 rad - pos: -38.5,18.5 - parent: 89 + pos: 11.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5557 + color: '#DC143CFF' + - uid: 13695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5558 + color: '#4169E1FF' + - uid: 13696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,18.5 - parent: 89 + pos: 26.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5559 + color: '#4169E1FF' + - uid: 13697 components: - type: Transform rot: 1.5707963267948966 rad - pos: -35.5,18.5 - parent: 89 + pos: -28.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5560 + color: '#4169E1FF' + - uid: 13698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5561 + color: '#DC143CFF' + - uid: 13699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,18.5 - parent: 89 + pos: 18.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5563 + color: '#4169E1FF' + - uid: 13700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 17.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5564 + color: '#4169E1FF' + - uid: 13701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 40.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5565 + color: '#DC143CFF' + - uid: 13702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 41.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5566 + color: '#DC143CFF' + - uid: 13703 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 42.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5567 + color: '#DC143CFF' + - uid: 13704 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,17.5 - parent: 89 + pos: -16.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5568 + color: '#DC143CFF' + - uid: 13705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,17.5 - parent: 89 + pos: 43.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5570 + color: '#4169E1FF' + - uid: 13706 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 42.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5571 + color: '#4169E1FF' + - uid: 13707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 41.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5572 + color: '#4169E1FF' + - uid: 13708 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,17.5 - parent: 89 + pos: -5.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5573 + color: '#4169E1FF' + - uid: 13709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5574 + color: '#4169E1FF' + - uid: 13710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5576 + color: '#4169E1FF' + - uid: 13711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.5,17.5 - parent: 89 + pos: -5.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5577 + color: '#4169E1FF' + - uid: 13712 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5578 + color: '#4169E1FF' + - uid: 13713 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5579 + color: '#4169E1FF' + - uid: 13714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -51.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5580 + color: '#4169E1FF' + - uid: 13715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5582 + color: '#4169E1FF' + - uid: 13716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5583 + color: '#4169E1FF' + - uid: 13717 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5584 + color: '#4169E1FF' + - uid: 13718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 24.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5585 + color: '#4169E1FF' + - uid: 13719 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,17.5 - parent: 89 + pos: -4.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5586 + color: '#DC143CFF' + - uid: 13720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5587 + color: '#DC143CFF' + - uid: 13721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5588 + color: '#DC143CFF' + - uid: 13722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5589 + color: '#DC143CFF' + - uid: 13723 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5590 + color: '#DC143CFF' + - uid: 13724 components: - type: Transform rot: 1.5707963267948966 rad - pos: -40.5,17.5 - parent: 89 + pos: 25.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5591 + color: '#DC143CFF' + - uid: 13725 components: - type: Transform rot: 1.5707963267948966 rad - pos: -39.5,17.5 - parent: 89 + pos: 24.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5592 + color: '#DC143CFF' + - uid: 13726 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,17.5 - parent: 89 + pos: 23.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5593 + color: '#DC143CFF' + - uid: 13727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,17.5 - parent: 89 + pos: 23.5,38.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5594 + color: '#DC143CFF' + - uid: 13728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,17.5 - parent: 89 + pos: -4.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5595 + color: '#DC143CFF' + - uid: 13729 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 40.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5596 + color: '#4169E1FF' + - uid: 13730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,17.5 - parent: 89 + pos: -5.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5597 + color: '#4169E1FF' + - uid: 13731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 39.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5599 + color: '#4169E1FF' + - uid: 13732 components: - type: Transform - pos: -73.5,12.5 - parent: 89 + pos: -5.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5600 + color: '#4169E1FF' + - uid: 13733 components: - type: Transform - pos: -73.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5601 + color: '#4169E1FF' + - uid: 13734 components: - type: Transform - pos: -73.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -7.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5602 + color: '#4169E1FF' + - uid: 13735 components: - type: Transform - pos: -73.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5603 + color: '#4169E1FF' + - uid: 13736 components: - type: Transform - pos: -73.5,16.5 - parent: 89 + pos: -11.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5604 + color: '#4169E1FF' + - uid: 13737 components: - type: Transform - pos: -73.5,17.5 - parent: 89 + pos: -5.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5605 + color: '#4169E1FF' + - uid: 13738 components: - type: Transform rot: -1.5707963267948966 rad - pos: -72.5,18.5 - parent: 89 + pos: -4.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5606 + color: '#4169E1FF' + - uid: 13739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -71.5,18.5 - parent: 89 + pos: -3.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5607 + color: '#4169E1FF' + - uid: 13740 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,18.5 - parent: 89 + pos: -2.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5608 + color: '#4169E1FF' + - uid: 13741 components: - type: Transform rot: -1.5707963267948966 rad - pos: -69.5,18.5 - parent: 89 + pos: -3.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5609 + color: '#DC143CFF' + - uid: 13742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5610 + color: '#DC143CFF' + - uid: 13743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5611 + color: '#4169E1FF' + - uid: 13744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5612 + color: '#4169E1FF' + - uid: 13745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,14.5 - parent: 89 + pos: 0.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5613 + color: '#4169E1FF' + - uid: 13746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5614 + color: '#DC143CFF' + - uid: 13747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5615 + color: '#DC143CFF' + - uid: 13748 components: - type: Transform rot: 1.5707963267948966 rad - pos: -71.5,17.5 - parent: 89 + pos: -29.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5616 + color: '#4169E1FF' + - uid: 13749 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,17.5 - parent: 89 + pos: -31.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5617 + color: '#4169E1FF' + - uid: 13750 components: - type: Transform rot: 1.5707963267948966 rad - pos: -69.5,17.5 - parent: 89 + pos: -32.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5622 + color: '#4169E1FF' + - uid: 13751 components: - type: Transform - pos: -32.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5623 + color: '#4169E1FF' + - uid: 13752 components: - type: Transform - pos: -32.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5624 + color: '#4169E1FF' + - uid: 13753 components: - type: Transform - pos: -32.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5625 + color: '#4169E1FF' + - uid: 13754 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,14.5 - parent: 89 + pos: -29.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5626 + color: '#4169E1FF' + - uid: 13755 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,14.5 - parent: 89 + pos: -28.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5627 + color: '#4169E1FF' + - uid: 13756 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,14.5 - parent: 89 + pos: -27.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5629 + color: '#4169E1FF' + - uid: 13757 components: - type: Transform rot: 1.5707963267948966 rad - pos: -29.5,13.5 - parent: 89 + pos: -32.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5630 + color: '#4169E1FF' + - uid: 13758 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,13.5 - parent: 89 + pos: -31.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5631 + color: '#4169E1FF' + - uid: 13759 components: - type: Transform - pos: -30.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5632 + color: '#4169E1FF' + - uid: 13760 components: - type: Transform - pos: -30.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5634 + color: '#4169E1FF' + - uid: 13761 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,13.5 - parent: 89 + pos: -27.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5638 + color: '#4169E1FF' + - uid: 13762 components: - type: Transform - pos: -30.5,13.5 - parent: 89 + pos: -30.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5639 + color: '#4169E1FF' + - uid: 13763 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,13.5 - parent: 89 + pos: -30.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5642 + color: '#4169E1FF' + - uid: 13764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,18.5 - parent: 89 + pos: -30.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5643 + color: '#4169E1FF' + - uid: 13765 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,18.5 - parent: 89 + pos: -30.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5644 + color: '#4169E1FF' + - uid: 13766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,17.5 - parent: 89 + pos: -30.5,30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5648 + color: '#4169E1FF' + - uid: 13767 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-12.5 - parent: 89 + pos: -30.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5649 + color: '#4169E1FF' + - uid: 13768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-12.5 - parent: 89 + pos: -30.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5650 + color: '#4169E1FF' + - uid: 13769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-12.5 - parent: 89 + pos: -30.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5651 + color: '#4169E1FF' + - uid: 13770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,-12.5 - parent: 89 + pos: -28.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5652 + color: '#4169E1FF' + - uid: 13771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -28.5,29.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5653 + - uid: 13772 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,26.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5654 + - uid: 13773 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,27.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5655 + - uid: 13774 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,28.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5656 + - uid: 13775 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,30.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5657 + - uid: 13776 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,31.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5658 + - uid: 13777 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,32.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5659 + - uid: 13778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,34.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5660 + - uid: 13779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -30.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5661 + - uid: 13780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5662 + - uid: 13781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5663 + - uid: 13782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -28.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5664 + - uid: 13783 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -30.5,29.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5665 + - uid: 13784 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,29.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5669 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5670 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5671 + - uid: 13785 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5672 + color: '#FF0000FF' + - uid: 13786 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -27.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5673 + color: '#FF0000FF' + - uid: 13787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -30.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5674 + color: '#FF0000FF' + - uid: 13788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5675 + color: '#FF0000FF' + - uid: 13789 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -32.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5676 + color: '#FF0000FF' + - uid: 13790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -28.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5677 + color: '#FF0000FF' + - uid: 13791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,-13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -27.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5678 + color: '#FF0000FF' + - uid: 13792 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,-13.5 - parent: 89 + pos: 39.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5679 + color: '#4169E1FF' + - uid: 13793 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-13.5 - parent: 89 + pos: 39.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5680 + color: '#4169E1FF' + - uid: 13794 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,-13.5 - parent: 89 + pos: 39.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5681 + color: '#4169E1FF' + - uid: 13795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-13.5 - parent: 89 + pos: 38.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5682 + color: '#DC143CFF' + - uid: 13796 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-13.5 - parent: 89 + pos: 38.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5683 + color: '#DC143CFF' + - uid: 13797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,-13.5 - parent: 89 + pos: 38.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5684 + color: '#DC143CFF' + - uid: 13798 components: - type: Transform - pos: -39.5,-11.5 - parent: 89 + pos: 38.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5685 + color: '#DC143CFF' + - uid: 13799 components: - type: Transform - pos: -39.5,-10.5 - parent: 89 + pos: 38.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5686 + color: '#DC143CFF' + - uid: 13800 components: - type: Transform - pos: -39.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5687 + color: '#DC143CFF' + - uid: 13801 components: - type: Transform - pos: -39.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 40.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5689 + color: '#DC143CFF' + - uid: 13802 components: - type: Transform - pos: -39.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5690 + color: '#DC143CFF' + - uid: 13803 components: - type: Transform - pos: -39.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5691 + color: '#DC143CFF' + - uid: 13804 components: - type: Transform - pos: -39.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 43.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5692 + color: '#DC143CFF' + - uid: 13805 components: - type: Transform - pos: -39.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 40.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5693 + color: '#4169E1FF' + - uid: 13806 components: - type: Transform - pos: -39.5,-2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5694 + color: '#4169E1FF' + - uid: 13807 components: - type: Transform - pos: -39.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5695 + color: '#4169E1FF' + - uid: 13808 components: - type: Transform - pos: -39.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 43.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5697 + color: '#4169E1FF' + - uid: 13809 components: - type: Transform - pos: -40.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5698 + color: '#DC143CFF' + - uid: 13810 components: - type: Transform - pos: -40.5,-11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5699 + color: '#4169E1FF' + - uid: 13811 components: - type: Transform - pos: -40.5,-10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 43.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5700 + color: '#4169E1FF' + - uid: 13812 components: - type: Transform - pos: -40.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5701 + color: '#4169E1FF' + - uid: 13813 components: - type: Transform - pos: -40.5,-8.5 - parent: 89 + pos: 45.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5702 + color: '#4169E1FF' + - uid: 13814 components: - type: Transform - pos: -40.5,-7.5 - parent: 89 + pos: 45.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5704 + color: '#4169E1FF' + - uid: 13815 components: - type: Transform - pos: -40.5,-5.5 - parent: 89 + pos: 45.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5705 + color: '#4169E1FF' + - uid: 13816 components: - type: Transform - pos: -40.5,-4.5 - parent: 89 + pos: 45.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5706 + color: '#4169E1FF' + - uid: 13817 components: - type: Transform - pos: -40.5,-3.5 - parent: 89 + pos: 45.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5707 + color: '#4169E1FF' + - uid: 13818 components: - type: Transform - pos: -40.5,-2.5 - parent: 89 + pos: 45.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5708 + color: '#4169E1FF' + - uid: 13819 components: - type: Transform - pos: -40.5,-1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5710 + color: '#4169E1FF' + - uid: 13820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5711 + color: '#4169E1FF' + - uid: 13821 components: - type: Transform - pos: -50.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5712 + color: '#4169E1FF' + - uid: 13822 components: - type: Transform - pos: -50.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5713 + color: '#4169E1FF' + - uid: 13823 components: - type: Transform - pos: -50.5,1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5714 + color: '#4169E1FF' + - uid: 13824 components: - type: Transform - pos: -50.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5715 + color: '#4169E1FF' + - uid: 13825 components: - type: Transform - pos: -50.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 46.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5716 + color: '#4169E1FF' + - uid: 13826 components: - type: Transform - pos: -50.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 47.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5717 + color: '#4169E1FF' + - uid: 13827 components: - type: Transform - pos: -49.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 55.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5718 + color: '#4169E1FF' + - uid: 13828 components: - type: Transform - pos: -49.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 54.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5719 + color: '#4169E1FF' + - uid: 13829 components: - type: Transform - pos: -49.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 53.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5720 + color: '#4169E1FF' + - uid: 13830 components: - type: Transform - pos: -49.5,0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 52.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5721 + color: '#4169E1FF' + - uid: 13831 components: - type: Transform - pos: -49.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 51.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5722 + color: '#4169E1FF' + - uid: 13832 components: - type: Transform - pos: -49.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 50.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5723 + color: '#4169E1FF' + - uid: 13833 components: - type: Transform - pos: -49.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 49.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5724 + color: '#4169E1FF' + - uid: 13834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-7.5 - parent: 89 + pos: 48.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5730 + color: '#4169E1FF' + - uid: 13835 components: - type: Transform rot: 1.5707963267948966 rad - pos: -53.5,-7.5 - parent: 89 + pos: 47.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5731 + color: '#4169E1FF' + - uid: 13836 components: - type: Transform - pos: -50.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 46.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5746 + color: '#4169E1FF' + - uid: 13837 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,6.5 - parent: 89 + pos: 44.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5747 + color: '#DC143CFF' + - uid: 13838 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,7.5 - parent: 89 + pos: 43.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5748 + color: '#DC143CFF' + - uid: 13839 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,5.5 - parent: 89 + pos: 43.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5749 + color: '#DC143CFF' + - uid: 13840 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,6.5 - parent: 89 + pos: 43.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5750 + color: '#DC143CFF' + - uid: 13841 components: - type: Transform rot: 3.141592653589793 rad - pos: -51.5,7.5 - parent: 89 + pos: 43.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5753 + color: '#DC143CFF' + - uid: 13842 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,-1.5 - parent: 89 + pos: 45.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5754 + color: '#DC143CFF' + - uid: 13843 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,-1.5 - parent: 89 + pos: 46.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5755 + color: '#DC143CFF' + - uid: 13844 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,-1.5 - parent: 89 + pos: 47.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5757 + color: '#DC143CFF' + - uid: 13845 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,-1.5 - parent: 89 + pos: 48.5,-26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5758 + color: '#DC143CFF' + - uid: 13846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -82.5,-1.5 - parent: 89 + pos: 48.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5759 + color: '#DC143CFF' + - uid: 13847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -81.5,-1.5 - parent: 89 + pos: 48.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5760 + color: '#DC143CFF' + - uid: 13848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,-1.5 - parent: 89 + pos: 48.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5761 + color: '#DC143CFF' + - uid: 13849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 56.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5762 + color: '#DC143CFF' + - uid: 13850 components: - type: Transform rot: 1.5707963267948966 rad - pos: -78.5,-1.5 - parent: 89 + pos: 55.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5763 + color: '#DC143CFF' + - uid: 13851 components: - type: Transform rot: 1.5707963267948966 rad - pos: -77.5,-1.5 - parent: 89 + pos: 54.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5764 + color: '#DC143CFF' + - uid: 13852 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,-0.5 - parent: 89 + pos: 53.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5765 + color: '#DC143CFF' + - uid: 13853 components: - type: Transform rot: 1.5707963267948966 rad - pos: -87.5,-0.5 - parent: 89 + pos: 52.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5766 + color: '#DC143CFF' + - uid: 13854 components: - type: Transform rot: 1.5707963267948966 rad - pos: -86.5,-0.5 - parent: 89 + pos: 51.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5767 + color: '#DC143CFF' + - uid: 13855 components: - type: Transform rot: 1.5707963267948966 rad - pos: -85.5,-0.5 - parent: 89 + pos: 50.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5768 + color: '#DC143CFF' + - uid: 13856 components: - type: Transform rot: 1.5707963267948966 rad - pos: -84.5,-0.5 - parent: 89 + pos: 49.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5769 + color: '#DC143CFF' + - uid: 13857 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,-0.5 - parent: 89 + pos: 48.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5771 + color: '#DC143CFF' + - uid: 13858 components: - type: Transform rot: 1.5707963267948966 rad - pos: -81.5,-0.5 - parent: 89 + pos: 47.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5772 + color: '#DC143CFF' + - uid: 13859 components: - type: Transform rot: 1.5707963267948966 rad - pos: -80.5,-0.5 - parent: 89 + pos: 46.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5773 + color: '#DC143CFF' + - uid: 13860 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,-0.5 - parent: 89 + pos: 45.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5774 + color: '#DC143CFF' + - uid: 13861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-0.5 - parent: 89 + pos: 44.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5777 + color: '#DC143CFF' + - uid: 13862 components: - type: Transform - pos: -77.5,-1.5 - parent: 89 + pos: 39.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5797 + color: '#4169E1FF' + - uid: 13863 components: - type: Transform - pos: -94.5,11.5 - parent: 89 + pos: 39.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5798 + color: '#4169E1FF' + - uid: 13864 components: - type: Transform - pos: -94.5,12.5 - parent: 89 + pos: 39.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5799 + color: '#4169E1FF' + - uid: 13865 components: - type: Transform - pos: -95.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5800 + color: '#4169E1FF' + - uid: 13866 components: - type: Transform - pos: -95.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 37.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5805 + color: '#4169E1FF' + - uid: 13867 components: - type: Transform rot: 1.5707963267948966 rad - pos: -97.5,21.5 - parent: 89 + pos: 36.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5806 + color: '#4169E1FF' + - uid: 13868 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -97.5,20.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5807 + color: '#DC143CFF' + - uid: 13869 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 38.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5808 + color: '#DC143CFF' + - uid: 13870 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,20.5 - parent: 89 + pos: 37.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5809 + color: '#DC143CFF' + - uid: 13871 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,21.5 - parent: 89 + pos: 36.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5810 + color: '#DC143CFF' + - uid: 13872 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,20.5 - parent: 89 + pos: 41.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5812 + color: '#4169E1FF' + - uid: 13873 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -94.5,20.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 41.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5813 + color: '#4169E1FF' + - uid: 13874 components: - type: Transform rot: 1.5707963267948966 rad - pos: -98.5,20.5 - parent: 89 + pos: 42.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6196 + color: '#4169E1FF' + - uid: 13875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 40.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6218 + color: '#4169E1FF' + - uid: 13876 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,13.5 - parent: 89 + pos: 40.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6219 + color: '#DC143CFF' + - uid: 13877 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,13.5 - parent: 89 + pos: 42.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6220 + color: '#4169E1FF' + - uid: 13878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,7.5 - parent: 89 + pos: 43.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6232 + color: '#4169E1FF' + - uid: 13879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 40.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6233 + color: '#DC143CFF' + - uid: 13880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 41.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6256 + color: '#4169E1FF' + - uid: 13881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 41.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6257 + color: '#DC143CFF' + - uid: 13882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 42.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6258 + color: '#DC143CFF' + - uid: 13883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6260 + color: '#DC143CFF' + - uid: 13884 components: - type: Transform - pos: -7.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 43.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6261 + color: '#DC143CFF' + - uid: 13885 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,9.5 - parent: 89 + pos: 43.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6265 + color: '#DC143CFF' + - uid: 13886 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6267 + color: '#DC143CFF' + - uid: 13887 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,12.5 - parent: 89 + pos: -6.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6309 + color: '#4169E1FF' + - uid: 13888 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,7.5 - parent: 89 + pos: -7.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6310 + color: '#4169E1FF' + - uid: 13889 components: - type: Transform - pos: -6.5,8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6311 + pos: -9.5,-2.5 + parent: 2 + - uid: 13890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6314 + color: '#DC143CFF' + - uid: 13891 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,7.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6316 + pos: -8.5,-1.5 + parent: 2 + - uid: 13892 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-3.5 + parent: 2 + - uid: 13893 + components: + - type: Transform + pos: -9.5,-4.5 + parent: 2 + - uid: 13894 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,8.5 - parent: 89 + pos: -5.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6325 + color: '#DC143CFF' + - uid: 13895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,13.5 - parent: 89 + pos: -3.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6328 + color: '#DC143CFF' + - uid: 13896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,14.5 - parent: 89 + pos: -3.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6329 + color: '#DC143CFF' + - uid: 13897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,14.5 - parent: 89 + pos: -3.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6334 + color: '#DC143CFF' + - uid: 13898 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,23.5 - parent: 89 + pos: -4.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6356 + color: '#DC143CFF' + - uid: 13899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6357 + rot: -1.5707963267948966 rad + pos: -107.5,-16.5 + parent: 2 + - uid: 13900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6358 + rot: 1.5707963267948966 rad + pos: -120.5,-19.5 + parent: 2 + - uid: 13901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6359 + rot: 1.5707963267948966 rad + pos: -120.5,-17.5 + parent: 2 + - uid: 13902 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,6.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6360 + rot: 1.5707963267948966 rad + pos: -116.5,-18.5 + parent: 2 + - uid: 13903 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,6.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6361 + rot: -1.5707963267948966 rad + pos: -111.5,-17.5 + parent: 2 + - uid: 13904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6362 + rot: -1.5707963267948966 rad + pos: -108.5,-17.5 + parent: 2 + - uid: 13905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6366 + rot: -1.5707963267948966 rad + pos: -107.5,-17.5 + parent: 2 + - uid: 13906 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 89 + pos: -93.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6367 + color: '#DC143CFF' + - uid: 13907 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6368 + pos: -120.5,-18.5 + parent: 2 + - uid: 13908 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6377 + pos: -116.5,-19.5 + parent: 2 + - uid: 13909 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6384 + pos: -116.5,-17.5 + parent: 2 + - uid: 13910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6385 + rot: -1.5707963267948966 rad + pos: -109.5,-17.5 + parent: 2 + - uid: 13911 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,21.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6386 + rot: -1.5707963267948966 rad + pos: -111.5,-16.5 + parent: 2 + - uid: 13912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,-18.5 + parent: 2 + - uid: 13913 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -111.5,-18.5 + parent: 2 + - uid: 13914 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -100.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6387 + color: '#DC143CFF' + - uid: 13915 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,19.5 - parent: 89 + pos: -136.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6388 + color: '#DC143CFF' + - uid: 13916 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -98.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6389 + color: '#4169E1FF' + - uid: 13917 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,19.5 - parent: 89 + pos: -100.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6390 + color: '#DC143CFF' + - uid: 13918 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -97.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6391 + color: '#DC143CFF' + - uid: 13919 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -97.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6393 + color: '#4169E1FF' + - uid: 13920 + components: + - type: Transform + pos: -101.5,-22.5 + parent: 2 + - uid: 13921 + components: + - type: Transform + pos: -101.5,-24.5 + parent: 2 + - uid: 13922 + components: + - type: Transform + pos: -101.5,-21.5 + parent: 2 + - uid: 13923 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,23.5 - parent: 89 + pos: -125.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6394 + color: '#DC143CFF' + - uid: 13924 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,24.5 - parent: 89 + pos: -92.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6395 + color: '#DC143CFF' + - uid: 13925 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,25.5 - parent: 89 + pos: -100.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6396 + color: '#DC143CFF' + - uid: 13926 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,24.5 - parent: 89 + pos: -95.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6397 + color: '#DC143CFF' + - uid: 13927 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -64.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -91.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6398 + color: '#4169E1FF' + - uid: 13928 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,24.5 - parent: 89 + pos: -133.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6399 + color: '#DC143CFF' + - uid: 13929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -122.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6400 + color: '#4169E1FF' + - uid: 13930 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -95.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6401 + color: '#DC143CFF' + - uid: 13931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -98.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6402 + color: '#DC143CFF' + - uid: 13932 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -101.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6403 + color: '#DC143CFF' + - uid: 13933 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -96.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6404 + color: '#4169E1FF' + - uid: 13934 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,24.5 - parent: 89 + pos: -123.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6405 + color: '#DC143CFF' + - uid: 13935 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -122.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6406 + color: '#DC143CFF' + - uid: 13936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -127.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6407 + color: '#DC143CFF' + - uid: 13937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -125.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6408 + color: '#4169E1FF' + - uid: 13938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -124.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6409 + color: '#4169E1FF' + - uid: 13939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -142.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6410 + color: '#DC143CFF' + - uid: 13940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -137.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6411 + color: '#DC143CFF' + - uid: 13941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,25.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -141.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6412 + color: '#DC143CFF' + - uid: 13942 components: - type: Transform - pos: -55.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -138.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6413 + color: '#DC143CFF' + - uid: 13943 components: - type: Transform - pos: -66.5,27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -139.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6414 + color: '#DC143CFF' + - uid: 13944 components: - type: Transform - pos: -66.5,28.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -140.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6415 + color: '#DC143CFF' + - uid: 13945 components: - type: Transform - pos: -66.5,29.5 - parent: 89 + pos: -101.5,-22.5 + parent: 2 + - uid: 13946 + components: + - type: Transform + pos: -101.5,-20.5 + parent: 2 + - uid: 13947 + components: + - type: Transform + pos: -101.5,-23.5 + parent: 2 + - uid: 13948 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -137.5,-0.5 + parent: 2 + - uid: 13949 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -132.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6416 + color: '#4169E1FF' + - uid: 13950 components: - type: Transform - pos: -66.5,30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -95.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6417 + color: '#4169E1FF' + - uid: 13951 components: - type: Transform - pos: -66.5,31.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -142.5,-0.5 + parent: 2 + - uid: 13952 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -126.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6418 + color: '#4169E1FF' + - uid: 13953 components: - type: Transform - pos: -66.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -123.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6419 + color: '#4169E1FF' + - uid: 13954 components: - type: Transform - pos: -66.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -130.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6420 + color: '#4169E1FF' + - uid: 13955 components: - type: Transform - pos: -66.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -127.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6421 + color: '#4169E1FF' + - uid: 13956 components: - type: Transform - pos: -66.5,35.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -121.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6422 + color: '#4169E1FF' + - uid: 13957 components: - type: Transform - pos: -66.5,36.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6423 + color: '#4169E1FF' + - uid: 13958 components: - type: Transform - pos: -66.5,37.5 - parent: 89 + pos: -136.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6424 + color: '#4169E1FF' + - uid: 13959 components: - type: Transform - pos: -66.5,38.5 - parent: 89 + pos: -136.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6425 + color: '#4169E1FF' + - uid: 13960 components: - type: Transform rot: 1.5707963267948966 rad - pos: -66.5,37.5 - parent: 89 + pos: -93.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6427 + color: '#DC143CFF' + - uid: 13961 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,37.5 - parent: 89 + pos: -123.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6428 + color: '#DC143CFF' + - uid: 13962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,36.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -126.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6429 + color: '#DC143CFF' + - uid: 13963 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,34.5 - parent: 89 + pos: -125.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6430 + color: '#DC143CFF' + - uid: 13964 components: - type: Transform - pos: -67.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -125.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6431 + color: '#DC143CFF' + - uid: 13965 components: - type: Transform - pos: -67.5,27.5 - parent: 89 + pos: -100.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6432 + color: '#DC143CFF' + - uid: 13966 components: - type: Transform - pos: -67.5,28.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -133.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6433 + color: '#4169E1FF' + - uid: 13967 components: - type: Transform - pos: -67.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -122.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6434 + color: '#4169E1FF' + - uid: 13968 components: - type: Transform - pos: -67.5,30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -120.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6435 + color: '#4169E1FF' + - uid: 13969 components: - type: Transform - pos: -67.5,31.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6436 + rot: -1.5707963267948966 rad + pos: -139.5,-0.5 + parent: 2 + - uid: 13970 components: - type: Transform - pos: -67.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6437 + rot: -1.5707963267948966 rad + pos: -138.5,-0.5 + parent: 2 + - uid: 13971 components: - type: Transform - pos: -67.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -120.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6438 + color: '#DC143CFF' + - uid: 13972 components: - type: Transform - pos: -67.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -119.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6439 + color: '#DC143CFF' + - uid: 13973 components: - type: Transform - pos: -67.5,35.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -118.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6440 + color: '#DC143CFF' + - uid: 13974 components: - type: Transform - pos: -67.5,36.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -117.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6442 + color: '#DC143CFF' + - uid: 13975 components: - type: Transform - pos: -67.5,38.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -116.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6443 + color: '#DC143CFF' + - uid: 13976 components: - type: Transform - pos: -67.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -115.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6444 + color: '#DC143CFF' + - uid: 13977 components: - type: Transform - pos: -67.5,40.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -119.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6445 + color: '#4169E1FF' + - uid: 13978 components: - type: Transform - pos: -67.5,41.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -118.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6446 + color: '#4169E1FF' + - uid: 13979 components: - type: Transform - pos: -67.5,42.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -117.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6447 + color: '#4169E1FF' + - uid: 13980 components: - type: Transform - pos: -67.5,43.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -116.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6468 + color: '#4169E1FF' + - uid: 13981 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,-9.5 - parent: 89 - - uid: 6478 + pos: -115.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13982 components: - type: Transform rot: 1.5707963267948966 rad - pos: 31.5,-9.5 - parent: 89 - - uid: 6487 + pos: -114.5,-13.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 13983 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,30.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6488 + pos: -101.5,-21.5 + parent: 2 + - uid: 13984 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,31.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6489 + pos: -101.5,-20.5 + parent: 2 + - uid: 13985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,32.5 - parent: 89 + pos: -99.5,-24.5 + parent: 2 + - uid: 13986 + components: + - type: Transform + pos: -99.5,-23.5 + parent: 2 + - uid: 13987 + components: + - type: Transform + pos: -99.5,-22.5 + parent: 2 + - uid: 13988 + components: + - type: Transform + pos: -99.5,-21.5 + parent: 2 + - uid: 13989 + components: + - type: Transform + pos: -99.5,-20.5 + parent: 2 + - uid: 13990 + components: + - type: Transform + pos: -99.5,-24.5 + parent: 2 + - uid: 13991 + components: + - type: Transform + pos: -99.5,-23.5 + parent: 2 + - uid: 13992 + components: + - type: Transform + pos: -99.5,-22.5 + parent: 2 + - uid: 13993 + components: + - type: Transform + pos: -99.5,-21.5 + parent: 2 + - uid: 13994 + components: + - type: Transform + pos: -99.5,-20.5 + parent: 2 + - uid: 13995 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -91.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6491 + color: '#DC143CFF' + - uid: 13996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -83.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6492 + color: '#4169E1FF' + - uid: 13997 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,35.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -90.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6493 + color: '#4169E1FF' + - uid: 13998 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,36.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6495 + pos: -84.5,-20.5 + parent: 2 + - uid: 13999 components: - type: Transform rot: 3.141592653589793 rad - pos: -61.5,38.5 - parent: 89 + pos: -84.5,-19.5 + parent: 2 + - uid: 14000 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -84.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6500 + color: '#4169E1FF' + - uid: 14001 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,38.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -85.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6501 + color: '#4169E1FF' + - uid: 14002 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,37.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -86.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6502 + color: '#4169E1FF' + - uid: 14003 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,36.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -87.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6504 + color: '#4169E1FF' + - uid: 14004 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -88.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6505 + color: '#4169E1FF' + - uid: 14005 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -94.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6506 + color: '#DC143CFF' + - uid: 14006 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -93.5,-12.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -92.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6507 + color: '#4169E1FF' + - uid: 14008 components: - type: Transform rot: 3.141592653589793 rad - pos: -60.5,31.5 - parent: 89 + pos: -99.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6508 + color: '#4169E1FF' + - uid: 14009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -89.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6513 + color: '#DC143CFF' + - uid: 14010 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,37.5 - parent: 89 + pos: -88.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6514 + color: '#DC143CFF' + - uid: 14011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -64.5,37.5 - parent: 89 + pos: -87.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6515 + color: '#DC143CFF' + - uid: 14012 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,37.5 - parent: 89 + pos: -86.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6516 + color: '#DC143CFF' + - uid: 14013 components: - type: Transform rot: 1.5707963267948966 rad - pos: -62.5,37.5 - parent: 89 + pos: -85.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6532 + color: '#DC143CFF' + - uid: 14014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -84.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6533 + color: '#DC143CFF' + - uid: 14015 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -83.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6565 + color: '#DC143CFF' + - uid: 14016 components: - type: Transform - pos: -59.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -82.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6566 + color: '#DC143CFF' + - uid: 14017 components: - type: Transform - pos: -47.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6571 + color: '#4169E1FF' + - uid: 14018 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,11.5 - parent: 89 + pos: -5.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6572 + color: '#4169E1FF' + - uid: 14019 components: - type: Transform rot: 3.141592653589793 rad - pos: -67.5,12.5 - parent: 89 + pos: -95.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6573 + color: '#4169E1FF' + - uid: 14020 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,10.5 - parent: 89 + pos: -94.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6574 + color: '#4169E1FF' + - uid: 23811 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,11.5 - parent: 89 + pos: 4.5,-10.5 + parent: 23711 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6575 + color: '#17E8E2FF' + - uid: 23812 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,12.5 - parent: 89 + pos: 4.5,-9.5 + parent: 23711 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6578 + color: '#17E8E2FF' + - uid: 23813 components: - type: Transform - pos: -68.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 23711 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6579 + color: '#17E8E2FF' + - uid: 23814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 5.5,-6.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6580 + color: '#17E8E2FF' + - uid: 23815 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,13.5 - parent: 89 + pos: 5.5,-5.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6581 + color: '#17E8E2FF' + - uid: 23816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,13.5 - parent: 89 + pos: 4.5,-3.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6582 + color: '#17E8E2FF' + - uid: 24120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6583 + color: '#4169E1FF' + - uid: 24121 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,13.5 - parent: 89 + pos: 3.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6584 + color: '#4169E1FF' + - uid: 24122 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,13.5 - parent: 89 + pos: 2.5,-4.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6585 + color: '#4169E1FF' + - uid: 24123 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,13.5 - parent: 89 + pos: 2.5,-3.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6586 + color: '#4169E1FF' + - uid: 24124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,13.5 - parent: 89 + pos: 2.5,-2.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6587 + color: '#4169E1FF' + - uid: 24125 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,14.5 - parent: 89 + pos: 2.5,-0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6588 + color: '#4169E1FF' + - uid: 24126 components: - type: Transform rot: -1.5707963267948966 rad - pos: -66.5,14.5 - parent: 89 + pos: 4.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6589 + color: '#4169E1FF' + - uid: 24127 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6590 + color: '#4169E1FF' + - uid: 24128 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 2.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6591 + color: '#4169E1FF' + - uid: 24129 components: - type: Transform rot: -1.5707963267948966 rad - pos: -63.5,14.5 - parent: 89 + pos: 5.5,-8.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6592 + color: '#DC143CFF' + - uid: 24130 components: - type: Transform rot: -1.5707963267948966 rad - pos: -62.5,14.5 - parent: 89 + pos: 5.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6593 + color: '#DC143CFF' + - uid: 24131 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.5,14.5 - parent: 89 + pos: 6.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6594 + color: '#DC143CFF' + - uid: 24132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -60.5,14.5 - parent: 89 + pos: 7.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6595 + color: '#DC143CFF' + - uid: 24133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-6.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6599 + color: '#DC143CFF' + - uid: 24134 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6600 + color: '#DC143CFF' + - uid: 24135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-4.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6601 + color: '#DC143CFF' + - uid: 24136 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6606 + color: '#4169E1FF' + - uid: 24137 components: - type: Transform rot: 3.141592653589793 rad - pos: -73.5,9.5 - parent: 89 + pos: 2.5,2.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6807 + color: '#4169E1FF' + - uid: 24138 components: - type: Transform - pos: -71.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 2.5,1.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6808 + color: '#4169E1FF' + - uid: 24139 components: - type: Transform - pos: -71.5,2.5 - parent: 89 + pos: 4.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6809 + color: '#DC143CFF' + - uid: 24140 components: - type: Transform - pos: -71.5,1.5 - parent: 89 + pos: 4.5,1.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6810 + color: '#DC143CFF' + - uid: 24141 components: - type: Transform - pos: -71.5,0.5 - parent: 89 + pos: 4.5,-2.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6811 + color: '#DC143CFF' + - uid: 24142 components: - type: Transform - pos: -71.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,3.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6812 + color: '#4169E1FF' + - uid: 24143 components: - type: Transform - pos: -71.5,-1.5 - parent: 89 + pos: 4.5,-0.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6813 + color: '#DC143CFF' + - uid: 24144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,4.5 - parent: 89 + pos: 4.5,2.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6814 + color: '#DC143CFF' + - uid: 24398 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,4.5 - parent: 89 + pos: 0.5,-3.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6815 + color: '#DC143CFF' + - uid: 24399 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6816 + color: '#DC143CFF' + - uid: 24400 components: - type: Transform rot: -1.5707963267948966 rad - pos: -67.5,4.5 - parent: 89 + pos: -0.5,-4.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6818 + color: '#DC143CFF' + - uid: 25970 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,5.5 - parent: 89 + pos: -18.5,-13.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6819 + color: '#0000FFFF' + - uid: 25971 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -68.5,5.5 - parent: 89 + pos: -18.5,-9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6820 + color: '#990000FF' + - uid: 25972 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,4.5 - parent: 89 + pos: -21.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6821 + - uid: 25973 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,3.5 - parent: 89 + pos: -10.5,-13.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6822 + color: '#17E8E2FF' + - uid: 25974 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,2.5 - parent: 89 + pos: -17.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6823 + color: '#990000FF' + - uid: 25975 components: - type: Transform - rot: 3.141592653589793 rad - pos: -69.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -16.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6831 + color: '#17E8E2FF' + - uid: 25976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -11.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6832 + color: '#17E8E2FF' + - uid: 25977 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,6.5 - parent: 89 + pos: -10.5,-14.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6833 + color: '#17E8E2FF' + - uid: 25978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,-0.5 - parent: 89 + pos: -10.5,-15.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6834 + color: '#17E8E2FF' + - uid: 25979 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,-0.5 - parent: 89 + pos: -12.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6835 + color: '#FF0000FF' + - uid: 25980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,0.5 - parent: 89 + pos: -11.5,-18.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6836 + color: '#17E8E2FF' + - uid: 25981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,0.5 - parent: 89 + pos: -11.5,-19.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6837 + color: '#17E8E2FF' + - uid: 25982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.5,0.5 - parent: 89 + pos: -11.5,-20.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6838 + color: '#17E8E2FF' + - uid: 25983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -43.5,0.5 - parent: 89 + pos: -11.5,-21.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6854 + color: '#17E8E2FF' + - uid: 25984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-7.5 - parent: 89 + pos: -11.5,-21.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6855 + color: '#17E8E2FF' + - uid: 25985 components: - type: Transform rot: 3.141592653589793 rad - pos: -23.5,-12.5 - parent: 89 + pos: -22.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6860 + color: '#17E8E2FF' + - uid: 25986 components: - type: Transform - pos: -32.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -13.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6861 + - uid: 25987 components: - type: Transform - pos: -62.5,4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6867 + color: '#17E8E2FF' + - uid: 25988 components: - type: Transform - pos: -47.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -14.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 6868 + - uid: 25989 components: - type: Transform - pos: -12.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6876 + color: '#17E8E2FF' + - uid: 25990 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,5.5 - parent: 89 + pos: -12.5,-9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6877 + color: '#17E8E2FF' + - uid: 25991 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,6.5 - parent: 89 + pos: -12.5,-8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6878 + color: '#17E8E2FF' + - uid: 25992 components: - type: Transform rot: 3.141592653589793 rad - pos: -41.5,7.5 - parent: 89 + pos: -12.5,-7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6883 + color: '#17E8E2FF' + - uid: 25993 components: - type: Transform rot: 3.141592653589793 rad - pos: -39.5,6.5 - parent: 89 + pos: -12.5,-6.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7281 + color: '#17E8E2FF' + - uid: 25994 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-13.5 - parent: 89 - - uid: 7290 + rot: 3.141592653589793 rad + pos: -12.5,-5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25995 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,-11.5 - parent: 89 - - uid: 7431 + rot: 3.141592653589793 rad + pos: -12.5,-4.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25996 components: - type: Transform rot: 3.141592653589793 rad - pos: -75.5,-12.5 - parent: 89 - - uid: 7433 + pos: -12.5,-3.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25997 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 - parent: 89 - - uid: 7436 + rot: 3.141592653589793 rad + pos: -12.5,-1.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-11.5 - parent: 89 - - uid: 7569 + rot: 3.141592653589793 rad + pos: -13.5,0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 25999 components: - type: Transform - pos: -88.5,-6.5 - parent: 89 - - uid: 7570 + rot: 3.141592653589793 rad + pos: -13.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26000 components: - type: Transform - pos: -87.5,-6.5 - parent: 89 - - uid: 8037 + rot: 3.141592653589793 rad + pos: -13.5,3.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -13.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8147 + color: '#17E8E2FF' + - uid: 26002 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,35.5 - parent: 89 + pos: -13.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8200 + color: '#17E8E2FF' + - uid: 26003 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,32.5 - parent: 89 + pos: -14.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8354 + color: '#17E8E2FF' + - uid: 26004 components: - type: Transform - pos: -1.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -16.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8355 + color: '#17E8E2FF' + - uid: 26005 components: - type: Transform - pos: -1.5,24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8360 + color: '#17E8E2FF' + - uid: 26006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,7.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -10.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8361 + color: '#17E8E2FF' + - uid: 26007 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8362 + color: '#17E8E2FF' + - uid: 26008 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8363 + color: '#17E8E2FF' + - uid: 26009 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8364 + color: '#17E8E2FF' + - uid: 26010 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,11.5 - parent: 89 + pos: -7.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8365 + color: '#17E8E2FF' + - uid: 26011 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,12.5 - parent: 89 + pos: -17.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8366 + color: '#17E8E2FF' + - uid: 26012 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -18.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8452 + color: '#17E8E2FF' + - uid: 26013 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,23.5 - parent: 89 + pos: -19.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8591 + color: '#17E8E2FF' + - uid: 26014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -126.5,13.5 - parent: 89 + pos: -20.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8592 + color: '#17E8E2FF' + - uid: 26015 components: - type: Transform rot: -1.5707963267948966 rad - pos: -125.5,13.5 - parent: 89 + pos: -21.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8593 + color: '#17E8E2FF' + - uid: 26016 components: - type: Transform rot: -1.5707963267948966 rad - pos: -123.5,13.5 - parent: 89 + pos: -23.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8617 + color: '#17E8E2FF' + - uid: 26017 components: - type: Transform - pos: -116.5,2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -24.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8720 + color: '#17E8E2FF' + - uid: 26018 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,9.5 - parent: 89 - - uid: 8743 + rot: -1.5707963267948966 rad + pos: -25.5,-0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8744 + color: '#17E8E2FF' + - uid: 26020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8745 + color: '#17E8E2FF' + - uid: 26021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8746 + color: '#17E8E2FF' + - uid: 26022 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8747 + color: '#17E8E2FF' + - uid: 26023 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -26.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8749 + color: '#17E8E2FF' + - uid: 26024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8753 + color: '#17E8E2FF' + - uid: 26025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8754 + color: '#17E8E2FF' + - uid: 26026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -29.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8755 + color: '#17E8E2FF' + - uid: 26027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8756 + color: '#17E8E2FF' + - uid: 26028 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,3.5 - parent: 89 + pos: -13.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8757 + color: '#17E8E2FF' + - uid: 26029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,3.5 - parent: 89 + pos: -13.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8761 + color: '#17E8E2FF' + - uid: 26030 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 89 - - uid: 8800 + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26031 components: - type: Transform rot: 3.141592653589793 rad - pos: -121.5,6.5 - parent: 89 - - uid: 8802 + pos: -1.5,0.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,5.5 - parent: 89 - - uid: 8803 + pos: -31.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,2.5 - parent: 89 - - uid: 8805 + pos: -31.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26034 components: - type: Transform - pos: -121.5,1.5 - parent: 89 - - uid: 8807 + pos: -31.5,8.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26035 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-0.5 - parent: 89 - - uid: 8809 + pos: -31.5,10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26036 components: - type: Transform rot: -1.5707963267948966 rad - pos: -122.5,-1.5 - parent: 89 - - uid: 8810 + pos: -32.5,9.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26037 components: - type: Transform rot: -1.5707963267948966 rad - pos: -123.5,-1.5 - parent: 89 - - uid: 8820 - components: - - type: Transform - pos: -124.5,-2.5 - parent: 89 - - uid: 8826 + pos: -32.5,11.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-3.5 - parent: 89 - - uid: 8827 + rot: -1.5707963267948966 rad + pos: -32.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26039 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,-2.5 - parent: 89 - - uid: 8828 + pos: -11.5,-24.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26040 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,-1.5 - parent: 89 - - uid: 8829 + pos: -22.5,2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26041 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,-0.5 - parent: 89 - - uid: 8830 + pos: -22.5,3.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26042 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,0.5 - parent: 89 - - uid: 8831 + pos: -22.5,4.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,1.5 - parent: 89 - - uid: 8832 + pos: -22.5,12.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26044 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,2.5 - parent: 89 - - uid: 8833 + pos: -22.5,5.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26045 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,3.5 - parent: 89 - - uid: 8834 + pos: -22.5,6.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26046 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,4.5 - parent: 89 - - uid: 8835 + pos: -22.5,7.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26047 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,5.5 - parent: 89 - - uid: 8836 + pos: -22.5,9.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26048 components: - type: Transform rot: 3.141592653589793 rad - pos: -129.5,6.5 - parent: 89 - - uid: 8838 - components: - - type: Transform - pos: -129.5,7.5 - parent: 89 - - uid: 8840 + pos: -22.5,10.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26049 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,8.5 - parent: 89 - - uid: 8863 + pos: -22.5,13.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,9.5 - parent: 89 - - uid: 8864 + pos: -22.5,14.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,9.5 - parent: 89 - - uid: 8865 + pos: -22.5,15.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,9.5 - parent: 89 - - uid: 8866 + pos: -22.5,17.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26053 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,9.5 - parent: 89 - - uid: 8867 + pos: -22.5,18.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,9.5 - parent: 89 - - uid: 8868 + pos: -22.5,19.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26055 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,9.5 - parent: 89 - - uid: 8869 + pos: -22.5,20.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,9.5 - parent: 89 - - uid: 8933 + pos: -22.5,21.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -108.5,8.5 - parent: 89 + pos: -22.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8935 + color: '#17E8E2FF' + - uid: 26058 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,20.5 - parent: 89 - - uid: 8940 + pos: -22.5,23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26059 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.5,8.5 - parent: 89 + pos: -24.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8941 + color: '#17E8E2FF' + - uid: 26060 components: - type: Transform rot: -1.5707963267948966 rad - pos: -110.5,8.5 - parent: 89 + pos: -23.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8942 + color: '#17E8E2FF' + - uid: 26061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8943 + color: '#17E8E2FF' + - uid: 26062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8944 + color: '#17E8E2FF' + - uid: 26063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8945 + color: '#17E8E2FF' + - uid: 26064 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,8.5 - parent: 89 + pos: -15.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8946 + color: '#17E8E2FF' + - uid: 26065 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8947 + color: '#17E8E2FF' + - uid: 26066 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8948 + color: '#17E8E2FF' + - uid: 26067 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8949 + color: '#17E8E2FF' + - uid: 26068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8950 + color: '#17E8E2FF' + - uid: 26069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8951 + color: '#17E8E2FF' + - uid: 26070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8952 + color: '#17E8E2FF' + - uid: 26071 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8953 + color: '#17E8E2FF' + - uid: 26072 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8954 + color: '#17E8E2FF' + - uid: 26073 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8955 + color: '#17E8E2FF' + - uid: 26074 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,13.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8956 + color: '#17E8E2FF' + - uid: 26075 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8957 + color: '#17E8E2FF' + - uid: 26076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8958 + color: '#17E8E2FF' + - uid: 26077 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,10.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,17.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8959 + color: '#17E8E2FF' + - uid: 26078 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,18.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8962 + color: '#17E8E2FF' + - uid: 26079 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,9.5 - parent: 89 + pos: -1.5,19.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8963 + color: '#17E8E2FF' + - uid: 26080 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,10.5 - parent: 89 + pos: -1.5,20.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8964 + color: '#17E8E2FF' + - uid: 26081 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,11.5 - parent: 89 + pos: -1.5,21.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8965 + color: '#17E8E2FF' + - uid: 26082 components: - type: Transform rot: 3.141592653589793 rad - pos: -120.5,12.5 - parent: 89 + pos: -1.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8966 + color: '#17E8E2FF' + - uid: 26083 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-42.5 - parent: 89 - - uid: 8967 + pos: -1.5,23.5 + parent: 24450 + - type: AtmosPipeColor + color: '#17E8E2FF' + - uid: 26084 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8969 + color: '#17E8E2FF' + - uid: 26085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8970 + color: '#17E8E2FF' + - uid: 26086 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8971 + color: '#17E8E2FF' + - uid: 26087 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8974 + color: '#17E8E2FF' + - uid: 26088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -110.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8975 + color: '#17E8E2FF' + - uid: 26089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8976 + color: '#17E8E2FF' + - uid: 26090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8977 + color: '#17E8E2FF' + - uid: 26091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-0.5 - parent: 89 + pos: 2.5,0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8978 + color: '#17E8E2FF' + - uid: 26092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-0.5 - parent: 89 + pos: 2.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8979 + color: '#17E8E2FF' + - uid: 26093 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-0.5 - parent: 89 + pos: 2.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8980 + color: '#17E8E2FF' + - uid: 26094 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-0.5 - parent: 89 + pos: 2.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8981 + color: '#17E8E2FF' + - uid: 26095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -117.5,-0.5 - parent: 89 + pos: 2.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8982 + color: '#17E8E2FF' + - uid: 26096 components: - type: Transform rot: -1.5707963267948966 rad - pos: -118.5,-0.5 - parent: 89 + pos: 3.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8983 + color: '#17E8E2FF' + - uid: 26097 components: - type: Transform rot: -1.5707963267948966 rad - pos: -108.5,-2.5 - parent: 89 + pos: 4.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8984 + color: '#17E8E2FF' + - uid: 26098 components: - type: Transform rot: -1.5707963267948966 rad - pos: -109.5,-2.5 - parent: 89 + pos: 5.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8985 + color: '#17E8E2FF' + - uid: 26099 components: - type: Transform rot: -1.5707963267948966 rad - pos: -110.5,-2.5 - parent: 89 + pos: 6.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8986 + color: '#17E8E2FF' + - uid: 26100 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -111.5,-2.5 - parent: 89 + pos: 7.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8987 + color: '#17E8E2FF' + - uid: 26101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-2.5 - parent: 89 + pos: 7.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8988 + color: '#17E8E2FF' + - uid: 26102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -113.5,-2.5 - parent: 89 + pos: 7.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8989 + color: '#17E8E2FF' + - uid: 26103 components: - type: Transform rot: -1.5707963267948966 rad - pos: -114.5,-2.5 - parent: 89 + pos: 8.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8990 + color: '#17E8E2FF' + - uid: 26104 components: - type: Transform rot: -1.5707963267948966 rad - pos: -115.5,-2.5 - parent: 89 + pos: 8.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8991 + color: '#17E8E2FF' + - uid: 26105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -116.5,-2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8992 + color: '#17E8E2FF' + - uid: 26106 components: - type: Transform rot: -1.5707963267948966 rad - pos: -117.5,-2.5 - parent: 89 + pos: 8.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8993 + color: '#17E8E2FF' + - uid: 26107 components: - type: Transform rot: -1.5707963267948966 rad - pos: -118.5,-2.5 - parent: 89 + pos: -0.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8994 + color: '#17E8E2FF' + - uid: 26108 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -16.5,-25.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 8999 + - uid: 26109 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,-24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9000 + - uid: 26110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -14.5,-24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9001 + - uid: 26111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9002 + color: '#FF0000FF' + - uid: 26112 components: - type: Transform rot: 1.5707963267948966 rad - pos: -120.5,-3.5 - parent: 89 + pos: -12.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9003 + color: '#FF0000FF' + - uid: 26113 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,-3.5 - parent: 89 + pos: -11.5,-24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9004 + color: '#FF0000FF' + - uid: 26114 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-2.5 - parent: 89 + pos: -10.5,-25.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9005 + - uid: 26115 components: - type: Transform rot: 1.5707963267948966 rad - pos: -122.5,-2.5 - parent: 89 + pos: -9.5,-23.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9006 + - uid: 26116 components: - type: Transform - pos: -123.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9346 + - uid: 26117 components: - type: Transform - pos: 5.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -15.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9347 + color: '#FF0000FF' + - uid: 26118 components: - type: Transform - pos: 5.5,9.5 - parent: 89 + pos: -10.5,-16.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9351 + color: '#17E8E2FF' + - uid: 26119 components: - type: Transform - pos: 7.5,10.5 - parent: 89 + pos: -10.5,1.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9352 + - uid: 26120 components: - type: Transform - pos: 7.5,9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -9.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9353 + - uid: 26121 components: - type: Transform - pos: 7.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9354 + - uid: 26122 components: - type: Transform - pos: 7.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9357 + - uid: 26123 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9358 + color: '#FF0000FF' + - uid: 26124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9359 + color: '#FF0000FF' + - uid: 26125 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9360 + color: '#FF0000FF' + - uid: 26126 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9361 + color: '#FF0000FF' + - uid: 26127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -11.5,-1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9362 + color: '#FF0000FF' + - uid: 26128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,8.5 - parent: 89 + pos: -10.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9363 + color: '#FF0000FF' + - uid: 26129 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -8.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9364 + color: '#FF0000FF' + - uid: 26130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,0.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9365 + - uid: 26131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9366 + - uid: 26132 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,6.5 - parent: 89 + pos: -1.5,14.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9367 + - uid: 26133 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,6.5 - parent: 89 + pos: -22.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9368 + - uid: 26134 components: - type: Transform rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 89 + pos: -23.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9430 + - uid: 26135 components: - type: Transform - pos: 21.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -24.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9431 + color: '#FF0000FF' + - uid: 26136 components: - type: Transform - pos: 23.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9432 + - uid: 26137 components: - type: Transform - pos: 23.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -26.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9611 + - uid: 26138 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -27.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9622 + - uid: 26139 components: - type: Transform - pos: -24.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -28.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9623 + color: '#FF0000FF' + - uid: 26140 components: - type: Transform - pos: -24.5,-25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9624 + color: '#FF0000FF' + - uid: 26141 components: - type: Transform - pos: -24.5,-24.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9625 + color: '#FF0000FF' + - uid: 26142 components: - type: Transform - pos: -24.5,-23.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9626 + color: '#FF0000FF' + - uid: 26143 components: - type: Transform - pos: -24.5,-22.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9627 + color: '#FF0000FF' + - uid: 26144 components: - type: Transform - pos: -24.5,-21.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9628 + color: '#FF0000FF' + - uid: 26145 components: - type: Transform - pos: -24.5,-20.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -31.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9629 + color: '#FF0000FF' + - uid: 26146 components: - type: Transform - pos: -24.5,-19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9630 + color: '#FF0000FF' + - uid: 26147 components: - type: Transform - pos: -24.5,-18.5 - parent: 89 + pos: -30.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9631 + color: '#FF0000FF' + - uid: 26148 components: - type: Transform - pos: -24.5,-17.5 - parent: 89 + pos: -30.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9632 + color: '#FF0000FF' + - uid: 26149 components: - type: Transform - pos: -24.5,-16.5 - parent: 89 + pos: -30.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9633 + color: '#FF0000FF' + - uid: 26150 components: - type: Transform - pos: -24.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9634 + color: '#FF0000FF' + - uid: 26151 components: - type: Transform - pos: -24.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -19.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9666 + color: '#FF0000FF' + - uid: 26152 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,33.5 - parent: 89 + pos: -18.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9667 + - uid: 26153 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,33.5 - parent: 89 + pos: -17.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9887 + - uid: 26154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,35.5 - parent: 89 + pos: -17.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9888 + color: '#FF0000FF' + - uid: 26155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,35.5 - parent: 89 + pos: -17.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9889 + color: '#FF0000FF' + - uid: 26156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,33.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -16.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9890 + - uid: 26157 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -59.5,33.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -21.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9903 + - uid: 26158 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,37.5 - parent: 89 + pos: -21.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9904 + color: '#FF0000FF' + - uid: 26159 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,38.5 - parent: 89 + pos: -20.5,7.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9905 + color: '#FF0000FF' + - uid: 26160 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,38.5 - parent: 89 + pos: -20.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9913 + - uid: 26161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -65.5,39.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -20.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9914 + color: '#FF0000FF' + - uid: 26162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9915 + color: '#FF0000FF' + - uid: 26163 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9916 + color: '#FF0000FF' + - uid: 26164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9918 + color: '#FF0000FF' + - uid: 26165 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,39.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -24.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9944 + color: '#FF0000FF' + - uid: 26166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,39.5 - parent: 89 + pos: -20.5,11.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 9945 + - uid: 26167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,40.5 - parent: 89 + pos: -20.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9946 + color: '#FF0000FF' + - uid: 26168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,41.5 - parent: 89 + pos: -20.5,13.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9947 + color: '#FF0000FF' + - uid: 26169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,42.5 - parent: 89 + pos: -20.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10164 + color: '#FF0000FF' + - uid: 26170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,17.5 - parent: 89 + pos: -20.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10165 + color: '#FF0000FF' + - uid: 26171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,17.5 - parent: 89 + pos: -20.5,17.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10166 + color: '#FF0000FF' + - uid: 26172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,18.5 - parent: 89 + pos: -20.5,18.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10168 + color: '#FF0000FF' + - uid: 26173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,19.5 - parent: 89 + pos: -20.5,19.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10169 + color: '#FF0000FF' + - uid: 26174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,19.5 - parent: 89 + pos: -20.5,20.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10171 + - uid: 26175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,20.5 - parent: 89 + pos: -20.5,21.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10446 + - uid: 26176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-10.5 - parent: 89 + pos: -20.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10486 + color: '#FF0000FF' + - uid: 26177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,15.5 - parent: 89 + pos: -20.5,23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10498 + color: '#FF0000FF' + - uid: 26178 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 89 + pos: -21.5,15.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10507 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,21.5 - parent: 89 - - uid: 10599 + color: '#FF0000FF' + - uid: 26179 components: - type: Transform rot: 1.5707963267948966 rad - pos: 9.5,32.5 - parent: 89 + pos: -4.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10671 + color: '#17E8E2FF' + - uid: 26180 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,33.5 - parent: 89 + pos: -10.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10677 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,20.5 - parent: 89 - - uid: 10761 + color: '#FF0000FF' + - uid: 26181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10766 + - uid: 26182 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,13.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10799 + color: '#FF0000FF' + - uid: 26183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10832 + - uid: 26184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 10971 + color: '#FF0000FF' + - uid: 26185 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,29.5 - parent: 89 + pos: -4.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 10973 + - uid: 26186 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,31.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10991 + color: '#FF0000FF' + - uid: 26187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11033 + color: '#FF0000FF' + - uid: 26188 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 19.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11060 + - uid: 26189 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,31.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11098 + color: '#FF0000FF' + - uid: 26190 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,10.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11350 + - uid: 26191 components: - type: Transform - pos: -14.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11386 + color: '#FF0000FF' + - uid: 26192 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11602 + color: '#FF0000FF' + - uid: 26193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,13.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11604 + - uid: 26194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,15.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 11825 + - uid: 26195 components: - type: Transform - pos: -14.5,22.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11911 + color: '#FF0000FF' + - uid: 26196 components: - type: Transform - pos: 10.5,40.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,17.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11915 + color: '#FF0000FF' + - uid: 26197 components: - type: Transform - pos: 10.5,39.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,18.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12328 + color: '#FF0000FF' + - uid: 26198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,19.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12566 + - uid: 26199 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,14.5 - parent: 89 + pos: -3.5,20.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12581 + color: '#FF0000FF' + - uid: 26200 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,17.5 - parent: 89 + pos: -3.5,21.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12582 + color: '#FF0000FF' + - uid: 26201 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,16.5 - parent: 89 + pos: -3.5,22.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12583 + color: '#FF0000FF' + - uid: 26202 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,15.5 - parent: 89 + pos: -3.5,23.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12584 + color: '#FF0000FF' + - uid: 26203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12585 + color: '#FF0000FF' + - uid: 26204 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,19.5 - parent: 89 + pos: -7.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12586 + color: '#FF0000FF' + - uid: 26205 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,20.5 - parent: 89 + pos: -7.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12644 + color: '#FF0000FF' + - uid: 26206 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 8.5,12.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12652 + - uid: 26207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,23.5 - parent: 89 + pos: 7.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12657 + color: '#FF0000FF' + - uid: 26208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12683 + color: '#FF0000FF' + - uid: 26209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,9.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12684 + - uid: 26210 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,12.5 - parent: 89 + pos: -1.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12685 + - uid: 26211 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,12.5 - parent: 89 + pos: -0.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12686 + - uid: 26212 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,13.5 - parent: 89 + pos: 0.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12687 + color: '#FF0000FF' + - uid: 26213 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,13.5 - parent: 89 + pos: 1.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12688 + color: '#FF0000FF' + - uid: 26214 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,13.5 - parent: 89 + pos: 2.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12689 + color: '#FF0000FF' + - uid: 26215 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,13.5 - parent: 89 + pos: 3.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12690 + color: '#FF0000FF' + - uid: 26216 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,13.5 - parent: 89 + pos: 4.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12691 + color: '#FF0000FF' + - uid: 26217 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,13.5 - parent: 89 + pos: 8.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12693 + color: '#FF0000FF' + - uid: 26218 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,11.5 - parent: 89 + pos: 7.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12694 + - uid: 26219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,11.5 - parent: 89 + pos: 6.5,7.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12695 + - uid: 26220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12698 + - uid: 26221 components: - type: Transform - pos: 1.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 8.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12707 + - uid: 26222 components: - type: Transform - pos: 5.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,15.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 27632 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 27260 + - uid: 27633 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-13.5 + parent: 27260 + - uid: 27634 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-12.5 + parent: 27260 + - uid: 27635 + components: + - type: Transform + pos: 1.5,-10.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12708 + - uid: 27636 components: - type: Transform - pos: 5.5,12.5 - parent: 89 + pos: 1.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12712 + - uid: 27637 components: - type: Transform - pos: 7.5,11.5 - parent: 89 + pos: 0.5,-10.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12716 + - uid: 27638 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12717 + color: '#0000FFFF' + - uid: 27639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12718 + color: '#0000FFFF' + - uid: 27640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12719 + - uid: 27641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12720 + - uid: 27642 components: - type: Transform - pos: 9.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12721 + - uid: 27643 components: - type: Transform - pos: 9.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12722 + - uid: 27644 components: - type: Transform - pos: 9.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12723 + - uid: 27645 components: - type: Transform - pos: 10.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12724 + color: '#0000FFFF' + - uid: 27646 components: - type: Transform - pos: 10.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -3.5,-8.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12725 + color: '#0000FFFF' + - uid: 27647 components: - type: Transform - pos: 10.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12726 + - uid: 27648 components: - type: Transform - pos: 10.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12727 + - uid: 27649 components: - type: Transform - pos: 6.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,-9.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12728 + color: '#FF0000FF' + - uid: 27650 components: - type: Transform - pos: 6.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,-9.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12729 + color: '#FF0000FF' + - uid: 27651 components: - type: Transform - pos: 6.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,-9.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12730 + color: '#FF0000FF' + - uid: 27652 components: - type: Transform - pos: 7.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-9.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12731 + - uid: 27653 components: - type: Transform - pos: 7.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12732 + - uid: 27654 components: - type: Transform - pos: 7.5,15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,-11.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12733 + - uid: 27655 components: - type: Transform - pos: 7.5,16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-12.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12744 + - uid: 27656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12745 + - uid: 27657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12754 + - uid: 27658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12755 + - uid: 27659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12756 + color: '#0000FFFF' + - uid: 27660 components: - type: Transform rot: 1.5707963267948966 rad - pos: 14.5,13.5 - parent: 89 + pos: -0.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12757 + - uid: 27661 components: - type: Transform - pos: 13.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12758 + - uid: 27662 components: - type: Transform - pos: 14.5,13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12759 + color: '#0000FFFF' + - uid: 27663 components: - type: Transform - pos: 14.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12760 + - uid: 27664 components: - type: Transform rot: -1.5707963267948966 rad - pos: 15.5,12.5 - parent: 89 + pos: 2.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12763 + - uid: 27665 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12766 + - uid: 27666 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12767 + color: '#FF0000FF' + - uid: 27667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12768 + color: '#FF0000FF' + - uid: 27668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12769 + color: '#FF0000FF' + - uid: 27669 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12778 + color: '#FF0000FF' + - uid: 27670 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,14.5 - parent: 89 + pos: 1.5,-5.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12779 + color: '#0000FFFF' + - uid: 27671 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,15.5 - parent: 89 + pos: 1.5,-4.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12781 + - uid: 27672 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,14.5 - parent: 89 + pos: 1.5,-3.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12782 + color: '#0000FFFF' + - uid: 27673 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,15.5 - parent: 89 + pos: 1.5,-2.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 12783 + - uid: 27674 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-8.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12784 + - uid: 27675 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-6.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12785 + - uid: 27676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 12788 +- proto: GasPipeTJunction + entities: + - uid: 14021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,15.5 - parent: 89 + pos: -121.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12789 + color: '#DC143CFF' + - uid: 14022 components: - type: Transform rot: 1.5707963267948966 rad - pos: 22.5,15.5 - parent: 89 + pos: -136.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12790 + color: '#4169E1FF' + - uid: 14023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,15.5 - parent: 89 + pos: -129.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12791 + color: '#4169E1FF' + - uid: 14024 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -122.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12792 + color: '#4169E1FF' + - uid: 14025 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,14.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12796 - components: - - type: Transform - pos: 22.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12797 - components: - - type: Transform - pos: 22.5,16.5 - parent: 89 + pos: -136.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12804 + color: '#DC143CFF' + - uid: 14026 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,23.5 - parent: 89 + pos: -101.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12805 + color: '#17E8E2FF' + - uid: 14027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -102.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12806 + color: '#947507FF' + - uid: 14028 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,4.5 - parent: 89 + pos: -99.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12807 + color: '#4169E1FF' + - uid: 14029 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,5.5 - parent: 89 + pos: -100.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12808 + color: '#DC143CFF' + - uid: 14030 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -109.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12810 + color: '#DC143CFF' + - uid: 14031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12830 + rot: -1.5707963267948966 rad + pos: -125.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,12.5 - parent: 89 + pos: -91.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13201 + color: '#DC143CFF' + - uid: 14033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,23.5 - parent: 89 + pos: -90.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13202 + color: '#DC143CFF' + - uid: 14034 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,23.5 - parent: 89 + pos: -99.5,24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13205 + color: '#DC143CFF' + - uid: 14035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,23.5 - parent: 89 + pos: -4.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 13209 + color: '#DC143CFF' + - uid: 14036 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14022 + color: '#DC143CFF' + - uid: 14037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -56.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14026 + color: '#4169E1FF' + - uid: 14038 components: - type: Transform - pos: 10.5,37.5 - parent: 89 + pos: -0.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14053 + color: '#4169E1FF' + - uid: 14039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -99.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14055 + color: '#DC143CFF' + - uid: 14040 components: - type: Transform rot: 1.5707963267948966 rad - pos: 27.5,15.5 - parent: 89 + pos: -109.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14056 + color: '#DC143CFF' + - uid: 14041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -87.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14061 + color: '#4169E1FF' + - uid: 14042 components: - type: Transform - pos: 10.5,38.5 - parent: 89 + pos: -25.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14360 + color: '#4169E1FF' + - uid: 14043 components: - type: Transform - pos: 26.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -101.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14540 + color: '#17E8E2FF' + - uid: 14044 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -102.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14902 + color: '#947507FF' + - uid: 14045 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,23.5 - parent: 89 + pos: -99.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14905 + color: '#17E8E2FF' + - uid: 14046 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,23.5 - parent: 89 + pos: -96.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14947 + color: '#DC143CFF' + - uid: 14047 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14950 + color: '#4169E1FF' + - uid: 14048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14985 + color: '#DC143CFF' + - uid: 14049 components: - type: Transform - pos: 25.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -66.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14986 + color: '#4169E1FF' + - uid: 14050 components: - type: Transform - pos: 25.5,13.5 - parent: 89 + pos: -81.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14996 + color: '#947507FF' + - uid: 14051 components: - type: Transform - pos: 26.5,13.5 - parent: 89 + pos: -80.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15005 + color: '#FFD800FF' + - uid: 14052 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -84.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15010 + color: '#FFD800FF' + - uid: 14053 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 20.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -83.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15036 + color: '#FFD800FF' + - uid: 14054 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,31.5 - parent: 89 + pos: -96.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15062 + color: '#DC143CFF' + - uid: 14055 components: - type: Transform rot: -1.5707963267948966 rad - pos: 26.5,29.5 - parent: 89 + pos: -95.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15080 + color: '#4169E1FF' + - uid: 14056 components: - type: Transform rot: 3.141592653589793 rad - pos: 34.5,19.5 - parent: 89 + pos: -99.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15086 + color: '#DC143CFF' + - uid: 14057 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -96.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15099 + color: '#DC143CFF' + - uid: 14058 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,16.5 - parent: 89 + pos: -95.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15103 + color: '#DC143CFF' + - uid: 14059 components: - type: Transform rot: 3.141592653589793 rad - pos: 28.5,16.5 - parent: 89 + pos: -94.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15124 + color: '#4169E1FF' + - uid: 14060 components: - type: Transform - pos: 13.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15127 + color: '#4169E1FF' + - uid: 14061 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -88.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15129 + color: '#4169E1FF' + - uid: 14062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -89.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15130 + color: '#DC143CFF' + - uid: 14063 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -97.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15132 + color: '#4169E1FF' + - uid: 14064 components: - type: Transform - pos: 27.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -104.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15134 + color: '#DC143CFF' + - uid: 14065 components: - type: Transform - pos: 27.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -102.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15135 + color: '#4169E1FF' + - uid: 14066 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,18.5 - parent: 89 + pos: -107.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15137 + color: '#4169E1FF' + - uid: 14067 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,19.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15138 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15139 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,18.5 - parent: 89 + pos: -109.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15140 + color: '#DC143CFF' + - uid: 14068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 31.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15141 + color: '#DC143CFF' + - uid: 14069 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,18.5 - parent: 89 + pos: -107.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15142 + color: '#4169E1FF' + - uid: 14070 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,19.5 - parent: 89 + pos: -110.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15143 + color: '#4169E1FF' + - uid: 14071 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 32.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -110.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15144 + color: '#DC143CFF' + - uid: 14072 components: - type: Transform rot: 1.5707963267948966 rad - pos: 32.5,18.5 - parent: 89 + pos: -107.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15181 + color: '#4169E1FF' + - uid: 14073 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -109.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15183 + color: '#DC143CFF' + - uid: 14074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,18.5 - parent: 89 + pos: -107.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15194 + color: '#4169E1FF' + - uid: 14075 components: - type: Transform - pos: 13.5,28.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -107.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15201 + color: '#4169E1FF' + - uid: 14076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -109.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15205 + color: '#DC143CFF' + - uid: 14077 components: - type: Transform rot: -1.5707963267948966 rad - pos: 29.5,31.5 - parent: 89 + pos: -99.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15211 + color: '#DC143CFF' + - uid: 14078 components: - type: Transform rot: -1.5707963267948966 rad - pos: 27.5,31.5 - parent: 89 + pos: -98.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15212 + color: '#4169E1FF' + - uid: 14079 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -88.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15216 + color: '#DC143CFF' + - uid: 14080 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,19.5 - parent: 89 + pos: -67.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15217 + color: '#DC143CFF' + - uid: 14081 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,18.5 - parent: 89 + pos: -68.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15219 + color: '#4169E1FF' + - uid: 14082 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -66.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15220 + color: '#4169E1FF' + - uid: 14083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -65.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15221 + color: '#DC143CFF' + - uid: 14084 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,20.5 - parent: 89 + pos: -62.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15222 + color: '#DC143CFF' + - uid: 14085 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,21.5 - parent: 89 + pos: -66.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15223 + color: '#4169E1FF' + - uid: 14086 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,22.5 - parent: 89 + pos: -51.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15224 + color: '#4169E1FF' + - uid: 14087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,23.5 - parent: 89 + pos: -63.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15225 + color: '#4169E1FF' + - uid: 14088 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,24.5 - parent: 89 + pos: -50.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15226 + color: '#4169E1FF' + - uid: 14089 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -39.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15227 + color: '#DC143CFF' + - uid: 14090 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,16.5 - parent: 89 + pos: -41.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15228 + color: '#4169E1FF' + - uid: 14091 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,17.5 - parent: 89 + pos: -25.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15229 + color: '#DC143CFF' + - uid: 14092 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,18.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -54.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15230 + color: '#DC143CFF' + - uid: 14093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -56.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15231 + color: '#4169E1FF' + - uid: 14094 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,20.5 - parent: 89 + pos: -19.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15232 + color: '#4169E1FF' + - uid: 14095 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15233 + color: '#DC143CFF' + - uid: 14096 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,22.5 - parent: 89 + pos: -18.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15234 + color: '#4169E1FF' + - uid: 14097 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,23.5 - parent: 89 + pos: -56.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15235 + color: '#4169E1FF' + - uid: 14098 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -19.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15237 + color: '#4169E1FF' + - uid: 14099 components: - type: Transform rot: -1.5707963267948966 rad - pos: 25.5,31.5 - parent: 89 + pos: -54.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15253 + color: '#DC143CFF' + - uid: 14100 components: - type: Transform - pos: 9.5,40.5 - parent: 89 + pos: -54.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15259 + color: '#DC143CFF' + - uid: 14101 components: - type: Transform - pos: 24.5,25.5 - parent: 89 + pos: -15.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15260 + color: '#4169E1FF' + - uid: 14102 components: - type: Transform - pos: 25.5,25.5 - parent: 89 + pos: -14.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15261 + color: '#DC143CFF' + - uid: 14103 components: - type: Transform - pos: 25.5,27.5 - parent: 89 + pos: -22.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15263 + color: '#4169E1FF' + - uid: 14104 components: - type: Transform - pos: 9.5,39.5 - parent: 89 + pos: -20.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15266 + color: '#DC143CFF' + - uid: 14105 components: - type: Transform - pos: 9.5,38.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 20.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15357 + color: '#DC143CFF' + - uid: 14106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,32.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 18.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15358 + color: '#4169E1FF' + - uid: 14107 components: - type: Transform - pos: 14.5,18.5 - parent: 89 + pos: 23.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15366 + color: '#DC143CFF' + - uid: 14108 components: - type: Transform - pos: 13.5,19.5 - parent: 89 + pos: 21.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15368 + color: '#4169E1FF' + - uid: 14109 components: - type: Transform - pos: 13.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 34.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15370 + color: '#DC143CFF' + - uid: 14110 components: - type: Transform - pos: 13.5,23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 39.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15371 + color: '#4169E1FF' + - uid: 14111 components: - type: Transform - pos: 13.5,24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15372 + color: '#4169E1FF' + - uid: 14112 components: - type: Transform - pos: 13.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 34.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15373 + color: '#DC143CFF' + - uid: 14113 components: - type: Transform - pos: 13.5,26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 51.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15374 + color: '#DC143CFF' + - uid: 14114 components: - type: Transform - pos: 13.5,27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 52.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15387 + color: '#4169E1FF' + - uid: 14115 components: - type: Transform rot: -1.5707963267948966 rad - pos: 13.5,21.5 - parent: 89 + pos: 61.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15388 + color: '#4169E1FF' + - uid: 14116 components: - type: Transform - pos: 8.5,31.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 60.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15413 + color: '#DC143CFF' + - uid: 14117 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,33.5 - parent: 89 + pos: -17.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15414 + color: '#DC143CFF' + - uid: 14118 components: - type: Transform - pos: 13.5,31.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15430 + color: '#DC143CFF' + - uid: 14119 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15433 + color: '#4169E1FF' + - uid: 14120 components: - type: Transform - pos: 9.5,36.5 - parent: 89 + pos: -11.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15434 + color: '#4169E1FF' + - uid: 14121 components: - type: Transform - pos: 9.5,37.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -22.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15450 + color: '#4169E1FF' + - uid: 14122 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,34.5 - parent: 89 + pos: -20.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15470 + color: '#DC143CFF' + - uid: 14123 components: - type: Transform - pos: 14.5,15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -23.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15527 + color: '#4169E1FF' + - uid: 14124 components: - type: Transform - pos: 14.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15532 + color: '#4169E1FF' + - uid: 14125 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,34.5 - parent: 89 + pos: -0.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15538 + color: '#4169E1FF' + - uid: 14126 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,34.5 - parent: 89 + pos: -2.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15543 + color: '#DC143CFF' + - uid: 14127 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15544 + color: '#4169E1FF' + - uid: 14128 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,35.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15555 + color: '#DC143CFF' + - uid: 14129 components: - type: Transform - pos: 14.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15569 + color: '#4169E1FF' + - uid: 14130 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,35.5 - parent: 89 + pos: -8.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15604 + color: '#4169E1FF' + - uid: 14131 components: - type: Transform - pos: 12.5,35.5 - parent: 89 + pos: -1.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15619 + color: '#4169E1FF' + - uid: 14132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -0.5,-30.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14133 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,35.5 - parent: 89 + pos: -81.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15626 + color: '#4169E1FF' + - uid: 14134 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -82.5,10.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14135 components: - type: Transform rot: 1.5707963267948966 rad - pos: 11.5,34.5 - parent: 89 + pos: 3.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15690 + color: '#DC143CFF' + - uid: 14136 components: - type: Transform - pos: 14.5,16.5 - parent: 89 + pos: -59.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15755 + color: '#DC143CFF' + - uid: 14137 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,34.5 - parent: 89 + pos: 6.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15756 + color: '#4169E1FF' + - uid: 14138 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 4.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15785 + color: '#DC143CFF' + - uid: 14139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15786 + color: '#4169E1FF' + - uid: 14140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15787 + color: '#DC143CFF' + - uid: 14141 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,13.5 - parent: 89 + pos: -9.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15788 + color: '#DC143CFF' + - uid: 14142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,14.5 - parent: 89 + pos: -6.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15789 + color: '#DC143CFF' + - uid: 14143 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,15.5 - parent: 89 + pos: -55.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15790 + color: '#DC143CFF' + - uid: 14144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,16.5 - parent: 89 + pos: -59.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15791 + color: '#DC143CFF' + - uid: 14145 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,17.5 - parent: 89 + pos: -59.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15792 + color: '#4169E1FF' + - uid: 14146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,18.5 - parent: 89 + pos: -65.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15793 + color: '#4169E1FF' + - uid: 14147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,10.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -65.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15794 + color: '#4169E1FF' + - uid: 14148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -59.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15795 + color: '#DC143CFF' + - uid: 14149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -71.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15796 + color: '#DC143CFF' + - uid: 14150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -69.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15797 + color: '#4169E1FF' + - uid: 14151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15798 + color: '#4169E1FF' + - uid: 14152 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,15.5 - parent: 89 + pos: 35.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15799 + color: '#DC143CFF' + - uid: 14153 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,16.5 - parent: 89 + pos: -50.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15800 + color: '#4169E1FF' + - uid: 14154 components: - type: Transform rot: 3.141592653589793 rad - pos: -81.5,17.5 - parent: 89 + pos: 13.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15801 + color: '#DC143CFF' + - uid: 14155 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,18.5 - parent: 89 + pos: 22.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15802 + color: '#DC143CFF' + - uid: 14156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,19.5 - parent: 89 + pos: 25.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15803 + color: '#DC143CFF' + - uid: 14157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,20.5 - parent: 89 + pos: 24.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15804 + color: '#4169E1FF' + - uid: 14158 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,21.5 - parent: 89 + pos: 26.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15806 + color: '#DC143CFF' + - uid: 14159 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,23.5 - parent: 89 + pos: 13.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15807 + color: '#4169E1FF' + - uid: 14160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,24.5 - parent: 89 + pos: 21.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15808 + color: '#4169E1FF' + - uid: 14161 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,25.5 - parent: 89 + pos: 28.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15809 + color: '#DC143CFF' + - uid: 14162 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,26.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 12.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15810 + color: '#DC143CFF' + - uid: 14163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15811 + color: '#4169E1FF' + - uid: 14164 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,28.5 - parent: 89 + pos: 18.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15812 + color: '#4169E1FF' + - uid: 14165 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,29.5 - parent: 89 + pos: 19.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15813 + color: '#DC143CFF' + - uid: 14166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 38.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15814 + color: '#DC143CFF' + - uid: 14167 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 36.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15815 + color: '#4169E1FF' + - uid: 14168 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,32.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 35.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15816 + color: '#DC143CFF' + - uid: 14169 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,33.5 - parent: 89 + pos: 37.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15817 + color: '#DC143CFF' + - uid: 14170 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,34.5 - parent: 89 + pos: 37.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15818 + color: '#4169E1FF' + - uid: 14171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,35.5 - parent: 89 + pos: -77.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15819 + color: '#DC143CFF' + - uid: 14172 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,21.5 - parent: 89 + pos: -55.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15820 + color: '#4169E1FF' + - uid: 14173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,22.5 - parent: 89 + pos: -47.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15822 + color: '#DC143CFF' + - uid: 14174 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,24.5 - parent: 89 + pos: -57.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15823 + color: '#DC143CFF' + - uid: 14175 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,25.5 - parent: 89 + pos: -49.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15824 + color: '#4169E1FF' + - uid: 14176 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15825 + color: '#4169E1FF' + - uid: 14177 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -30.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15826 + color: '#DC143CFF' + - uid: 14178 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,28.5 - parent: 89 + pos: -19.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15827 + color: '#DC143CFF' + - uid: 14179 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,29.5 - parent: 89 + pos: -24.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15828 + color: '#4169E1FF' + - uid: 14180 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,30.5 - parent: 89 + pos: -82.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15829 + color: '#DC143CFF' + - uid: 14181 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,31.5 - parent: 89 + pos: -84.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15830 + color: '#4169E1FF' + - uid: 14182 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,32.5 - parent: 89 + pos: -76.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15831 + color: '#4169E1FF' + - uid: 14183 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,33.5 - parent: 89 + pos: -94.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15832 + color: '#4169E1FF' + - uid: 14184 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,34.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -6.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15833 + color: '#4169E1FF' + - uid: 14185 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,35.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -7.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15834 + color: '#DC143CFF' + - uid: 14186 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,36.5 - parent: 89 + pos: -7.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15835 + color: '#DC143CFF' + - uid: 14187 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,37.5 - parent: 89 + pos: -6.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15836 + color: '#4169E1FF' + - uid: 14188 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,38.5 - parent: 89 + pos: -5.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15837 + color: '#DC143CFF' + - uid: 14189 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,39.5 - parent: 89 + pos: -5.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15838 + color: '#4169E1FF' + - uid: 14190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.5,19.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -55.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15839 + color: '#4169E1FF' + - uid: 14191 components: - type: Transform rot: 1.5707963267948966 rad - pos: -84.5,19.5 - parent: 89 + pos: -57.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15840 + color: '#DC143CFF' + - uid: 14192 components: - type: Transform rot: 1.5707963267948966 rad - pos: -83.5,20.5 - parent: 89 + pos: -60.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15841 + color: '#4169E1FF' + - uid: 14193 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,20.5 - parent: 89 + pos: -67.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15850 + color: '#DC143CFF' + - uid: 14194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -61.5,37.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15870 + color: '#DC143CFF' + - uid: 14195 + components: + - type: Transform + pos: -59.5,18.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14196 + components: + - type: Transform + pos: -61.5,17.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14197 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,35.5 - parent: 89 + pos: -65.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16020 + color: '#DC143CFF' + - uid: 14198 components: - type: Transform rot: -1.5707963267948966 rad - pos: -9.5,18.5 - parent: 89 + pos: -39.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16129 + color: '#DC143CFF' + - uid: 14199 components: - type: Transform - pos: 13.5,30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -40.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16166 + color: '#4169E1FF' + - uid: 14200 components: - type: Transform - pos: 14.5,20.5 - parent: 89 + pos: -35.5,4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16285 + color: '#4169E1FF' + - uid: 14201 + components: + - type: Transform + pos: -32.5,5.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14202 + components: + - type: Transform + pos: -48.5,4.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14203 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,22.5 - parent: 89 + pos: -47.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16286 + color: '#DC143CFF' + - uid: 14204 components: - type: Transform rot: -1.5707963267948966 rad - pos: 16.5,22.5 - parent: 89 + pos: -30.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16287 + color: '#DC143CFF' + - uid: 14205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,20.5 - parent: 89 + pos: -32.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16288 + color: '#4169E1FF' + - uid: 14206 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,21.5 - parent: 89 + pos: -120.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16367 + color: '#4169E1FF' + - uid: 14207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,24.5 - parent: 89 - - uid: 16368 + pos: -122.5,0.5 + parent: 2 + - uid: 14208 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,24.5 - parent: 89 - - uid: 16369 + pos: -121.5,8.5 + parent: 2 + - uid: 14209 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,24.5 - parent: 89 - - uid: 16370 + pos: -121.5,7.5 + parent: 2 + - uid: 14210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,24.5 - parent: 89 - - uid: 16371 + rot: 3.141592653589793 rad + pos: -125.5,-3.5 + parent: 2 + - uid: 14211 components: - type: Transform - pos: 6.5,23.5 - parent: 89 - - uid: 16372 + rot: 3.141592653589793 rad + pos: -127.5,-3.5 + parent: 2 + - uid: 14212 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,23.5 - parent: 89 - - uid: 16374 + pos: -126.5,-3.5 + parent: 2 + - uid: 14213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,21.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 17035 + pos: -125.5,6.5 + parent: 2 + - uid: 14214 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,28.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17340 + pos: -126.5,6.5 + parent: 2 + - uid: 14215 components: - type: Transform - pos: 26.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 17663 + rot: 3.141592653589793 rad + pos: -126.5,1.5 + parent: 2 + - uid: 14216 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,24.5 - parent: 89 + pos: 39.5,-18.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19492 + color: '#4169E1FF' + - uid: 14217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19595 + rot: 3.141592653589793 rad + pos: -125.5,1.5 + parent: 2 + - uid: 14218 components: - type: Transform - pos: 18.5,16.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19598 + rot: 3.141592653589793 rad + pos: 7.5,20.5 + parent: 2 + - uid: 14219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 7.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 19614 + color: '#DC143CFF' + - uid: 14220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 5.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19776 + color: '#4169E1FF' + - uid: 14221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-12.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -24.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19777 + color: '#4169E1FF' + - uid: 14222 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-12.5 - parent: 89 + pos: -56.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19917 + color: '#DC143CFF' + - uid: 14223 components: - type: Transform rot: 1.5707963267948966 rad - pos: -16.5,-7.5 - parent: 89 + pos: -61.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19999 + color: '#DC143CFF' + - uid: 14224 components: - type: Transform - pos: 43.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -57.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20000 + color: '#4169E1FF' + - uid: 14225 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-13.5 - parent: 89 + pos: -60.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20006 + color: '#4169E1FF' + - uid: 14226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-13.5 - parent: 89 + pos: 8.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20026 + color: '#4169E1FF' + - uid: 14227 components: - type: Transform - pos: -5.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 14.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20034 + color: '#DC143CFF' + - uid: 14228 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,29.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20035 + pos: 9.5,21.5 + parent: 2 + - uid: 14229 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,30.5 - parent: 89 + pos: 11.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20036 + color: '#4169E1FF' + - uid: 14230 components: - type: Transform - pos: -5.5,15.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 23.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20037 + color: '#4169E1FF' + - uid: 14231 components: - type: Transform - rot: 3.141592653589793 rad - pos: 23.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 25.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20038 + color: '#DC143CFF' + - uid: 14232 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,33.5 - parent: 89 + pos: 0.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20041 + color: '#4169E1FF' + - uid: 14233 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,35.5 - parent: 89 + pos: 1.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20042 + color: '#DC143CFF' + - uid: 14234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,36.5 - parent: 89 + pos: 5.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20043 + color: '#4169E1FF' + - uid: 14235 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,37.5 - parent: 89 + pos: 6.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20044 + color: '#4169E1FF' + - uid: 14236 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,38.5 - parent: 89 + pos: 9.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20045 + color: '#4169E1FF' + - uid: 14237 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,39.5 - parent: 89 + pos: 10.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20046 + color: '#DC143CFF' + - uid: 14238 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,41.5 - parent: 89 + pos: 13.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20047 + color: '#4169E1FF' + - uid: 14239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,42.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 15.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20052 + color: '#4169E1FF' + - uid: 14240 components: - type: Transform - pos: -4.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 16.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20053 + color: '#DC143CFF' + - uid: 14241 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,30.5 - parent: 89 + pos: 22.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20054 + color: '#DC143CFF' + - uid: 14242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,31.5 - parent: 89 + pos: 26.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20055 + color: '#4169E1FF' + - uid: 14243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,32.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -85.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20056 + color: '#DC143CFF' + - uid: 14244 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,33.5 - parent: 89 + pos: 24.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20062 + color: '#4169E1FF' + - uid: 14245 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,36.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 18.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20063 + color: '#4169E1FF' + - uid: 14246 components: - type: Transform rot: 1.5707963267948966 rad - pos: 24.5,36.5 - parent: 89 + pos: 27.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20064 + color: '#DC143CFF' + - uid: 14247 components: - type: Transform - pos: 23.5,37.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 28.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20065 + color: '#4169E1FF' + - uid: 14248 components: - type: Transform - pos: 23.5,38.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 10.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20067 + color: '#4169E1FF' + - uid: 14249 components: - type: Transform - pos: -4.5,16.5 - parent: 89 + pos: 0.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20075 + color: '#4169E1FF' + - uid: 14250 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20077 + color: '#4169E1FF' + - uid: 14251 components: - type: Transform - pos: -5.5,16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 9.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20082 + color: '#D3FC03FF' + - uid: 14252 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 13.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20087 + color: '#4169E1FF' + - uid: 14253 components: - type: Transform - pos: -5.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 12.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20101 + color: '#D3FC03FF' + - uid: 14254 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,18.5 - parent: 89 + pos: 13.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20113 + color: '#4169E1FF' + - uid: 14255 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 10.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20117 + color: '#4169E1FF' + - uid: 14256 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -84.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20120 + color: '#4169E1FF' + - uid: 14257 components: - type: Transform - pos: -11.5,19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20143 + color: '#D3FC03FF' + - uid: 14258 components: - type: Transform - pos: -5.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 14.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20159 + color: '#4169E1FF' + - uid: 14259 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20180 + rot: 3.141592653589793 rad + pos: 10.5,22.5 + parent: 2 + - uid: 14260 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20188 + rot: 1.5707963267948966 rad + pos: 6.5,22.5 + parent: 2 + - uid: 14261 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -5.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20285 + color: '#4169E1FF' + - uid: 14262 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,17.5 - parent: 89 + pos: -119.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20441 + color: '#DC143CFF' + - uid: 14263 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,17.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 39.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20812 + color: '#4169E1FF' + - uid: 14264 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,18.5 - parent: 89 + pos: 23.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20813 + color: '#4169E1FF' + - uid: 14265 components: - type: Transform rot: 1.5707963267948966 rad - pos: -1.5,18.5 - parent: 89 + pos: 24.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20814 + color: '#4169E1FF' + - uid: 14266 components: - type: Transform - pos: 0.5,19.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20815 + color: '#DC143CFF' + - uid: 14267 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,17.5 - parent: 89 + pos: 26.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20816 + color: '#DC143CFF' + - uid: 14268 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,17.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -8.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21152 + color: '#4169E1FF' + - uid: 14269 components: - type: Transform - pos: -27.5,34.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -27.5,33.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21178 + - uid: 14270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,24.5 - parent: 89 + pos: -2.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21179 + color: '#DC143CFF' + - uid: 14271 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,24.5 - parent: 89 + pos: -29.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21180 + color: '#4169E1FF' + - uid: 14272 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -29.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21201 + color: '#FF0000FF' + - uid: 14273 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,24.5 - parent: 89 + pos: 39.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21202 + color: '#4169E1FF' + - uid: 14274 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,28.5 - parent: 89 + pos: 38.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21203 + color: '#DC143CFF' + - uid: 14275 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,28.5 - parent: 89 + pos: 45.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21205 + color: '#4169E1FF' + - uid: 14276 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 45.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21206 + color: '#4169E1FF' + - uid: 14277 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 44.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21207 + color: '#DC143CFF' + - uid: 14278 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,28.5 - parent: 89 + pos: 43.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21208 + color: '#DC143CFF' + - uid: 14279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 39.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21209 + color: '#4169E1FF' + - uid: 14280 components: - type: Transform rot: 1.5707963267948966 rad - pos: -31.5,32.5 - parent: 89 + pos: 38.5,-20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21211 + color: '#DC143CFF' + - uid: 14281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,32.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21212 + color: '#DC143CFF' + - uid: 14282 components: - type: Transform rot: 1.5707963267948966 rad - pos: -28.5,32.5 - parent: 89 + pos: 41.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21213 + color: '#4169E1FF' + - uid: 14283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,32.5 - parent: 89 + pos: 43.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21214 + color: '#DC143CFF' + - uid: 14284 components: - type: Transform - pos: -30.5,25.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -95.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21215 + color: '#DC143CFF' + - uid: 14285 components: - type: Transform - pos: -30.5,26.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -129.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21216 + color: '#DC143CFF' + - uid: 14286 components: - type: Transform - pos: -30.5,27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -124.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21217 + color: '#DC143CFF' + - uid: 14287 components: - type: Transform - pos: -30.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -120.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21218 + color: '#4169E1FF' + - uid: 14288 components: - type: Transform - pos: -30.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -122.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21219 + color: '#4169E1FF' + - uid: 14289 components: - type: Transform - pos: -30.5,31.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -96.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21220 + color: '#DC143CFF' + - uid: 14290 components: - type: Transform - pos: -30.5,33.5 - parent: 89 + pos: -89.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21221 + color: '#4169E1FF' + - uid: 14291 components: - type: Transform - pos: -30.5,34.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -90.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21230 + color: '#DC143CFF' + - uid: 14292 components: - type: Transform - pos: -28.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -95.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21232 + color: '#4169E1FF' + - uid: 23817 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,29.5 - parent: 89 + pos: 4.5,-8.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21235 + color: '#17E8E2FF' + - uid: 23818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21236 + color: '#17E8E2FF' + - uid: 24145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,27.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,0.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21237 + color: '#4169E1FF' + - uid: 24146 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,28.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21239 + color: '#DC143CFF' + - uid: 24147 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,30.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21240 + color: '#4169E1FF' + - uid: 24148 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,31.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 2.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21241 + color: '#4169E1FF' + - uid: 24149 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,32.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21243 + color: '#DC143CFF' + - uid: 24150 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21245 + color: '#DC143CFF' + - uid: 24401 components: - type: Transform rot: -1.5707963267948966 rad - pos: -30.5,33.5 - parent: 89 + pos: 0.5,-4.5 + parent: 24340 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21246 + color: '#DC143CFF' + - uid: 26223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,33.5 - parent: 89 + pos: -18.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21247 + color: '#0000FFFF' + - uid: 26224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,33.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -18.5,-10.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21248 + color: '#990000FF' + - uid: 26225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,33.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21249 + color: '#17E8E2FF' + - uid: 26226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,29.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -13.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21250 + color: '#17E8E2FF' + - uid: 26227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21251 + color: '#17E8E2FF' + - uid: 26228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -13.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21252 + color: '#17E8E2FF' + - uid: 26229 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,29.5 - parent: 89 + pos: -12.5,-2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21254 + color: '#17E8E2FF' + - uid: 26230 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21255 + color: '#17E8E2FF' + - uid: 26231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21256 + color: '#17E8E2FF' + - uid: 26232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -15.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21257 + color: '#17E8E2FF' + - uid: 26233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21258 + color: '#17E8E2FF' + - uid: 26234 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,25.5 - parent: 89 + pos: -11.5,-22.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21398 + color: '#17E8E2FF' + - uid: 26235 components: - type: Transform - pos: 39.5,-15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -31.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21399 + color: '#17E8E2FF' + - uid: 26236 components: - type: Transform - pos: 39.5,-16.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21400 + color: '#17E8E2FF' + - uid: 26237 components: - type: Transform - pos: 39.5,-17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21403 + color: '#17E8E2FF' + - uid: 26238 components: - type: Transform - pos: 38.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -22.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21404 + color: '#17E8E2FF' + - uid: 26239 components: - type: Transform - pos: 38.5,-15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21411 + color: '#17E8E2FF' + - uid: 26240 components: - type: Transform - pos: 38.5,-17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -11.5,-23.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21413 + color: '#17E8E2FF' + - uid: 26241 components: - type: Transform - pos: 38.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21414 + color: '#17E8E2FF' + - uid: 26242 components: - type: Transform - pos: 38.5,-19.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -1.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21462 + color: '#17E8E2FF' + - uid: 26243 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,-20.5 - parent: 89 + pos: -1.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21467 + color: '#17E8E2FF' + - uid: 26244 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,-20.5 - parent: 89 + pos: -1.5,15.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21468 + color: '#17E8E2FF' + - uid: 26245 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,-20.5 - parent: 89 + pos: 7.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21469 + color: '#17E8E2FF' + - uid: 26246 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21470 + - uid: 26247 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-20.5 - parent: 89 + pos: -11.5,-2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21473 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21475 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,-18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21478 + - uid: 26248 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-18.5 - parent: 89 + pos: -11.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21479 + color: '#FF0000FF' + - uid: 26249 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -20.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21688 + color: '#FF0000FF' + - uid: 26250 components: - type: Transform - pos: 0.5,-4.5 - parent: 21627 + pos: -21.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21689 + - uid: 26251 components: - type: Transform - pos: 0.5,-3.5 - parent: 21627 + rot: -1.5707963267948966 rad + pos: -30.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 21690 + - uid: 26252 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-2.5 - parent: 21627 + pos: -20.5,15.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22474 + - uid: 26253 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 22481 + - uid: 26254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,-30.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -3.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22482 + color: '#FF0000FF' + - uid: 26255 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-30.5 - parent: 89 + pos: -3.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22483 + color: '#FF0000FF' + - uid: 26256 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22484 - components: - - type: Transform - pos: 45.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22485 - components: - - type: Transform - pos: 45.5,-28.5 - parent: 89 + pos: -3.5,14.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22486 + color: '#FF0000FF' + - uid: 26257 components: - type: Transform - pos: 45.5,-27.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22487 + color: '#FF0000FF' + - uid: 26258 components: - type: Transform - pos: 45.5,-26.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22488 + color: '#FF0000FF' + - uid: 26259 components: - type: Transform - pos: 45.5,-25.5 - parent: 89 + pos: 5.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22489 + color: '#FF0000FF' + - uid: 26260 components: - type: Transform - pos: 45.5,-24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22490 + color: '#FF0000FF' + - uid: 27677 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22493 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-22.5 - parent: 89 + pos: 1.5,-7.5 + parent: 27260 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 22494 + - uid: 27678 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-21.5 - parent: 89 + pos: 0.5,-4.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22495 + color: '#FF0000FF' + - uid: 27679 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-20.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 27260 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22496 + color: '#FF0000FF' +- proto: GasPort + entities: + - uid: 14293 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-19.5 - parent: 89 + pos: -102.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22497 + color: '#DC143CFF' + - uid: 14294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,-18.5 - parent: 89 + pos: -103.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22499 + color: '#DC143CFF' + - uid: 14295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-23.5 - parent: 89 + pos: -91.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22500 + color: '#DC143CFF' + - uid: 14296 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-24.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -91.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22502 + color: '#DC143CFF' + - uid: 14297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -91.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22503 + color: '#DC143CFF' + - uid: 14298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22504 + pos: 0.5,-40.5 + parent: 2 + - uid: 14299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22505 + pos: -5.5,-40.5 + parent: 2 + - uid: 14300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22506 + pos: -7.5,-40.5 + parent: 2 + - uid: 14301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22507 + pos: -5.5,-40.5 + parent: 2 + - uid: 14302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22508 + pos: 2.5,-40.5 + parent: 2 + - uid: 14303 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22509 + pos: -123.5,0.5 + parent: 2 + - uid: 14304 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22510 + pos: -123.5,-0.5 + parent: 2 + - uid: 14305 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22511 + pos: -123.5,7.5 + parent: 2 + - uid: 14306 components: - type: Transform rot: 1.5707963267948966 rad - pos: 46.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22513 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-21.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22515 + pos: -123.5,8.5 + parent: 2 + - uid: 14307 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-26.5 - parent: 89 + pos: -92.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22516 + color: '#DC143CFF' + - uid: 14308 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-25.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22517 + pos: -94.5,19.5 + parent: 2 + - uid: 14309 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-24.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22518 + pos: -93.5,19.5 + parent: 2 + - uid: 14310 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-23.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22519 + rot: -1.5707963267948966 rad + pos: -22.5,-27.5 + parent: 2 + - uid: 14311 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22520 + pos: -26.5,-27.5 + parent: 2 + - uid: 14312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22521 + rot: -1.5707963267948966 rad + pos: 2.5,26.5 + parent: 2 + - uid: 14313 components: - type: Transform rot: 1.5707963267948966 rad - pos: 47.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22522 + pos: 5.5,20.5 + parent: 2 + - uid: 14314 components: - type: Transform - pos: 48.5,-26.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22523 + rot: -1.5707963267948966 rad + pos: 14.5,34.5 + parent: 2 + - uid: 14315 components: - type: Transform - pos: 48.5,-25.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22524 + rot: -1.5707963267948966 rad + pos: 2.5,25.5 + parent: 2 + - uid: 14316 components: - type: Transform - pos: 48.5,-24.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22525 + pos: 0.5,-40.5 + parent: 2 + - uid: 14317 components: - type: Transform - pos: 48.5,-23.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -91.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22529 + color: '#DC143CFF' + - uid: 14318 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-28.5 - parent: 89 + pos: -90.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22530 + color: '#DC143CFF' + - uid: 14319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-29.5 - parent: 89 + pos: -104.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22531 + color: '#DC143CFF' + - uid: 23819 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22532 + pos: 2.5,-11.5 + parent: 23711 + - uid: 24151 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,-29.5 - parent: 89 + pos: 5.5,1.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22533 + color: '#4169E1FF' + - uid: 26261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22534 + rot: 3.141592653589793 rad + pos: -18.5,-15.5 + parent: 24450 + - uid: 26262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 51.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22535 + pos: -18.5,-7.5 + parent: 24450 + - uid: 26263 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22536 + pos: -13.5,-10.5 + parent: 24450 + - uid: 26264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22537 + pos: -15.5,-10.5 + parent: 24450 + - uid: 26265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-29.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22538 + pos: -14.5,-10.5 + parent: 24450 + - uid: 27680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 1.5,-11.5 + parent: 27260 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22539 + color: '#0000FFFF' +- proto: GasPressurePump + entities: + - uid: 14320 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,-29.5 - parent: 89 + pos: -102.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22540 + color: '#947507FF' + - uid: 14321 components: + - type: MetaData + name: О2 в смесители - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-29.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -101.5,-19.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22543 + color: '#17E8E2FF' + - uid: 14322 components: + - type: MetaData + name: N2 в смесители - type: Transform - pos: 44.5,-28.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -99.5,-19.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24062 + color: '#17E8E2FF' + - uid: 14323 components: + - type: MetaData + name: CO2 в микс - type: Transform - pos: -18.5,-13.5 - parent: 22565 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24063 + rot: 3.141592653589793 rad + pos: -97.5,-19.5 + parent: 2 + - uid: 14324 components: + - type: MetaData + name: водяной пар в микс - type: Transform - pos: -18.5,-9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24064 + rot: 3.141592653589793 rad + pos: -95.5,-19.5 + parent: 2 + - uid: 14325 components: + - type: MetaData + name: плазма в микс - type: Transform rot: 3.141592653589793 rad - pos: -21.5,4.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24065 + pos: -93.5,-19.5 + parent: 2 + - uid: 14326 components: - type: Transform - pos: -10.5,-13.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24066 + pos: 0.5,-41.5 + parent: 2 + - uid: 14327 components: + - type: MetaData + name: N2O в микс - type: Transform - pos: -17.5,-11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24067 + rot: 3.141592653589793 rad + pos: -91.5,-19.5 + parent: 2 + - uid: 14328 components: + - type: MetaData + name: тритий в микс - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24068 + rot: 3.141592653589793 rad + pos: -89.5,-19.5 + parent: 2 + - uid: 14329 components: + - type: MetaData + name: газ в микс - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24069 + rot: 3.141592653589793 rad + pos: -87.5,-19.5 + parent: 2 + - uid: 14330 components: - type: Transform - pos: -10.5,-14.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -94.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24070 + color: '#4169E1FF' + - uid: 14331 components: - type: Transform - pos: -10.5,-15.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -25.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24071 + color: '#4169E1FF' + - uid: 14332 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24072 + pos: -5.5,-41.5 + parent: 2 + - uid: 14333 components: - type: Transform - pos: -11.5,-18.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 10.5,20.5 + parent: 2 + - type: GasPressurePump + targetPressure: 150 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24073 + color: '#4169E1FF' + - uid: 14334 components: - type: Transform - pos: -11.5,-19.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 1.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24074 + color: '#4169E1FF' + - uid: 14335 components: - type: Transform - pos: -11.5,-20.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24075 + rot: 1.5707963267948966 rad + pos: 6.5,20.5 + parent: 2 + - type: GasPressurePump + targetPressure: 150 + - uid: 14336 components: - type: Transform - pos: -11.5,-21.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 10.5,21.5 + parent: 2 + - type: GasPressurePump + targetPressure: 4500 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24076 + color: '#DC143CFF' + - uid: 14337 components: - type: Transform - pos: -11.5,-21.5 - parent: 22565 + pos: -96.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24077 + color: '#DC143CFF' + - uid: 14338 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,0.5 - parent: 22565 + pos: -95.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24078 + color: '#4169E1FF' + - uid: 23820 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,2.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 23711 + - type: GasPressurePump + targetPressure: 110 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24079 + color: '#17E8E2FF' + - uid: 26266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-11.5 - parent: 22565 + pos: -11.5,-9.5 + parent: 24450 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24080 + color: '#FF1212FF' + - uid: 27681 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,2.5 - parent: 22565 + pos: 0.5,-11.5 + parent: 27260 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 24081 +- proto: GasThermoMachineFreezer + entities: + - uid: 14339 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24082 + pos: -84.5,-8.5 + parent: 2 + - uid: 14340 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24083 + pos: -84.5,-9.5 + parent: 2 + - uid: 14341 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24084 + pos: -84.5,-10.5 + parent: 2 + - uid: 14342 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-7.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24085 + pos: -15.5,-8.5 + parent: 2 + - uid: 14343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24086 + pos: -125.5,-2.5 + parent: 2 + - uid: 14344 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24087 + pos: -126.5,-2.5 + parent: 2 + - uid: 14345 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-4.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24088 + pos: -127.5,-2.5 + parent: 2 + - uid: 14346 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-3.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24089 + rot: 1.5707963267948966 rad + pos: 5.5,21.5 + parent: 2 + - uid: 14347 + components: + - type: Transform + pos: 11.5,24.5 + parent: 2 +- proto: GasThermoMachineHeater + entities: + - uid: 14348 components: - type: Transform rot: 3.141592653589793 rad - pos: -12.5,-1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24090 + pos: -85.5,-8.5 + parent: 2 + - uid: 14349 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24091 + pos: -85.5,-10.5 + parent: 2 + - uid: 14350 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24092 + pos: -85.5,-9.5 + parent: 2 +- proto: GasValve + entities: + - uid: 14351 components: + - type: MetaData + name: предфильтровый выброс вейста - type: Transform rot: 3.141592653589793 rad - pos: -13.5,3.5 - parent: 22565 + pos: -102.5,-19.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24093 + color: '#947507FF' + - uid: 14352 components: + - type: MetaData + name: вейст в камеру - type: Transform rot: 3.141592653589793 rad - pos: -13.5,4.5 - parent: 22565 + pos: -81.5,-19.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24094 + color: '#947507FF' + - uid: 14353 components: + - type: MetaData + name: микс в камеру - type: Transform rot: 3.141592653589793 rad - pos: -13.5,5.5 - parent: 22565 + pos: -80.5,-19.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24095 + color: '#FFD800FF' + - uid: 14354 components: + - type: MetaData + name: выброс микса - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,1.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -79.5,-16.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24096 + color: '#FFD800FF' + - uid: 14355 components: + - type: MetaData + name: выброс вейста - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,1.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -79.5,-18.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24097 + color: '#947507FF' + - uid: 14356 components: + - type: MetaData + name: камера в канистры - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,1.5 - parent: 22565 + pos: -81.5,-15.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24098 + color: '#FF9900FF' + - uid: 14357 components: + - type: MetaData + name: вейст в канистры - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,1.5 - parent: 22565 + pos: -82.5,-15.5 + parent: 2 + - type: GasValve + open: False - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24099 + color: '#FF9900FF' + - uid: 14358 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24100 + rot: -1.5707963267948966 rad + pos: -123.5,5.5 + parent: 2 + - type: GasValve + open: False + - uid: 14359 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24101 + rot: -1.5707963267948966 rad + pos: -123.5,2.5 + parent: 2 + - type: GasValve + open: False +- proto: GasVentPump + entities: + - uid: 14360 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24102 + pos: -143.5,-0.5 + parent: 2 + - uid: 14361 components: - type: Transform - pos: -7.5,0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -136.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24103 + color: '#4169E1FF' + - uid: 14362 components: - type: Transform - pos: -17.5,0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -129.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24104 + color: '#4169E1FF' + - uid: 14363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 22565 + pos: -120.5,14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24105 + color: '#4169E1FF' + - uid: 14364 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 22565 + pos: -94.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24106 + color: '#4169E1FF' + - uid: 14365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 16.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24107 + color: '#4169E1FF' + - uid: 14366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -104.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24108 + color: '#4169E1FF' + - uid: 14367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,-0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -104.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24109 + color: '#4169E1FF' + - uid: 14368 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.5,-0.5 - parent: 22565 + pos: -93.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24110 + color: '#4169E1FF' + - uid: 14369 components: - type: Transform rot: -1.5707963267948966 rad - pos: -25.5,-0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24111 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24112 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 - parent: 22565 + pos: -93.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24113 + color: '#4169E1FF' + - uid: 14370 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,2.5 - parent: 22565 + pos: -97.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24114 + color: '#4169E1FF' + - uid: 14371 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,3.5 - parent: 22565 + pos: -102.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24115 + color: '#4169E1FF' + - uid: 14372 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,4.5 - parent: 22565 + pos: -107.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24116 + color: '#4169E1FF' + - uid: 14373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,5.5 - parent: 22565 + pos: -98.5,26.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24117 + color: '#4169E1FF' + - uid: 14374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,5.5 - parent: 22565 + pos: -107.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24118 + color: '#4169E1FF' + - uid: 14375 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -106.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24119 + color: '#4169E1FF' + - uid: 14376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -106.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24120 + color: '#4169E1FF' + - uid: 14377 components: - type: Transform - pos: -13.5,7.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -48.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24121 + color: '#4169E1FF' + - uid: 14378 components: - type: Transform - pos: -13.5,8.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -35.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24122 + color: '#4169E1FF' + - uid: 14379 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 22565 + pos: -12.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24123 + color: '#4169E1FF' + - uid: 14380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,0.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -25.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24124 + color: '#4169E1FF' + - uid: 14381 components: - type: Transform - pos: -31.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -15.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24125 + color: '#4169E1FF' + - uid: 14382 components: - type: Transform - pos: -31.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -23.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24126 + color: '#4169E1FF' + - uid: 14383 components: - type: Transform - pos: -31.5,8.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -20.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24127 + color: '#4169E1FF' + - uid: 14384 components: - type: Transform - pos: -31.5,10.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -0.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24128 + color: '#4169E1FF' + - uid: 14385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,9.5 - parent: 22565 + pos: 61.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24129 + color: '#4169E1FF' + - uid: 14386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,11.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 38.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24130 + color: '#4169E1FF' + - uid: 14387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -32.5,5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24131 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-24.5 - parent: 22565 + pos: 37.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24132 + color: '#4169E1FF' + - uid: 14388 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,2.5 - parent: 22565 + pos: 52.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24133 + color: '#4169E1FF' + - uid: 14389 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,3.5 - parent: 22565 + pos: -48.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24134 + color: '#4169E1FF' + - uid: 14390 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,4.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -10.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24135 + color: '#4169E1FF' + - uid: 14391 components: - type: Transform - pos: -22.5,12.5 - parent: 22565 + pos: -0.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24136 + color: '#4169E1FF' + - uid: 14392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -1.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24137 + color: '#4169E1FF' + - uid: 14393 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,6.5 - parent: 22565 + pos: 1.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24138 + color: '#4169E1FF' + - uid: 14394 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -66.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24139 + color: '#4169E1FF' + - uid: 14395 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,9.5 - parent: 22565 + pos: -65.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24140 + color: '#4169E1FF' + - uid: 14396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,10.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 2.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24141 + color: '#4169E1FF' + - uid: 14397 components: - type: Transform - pos: -22.5,13.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 4.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24142 + color: '#4169E1FF' + - uid: 14398 components: - type: Transform - pos: -22.5,14.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -1.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24143 + color: '#4169E1FF' + - uid: 14399 components: - type: Transform - pos: -22.5,15.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -4.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24144 + color: '#4169E1FF' + - uid: 14400 components: - type: Transform - pos: -22.5,17.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -1.5,-35.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24145 + color: '#4169E1FF' + - uid: 14401 components: - type: Transform - pos: -22.5,18.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -0.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24146 + color: '#4169E1FF' + - uid: 14402 components: - type: Transform - pos: -22.5,19.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -14.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24147 + color: '#4169E1FF' + - uid: 14403 components: - type: Transform - pos: -22.5,20.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -7.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24148 + color: '#4169E1FF' + - uid: 14404 components: - type: Transform - pos: -22.5,21.5 - parent: 22565 + pos: -7.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24149 + color: '#4169E1FF' + - uid: 14405 components: - type: Transform - pos: -22.5,22.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 2.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24150 + color: '#4169E1FF' + - uid: 14406 components: - type: Transform - pos: -22.5,23.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -55.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24151 + color: '#4169E1FF' + - uid: 14407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,11.5 - parent: 22565 + pos: -59.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24152 + color: '#4169E1FF' + - uid: 14408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,11.5 - parent: 22565 + pos: -66.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24153 + color: '#4169E1FF' + - uid: 14409 components: - type: Transform rot: 1.5707963267948966 rad - pos: -12.5,-23.5 - parent: 22565 + pos: -70.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24154 + color: '#4169E1FF' + - uid: 14410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-23.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -69.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24155 + color: '#4169E1FF' + - uid: 14411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 5.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24156 + color: '#4169E1FF' + - uid: 14412 components: - type: Transform - pos: -15.5,-24.5 - parent: 22565 + pos: 11.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24157 + color: '#4169E1FF' + - uid: 14413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,1.5 - parent: 22565 + pos: 8.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24158 + color: '#4169E1FF' + - uid: 14414 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,2.5 - parent: 22565 + pos: 18.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24159 + color: '#4169E1FF' + - uid: 14415 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,4.5 - parent: 22565 + pos: 21.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24160 + color: '#4169E1FF' + - uid: 14416 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,5.5 - parent: 22565 + pos: 24.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24161 + color: '#4169E1FF' + - uid: 14417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 38.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24162 + color: '#4169E1FF' + - uid: 14418 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,7.5 - parent: 22565 + pos: 27.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24163 + color: '#4169E1FF' + - uid: 14419 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,8.5 - parent: 22565 + pos: 27.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24164 + color: '#4169E1FF' + - uid: 14420 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,10.5 - parent: 22565 + pos: 13.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24165 + color: '#4169E1FF' + - uid: 14421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,12.5 - parent: 22565 + pos: 36.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24166 + color: '#4169E1FF' + - uid: 14422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,13.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24167 + color: '#4169E1FF' + - uid: 14423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,14.5 - parent: 22565 + pos: 6.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24168 + color: '#4169E1FF' + - uid: 14424 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,16.5 - parent: 22565 + pos: -50.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24169 + color: '#4169E1FF' + - uid: 14425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,17.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 44.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24170 + color: '#4169E1FF' + - uid: 14426 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,18.5 - parent: 22565 + pos: -61.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24171 + color: '#4169E1FF' + - uid: 14427 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -41.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24172 + color: '#4169E1FF' + - uid: 14428 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,20.5 - parent: 22565 + pos: -50.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24173 + color: '#4169E1FF' + - uid: 14429 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,21.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -67.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24174 + color: '#4169E1FF' + - uid: 14430 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,22.5 - parent: 22565 + pos: -51.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24175 + color: '#4169E1FF' + - uid: 14431 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,23.5 - parent: 22565 + pos: -84.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24176 + color: '#4169E1FF' + - uid: 14432 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-0.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -75.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24177 + color: '#4169E1FF' + - uid: 14433 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,-0.5 - parent: 22565 + pos: -94.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24178 + color: '#4169E1FF' + - uid: 14434 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -32.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24179 + color: '#4169E1FF' + - uid: 14435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-0.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24180 + color: '#4169E1FF' + - uid: 14436 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -25.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24181 + color: '#4169E1FF' + - uid: 14437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-0.5 - parent: 22565 + pos: -18.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24182 + color: '#4169E1FF' + - uid: 14438 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 22565 + pos: -9.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24183 + color: '#4169E1FF' + - uid: 14439 components: - type: Transform - pos: 2.5,0.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -60.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24184 + color: '#4169E1FF' + - uid: 14440 components: - type: Transform - pos: 2.5,1.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -56.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24185 + color: '#4169E1FF' + - uid: 14441 components: - type: Transform - pos: 2.5,2.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -49.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24186 + color: '#4169E1FF' + - uid: 14442 components: - type: Transform - pos: 2.5,3.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -55.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24187 + color: '#4169E1FF' + - uid: 14443 components: - type: Transform - pos: 2.5,4.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -72.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24188 + color: '#4169E1FF' + - uid: 14444 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,5.5 - parent: 22565 + pos: -86.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24189 + color: '#4169E1FF' + - uid: 14445 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,5.5 - parent: 22565 + pos: -55.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24190 + color: '#4169E1FF' + - uid: 14446 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 22565 + pos: -70.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24191 + color: '#4169E1FF' + - uid: 14447 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -44.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24192 + color: '#4169E1FF' + - uid: 14448 components: - type: Transform - pos: 7.5,6.5 - parent: 22565 + pos: -23.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24193 + color: '#4169E1FF' + - uid: 14449 components: - type: Transform - pos: 7.5,7.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -63.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24194 + color: '#4169E1FF' + - uid: 14450 components: - type: Transform - pos: 7.5,8.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -11.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24195 + color: '#4169E1FF' + - uid: 14451 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,9.5 - parent: 22565 + pos: -40.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24196 + color: '#4169E1FF' + - uid: 14452 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,5.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -110.5,2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24197 + color: '#4169E1FF' + - uid: 14453 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24198 + pos: -127.5,5.5 + parent: 2 + - uid: 14454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24199 + rot: 3.141592653589793 rad + pos: -126.5,5.5 + parent: 2 + - uid: 14455 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24200 + rot: 3.141592653589793 rad + pos: -125.5,5.5 + parent: 2 + - uid: 14456 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-25.5 - parent: 22565 + pos: 5.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24201 + color: '#4169E1FF' + - uid: 14457 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 13.5,8.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14458 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-24.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24202 + color: '#4169E1FF' + - uid: 14459 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-24.5 - parent: 22565 + pos: -60.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24203 + color: '#4169E1FF' + - uid: 14460 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-24.5 - parent: 22565 + pos: -56.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24204 + color: '#4169E1FF' + - uid: 14461 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-24.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -57.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24205 + color: '#4169E1FF' + - uid: 14462 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 22565 + pos: -66.5,43.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24206 + color: '#4169E1FF' + - uid: 14463 components: - type: Transform - pos: -10.5,-25.5 - parent: 22565 + pos: -29.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24207 + color: '#4169E1FF' + - uid: 14464 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-23.5 - parent: 22565 + pos: 5.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24208 + color: '#4169E1FF' + - uid: 14465 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 22565 + pos: 18.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24209 + color: '#4169E1FF' + - uid: 14466 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,2.5 - parent: 22565 + pos: 24.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24210 + color: '#4169E1FF' + - uid: 14467 components: - type: Transform - pos: -10.5,-16.5 - parent: 22565 + pos: 9.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24211 + color: '#4169E1FF' + - uid: 14468 components: - type: Transform - pos: -10.5,1.5 - parent: 22565 + pos: 20.5,18.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24212 + color: '#0000FFFF' + - uid: 14469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,2.5 - parent: 22565 + pos: 18.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24213 + color: '#4169E1FF' + - uid: 14470 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-8.5 - parent: 22565 + pos: 15.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24214 + color: '#4169E1FF' + - uid: 14471 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-7.5 - parent: 22565 + pos: 61.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24215 + color: '#4169E1FF' + - uid: 14472 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-6.5 - parent: 22565 + pos: 52.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24216 + color: '#4169E1FF' + - uid: 14473 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,-5.5 - parent: 22565 + pos: 26.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24217 + color: '#4169E1FF' + - uid: 14474 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-4.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 30.5,31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24218 + color: '#4169E1FF' + - uid: 14475 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-3.5 - parent: 22565 + pos: 28.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24219 + color: '#4169E1FF' + - uid: 14476 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-1.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 33.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24220 + color: '#4169E1FF' + - uid: 14477 components: - type: Transform - pos: -10.5,3.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 11.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24221 + color: '#4169E1FF' + - uid: 14478 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,2.5 - parent: 22565 + pos: 7.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24222 + color: '#4169E1FF' + - uid: 14479 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,0.5 - parent: 22565 + pos: 10.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24223 + color: '#4169E1FF' + - uid: 14480 + components: + - type: Transform + pos: 13.5,36.5 + parent: 2 + - type: AtmosPipeColor + color: '#4169E1FF' + - uid: 14481 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,4.5 - parent: 22565 + pos: 6.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24224 + color: '#4169E1FF' + - uid: 14482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,14.5 - parent: 22565 + pos: 14.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24225 + color: '#4169E1FF' + - uid: 14483 components: - type: Transform rot: 1.5707963267948966 rad - pos: -22.5,6.5 - parent: 22565 + pos: -127.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24226 + color: '#4169E1FF' + - uid: 14484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,6.5 - parent: 22565 + pos: -84.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24227 + color: '#4169E1FF' + - uid: 14485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 17.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24228 + color: '#4169E1FF' + - uid: 14486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -116.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24229 + color: '#4169E1FF' + - uid: 14487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -83.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24230 + color: '#4169E1FF' + - uid: 14488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -5.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24231 + color: '#4169E1FF' + - uid: 14489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 43.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24232 + color: '#4169E1FF' + - uid: 14490 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -30.5,6.5 - parent: 22565 + pos: 11.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24233 + color: '#4169E1FF' + - uid: 14491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,6.5 - parent: 22565 + pos: 23.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24234 + color: '#4169E1FF' + - uid: 14492 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 25.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24235 + color: '#4169E1FF' + - uid: 14493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,8.5 - parent: 22565 + pos: -8.5,19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24236 + color: '#4169E1FF' + - uid: 14494 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,8.5 - parent: 22565 + pos: -11.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24237 + color: '#4169E1FF' + - uid: 14495 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,12.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -3.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24238 + color: '#4169E1FF' + - uid: 14496 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,12.5 - parent: 22565 + pos: -5.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24239 + color: '#4169E1FF' + - uid: 14497 components: - type: Transform - pos: -30.5,11.5 - parent: 22565 + pos: 0.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24240 + color: '#4169E1FF' + - uid: 14498 components: - type: Transform - pos: -30.5,10.5 - parent: 22565 + pos: -30.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24241 + color: '#4169E1FF' + - uid: 14499 components: - type: Transform - pos: -30.5,9.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24242 + color: '#4169E1FF' + - uid: 14500 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,5.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,32.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24243 + color: '#4169E1FF' + - uid: 14501 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,6.5 - parent: 22565 + pos: -33.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24244 + color: '#4169E1FF' + - uid: 14502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,28.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24245 + color: '#4169E1FF' + - uid: 14503 components: - type: Transform - pos: -17.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24246 + color: '#4169E1FF' + - uid: 14504 components: - type: Transform - pos: -17.5,4.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -26.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24247 + color: '#4169E1FF' + - uid: 14505 components: - type: Transform - pos: -17.5,3.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 47.5,-25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24248 + color: '#4169E1FF' + - uid: 14506 components: - type: Transform rot: -1.5707963267948966 rad - pos: -16.5,2.5 - parent: 22565 + pos: 56.5,-30.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24249 + color: '#4169E1FF' + - uid: 14507 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,5.5 - parent: 22565 + pos: 41.5,-31.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24250 + color: '#4169E1FF' + - uid: 14508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,3.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 40.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24251 + color: '#4169E1FF' + - uid: 14509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 35.5,-22.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24252 + color: '#4169E1FF' + - uid: 14510 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,8.5 - parent: 22565 + pos: 39.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24253 + color: '#4169E1FF' + - uid: 14511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,9.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24254 + color: '#4169E1FF' + - uid: 14512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 43.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24255 + color: '#4169E1FF' + - uid: 14513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,10.5 - parent: 22565 + pos: 41.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24256 + color: '#4169E1FF' + - uid: 14514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,10.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 42.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24257 + color: '#4169E1FF' + - uid: 14515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24258 + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 + - uid: 14516 components: - type: Transform - pos: -20.5,11.5 - parent: 22565 + pos: -122.5,-2.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24259 + color: '#4169E1FF' + - uid: 14517 components: - type: Transform - pos: -20.5,12.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -120.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24260 + color: '#4169E1FF' + - uid: 14518 components: - type: Transform - pos: -20.5,13.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -113.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24261 + color: '#4169E1FF' + - uid: 14519 components: - type: Transform - pos: -20.5,14.5 - parent: 22565 + pos: -99.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24262 + color: '#4169E1FF' + - uid: 14520 components: - type: Transform - pos: -20.5,16.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -81.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24263 + color: '#4169E1FF' + - uid: 14521 components: - type: Transform - pos: -20.5,17.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -89.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24264 + color: '#4169E1FF' + - uid: 23821 components: - type: Transform - pos: -20.5,18.5 - parent: 22565 + pos: 4.5,-6.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24265 + color: '#17E8E2FF' + - uid: 23822 components: - type: Transform - pos: -20.5,19.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 2.5,-8.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24266 + color: '#17E8E2FF' + - uid: 23823 components: - type: Transform - pos: -20.5,20.5 - parent: 22565 + pos: 4.5,-2.5 + parent: 23711 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24267 + color: '#17E8E2FF' + - uid: 24152 components: - type: Transform - pos: -20.5,21.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 5.5,-5.5 + parent: 23919 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24268 + color: '#4169E1FF' + - uid: 24153 components: - type: Transform - pos: -20.5,22.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 2.5,-8.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24269 + color: '#4169E1FF' + - uid: 24154 components: - type: Transform - pos: -20.5,23.5 - parent: 22565 + pos: 4.5,4.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23923 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24270 + color: '#4169E1FF' + - uid: 24155 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,15.5 - parent: 22565 + pos: 3.5,-1.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24271 + color: '#4169E1FF' + - uid: 26267 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,-0.5 - parent: 22565 + pos: -33.5,5.5 + parent: 24450 - type: AtmosPipeColor color: '#17E8E2FF' - - uid: 24272 + - uid: 26268 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,5.5 - parent: 22565 + pos: -12.5,2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24273 + color: '#17E8E2FF' + - uid: 26269 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,7.5 - parent: 22565 + pos: -11.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24274 + color: '#17E8E2FF' + - uid: 26270 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,8.5 - parent: 22565 + pos: -11.5,-25.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24275 + color: '#17E8E2FF' + - uid: 26271 components: - type: Transform rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 22565 + pos: -0.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24276 + color: '#17E8E2FF' + - uid: 26272 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 22565 + pos: -12.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24277 + color: '#17E8E2FF' + - uid: 26273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,5.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24278 + color: '#17E8E2FF' + - uid: 26274 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,10.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -33.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24279 + color: '#17E8E2FF' + - uid: 26275 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,6.5 - parent: 22565 + pos: -31.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24280 + color: '#17E8E2FF' + - uid: 26276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,7.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -13.5,-2.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24281 + color: '#17E8E2FF' + - uid: 26277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,8.5 - parent: 22565 + pos: -12.5,-21.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24282 + color: '#17E8E2FF' + - uid: 26278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,10.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -12.5,-25.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24283 + color: '#17E8E2FF' + - uid: 26279 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,11.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -21.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24284 + color: '#17E8E2FF' + - uid: 26280 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,12.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -25.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24285 + color: '#17E8E2FF' + - uid: 26281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,13.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -23.5,16.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24286 + color: '#17E8E2FF' + - uid: 26282 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,15.5 - parent: 22565 + pos: -22.5,24.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24287 + color: '#17E8E2FF' + - uid: 26283 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,16.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -21.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24288 + color: '#17E8E2FF' + - uid: 26284 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,17.5 - parent: 22565 + pos: -15.5,-25.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24289 + color: '#17E8E2FF' + - uid: 26285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,18.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -2.5,3.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24290 + color: '#17E8E2FF' + - uid: 26286 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,19.5 - parent: 22565 + pos: 7.5,4.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24291 + color: '#17E8E2FF' + - uid: 26287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,20.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 9.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24292 + color: '#17E8E2FF' + - uid: 26288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,21.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 9.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24293 + color: '#17E8E2FF' + - uid: 26289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,22.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: 9.5,11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24294 + color: '#17E8E2FF' + - uid: 26290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,23.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24295 + color: '#17E8E2FF' + - uid: 26291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,14.5 - parent: 22565 + pos: -1.5,24.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24296 + color: '#17E8E2FF' + - uid: 27682 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,4.5 - parent: 22565 + pos: -4.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27264 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24297 + color: '#0000FFFF' + - uid: 27683 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,3.5 - parent: 22565 + pos: 6.5,-9.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27265 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24298 + color: '#0000FFFF' + - uid: 27684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,12.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: -3.5,-6.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27262 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24299 + color: '#0000FFFF' + - uid: 27685 components: - type: Transform rot: -1.5707963267948966 rad - pos: 7.5,12.5 - parent: 22565 + pos: 5.5,-6.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27263 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24300 + color: '#0000FFFF' + - uid: 27686 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27261 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24301 + color: '#0000FFFF' + - uid: 27687 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,9.5 - parent: 22565 + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27261 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24302 + color: '#0000FFFF' +- proto: GasVentScrubber + entities: + - uid: 14522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -121.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24303 + color: '#DC143CFF' + - uid: 14523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,6.5 - parent: 22565 + pos: -136.5,-9.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24304 + color: '#DC143CFF' + - uid: 14524 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,6.5 - parent: 22565 + pos: -129.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24305 + color: '#DC143CFF' + - uid: 14525 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,6.5 - parent: 22565 + pos: -104.5,-14.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24306 + color: '#DC143CFF' + - uid: 14526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,6.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -94.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24307 + color: '#DC143CFF' + - uid: 14527 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,6.5 - parent: 22565 + pos: -70.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24308 + color: '#DC143CFF' + - uid: 14528 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 22565 + pos: 35.5,-23.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24309 + color: '#DC143CFF' + - uid: 14529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: -2.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24310 + color: '#DC143CFF' + - uid: 14530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,8.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -93.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24311 + color: '#DC143CFF' + - uid: 14531 components: - type: Transform - pos: 6.5,7.5 - parent: 22565 + pos: -99.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24312 + color: '#DC143CFF' + - uid: 14532 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,6.5 - parent: 22565 + pos: -99.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24313 + color: '#DC143CFF' + - uid: 14533 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,6.5 - parent: 22565 + rot: 3.141592653589793 rad + pos: 51.5,0.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 35 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24314 + color: '#DC143CFF' + - uid: 14534 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,15.5 - parent: 22565 + rot: -1.5707963267948966 rad + pos: -93.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25407 + color: '#DC143CFF' + - uid: 14535 components: - type: Transform - pos: 39.5,-19.5 - parent: 89 + pos: -99.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25408 + color: '#DC143CFF' + - uid: 14536 components: - type: Transform - pos: 39.5,-20.5 - parent: 89 + pos: -104.5,10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25409 + color: '#DC143CFF' + - uid: 14537 components: - type: Transform - pos: 39.5,-21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -109.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25411 + color: '#DC143CFF' + - uid: 14538 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,-22.5 - parent: 89 + pos: -110.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25412 + color: '#DC143CFF' + - uid: 14539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-22.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -106.5,15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25413 + color: '#DC143CFF' + - uid: 14540 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-22.5 - parent: 89 + pos: -109.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25515 + color: '#DC143CFF' + - uid: 14541 components: - type: Transform - pos: 4.5,-10.5 - parent: 18153 + rot: 3.141592653589793 rad + pos: -47.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25516 + color: '#DC143CFF' + - uid: 14542 components: - type: Transform - pos: 4.5,-9.5 - parent: 18153 + rot: 3.141592653589793 rad + pos: -32.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25517 + color: '#DC143CFF' + - uid: 14543 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-8.5 - parent: 18153 + rot: -1.5707963267948966 rad + pos: -12.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25518 + color: '#DC143CFF' + - uid: 14544 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,-6.5 - parent: 18153 + pos: -14.5,-4.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25519 + color: '#DC143CFF' + - uid: 14545 components: - type: Transform - pos: 5.5,-5.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -25.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25520 + color: '#DC143CFF' + - uid: 14546 components: - type: Transform - pos: 4.5,-3.5 - parent: 18153 + rot: 1.5707963267948966 rad + pos: -21.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasPipeTJunction - entities: - - uid: 33 + color: '#DC143CFF' + - uid: 14547 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,-2.5 - parent: 89 + pos: -18.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 67 + color: '#DC143CFF' + - uid: 14548 components: - type: Transform - pos: -0.5,2.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 33.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 223 + color: '#DC143CFF' + - uid: 14549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -99.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 35.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 318 + color: '#DC143CFF' + - uid: 14550 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -51.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 321 + color: '#DC143CFF' + - uid: 14551 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -87.5,7.5 - parent: 89 + pos: 51.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 808 + color: '#DC143CFF' + - uid: 14552 components: - type: Transform - pos: -25.5,3.5 - parent: 89 + pos: 60.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 979 + color: '#DC143CFF' + - uid: 14553 components: - type: Transform rot: 1.5707963267948966 rad - pos: -91.5,-6.5 - parent: 89 + pos: -13.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1394 + color: '#DC143CFF' + - uid: 14554 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-19.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14555 + components: + - type: Transform + pos: -2.5,-11.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14556 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 3.5,-28.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14557 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,-16.5 - parent: 89 + pos: -60.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1462 + color: '#DC143CFF' + - uid: 14558 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-11.5 - parent: 89 + pos: -59.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1472 + color: '#DC143CFF' + - uid: 14559 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-18.5 - parent: 89 + pos: 2.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1488 + color: '#DC143CFF' + - uid: 14560 components: - type: Transform rot: -1.5707963267948966 rad - pos: -99.5,-17.5 - parent: 89 + pos: 4.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1525 + color: '#DC143CFF' + - uid: 14561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-15.5 - parent: 89 + pos: -1.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1530 + color: '#DC143CFF' + - uid: 14562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -4.5,-29.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1556 + color: '#DC143CFF' + - uid: 14563 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -1.5,-34.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14564 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-14.5 - parent: 89 + pos: -2.5,-39.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1598 + color: '#DC143CFF' + - uid: 14565 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-14.5 - parent: 89 + pos: -12.5,-17.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1604 + color: '#DC143CFF' + - uid: 14566 components: - type: Transform rot: 1.5707963267948966 rad - pos: -102.5,-12.5 - parent: 89 + pos: -14.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1622 + color: '#DC143CFF' + - uid: 14567 components: - type: Transform - pos: -98.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,-21.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1624 + color: '#DC143CFF' + - uid: 14568 components: - type: Transform - pos: -97.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 2.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 1737 + color: '#DC143CFF' + - uid: 14569 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-11.5 - parent: 89 + pos: -66.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1738 + color: '#DC143CFF' + - uid: 14570 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-11.5 - parent: 89 + pos: -59.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1741 + color: '#DC143CFF' + - uid: 14571 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-9.5 - parent: 89 + pos: -55.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1743 + color: '#DC143CFF' + - uid: 14572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -71.5,-15.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1744 + color: '#DC143CFF' + - uid: 14573 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -70.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1949 + color: '#DC143CFF' + - uid: 14574 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-8.5 - parent: 89 + pos: -86.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2086 + color: '#DC143CFF' + - uid: 14575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,39.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2368 + color: '#DC143CFF' + - uid: 14576 components: - type: Transform - pos: -81.5,-18.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2385 + color: '#DC143CFF' + - uid: 14577 components: - type: Transform - pos: -80.5,-16.5 - parent: 89 + pos: 12.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2443 + color: '#DC143CFF' + - uid: 14578 components: - type: Transform rot: 3.141592653589793 rad - pos: -84.5,-16.5 - parent: 89 + pos: 19.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2448 + color: '#DC143CFF' + - uid: 14579 components: - type: Transform rot: 3.141592653589793 rad - pos: -83.5,-16.5 - parent: 89 + pos: 22.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2530 + color: '#DC143CFF' + - uid: 14580 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-18.5 - parent: 89 + pos: 25.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#947507FF' - - uid: 2544 + color: '#DC143CFF' + - uid: 14581 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-15.5 - parent: 89 + pos: 28.5,-13.5 + parent: 2 - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2955 + color: '#DC143CFF' + - uid: 14582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-4.5 - parent: 89 + pos: 26.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2965 + color: '#DC143CFF' + - uid: 14583 components: - type: Transform rot: -1.5707963267948966 rad - pos: -95.5,-3.5 - parent: 89 + pos: 38.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3003 + color: '#DC143CFF' + - uid: 14584 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-9.5 - parent: 89 + pos: 13.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3025 + color: '#DC143CFF' + - uid: 14585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-8.5 - parent: 89 + pos: 35.5,-1.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3045 + color: '#DC143CFF' + - uid: 14586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3058 + color: '#DC143CFF' + - uid: 14587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-10.5 - parent: 89 + pos: 4.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3226 + color: '#DC143CFF' + - uid: 14588 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,-1.5 - parent: 89 + pos: 44.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3242 + color: '#DC143CFF' + - uid: 14589 components: - type: Transform rot: 3.141592653589793 rad - pos: -95.5,0.5 - parent: 89 + pos: -59.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3267 + color: '#DC143CFF' + - uid: 14590 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-0.5 - parent: 89 + pos: -49.5,-2.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3309 + color: '#DC143CFF' + - uid: 14591 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -51.5,-7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14592 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -64.5,7.5 + parent: 2 + - type: AtmosPipeColor + color: '#DC143CFF' + - uid: 14593 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -95.5,-2.5 - parent: 89 + pos: -49.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3343 + color: '#DC143CFF' + - uid: 14594 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,-1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -76.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3344 + color: '#DC143CFF' + - uid: 14595 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -89.5,-0.5 - parent: 89 + pos: -82.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3357 + color: '#DC143CFF' + - uid: 14596 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,3.5 - parent: 89 + pos: -95.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3401 + color: '#DC143CFF' + - uid: 14597 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,5.5 - parent: 89 + pos: -30.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3432 + color: '#DC143CFF' + - uid: 14598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,14.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3448 + color: '#DC143CFF' + - uid: 14599 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,8.5 - parent: 89 + pos: -25.5,5.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3468 + color: '#DC143CFF' + - uid: 14600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,10.5 - parent: 89 + pos: -17.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3522 + color: '#DC143CFF' + - uid: 14601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -9.5,12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3525 + color: '#DC143CFF' + - uid: 14602 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,-2.5 - parent: 89 + pos: -56.5,23.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3537 + color: '#DC143CFF' + - uid: 14603 components: - type: Transform - pos: -110.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -61.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3538 + color: '#DC143CFF' + - uid: 14604 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,5.5 - parent: 89 + pos: -47.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3563 + color: '#DC143CFF' + - uid: 14605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -107.5,13.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -58.5,13.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3570 + color: '#DC143CFF' + - uid: 14606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -109.5,21.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -73.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3571 + color: '#DC143CFF' + - uid: 14607 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,21.5 - parent: 89 + pos: -55.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3580 + color: '#DC143CFF' + - uid: 14608 components: - type: Transform rot: 1.5707963267948966 rad - pos: -107.5,25.5 - parent: 89 + pos: -44.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3581 + color: '#DC143CFF' + - uid: 14609 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,26.5 - parent: 89 + pos: -41.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3604 + color: '#DC143CFF' + - uid: 14610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,26.5 - parent: 89 + pos: -19.5,-11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3605 + color: '#DC143CFF' + - uid: 14611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,25.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -62.5,3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3645 + color: '#DC143CFF' + - uid: 14612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -88.5,6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3696 + color: '#DC143CFF' + - uid: 14613 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,10.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -40.5,7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3699 + color: '#DC143CFF' + - uid: 14614 components: - type: Transform - rot: 3.141592653589793 rad - pos: -68.5,9.5 - parent: 89 + pos: -99.5,27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3702 + color: '#DC143CFF' + - uid: 14615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,7.5 - parent: 89 + pos: -116.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3703 + color: '#DC143CFF' + - uid: 14616 components: - type: Transform rot: 1.5707963267948966 rad - pos: -65.5,7.5 - parent: 89 + pos: -127.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3708 + color: '#DC143CFF' + - uid: 14617 components: - type: Transform - pos: -62.5,5.5 - parent: 89 + pos: -110.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3709 + color: '#DC143CFF' + - uid: 14618 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3717 + pos: -127.5,2.5 + parent: 2 + - uid: 14619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3719 + pos: -126.5,2.5 + parent: 2 + - uid: 14620 components: - type: Transform - pos: -63.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3745 + pos: -125.5,2.5 + parent: 2 + - uid: 14621 components: - type: Transform - pos: -50.5,4.5 - parent: 89 + pos: 22.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3760 + color: '#DC143CFF' + - uid: 14622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,5.5 - parent: 89 + pos: -119.5,15.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3788 + color: '#DC143CFF' + - uid: 14623 components: - type: Transform - rot: 3.141592653589793 rad - pos: -41.5,4.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 13.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3812 + color: '#DC143CFF' + - uid: 14624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3820 + color: '#DC143CFF' + - uid: 14625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3823 + color: '#DC143CFF' + - uid: 14626 components: - type: Transform rot: -1.5707963267948966 rad - pos: -56.5,0.5 - parent: 89 + pos: -66.5,44.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3826 + color: '#DC143CFF' + - uid: 14627 components: - type: Transform - pos: -19.5,2.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -56.5,32.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3830 + color: '#DC143CFF' + - uid: 14628 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 89 + pos: -55.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3832 + color: '#DC143CFF' + - uid: 14629 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,2.5 - parent: 89 + pos: -61.5,40.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3836 + color: '#DC143CFF' + - uid: 14630 components: - type: Transform - pos: -56.5,4.5 - parent: 89 + pos: -30.5,21.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3838 + color: '#DC143CFF' + - uid: 14631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -19.5,-0.5 - parent: 89 + pos: 11.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3842 + color: '#DC143CFF' + - uid: 14632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-1.5 - parent: 89 + pos: 7.5,17.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3843 + color: '#DC143CFF' + - uid: 14633 components: - type: Transform - pos: -54.5,5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 18.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3872 + color: '#DC143CFF' + - uid: 14634 components: - type: Transform - pos: -15.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 16.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3874 + color: '#DC143CFF' + - uid: 14635 components: - type: Transform - pos: -14.5,-2.5 - parent: 89 + pos: 20.5,6.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3976 + color: '#DC143CFF' + - uid: 14636 components: - type: Transform - pos: -22.5,-6.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 60.5,-0.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3977 + color: '#DC143CFF' + - uid: 14637 components: - type: Transform - pos: -20.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 30.5,29.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4086 + color: '#DC143CFF' + - uid: 14638 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 24.5,28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4089 + color: '#DC143CFF' + - uid: 14639 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,2.5 - parent: 89 + pos: 27.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4091 + color: '#DC143CFF' + - uid: 14640 components: - type: Transform - pos: 23.5,3.5 - parent: 89 + pos: 34.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4097 + color: '#DC143CFF' + - uid: 14641 components: - type: Transform - pos: 21.5,2.5 - parent: 89 + pos: 9.5,41.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4120 + color: '#D3FC03FF' + - uid: 14642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 34.5,3.5 - parent: 89 + pos: 12.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4132 + color: '#D3FC03FF' + - uid: 14643 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,1.5 - parent: 89 + pos: 6.5,33.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4141 + color: '#D3FC03FF' + - uid: 14644 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,7.5 - parent: 89 + pos: -83.5,22.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4146 + color: '#DC143CFF' + - uid: 14645 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,7.5 - parent: 89 + pos: -85.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4196 + color: '#DC143CFF' + - uid: 14646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,1.5 - parent: 89 + pos: 6.5,36.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4209 + color: '#D3FC03FF' + - uid: 14647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4258 + color: '#DC143CFF' + - uid: 14648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,0.5 - parent: 89 + pos: -5.5,9.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4262 + color: '#DC143CFF' + - uid: 14649 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,8.5 - parent: 89 + pos: 43.5,-12.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4292 + color: '#DC143CFF' + - uid: 14650 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -15.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4362 + color: '#DC143CFF' + - uid: 14651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 89 + pos: 23.5,39.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4363 + color: '#DC143CFF' + - uid: 14652 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 89 + pos: 25.5,35.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4364 + color: '#DC143CFF' + - uid: 14653 components: - type: Transform - pos: -11.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -3.5,8.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4380 + color: '#DC143CFF' + - uid: 14654 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-13.5 - parent: 89 + pos: 0.5,16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4382 + color: '#DC143CFF' + - uid: 14655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-12.5 - parent: 89 + pos: -29.5,35.5 + parent: 2 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4392 + - uid: 14656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-13.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 93 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4426 + color: '#FF0000FF' + - uid: 14657 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-13.5 - parent: 89 + pos: -26.5,33.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 90 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4428 + color: '#FF0000FF' + - uid: 14658 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-12.5 - parent: 89 + pos: -33.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 94 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4452 + color: '#FF0000FF' + - uid: 14659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-15.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,29.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 89 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4454 + - uid: 14660 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -26.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 91 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4460 + color: '#FF0000FF' + - uid: 14661 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-19.5 - parent: 89 + pos: -33.5,25.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 92 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 4461 + - uid: 14662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-22.5 - parent: 89 + pos: 56.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4558 + color: '#DC143CFF' + - uid: 14663 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-12.5 - parent: 89 + pos: 43.5,-28.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4559 + color: '#DC143CFF' + - uid: 14664 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,-13.5 - parent: 89 + pos: 48.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4584 + color: '#DC143CFF' + - uid: 14665 components: - type: Transform - pos: -1.5,-30.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 40.5,-16.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4585 + color: '#DC143CFF' + - uid: 14666 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-30.5 - parent: 89 + pos: 39.5,-24.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4624 + color: '#DC143CFF' + - uid: 14667 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,9.5 - parent: 89 + pos: 40.5,-3.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4625 + color: '#DC143CFF' + - uid: 14668 components: - type: Transform rot: 3.141592653589793 rad - pos: -82.5,10.5 - parent: 89 + pos: 40.5,-7.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4650 + color: '#DC143CFF' + - uid: 14669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-6.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 45.5,-5.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4658 + color: '#DC143CFF' + - uid: 14670 components: - type: Transform - pos: -59.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 43.5,-8.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4726 + color: '#DC143CFF' + - uid: 14671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4727 + color: '#DC143CFF' + - uid: 14672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-1.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 82 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4745 + color: '#DC143CFF' + - uid: 14673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-35.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -100.5,24.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 31 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4754 + color: '#DC143CFF' + - uid: 14674 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 89 + pos: -143.5,-14.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4791 + color: '#DC143CFF' + - uid: 14675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-21.5 - parent: 89 + pos: -124.5,-9.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 32 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4796 + color: '#DC143CFF' + - uid: 14676 components: - type: Transform - pos: -6.5,-21.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -114.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 86 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4930 + color: '#DC143CFF' + - uid: 14677 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,-7.5 - parent: 89 + pos: -90.5,-12.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4950 + color: '#DC143CFF' + - uid: 14678 components: - type: Transform - pos: -59.5,-1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -81.5,-13.5 + parent: 2 + - type: DeviceNetwork + deviceLists: + - 13 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4953 + color: '#DC143CFF' + - uid: 24156 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 23919 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5007 + color: '#DC143CFF' + - uid: 24157 components: - type: Transform - pos: -65.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5013 + color: '#DC143CFF' + - uid: 24158 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,-11.5 - parent: 89 + pos: 5.5,3.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23923 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5021 + color: '#DC143CFF' + - uid: 24159 components: - type: Transform rot: -1.5707963267948966 rad - pos: -59.5,-10.5 - parent: 89 + pos: 5.5,-1.5 + parent: 23919 + - type: DeviceNetwork + deviceLists: + - 23922 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5057 + color: '#DC143CFF' + - uid: 24402 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 0.5,-5.5 + parent: 24340 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5058 + color: '#DC143CFF' + - uid: 24403 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,-12.5 - parent: 89 + pos: 0.5,-1.5 + parent: 24340 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5129 + color: '#DC143CFF' + - uid: 26292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,-26.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5140 + color: '#FF0000FF' + - uid: 26293 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-8.5 - parent: 89 + pos: -16.5,-26.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5167 + - uid: 26294 components: - type: Transform rot: 3.141592653589793 rad - pos: -50.5,-9.5 - parent: 89 + pos: -11.5,1.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5177 + color: '#FF0000FF' + - uid: 26295 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 24450 + - type: AtmosPipeColor + color: '#FF0000FF' + - uid: 26296 components: - type: Transform rot: 3.141592653589793 rad - pos: 13.5,-8.5 - parent: 89 + pos: -29.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5200 + - uid: 26297 components: - type: Transform - pos: 22.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,8.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5203 + - uid: 26298 components: - type: Transform - pos: 25.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5206 + - uid: 26299 components: - type: Transform - pos: 24.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -33.5,12.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5209 + color: '#FF0000FF' + - uid: 26300 components: - type: Transform rot: 3.141592653589793 rad - pos: 26.5,-8.5 - parent: 89 + pos: -21.5,2.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5222 + - uid: 26301 components: - type: Transform - pos: 13.5,-9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -25.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5228 + color: '#FF0000FF' + - uid: 26302 components: - type: Transform - pos: 21.5,-9.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -19.5,10.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5235 + color: '#FF0000FF' + - uid: 26303 components: - type: Transform - pos: 28.5,-8.5 - parent: 89 + pos: -20.5,24.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5248 + - uid: 26304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,-5.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,15.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5251 + - uid: 26305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,6.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5274 + color: '#FF0000FF' + - uid: 26306 components: - type: Transform - pos: 18.5,-9.5 - parent: 89 + pos: -10.5,9.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5275 + color: '#FF0000FF' + - uid: 26307 components: - type: Transform - pos: 19.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -2.5,4.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5408 + - uid: 26308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-12.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -0.5,14.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5441 + - uid: 26309 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-6.5 - parent: 89 + pos: -3.5,24.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5442 + color: '#FF0000FF' + - uid: 26310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-5.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -2.5,9.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5457 + - uid: 26311 components: - type: Transform - pos: 37.5,-8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 9.5,6.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5463 + - uid: 26312 components: - type: Transform - pos: 37.5,-11.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 9.5,8.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5466 + color: '#FF0000FF' + - uid: 26313 components: - type: Transform - pos: -77.5,-0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 9.5,12.5 + parent: 24450 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5537 + - uid: 26314 components: - type: Transform rot: 3.141592653589793 rad - pos: -55.5,17.5 - parent: 89 + pos: 5.5,5.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5547 + color: '#FF0000FF' + - uid: 27688 components: - type: Transform - pos: -47.5,18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27264 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5575 + - uid: 27689 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,18.5 - parent: 89 + pos: 4.5,-10.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27265 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5581 + - uid: 27690 components: - type: Transform - pos: -49.5,17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 5.5,-4.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27263 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5636 + color: '#FF0000FF' + - uid: 27691 components: - type: Transform rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 89 + pos: -3.5,-4.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27262 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5637 + color: '#FF0000FF' + - uid: 27692 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,14.5 - parent: 89 + pos: -0.5,-7.5 + parent: 27260 + - type: DeviceNetwork + deviceLists: + - 27261 - type: AtmosPipeColor color: '#FF0000FF' - - uid: 5667 +- proto: GasVolumePump + entities: + - uid: 14679 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,-12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5668 + pos: -7.5,-41.5 + parent: 2 + - uid: 14680 components: - type: Transform - pos: -24.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5756 + rot: 3.141592653589793 rad + pos: 2.5,-41.5 + parent: 2 + - uid: 14681 components: + - type: MetaData + name: выход камеры - type: Transform rot: 3.141592653589793 rad - pos: -82.5,-0.5 - parent: 89 + pos: -79.5,-19.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5770 + color: '#FF9900FF' + - uid: 14682 components: - type: Transform - pos: -84.5,-1.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5776 + rot: 1.5707963267948966 rad + pos: -122.5,7.5 + parent: 2 + - uid: 14683 components: - type: Transform - pos: -76.5,-1.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5811 + rot: 1.5707963267948966 rad + pos: -122.5,8.5 + parent: 2 + - uid: 14684 components: - type: Transform - pos: -94.5,21.5 - parent: 89 + pos: -93.5,20.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6259 + color: '#4169E1FF' + - uid: 14685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -23.5,-27.5 + parent: 2 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6266 + color: '#4169E1FF' + - uid: 14686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,12.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 13.5,34.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6280 + color: '#D3FC03FF' + - uid: 14687 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 1.5,25.5 + parent: 2 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6281 + color: '#4169E1FF' + - uid: 26315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,7.5 - parent: 89 + pos: -18.5,-14.5 + parent: 24450 - type: AtmosPipeColor color: '#0000FFFF' - - uid: 6312 + - uid: 26316 components: - type: Transform rot: 3.141592653589793 rad - pos: -5.5,8.5 - parent: 89 + pos: -18.5,-8.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6313 + color: '#990000FF' + - uid: 26317 components: - type: Transform - pos: -5.5,7.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -13.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6383 + color: '#17E8E2FF' + - uid: 26318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,22.5 - parent: 89 + pos: -15.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6392 + color: '#17E8E2FF' + - uid: 26319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,23.5 - parent: 89 + pos: -14.5,-11.5 + parent: 24450 - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6503 + color: '#17E8E2FF' +- proto: Gateway + entities: + - uid: 14688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,35.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6518 + pos: -55.5,-14.5 + parent: 2 + - type: Gateway + enabled: True +- proto: Gauze + entities: + - uid: 14689 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,37.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6519 + pos: -1.6229911,15.447899 + parent: 2 +- proto: GeneratorBasic15kW + entities: + - uid: 14690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -61.5,37.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6563 + pos: -37.5,-15.5 + parent: 2 + - uid: 26320 components: - type: Transform - pos: -59.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6564 + pos: -6.5,-17.5 + parent: 24450 +- proto: GeneratorRTGDamaged + entities: + - uid: 14691 components: - type: Transform - pos: -61.5,17.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6830 + pos: -125.5,4.5 + parent: 2 + - uid: 14692 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6852 + pos: -127.5,3.5 + parent: 2 +- proto: GeneratorWallmountAPU + entities: + - uid: 23824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,-7.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6853 + pos: 2.5,-10.5 + parent: 23711 + - type: PowerSupplier + supplyRate: 9000 + - uid: 23825 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,-6.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6858 + pos: 1.5,-10.5 + parent: 23711 + - uid: 24160 components: - type: Transform - pos: -35.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6859 + pos: 7.5,-0.5 + parent: 23919 + - uid: 24161 components: - type: Transform - pos: -32.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6865 + pos: 5.5,-0.5 + parent: 23919 + - uid: 24162 components: - type: Transform - pos: -48.5,4.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6866 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24163 components: - type: Transform - pos: -47.5,5.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7560 + pos: 6.5,-0.5 + parent: 23919 + - uid: 24404 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7567 + pos: 2.5,-1.5 + parent: 24340 + - uid: 24405 components: - type: Transform - pos: -32.5,17.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8752 + pos: -1.5,-1.5 + parent: 24340 + - uid: 24406 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8779 + pos: -0.5,-3.5 + parent: 24340 + - uid: 27693 components: - type: Transform - pos: -122.5,0.5 - parent: 89 - - uid: 8797 + pos: 2.5,-11.5 + parent: 27260 + - uid: 27694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,8.5 - parent: 89 - - uid: 8799 + pos: 2.5,-12.5 + parent: 27260 + - uid: 27695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,7.5 - parent: 89 - - uid: 8812 + pos: -1.5,-11.5 + parent: 27260 +- proto: GeneratorWallmountBasic + entities: + - uid: 26321 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-3.5 - parent: 89 - - uid: 8817 + pos: -6.5,-15.5 + parent: 24450 + - type: PowerSupplier + supplyRampRate: 1000 + supplyRampTolerance: 1000 + supplyRate: 20000 +- proto: Girder + entities: + - uid: 14693 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-3.5 - parent: 89 - - uid: 8818 + pos: -17.5,16.5 + parent: 2 + - uid: 14694 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-3.5 - parent: 89 - - uid: 8850 + pos: -15.5,23.5 + parent: 2 + - uid: 14695 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 8851 + pos: 29.5,26.5 + parent: 2 + - uid: 14696 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 8882 + pos: 19.5,27.5 + parent: 2 + - uid: 14697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,1.5 - parent: 89 - - uid: 8883 + pos: 16.5,27.5 + parent: 2 + - uid: 14698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8884 + pos: -6.5,31.5 + parent: 2 + - uid: 14699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,1.5 - parent: 89 - - uid: 8932 + pos: -0.5,31.5 + parent: 2 + - uid: 14700 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,20.5 - parent: 89 - - uid: 9355 + pos: -38.5,26.5 + parent: 2 + - uid: 14701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,6.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9356 + pos: -13.5,22.5 + parent: 2 + - uid: 14702 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9621 + pos: 29.5,25.5 + parent: 2 + - uid: 14703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-27.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9717 + pos: 28.5,24.5 + parent: 2 +- proto: GlassBoxLaser + entities: + - uid: 14704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9879 + rot: 3.141592653589793 rad + pos: 46.5,12.5 + parent: 2 +- proto: GlowstickYellow + entities: + - uid: 14705 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9897 + pos: -27.695927,23.49133 + parent: 2 + - uid: 14706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,35.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9910 + pos: -27.305302,23.52258 + parent: 2 + - uid: 14707 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,39.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10384 + pos: -27.480957,23.532402 + parent: 2 + - uid: 14708 components: - type: Transform - pos: 8.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10426 + pos: -27.168457,23.469902 + parent: 2 +- proto: GravityGenerator + entities: + - uid: 14709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-11.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10427 + pos: -116.5,25.5 + parent: 2 +- proto: GravityGeneratorMini + entities: + - uid: 23826 components: - type: Transform - pos: -92.5,-8.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10495 + pos: 5.5,-11.5 + parent: 23711 + - uid: 24164 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10808 + pos: 7.5,0.5 + parent: 23919 + - uid: 24407 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,21.5 - parent: 89 - - uid: 11035 + pos: 1.5,-0.5 + parent: 24340 + - type: Visibility + layer: 15 + - uid: 26322 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,20.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11313 + pos: -12.5,7.5 + parent: 24450 + - uid: 27696 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,27.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 11515 + pos: 1.5,-12.5 + parent: 27260 +- proto: GrenadeFlashBang + entities: + - uid: 27301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,28.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12647 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27302 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12682 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27303 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12692 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: GrenadeStinger + entities: + - uid: 1122 components: - type: Transform - pos: 5.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12713 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1123 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12714 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1124 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12715 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27304 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12746 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27305 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12749 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12773 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 16.5,12.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12787 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27308 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,14.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14028 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Grille + entities: + - uid: 14710 components: - type: Transform - pos: 26.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14039 + pos: -115.5,30.5 + parent: 2 + - uid: 14711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14054 + pos: -114.5,30.5 + parent: 2 + - uid: 14712 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15054 + pos: -115.5,29.5 + parent: 2 + - uid: 14713 components: - type: Transform rot: 3.141592653589793 rad - pos: 18.5,15.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15133 + pos: 66.5,18.5 + parent: 2 + - uid: 14714 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15136 + rot: 3.141592653589793 rad + pos: 53.5,25.5 + parent: 2 + - uid: 14715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,19.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15193 + rot: 3.141592653589793 rad + pos: 68.5,17.5 + parent: 2 + - uid: 14716 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15393 + rot: 3.141592653589793 rad + pos: 64.5,18.5 + parent: 2 + - uid: 14717 components: - type: Transform - pos: 0.5,26.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15395 + rot: 3.141592653589793 rad + pos: 62.5,17.5 + parent: 2 + - uid: 14718 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15415 + rot: 3.141592653589793 rad + pos: 68.5,18.5 + parent: 2 + - uid: 14719 components: - type: Transform rot: 3.141592653589793 rad - pos: 9.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15461 + pos: 66.5,17.5 + parent: 2 + - uid: 14720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15494 + rot: 3.141592653589793 rad + pos: 62.5,18.5 + parent: 2 + - uid: 14721 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15526 + pos: 64.5,17.5 + parent: 2 + - uid: 14722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,20.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15530 + pos: -44.5,31.5 + parent: 2 + - uid: 14723 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,32.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15848 + pos: -46.5,31.5 + parent: 2 + - uid: 14724 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -84.5,23.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16168 + pos: -45.5,31.5 + parent: 2 + - uid: 14725 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 16284 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,22.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16299 + pos: -121.5,-15.5 + parent: 2 + - uid: 14726 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,22.5 - parent: 89 - - uid: 16300 + pos: -79.5,-28.5 + parent: 2 + - uid: 14727 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,22.5 - parent: 89 - - uid: 16537 + pos: -77.5,-27.5 + parent: 2 + - uid: 14728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16797 + pos: -113.5,-11.5 + parent: 2 + - uid: 14729 components: - type: Transform rot: -1.5707963267948966 rad - pos: -119.5,11.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19779 + pos: -92.5,25.5 + parent: 2 + - uid: 14730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20039 + rot: -1.5707963267948966 rad + pos: -93.5,25.5 + parent: 2 + - uid: 14731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,34.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20048 + pos: -52.5,-5.5 + parent: 2 + - uid: 14732 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,40.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20050 + rot: 3.141592653589793 rad + pos: 11.5,-15.5 + parent: 2 + - uid: 14733 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20059 + pos: 14.5,-19.5 + parent: 2 + - uid: 14734 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,35.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20126 + pos: -75.5,22.5 + parent: 2 + - uid: 14735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,18.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20954 + pos: -38.5,-17.5 + parent: 2 + - uid: 14736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,33.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21058 + pos: 8.5,36.5 + parent: 2 + - uid: 14737 components: - type: Transform - pos: -2.5,3.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21200 + pos: 11.5,37.5 + parent: 2 + - uid: 14738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,20.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21234 + pos: -7.5,-42.5 + parent: 2 + - uid: 14739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,25.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21397 + pos: -103.5,-6.5 + parent: 2 + - uid: 14740 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-14.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21405 + pos: -102.5,-6.5 + parent: 2 + - uid: 14741 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-16.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21691 + rot: -1.5707963267948966 rad + pos: 64.5,5.5 + parent: 2 + - uid: 14742 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-2.5 - parent: 21627 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22472 + pos: 64.5,6.5 + parent: 2 + - uid: 14743 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-23.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22479 + rot: -1.5707963267948966 rad + pos: 64.5,7.5 + parent: 2 + - uid: 14744 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,-30.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22512 + rot: -1.5707963267948966 rad + pos: 64.5,8.5 + parent: 2 + - uid: 14745 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22514 + rot: -1.5707963267948966 rad + pos: 64.5,2.5 + parent: 2 + - uid: 14746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-27.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24315 + rot: -1.5707963267948966 rad + pos: 64.5,1.5 + parent: 2 + - uid: 14747 components: - type: Transform - pos: -18.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24316 + rot: -1.5707963267948966 rad + pos: 64.5,0.5 + parent: 2 + - uid: 14748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-10.5 - parent: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24317 + rot: -1.5707963267948966 rad + pos: 64.5,3.5 + parent: 2 + - uid: 14749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24318 + rot: -1.5707963267948966 rad + pos: 66.5,10.5 + parent: 2 + - uid: 14750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24319 + rot: -1.5707963267948966 rad + pos: 66.5,11.5 + parent: 2 + - uid: 14751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24320 + rot: -1.5707963267948966 rad + pos: 66.5,12.5 + parent: 2 + - uid: 14752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24321 + rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 + - uid: 14753 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24322 + pos: 65.5,14.5 + parent: 2 + - uid: 14754 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24323 + rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + - uid: 14755 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24324 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + - uid: 14756 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24325 + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 14757 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24326 + rot: -1.5707963267948966 rad + pos: 59.5,16.5 + parent: 2 + - uid: 14758 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-22.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24327 + pos: 58.5,16.5 + parent: 2 + - uid: 14759 components: - type: Transform rot: -1.5707963267948966 rad - pos: -31.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24328 + pos: 57.5,16.5 + parent: 2 + - uid: 14760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,1.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24329 + rot: -1.5707963267948966 rad + pos: 56.5,16.5 + parent: 2 + - uid: 14761 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24330 + pos: 55.5,16.5 + parent: 2 + - uid: 14762 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24331 + rot: -1.5707963267948966 rad + pos: 54.5,16.5 + parent: 2 + - uid: 14763 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,16.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24332 + pos: 53.5,16.5 + parent: 2 + - uid: 14764 components: - type: Transform rot: -1.5707963267948966 rad - pos: -11.5,-23.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24333 + pos: 52.5,16.5 + parent: 2 + - uid: 14765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24334 + pos: 12.5,41.5 + parent: 2 + - uid: 14766 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,11.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24335 + rot: -1.5707963267948966 rad + pos: -91.5,-20.5 + parent: 2 + - uid: 14767 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,3.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24336 + pos: 41.5,8.5 + parent: 2 + - uid: 14768 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,15.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24337 + rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - uid: 14769 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24338 + rot: -1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - uid: 14770 components: - type: Transform rot: -1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24339 + pos: 44.5,3.5 + parent: 2 + - uid: 14771 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24340 + rot: 3.141592653589793 rad + pos: -101.5,-20.5 + parent: 2 + - uid: 14772 components: - type: Transform - pos: -11.5,2.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24341 + rot: 3.141592653589793 rad + pos: -100.5,-20.5 + parent: 2 + - uid: 14773 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24342 + pos: -99.5,-20.5 + parent: 2 + - uid: 14774 components: - type: Transform - pos: -21.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24343 + rot: 3.141592653589793 rad + pos: -98.5,-20.5 + parent: 2 + - uid: 14775 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24344 + rot: 3.141592653589793 rad + pos: -97.5,-20.5 + parent: 2 + - uid: 14776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,15.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24345 + rot: 3.141592653589793 rad + pos: -96.5,-20.5 + parent: 2 + - uid: 14777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24346 + rot: 3.141592653589793 rad + pos: -95.5,-20.5 + parent: 2 + - uid: 14778 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24347 + pos: -94.5,-20.5 + parent: 2 + - uid: 14779 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,9.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24348 + rot: 3.141592653589793 rad + pos: -93.5,-20.5 + parent: 2 + - uid: 14780 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24349 + rot: 3.141592653589793 rad + pos: -92.5,-20.5 + parent: 2 + - uid: 14781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,5.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24350 + pos: -101.5,-6.5 + parent: 2 + - uid: 14782 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,8.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24351 + pos: -100.5,-6.5 + parent: 2 + - uid: 14783 components: - type: Transform - pos: 5.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24352 + pos: -106.5,7.5 + parent: 2 + - uid: 14784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,6.5 - parent: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 25410 + pos: -106.5,8.5 + parent: 2 + - uid: 14785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-22.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25521 + pos: -106.5,9.5 + parent: 2 + - uid: 14786 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-8.5 - parent: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25522 + pos: -105.5,6.5 + parent: 2 + - uid: 14787 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasPort - entities: - - uid: 226 + pos: -104.5,6.5 + parent: 2 + - uid: 14788 components: - type: Transform - pos: 0.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 248 + pos: -103.5,6.5 + parent: 2 + - uid: 14789 components: - type: Transform - pos: -5.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 251 + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 14790 components: - type: Transform - pos: -7.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 974 + rot: 3.141592653589793 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 14791 components: - type: Transform - pos: -91.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 975 + rot: 3.141592653589793 rad + pos: 65.5,-5.5 + parent: 2 + - uid: 14792 components: - type: Transform - pos: -90.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1537 + rot: 3.141592653589793 rad + pos: -92.5,-22.5 + parent: 2 + - uid: 14793 components: - type: Transform - pos: -94.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1538 + rot: 1.5707963267948966 rad + pos: -100.5,32.5 + parent: 2 + - uid: 14794 components: - type: Transform - pos: -93.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1540 + rot: 3.141592653589793 rad + pos: -96.5,-22.5 + parent: 2 + - uid: 14795 components: - type: Transform - pos: -92.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1627 + rot: 3.141592653589793 rad + pos: -94.5,-22.5 + parent: 2 + - uid: 14796 components: - type: Transform rot: 3.141592653589793 rad - pos: -98.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1628 + pos: -98.5,-22.5 + parent: 2 + - uid: 14797 components: - type: Transform rot: 3.141592653589793 rad - pos: -97.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1630 + pos: -100.5,-22.5 + parent: 2 + - uid: 14798 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2473 + pos: 66.5,-4.5 + parent: 2 + - uid: 14799 components: - type: Transform rot: 3.141592653589793 rad - pos: -86.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2474 + pos: -5.5,-42.5 + parent: 2 + - uid: 14800 components: - type: Transform rot: 3.141592653589793 rad - pos: -85.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5412 + pos: -90.5,-22.5 + parent: 2 + - uid: 14801 components: - type: Transform - pos: -5.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5427 + rot: 3.141592653589793 rad + pos: -88.5,-22.5 + parent: 2 + - uid: 14802 components: - type: Transform - pos: 2.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8763 + rot: 3.141592653589793 rad + pos: -86.5,-22.5 + parent: 2 + - uid: 14803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8764 + rot: -1.5707963267948966 rad + pos: -78.5,-25.5 + parent: 2 + - uid: 14804 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8765 + rot: -1.5707963267948966 rad + pos: -78.5,-24.5 + parent: 2 + - uid: 14805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8766 + rot: -1.5707963267948966 rad + pos: -78.5,-23.5 + parent: 2 + - uid: 14806 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9604 + rot: -1.5707963267948966 rad + pos: -79.5,-22.5 + parent: 2 + - uid: 14807 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9606 + rot: -1.5707963267948966 rad + pos: -80.5,-22.5 + parent: 2 + - uid: 14808 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9607 + rot: -1.5707963267948966 rad + pos: -81.5,-22.5 + parent: 2 + - uid: 14809 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9637 + rot: -1.5707963267948966 rad + pos: -79.5,-26.5 + parent: 2 + - uid: 14810 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9638 + pos: -80.5,-26.5 + parent: 2 + - uid: 14811 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15306 + rot: -1.5707963267948966 rad + pos: -81.5,-26.5 + parent: 2 + - uid: 14812 + components: + - type: Transform + pos: 34.5,9.5 + parent: 2 + - uid: 14813 + components: + - type: Transform + pos: 36.5,9.5 + parent: 2 + - uid: 14814 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15560 + pos: -81.5,-20.5 + parent: 2 + - uid: 14815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15574 + rot: -1.5707963267948966 rad + pos: -80.5,-20.5 + parent: 2 + - uid: 14816 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15857 + pos: -79.5,-20.5 + parent: 2 + - uid: 14817 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20179 + pos: -90.5,-20.5 + parent: 2 + - uid: 14818 components: - type: Transform - pos: 0.5,-40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24353 + rot: -1.5707963267948966 rad + pos: -77.5,-16.5 + parent: 2 + - uid: 14819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-15.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24354 + rot: -1.5707963267948966 rad + pos: -89.5,-20.5 + parent: 2 + - uid: 14820 components: - type: Transform - pos: -18.5,-7.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24355 + rot: -1.5707963267948966 rad + pos: -88.5,-20.5 + parent: 2 + - uid: 14821 components: - type: Transform - pos: -13.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24356 + rot: -1.5707963267948966 rad + pos: -87.5,-20.5 + parent: 2 + - uid: 14822 components: - type: Transform - pos: -15.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24357 + rot: -1.5707963267948966 rad + pos: -86.5,-20.5 + parent: 2 + - uid: 14823 components: - type: Transform - pos: -14.5,-10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25523 + rot: 3.141592653589793 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 14824 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-11.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 -- proto: GasPressurePump - entities: - - uid: 1445 + pos: 1.5,-11.5 + parent: 2 + - uid: 14825 + components: + - type: Transform + pos: 12.5,-16.5 + parent: 2 + - uid: 14826 components: - - type: MetaData - name: О2 в смесители - type: Transform rot: 3.141592653589793 rad - pos: -101.5,-19.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1446 + pos: 62.5,-5.5 + parent: 2 + - uid: 14827 components: - - type: MetaData - name: N2 в смесители - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-19.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 1447 + pos: 63.5,-5.5 + parent: 2 + - uid: 14828 components: - - type: MetaData - name: CO2 в микс - type: Transform rot: 3.141592653589793 rad - pos: -97.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1448 + pos: 64.5,-5.5 + parent: 2 + - uid: 14829 components: - - type: MetaData - name: водяной пар в микс - type: Transform rot: 3.141592653589793 rad - pos: -95.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1449 + pos: 59.5,-7.5 + parent: 2 + - uid: 14830 components: - - type: MetaData - name: плазма в микс - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1518 + pos: 58.5,-7.5 + parent: 2 + - uid: 14831 components: - - type: MetaData - name: скрубберы в вейст - type: Transform - pos: -102.5,-13.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1590 + rot: 3.141592653589793 rad + pos: 57.5,-7.5 + parent: 2 + - uid: 14832 components: - - type: MetaData - name: воздух в дистру - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-12.5 - parent: 89 - - type: GasPressurePump - targetPressure: 228 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1911 + pos: 56.5,-7.5 + parent: 2 + - uid: 14833 components: - type: Transform - pos: 0.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2061 + rot: 3.141592653589793 rad + pos: 55.5,-7.5 + parent: 2 + - uid: 14834 components: - - type: MetaData - name: N2O в микс - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2062 + pos: 54.5,-7.5 + parent: 2 + - uid: 14835 components: - - type: MetaData - name: тритий в микс - type: Transform rot: 3.141592653589793 rad - pos: -89.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2063 + pos: 70.5,8.5 + parent: 2 + - uid: 14836 components: - - type: MetaData - name: газ в микс - type: Transform rot: 3.141592653589793 rad - pos: -87.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9609 + pos: 70.5,9.5 + parent: 2 + - uid: 14837 components: - type: Transform rot: 3.141592653589793 rad - pos: -94.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9635 + pos: 70.5,11.5 + parent: 2 + - uid: 14838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10447 + rot: 3.141592653589793 rad + pos: 70.5,12.5 + parent: 2 + - uid: 14839 components: - - type: MetaData - name: выброс дистры - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10754 + pos: 70.5,13.5 + parent: 2 + - uid: 14840 components: - type: Transform - pos: -5.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15070 + rot: 3.141592653589793 rad + pos: 70.5,14.5 + parent: 2 + - uid: 14841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,20.5 - parent: 89 - - type: GasPressurePump - targetPressure: 150 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15445 + rot: 3.141592653589793 rad + pos: 70.5,1.5 + parent: 2 + - uid: 14842 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16373 + rot: 3.141592653589793 rad + pos: -100.5,12.5 + parent: 2 + - uid: 14843 + components: + - type: Transform + pos: 21.5,-19.5 + parent: 2 + - uid: 14844 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,20.5 - parent: 89 - - type: GasPressurePump - targetPressure: 150 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17694 + pos: 28.5,-17.5 + parent: 2 + - uid: 14845 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,21.5 - parent: 89 - - type: GasPressurePump - targetPressure: 4500 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24358 + pos: 29.5,-17.5 + parent: 2 + - uid: 14846 components: - type: Transform - pos: -11.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF1212FF' - - uid: 25524 + pos: -48.5,-5.5 + parent: 2 + - uid: 14847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-11.5 - parent: 18153 - - type: GasPressurePump - targetPressure: 110 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasThermoMachineFreezer - entities: - - uid: 322 + pos: -66.5,-18.5 + parent: 2 + - uid: 14848 + components: + - type: Transform + pos: -67.5,-18.5 + parent: 2 + - uid: 14849 components: - type: Transform - pos: -15.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1739 + pos: -71.5,-18.5 + parent: 2 + - uid: 14850 components: - type: Transform - pos: -94.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2475 + pos: -72.5,-18.5 + parent: 2 + - uid: 14851 components: - type: Transform - pos: -84.5,-15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2946 + pos: -68.5,-11.5 + parent: 2 + - uid: 14852 components: - type: Transform - pos: -82.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 8813 + pos: 9.5,-22.5 + parent: 2 + - uid: 14853 components: - type: Transform - pos: -125.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8814 + pos: -48.5,-18.5 + parent: 2 + - uid: 14854 components: - type: Transform - pos: -126.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8819 + pos: -49.5,-16.5 + parent: 2 + - uid: 14855 components: - type: Transform - pos: -127.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16295 + pos: -68.5,-12.5 + parent: 2 + - uid: 14856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16622 + pos: -38.5,-0.5 + parent: 2 + - uid: 14857 components: - type: Transform - pos: 11.5,24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: GasThermoMachineHeater - entities: - - uid: 1740 + rot: -1.5707963267948966 rad + pos: -91.5,28.5 + parent: 2 + - uid: 14858 components: - type: Transform - pos: -93.5,-10.5 - parent: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2476 + pos: -48.5,-14.5 + parent: 2 + - uid: 14859 components: - type: Transform - pos: -83.5,-15.5 - parent: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - type: AtmosDevice - joinedGrid: 89 - - uid: 2947 + pos: -68.5,-16.5 + parent: 2 + - uid: 14860 components: - type: Transform - pos: -81.5,-13.5 - parent: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - type: AtmosDevice - joinedGrid: 89 -- proto: GasValve - entities: - - uid: 1476 + pos: -64.5,-3.5 + parent: 2 + - uid: 14861 components: - - type: MetaData - name: предфильтровый выброс вейста - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-19.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 1570 + pos: -61.5,-3.5 + parent: 2 + - uid: 14862 components: - - type: MetaData - name: выброс портов канистр - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,-13.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 2379 + pos: -57.5,-9.5 + parent: 2 + - uid: 14863 components: - - type: MetaData - name: вейст в камеру - type: Transform rot: 3.141592653589793 rad - pos: -81.5,-19.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2380 + pos: -15.5,22.5 + parent: 2 + - uid: 14864 components: - - type: MetaData - name: микс в камеру - type: Transform rot: 3.141592653589793 rad - pos: -80.5,-19.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2386 - components: - - type: MetaData - name: выброс микса - - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-16.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FFD800FF' - - uid: 2502 + pos: 0.5,-42.5 + parent: 2 + - uid: 14865 components: - - type: MetaData - name: выброс вейста - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-18.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#947507FF' - - uid: 2523 + pos: 2.5,-42.5 + parent: 2 + - uid: 14866 components: - - type: MetaData - name: камера в канистры - type: Transform - pos: -81.5,-15.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2524 + rot: 3.141592653589793 rad + pos: -2.5,30.5 + parent: 2 + - uid: 14867 components: - - type: MetaData - name: вейст в канистры - type: Transform - pos: -82.5,-15.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 2900 + pos: -43.5,2.5 + parent: 2 + - uid: 14868 components: - - type: MetaData - name: выброс канистровой трубы - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-14.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 8787 + rot: 3.141592653589793 rad + pos: -36.5,22.5 + parent: 2 + - uid: 14869 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,5.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 - - uid: 8789 + pos: -19.5,4.5 + parent: 2 + - uid: 14870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,2.5 - parent: 89 - - type: GasValve - open: False - - type: AtmosDevice - joinedGrid: 89 -- proto: GasVentPump - entities: - - uid: 53 + pos: -17.5,4.5 + parent: 2 + - uid: 14871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 107 + pos: -15.5,6.5 + parent: 2 + - uid: 14872 components: - type: Transform - pos: -8.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 1966 + pos: -15.5,8.5 + parent: 2 + - uid: 14873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2006 + pos: -21.5,5.5 + parent: 2 + - uid: 14874 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 2974 + pos: 18.5,4.5 + parent: 2 + - uid: 14875 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3027 + pos: 17.5,4.5 + parent: 2 + - uid: 14876 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3081 + pos: -96.5,4.5 + parent: 2 + - uid: 14877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -105.5,-18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3272 + rot: -1.5707963267948966 rad + pos: -69.5,29.5 + parent: 2 + - uid: 14878 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3294 + pos: -81.5,29.5 + parent: 2 + - uid: 14879 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3386 + pos: -69.5,36.5 + parent: 2 + - uid: 14880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3416 + rot: -1.5707963267948966 rad + pos: -81.5,31.5 + parent: 2 + - uid: 14881 components: - type: Transform - pos: -102.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3539 + rot: -1.5707963267948966 rad + pos: -69.5,31.5 + parent: 2 + - uid: 14882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3619 + rot: -1.5707963267948966 rad + pos: -81.5,36.5 + parent: 2 + - uid: 14883 components: - type: Transform - pos: -98.5,26.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3620 + pos: -45.5,2.5 + parent: 2 + - uid: 14884 components: - type: Transform - pos: -107.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3621 + pos: -42.5,0.5 + parent: 2 + - uid: 14885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3622 + pos: -42.5,-1.5 + parent: 2 + - uid: 14886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3712 + rot: 1.5707963267948966 rad + pos: -57.5,42.5 + parent: 2 + - uid: 14887 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3783 + rot: 1.5707963267948966 rad + pos: -57.5,43.5 + parent: 2 + - uid: 14888 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3937 + pos: -118.5,24.5 + parent: 2 + - uid: 14889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3941 + pos: -90.5,3.5 + parent: 2 + - uid: 14890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3944 + pos: -90.5,4.5 + parent: 2 + - uid: 14891 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 3987 + pos: -83.5,14.5 + parent: 2 + - uid: 14892 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4008 + pos: -77.5,-13.5 + parent: 2 + - uid: 14893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -20.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4039 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4105 + pos: -77.5,-14.5 + parent: 2 + - uid: 14894 components: - type: Transform - pos: 61.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4159 + rot: 1.5707963267948966 rad + pos: -77.5,-12.5 + parent: 2 + - uid: 14895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4160 + pos: -77.5,-11.5 + parent: 2 + - uid: 14896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4219 + pos: -100.5,28.5 + parent: 2 + - uid: 14897 components: - type: Transform - pos: 52.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4243 + rot: 3.141592653589793 rad + pos: -87.5,11.5 + parent: 2 + - uid: 14898 components: - type: Transform - rot: 3.141592653589793 rad - pos: -48.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4377 + pos: -2.5,47.5 + parent: 2 + - uid: 14899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4441 + pos: -3.5,47.5 + parent: 2 + - uid: 14900 components: - type: Transform - pos: -0.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4471 + pos: -4.5,47.5 + parent: 2 + - uid: 14901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4537 + pos: -0.5,47.5 + parent: 2 + - uid: 14902 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4598 + pos: 0.5,47.5 + parent: 2 + - uid: 14903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4599 + pos: -7.5,47.5 + parent: 2 + - uid: 14904 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4691 + pos: -6.5,47.5 + parent: 2 + - uid: 14905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4702 + pos: -58.5,20.5 + parent: 2 + - uid: 14906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4717 + pos: -61.5,9.5 + parent: 2 + - uid: 14907 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4733 + pos: -61.5,7.5 + parent: 2 + - uid: 14908 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-30.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4761 + pos: -1.5,36.5 + parent: 2 + - uid: 14909 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4762 + pos: -37.5,12.5 + parent: 2 + - uid: 14910 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4811 + pos: -9.5,36.5 + parent: 2 + - uid: 14911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4812 + pos: -15.5,25.5 + parent: 2 + - uid: 14912 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4813 + pos: -58.5,22.5 + parent: 2 + - uid: 14913 components: - type: Transform - pos: -7.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4864 + pos: -59.5,23.5 + parent: 2 + - uid: 14914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4939 + pos: -61.5,23.5 + parent: 2 + - uid: 14915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4982 + pos: -61.5,23.5 + parent: 2 + - uid: 14916 components: - type: Transform - pos: -59.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 4983 + pos: -11.5,-15.5 + parent: 2 + - uid: 14917 components: - type: Transform - pos: -66.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5071 + pos: -9.5,-15.5 + parent: 2 + - uid: 14918 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5072 + pos: -10.5,-15.5 + parent: 2 + - uid: 14919 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5152 + pos: 33.5,23.5 + parent: 2 + - uid: 14920 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5156 + pos: -126.5,12.5 + parent: 2 + - uid: 14921 components: - type: Transform - pos: 11.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5157 + pos: -128.5,3.5 + parent: 2 + - uid: 14922 components: - type: Transform - pos: 8.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5279 + pos: -128.5,4.5 + parent: 2 + - uid: 14923 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5337 + rot: 1.5707963267948966 rad + pos: -119.5,1.5 + parent: 2 + - uid: 14924 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5338 + rot: 1.5707963267948966 rad + pos: -119.5,6.5 + parent: 2 + - uid: 14925 components: - type: Transform rot: 3.141592653589793 rad - pos: 24.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5339 + pos: -119.5,3.5 + parent: 2 + - uid: 14926 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5341 + rot: 1.5707963267948966 rad + pos: -114.5,5.5 + parent: 2 + - uid: 14927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5348 + rot: 1.5707963267948966 rad + pos: -114.5,2.5 + parent: 2 + - uid: 14928 components: - type: Transform - pos: 27.5,-3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5356 + pos: -123.5,-14.5 + parent: 2 + - uid: 14929 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5377 + pos: -124.5,-13.5 + parent: 2 + - uid: 14930 components: - type: Transform - pos: 36.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5394 + pos: -124.5,-12.5 + parent: 2 + - uid: 14931 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5399 - components: - - type: Transform - pos: 6.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5437 + pos: -131.5,8.5 + parent: 2 + - uid: 14932 components: - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5502 + rot: 1.5707963267948966 rad + pos: -131.5,7.5 + parent: 2 + - uid: 14933 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5535 + pos: -131.5,6.5 + parent: 2 + - uid: 14934 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5688 + rot: 1.5707963267948966 rad + pos: -131.5,5.5 + parent: 2 + - uid: 14935 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5729 + pos: -131.5,4.5 + parent: 2 + - uid: 14936 components: - type: Transform - pos: -50.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5736 + rot: 1.5707963267948966 rad + pos: -131.5,3.5 + parent: 2 + - uid: 14937 components: - type: Transform rot: 1.5707963267948966 rad - pos: -67.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5751 + pos: -131.5,2.5 + parent: 2 + - uid: 14938 components: - type: Transform - pos: -51.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5784 + rot: 1.5707963267948966 rad + pos: -131.5,1.5 + parent: 2 + - uid: 14939 components: - type: Transform - rot: 3.141592653589793 rad - pos: -84.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5785 + pos: -13.5,25.5 + parent: 2 + - uid: 14940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 5796 + pos: -14.5,25.5 + parent: 2 + - uid: 14941 components: - type: Transform - pos: -94.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6204 + pos: -90.5,2.5 + parent: 2 + - uid: 14942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6205 + pos: -90.5,1.5 + parent: 2 + - uid: 14943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6208 + pos: -110.5,30.5 + parent: 2 + - uid: 14944 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6363 + pos: -112.5,30.5 + parent: 2 + - uid: 14945 components: - type: Transform - pos: -18.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6370 + rot: 1.5707963267948966 rad + pos: -101.5,32.5 + parent: 2 + - uid: 14946 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6558 + pos: -102.5,32.5 + parent: 2 + - uid: 14947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -60.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6560 + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 14948 components: - type: Transform rot: 1.5707963267948966 rad - pos: -56.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6568 + pos: -49.5,41.5 + parent: 2 + - uid: 14949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6603 + pos: -49.5,48.5 + parent: 2 + - uid: 14950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6610 + pos: -51.5,49.5 + parent: 2 + - uid: 14951 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6798 + pos: -68.5,33.5 + parent: 2 + - uid: 14952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6802 + pos: -68.5,35.5 + parent: 2 + - uid: 14953 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6803 + pos: -68.5,34.5 + parent: 2 + - uid: 14954 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6840 + pos: -60.5,23.5 + parent: 2 + - uid: 14955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6856 + pos: -65.5,47.5 + parent: 2 + - uid: 14956 components: - type: Transform - pos: -23.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6862 + pos: -65.5,48.5 + parent: 2 + - uid: 14957 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6870 + pos: -68.5,42.5 + parent: 2 + - uid: 14958 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 6882 + pos: -68.5,43.5 + parent: 2 + - uid: 14959 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8770 + pos: -68.5,44.5 + parent: 2 + - uid: 14960 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 8877 + pos: -62.5,46.5 + parent: 2 + - uid: 14961 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8878 + pos: -61.5,46.5 + parent: 2 + - uid: 14962 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8879 + pos: -60.5,46.5 + parent: 2 + - uid: 14963 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8972 + pos: -57.5,47.5 + parent: 2 + - uid: 14964 components: - type: Transform - pos: -120.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9011 + pos: -57.5,48.5 + parent: 2 + - uid: 14965 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9375 + pos: -53.5,45.5 + parent: 2 + - uid: 14966 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9379 + pos: -53.5,43.5 + parent: 2 + - uid: 14967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9434 + pos: -53.5,41.5 + parent: 2 + - uid: 14968 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9822 + pos: -53.5,39.5 + parent: 2 + - uid: 14969 components: - type: Transform - pos: -60.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9924 + pos: -53.5,49.5 + parent: 2 + - uid: 14970 components: - type: Transform - pos: -56.5,39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9930 + rot: -1.5707963267948966 rad + pos: -58.5,34.5 + parent: 2 + - uid: 14971 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9948 + rot: -1.5707963267948966 rad + pos: -57.5,31.5 + parent: 2 + - uid: 14972 components: - type: Transform - pos: -66.5,43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10129 + rot: -1.5707963267948966 rad + pos: -56.5,31.5 + parent: 2 + - uid: 14973 components: - type: Transform - pos: -29.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10488 + rot: -1.5707963267948966 rad + pos: -69.5,38.5 + parent: 2 + - uid: 14974 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12607 + rot: 3.141592653589793 rad + pos: -18.5,13.5 + parent: 2 + - uid: 14975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12615 + pos: -49.5,47.5 + parent: 2 + - uid: 14976 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 24.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12735 + pos: -41.5,30.5 + parent: 2 + - uid: 14977 components: - type: Transform - pos: 9.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12802 + pos: -41.5,31.5 + parent: 2 + - uid: 14978 components: - type: Transform - pos: 20.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12811 + pos: -41.5,32.5 + parent: 2 + - uid: 14979 components: - type: Transform - pos: 18.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 12831 + pos: -122.5,-14.5 + parent: 2 + - uid: 14980 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14088 + pos: -85.5,18.5 + parent: 2 + - uid: 14981 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14089 + pos: -84.5,18.5 + parent: 2 + - uid: 14982 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 14931 + rot: -1.5707963267948966 rad + pos: -87.5,46.5 + parent: 2 + - uid: 14983 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' + rot: -1.5707963267948966 rad + pos: -89.5,45.5 + parent: 2 - uid: 14984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15100 + pos: -82.5,42.5 + parent: 2 + - uid: 14985 components: - type: Transform - pos: 28.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15182 + pos: -82.5,43.5 + parent: 2 + - uid: 14986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15444 + pos: -82.5,44.5 + parent: 2 + - uid: 14987 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15451 + rot: 3.141592653589793 rad + pos: 27.5,-16.5 + parent: 2 + - uid: 14988 components: - type: Transform - pos: 7.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15453 + pos: -85.5,46.5 + parent: 2 + - uid: 14989 components: - type: Transform - pos: 10.5,41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15467 + pos: -81.5,38.5 + parent: 2 + - uid: 14990 components: - type: Transform - pos: 13.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15472 + rot: -1.5707963267948966 rad + pos: -114.5,21.5 + parent: 2 + - uid: 14991 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15589 + pos: -82.5,33.5 + parent: 2 + - uid: 14992 components: - type: Transform - pos: 14.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15725 + pos: -82.5,34.5 + parent: 2 + - uid: 14993 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 15847 + pos: -82.5,35.5 + parent: 2 + - uid: 14994 components: - type: Transform - pos: -84.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16165 + pos: -85.5,48.5 + parent: 2 + - uid: 14995 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 16914 + pos: -83.5,48.5 + parent: 2 + - uid: 14996 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18320 + pos: -83.5,46.5 + parent: 2 + - uid: 14997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18327 + pos: -8.5,-39.5 + parent: 2 + - uid: 14998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18339 + pos: -8.5,-40.5 + parent: 2 + - uid: 14999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 18360 + pos: 3.5,-39.5 + parent: 2 + - uid: 15000 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20025 + pos: 3.5,-40.5 + parent: 2 + - uid: 15001 components: - type: Transform - pos: 11.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20031 + pos: 3.5,-23.5 + parent: 2 + - uid: 15002 components: - type: Transform - pos: 23.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20032 + pos: 1.5,-23.5 + parent: 2 + - uid: 15003 components: - type: Transform - pos: 24.5,43.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20033 + pos: 1.5,-26.5 + parent: 2 + - uid: 15004 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20093 + pos: 3.5,-26.5 + parent: 2 + - uid: 15005 components: - type: Transform - pos: -8.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20094 + pos: 1.5,-32.5 + parent: 2 + - uid: 15006 components: - type: Transform - pos: -11.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20108 + pos: 2.5,-32.5 + parent: 2 + - uid: 15007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20142 + pos: 3.5,-32.5 + parent: 2 + - uid: 15008 components: - type: Transform - pos: -5.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 20442 + pos: 4.5,-32.5 + parent: 2 + - uid: 15009 components: - type: Transform - pos: 0.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21222 + pos: -123.5,22.5 + parent: 2 + - uid: 15010 components: - type: Transform - pos: -30.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21223 + pos: -122.5,22.5 + parent: 2 + - uid: 15011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,32.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21224 + pos: -121.5,22.5 + parent: 2 + - uid: 15012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,32.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21225 + pos: -106.5,30.5 + parent: 2 + - uid: 15013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21226 + pos: -114.5,26.5 + parent: 2 + - uid: 15014 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21227 + pos: -117.5,26.5 + parent: 2 + - uid: 15015 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 21228 + pos: -115.5,26.5 + parent: 2 + - uid: 15016 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22437 + pos: 6.5,38.5 + parent: 2 + - uid: 15017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22439 + pos: 12.5,35.5 + parent: 2 + - uid: 15018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-30.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22466 + pos: -107.5,28.5 + parent: 2 + - uid: 15019 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-31.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 22563 + pos: 8.5,43.5 + parent: 2 + - uid: 15020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24359 + pos: -103.5,28.5 + parent: 2 + - uid: 15021 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24360 + pos: 7.5,42.5 + parent: 2 + - uid: 15022 components: - type: Transform - pos: -12.5,2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24361 + pos: -109.5,28.5 + parent: 2 + - uid: 15023 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24362 + pos: 13.5,38.5 + parent: 2 + - uid: 15024 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-25.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24363 + pos: 7.5,35.5 + parent: 2 + - uid: 15025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24364 + pos: 7.5,41.5 + parent: 2 + - uid: 15026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24365 + pos: 7.5,38.5 + parent: 2 + - uid: 15027 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24366 + pos: 62.5,-37.5 + parent: 2 + - uid: 15028 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24367 + pos: -13.5,-34.5 + parent: 2 + - uid: 15029 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24368 + pos: 55.5,-16.5 + parent: 2 + - uid: 15030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24369 + pos: 38.5,-35.5 + parent: 2 + - uid: 15031 components: - type: Transform - pos: -12.5,-21.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24370 + pos: -13.5,-35.5 + parent: 2 + - uid: 15032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-25.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24371 + pos: -13.5,-36.5 + parent: 2 + - uid: 15033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24372 + pos: -19.5,23.5 + parent: 2 + - uid: 15034 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24373 + pos: 11.5,43.5 + parent: 2 + - uid: 15035 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,16.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24374 + pos: 12.5,42.5 + parent: 2 + - uid: 15036 components: - type: Transform - pos: -22.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24375 + pos: 11.5,36.5 + parent: 2 + - uid: 15037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24376 + pos: 21.5,35.5 + parent: 2 + - uid: 15038 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-25.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24377 + pos: -27.5,36.5 + parent: 2 + - uid: 15039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,3.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24378 + rot: 3.141592653589793 rad + pos: -27.5,37.5 + parent: 2 + - uid: 15040 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24379 + pos: -32.5,37.5 + parent: 2 + - uid: 15041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24380 + rot: 3.141592653589793 rad + pos: -32.5,36.5 + parent: 2 + - uid: 15042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24381 + pos: 8.5,37.5 + parent: 2 + - uid: 15043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24382 + pos: 12.5,38.5 + parent: 2 + - uid: 15044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24383 + pos: 6.5,31.5 + parent: 2 + - uid: 15045 components: - type: Transform - pos: -1.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25414 + pos: 27.5,35.5 + parent: 2 + - uid: 15046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25415 + pos: 21.5,36.5 + parent: 2 + - uid: 15047 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 25525 + pos: 27.5,36.5 + parent: 2 + - uid: 15048 components: - type: Transform - pos: 4.5,-6.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25526 + rot: 1.5707963267948966 rad + pos: -57.5,41.5 + parent: 2 + - uid: 15049 components: - type: Transform rot: 1.5707963267948966 rad - pos: 2.5,-8.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 25527 + pos: -49.5,45.5 + parent: 2 + - uid: 15050 components: - type: Transform - pos: 4.5,-2.5 - parent: 18153 - - type: AtmosDevice - joinedGrid: 18153 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: GasVentScrubber - entities: - - uid: 1363 + rot: 3.141592653589793 rad + pos: -119.5,2.5 + parent: 2 + - uid: 15051 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1596 + pos: -119.5,4.5 + parent: 2 + - uid: 15052 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -119.5,5.5 + parent: 2 + - uid: 15053 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 1940 + pos: -13.5,42.5 + parent: 2 + - uid: 15054 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -42.5,37.5 + parent: 2 + - uid: 15055 + components: + - type: Transform + pos: -52.5,49.5 + parent: 2 + - uid: 15056 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3020 + pos: 66.5,-7.5 + parent: 2 + - uid: 15057 components: - type: Transform rot: 3.141592653589793 rad - pos: -96.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3024 + pos: 64.5,-9.5 + parent: 2 + - uid: 15058 components: - type: Transform - pos: -99.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3062 + rot: 1.5707963267948966 rad + pos: -104.5,32.5 + parent: 2 + - uid: 15059 components: - type: Transform - pos: -99.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3301 + rot: -1.5707963267948966 rad + pos: -48.5,49.5 + parent: 2 + - uid: 15060 components: - type: Transform rot: -1.5707963267948966 rad - pos: -93.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3384 + pos: -47.5,49.5 + parent: 2 + - uid: 15061 components: - type: Transform - pos: -99.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3424 + rot: -1.5707963267948966 rad + pos: -46.5,49.5 + parent: 2 + - uid: 15062 components: - type: Transform - pos: -104.5,10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3535 + rot: -1.5707963267948966 rad + pos: -45.5,48.5 + parent: 2 + - uid: 15063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -109.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3614 + rot: -1.5707963267948966 rad + pos: -45.5,48.5 + parent: 2 + - uid: 15064 components: - type: Transform rot: 1.5707963267948966 rad - pos: -110.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3615 + pos: -61.5,49.5 + parent: 2 + - uid: 15065 components: - type: Transform rot: -1.5707963267948966 rad - pos: -106.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3617 + pos: -45.5,46.5 + parent: 2 + - uid: 15066 components: - type: Transform - pos: -109.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3748 + rot: -1.5707963267948966 rad + pos: -45.5,45.5 + parent: 2 + - uid: 15067 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3775 + rot: -1.5707963267948966 rad + pos: -45.5,44.5 + parent: 2 + - uid: 15068 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3936 + rot: -1.5707963267948966 rad + pos: -45.5,47.5 + parent: 2 + - uid: 15069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3938 + rot: 1.5707963267948966 rad + pos: -132.5,28.5 + parent: 2 + - uid: 15070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3947 + rot: -1.5707963267948966 rad + pos: -122.5,26.5 + parent: 2 + - uid: 15071 components: - type: Transform rot: 1.5707963267948966 rad - pos: -25.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 3988 + pos: -137.5,26.5 + parent: 2 + - uid: 15072 components: - type: Transform rot: 1.5707963267948966 rad - pos: -21.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4007 + pos: -137.5,27.5 + parent: 2 + - uid: 15073 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4161 + pos: -137.5,25.5 + parent: 2 + - uid: 15074 components: - type: Transform rot: 1.5707963267948966 rad - pos: 33.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4162 + pos: -138.5,11.5 + parent: 2 + - uid: 15075 components: - type: Transform rot: -1.5707963267948966 rad - pos: 35.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4242 + pos: -121.5,26.5 + parent: 2 + - uid: 15076 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4273 + rot: 1.5707963267948966 rad + pos: -135.5,28.5 + parent: 2 + - uid: 15077 components: - type: Transform - pos: 51.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4278 + rot: 1.5707963267948966 rad + pos: -134.5,28.5 + parent: 2 + - uid: 15078 components: - type: Transform - pos: 60.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4354 + rot: 3.141592653589793 rad + pos: 66.5,-8.5 + parent: 2 + - uid: 15079 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4375 + pos: 70.5,-5.5 + parent: 2 + - uid: 15080 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4383 + rot: 3.141592653589793 rad + pos: 70.5,-3.5 + parent: 2 + - uid: 15081 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4442 + rot: 3.141592653589793 rad + pos: 70.5,-4.5 + parent: 2 + - uid: 15082 components: - type: Transform - pos: -2.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4541 + rot: -1.5707963267948966 rad + pos: -13.5,39.5 + parent: 2 + - uid: 15083 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4590 + rot: -1.5707963267948966 rad + pos: -41.5,38.5 + parent: 2 + - uid: 15084 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4591 + rot: -1.5707963267948966 rad + pos: -45.5,41.5 + parent: 2 + - uid: 15085 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4692 + rot: -1.5707963267948966 rad + pos: -45.5,40.5 + parent: 2 + - uid: 15086 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4698 + rot: -1.5707963267948966 rad + pos: -45.5,39.5 + parent: 2 + - uid: 15087 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-24.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4718 + pos: -45.5,38.5 + parent: 2 + - uid: 15088 components: - type: Transform - pos: -1.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4730 + rot: -1.5707963267948966 rad + pos: -43.5,37.5 + parent: 2 + - uid: 15089 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4759 + pos: -127.5,28.5 + parent: 2 + - uid: 15090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,-34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4760 + rot: 3.141592653589793 rad + pos: 68.5,-5.5 + parent: 2 + - uid: 15091 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,-39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4815 + pos: 70.5,-2.5 + parent: 2 + - uid: 15092 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4816 + rot: 3.141592653589793 rad + pos: 70.5,-6.5 + parent: 2 + - uid: 15093 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4819 + rot: -1.5707963267948966 rad + pos: -40.5,38.5 + parent: 2 + - uid: 15094 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,-21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4866 + pos: -39.5,38.5 + parent: 2 + - uid: 15095 components: - type: Transform rot: -1.5707963267948966 rad - pos: 2.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4985 + pos: -38.5,38.5 + parent: 2 + - uid: 15096 components: - type: Transform - rot: 3.141592653589793 rad - pos: -66.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4986 + rot: -1.5707963267948966 rad + pos: -37.5,38.5 + parent: 2 + - uid: 15097 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 4999 + rot: -1.5707963267948966 rad + pos: -36.5,38.5 + parent: 2 + - uid: 15098 components: - type: Transform - pos: -55.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5069 + pos: -126.5,28.5 + parent: 2 + - uid: 15099 components: - type: Transform - rot: 3.141592653589793 rad - pos: -71.5,-15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5070 + pos: -125.5,28.5 + parent: 2 + - uid: 15100 components: - type: Transform rot: -1.5707963267948966 rad - pos: -70.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5106 + pos: -18.5,38.5 + parent: 2 + - uid: 15101 components: - type: Transform - pos: -9.5,-4.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5118 + rot: -1.5707963267948966 rad + pos: -22.5,38.5 + parent: 2 + - uid: 15102 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5151 + pos: -23.5,38.5 + parent: 2 + - uid: 15103 components: - type: Transform rot: -1.5707963267948966 rad - pos: 8.5,-10.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5154 + pos: -15.5,37.5 + parent: 2 + - uid: 15104 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5326 + rot: 1.5707963267948966 rad + pos: -138.5,13.5 + parent: 2 + - uid: 15105 components: - type: Transform - pos: 12.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5328 + rot: 1.5707963267948966 rad + pos: -138.5,20.5 + parent: 2 + - uid: 15106 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5329 + pos: -128.5,28.5 + parent: 2 + - uid: 15107 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5330 + rot: 1.5707963267948966 rad + pos: -138.5,21.5 + parent: 2 + - uid: 15108 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5331 + rot: 1.5707963267948966 rad + pos: -138.5,19.5 + parent: 2 + - uid: 15109 components: - type: Transform - rot: 3.141592653589793 rad - pos: 28.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5336 + rot: 1.5707963267948966 rad + pos: -138.5,22.5 + parent: 2 + - uid: 15110 components: - type: Transform - pos: 26.5,-3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5354 + rot: -1.5707963267948966 rad + pos: -26.5,38.5 + parent: 2 + - uid: 15111 components: - type: Transform rot: -1.5707963267948966 rad - pos: 38.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5355 + pos: -20.5,38.5 + parent: 2 + - uid: 15112 components: - type: Transform - pos: 13.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5382 + rot: -1.5707963267948966 rad + pos: -21.5,38.5 + parent: 2 + - uid: 15113 components: - type: Transform - pos: 35.5,-1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5389 + rot: -1.5707963267948966 rad + pos: -16.5,37.5 + parent: 2 + - uid: 15114 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5401 + pos: -14.5,37.5 + parent: 2 + - uid: 15115 components: - type: Transform - pos: 4.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5501 + rot: -1.5707963267948966 rad + pos: -13.5,40.5 + parent: 2 + - uid: 15116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5569 + rot: 3.141592653589793 rad + pos: 66.5,-9.5 + parent: 2 + - uid: 15117 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5725 + rot: 1.5707963267948966 rad + pos: -138.5,19.5 + parent: 2 + - uid: 15118 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5728 + rot: 1.5707963267948966 rad + pos: -138.5,12.5 + parent: 2 + - uid: 15119 components: - type: Transform rot: -1.5707963267948966 rad - pos: -51.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5737 + pos: -13.5,46.5 + parent: 2 + - uid: 15120 components: - type: Transform rot: -1.5707963267948966 rad - pos: -64.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5752 + pos: -13.5,41.5 + parent: 2 + - uid: 15121 components: - type: Transform - pos: -49.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5787 + rot: -1.5707963267948966 rad + pos: -11.5,48.5 + parent: 2 + - uid: 15122 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5789 + pos: -13.5,45.5 + parent: 2 + - uid: 15123 components: - type: Transform - pos: -82.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 5795 + rot: 1.5707963267948966 rad + pos: -133.5,28.5 + parent: 2 + - uid: 15124 components: - type: Transform - pos: -95.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6206 + rot: -1.5707963267948966 rad + pos: -13.5,37.5 + parent: 2 + - uid: 15125 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6207 + rot: -1.5707963267948966 rad + pos: -19.5,38.5 + parent: 2 + - uid: 15126 components: - type: Transform rot: -1.5707963267948966 rad - pos: -26.5,14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6209 + pos: -12.5,48.5 + parent: 2 + - uid: 15127 components: - type: Transform - pos: -25.5,5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6364 + rot: 1.5707963267948966 rad + pos: -11.5,49.5 + parent: 2 + - uid: 15128 components: - type: Transform - pos: -17.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6369 + rot: 1.5707963267948966 rad + pos: -9.5,51.5 + parent: 2 + - uid: 15129 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6550 + pos: -8.5,51.5 + parent: 2 + - uid: 15130 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6551 + rot: 1.5707963267948966 rad + pos: -7.5,51.5 + parent: 2 + - uid: 15131 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6567 + rot: 1.5707963267948966 rad + pos: -6.5,51.5 + parent: 2 + - uid: 15132 components: - type: Transform - rot: 3.141592653589793 rad - pos: -47.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6602 + rot: 1.5707963267948966 rad + pos: -5.5,51.5 + parent: 2 + - uid: 15133 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6609 + rot: 1.5707963267948966 rad + pos: -0.5,51.5 + parent: 2 + - uid: 15134 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6799 + rot: 1.5707963267948966 rad + pos: 0.5,51.5 + parent: 2 + - uid: 15135 components: - type: Transform rot: 1.5707963267948966 rad - pos: -55.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6824 + pos: 1.5,51.5 + parent: 2 + - uid: 15136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -70.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6839 + pos: 2.5,51.5 + parent: 2 + - uid: 15137 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6851 + pos: 3.5,51.5 + parent: 2 + - uid: 15138 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6857 + pos: 4.5,51.5 + parent: 2 + - uid: 15139 components: - type: Transform - pos: -19.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6863 + rot: 1.5707963267948966 rad + pos: 5.5,51.5 + parent: 2 + - uid: 15140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -62.5,3.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6869 + rot: 1.5707963267948966 rad + pos: 8.5,48.5 + parent: 2 + - uid: 15141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 6881 + rot: 1.5707963267948966 rad + pos: 8.5,47.5 + parent: 2 + - uid: 15142 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -40.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 7668 + pos: 70.5,-0.5 + parent: 2 + - uid: 15143 components: - type: Transform - pos: -99.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8534 + rot: 1.5707963267948966 rad + pos: 16.5,39.5 + parent: 2 + - uid: 15144 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 16.5,38.5 + parent: 2 + - uid: 15145 components: - type: Transform - pos: -116.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8758 + rot: 1.5707963267948966 rad + pos: 16.5,37.5 + parent: 2 + - uid: 15146 components: - type: Transform rot: 1.5707963267948966 rad - pos: -127.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8768 + pos: 16.5,36.5 + parent: 2 + - uid: 15147 components: - type: Transform - pos: -110.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8874 + pos: 69.5,-0.5 + parent: 2 + - uid: 15148 components: - type: Transform - pos: -127.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8875 + pos: 68.5,-0.5 + parent: 2 + - uid: 15149 components: - type: Transform - pos: -126.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8876 + rot: 3.141592653589793 rad + pos: 70.5,0.5 + parent: 2 + - uid: 15150 components: - type: Transform - pos: -125.5,2.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8930 + rot: 3.141592653589793 rad + pos: 70.5,-1.5 + parent: 2 + - uid: 15151 components: - type: Transform - pos: 22.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 8973 + rot: 1.5707963267948966 rad + pos: 35.5,33.5 + parent: 2 + - uid: 15152 components: - type: Transform - pos: -119.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9010 + pos: 70.5,5.5 + parent: 2 + - uid: 15153 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9370 + pos: 70.5,4.5 + parent: 2 + - uid: 15154 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 13.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9371 + pos: 70.5,3.5 + parent: 2 + - uid: 15155 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9433 + rot: 3.141592653589793 rad + pos: 68.5,-6.5 + parent: 2 + - uid: 15156 components: - type: Transform rot: 3.141592653589793 rad - pos: 23.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9831 + pos: 68.5,-7.5 + parent: 2 + - uid: 15157 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -66.5,44.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9922 + rot: 3.141592653589793 rad + pos: 64.5,-10.5 + parent: 2 + - uid: 15158 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,32.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9923 + pos: 62.5,-11.5 + parent: 2 + - uid: 15159 components: - type: Transform - pos: -55.5,39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 9949 + rot: 3.141592653589793 rad + pos: 61.5,-11.5 + parent: 2 + - uid: 15160 components: - type: Transform - pos: -61.5,40.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10118 + rot: 3.141592653589793 rad + pos: 60.5,-11.5 + parent: 2 + - uid: 15161 components: - type: Transform - pos: -30.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 10485 + rot: 3.141592653589793 rad + pos: 60.5,-10.5 + parent: 2 + - uid: 15162 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12736 + rot: 3.141592653589793 rad + pos: 59.5,-9.5 + parent: 2 + - uid: 15163 components: - type: Transform - pos: 7.5,17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12741 + rot: 3.141592653589793 rad + pos: 58.5,-9.5 + parent: 2 + - uid: 15164 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12776 + rot: 3.141592653589793 rad + pos: 57.5,-9.5 + parent: 2 + - uid: 15165 components: - type: Transform rot: 3.141592653589793 rad - pos: 16.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 12812 + pos: 53.5,-9.5 + parent: 2 + - uid: 15166 components: - type: Transform - pos: 20.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14090 + rot: 3.141592653589793 rad + pos: 54.5,-9.5 + parent: 2 + - uid: 15167 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14091 + pos: 55.5,-9.5 + parent: 2 + - uid: 15168 + components: + - type: Transform + pos: 34.5,36.5 + parent: 2 + - uid: 15169 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 14970 + pos: 57.5,25.5 + parent: 2 + - uid: 15170 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15009 + rot: 3.141592653589793 rad + pos: 24.5,-19.5 + parent: 2 + - uid: 15171 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15186 + rot: 3.141592653589793 rad + pos: 24.5,-20.5 + parent: 2 + - uid: 15172 components: - type: Transform - pos: 27.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15198 + rot: 3.141592653589793 rad + pos: -40.5,-22.5 + parent: 2 + - uid: 15173 components: - type: Transform - pos: 34.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15438 + rot: 3.141592653589793 rad + pos: 10.5,-33.5 + parent: 2 + - uid: 15174 components: - type: Transform - pos: 9.5,41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15525 + rot: 3.141592653589793 rad + pos: -38.5,-22.5 + parent: 2 + - uid: 15175 components: - type: Transform - pos: 12.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15547 + rot: 3.141592653589793 rad + pos: -36.5,-22.5 + parent: 2 + - uid: 15176 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15821 + pos: -31.5,-23.5 + parent: 2 + - uid: 15177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,22.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 15846 + rot: 3.141592653589793 rad + pos: -31.5,-25.5 + parent: 2 + - uid: 15178 components: - type: Transform - pos: -85.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 16137 + rot: 3.141592653589793 rad + pos: -31.5,-31.5 + parent: 2 + - uid: 15179 components: - type: Transform - pos: 6.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 16534 + rot: 3.141592653589793 rad + pos: -31.5,-32.5 + parent: 2 + - uid: 15180 components: - type: Transform rot: 3.141592653589793 rad - pos: 25.5,11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18334 + pos: -18.5,-32.5 + parent: 2 + - uid: 15181 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-5.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18338 + rot: 3.141592653589793 rad + pos: -30.5,-32.5 + parent: 2 + - uid: 15182 components: - type: Transform - pos: -5.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 18361 + rot: 3.141592653589793 rad + pos: -28.5,-32.5 + parent: 2 + - uid: 15183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19916 + rot: 3.141592653589793 rad + pos: -26.5,-32.5 + parent: 2 + - uid: 15184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19960 + rot: 3.141592653589793 rad + pos: -24.5,-32.5 + parent: 2 + - uid: 15185 components: - type: Transform - pos: 23.5,39.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 19963 + rot: 3.141592653589793 rad + pos: -22.5,-32.5 + parent: 2 + - uid: 15186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20109 + rot: 3.141592653589793 rad + pos: -17.5,-32.5 + parent: 2 + - uid: 15187 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 20804 + rot: 3.141592653589793 rad + pos: -17.5,-34.5 + parent: 2 + - uid: 15188 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21244 + pos: -17.5,-36.5 + parent: 2 + - uid: 15189 components: - type: Transform - pos: -29.5,35.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21259 + rot: 3.141592653589793 rad + pos: -17.5,-41.5 + parent: 2 + - uid: 15190 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21260 + rot: 3.141592653589793 rad + pos: -15.5,-41.5 + parent: 2 + - uid: 15191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,33.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21261 + rot: 3.141592653589793 rad + pos: -14.5,-41.5 + parent: 2 + - uid: 15192 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21262 + rot: 3.141592653589793 rad + pos: -13.5,-41.5 + parent: 2 + - uid: 15193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21263 + rot: 3.141592653589793 rad + pos: -12.5,-42.5 + parent: 2 + - uid: 15194 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21264 + rot: 3.141592653589793 rad + pos: -12.5,-43.5 + parent: 2 + - uid: 15195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21692 + rot: 3.141592653589793 rad + pos: -12.5,-44.5 + parent: 2 + - uid: 15196 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-5.5 - parent: 21627 - - type: AtmosDevice - joinedGrid: 21627 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 21693 + pos: -12.5,-45.5 + parent: 2 + - uid: 15197 components: - type: Transform - pos: 0.5,-1.5 - parent: 21627 - - type: AtmosDevice - joinedGrid: 21627 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22313 + rot: 3.141592653589793 rad + pos: -12.5,-48.5 + parent: 2 + - uid: 15198 components: - type: Transform - pos: 56.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22470 + rot: 3.141592653589793 rad + pos: -12.5,-49.5 + parent: 2 + - uid: 15199 components: - type: Transform rot: 3.141592653589793 rad - pos: 43.5,-28.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22501 + pos: -12.5,-50.5 + parent: 2 + - uid: 15200 components: - type: Transform rot: 3.141592653589793 rad - pos: 48.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 22560 + pos: -11.5,-50.5 + parent: 2 + - uid: 15201 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24384 + rot: 3.141592653589793 rad + pos: -10.5,-50.5 + parent: 2 + - uid: 15202 components: - type: Transform rot: 3.141592653589793 rad - pos: -10.5,-26.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24385 + pos: -9.5,-50.5 + parent: 2 + - uid: 15203 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24386 + pos: -8.5,-50.5 + parent: 2 + - uid: 15204 components: - type: Transform rot: 3.141592653589793 rad - pos: -11.5,1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24387 + pos: -4.5,-50.5 + parent: 2 + - uid: 15205 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24388 + rot: 3.141592653589793 rad + pos: -3.5,-50.5 + parent: 2 + - uid: 15206 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24389 + pos: -2.5,-50.5 + parent: 2 + - uid: 15207 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24390 + rot: 3.141592653589793 rad + pos: -1.5,-50.5 + parent: 2 + - uid: 15208 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,6.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24391 + rot: 3.141592653589793 rad + pos: -0.5,-50.5 + parent: 2 + - uid: 15209 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24392 + rot: 3.141592653589793 rad + pos: 0.5,-50.5 + parent: 2 + - uid: 15210 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,2.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24393 + pos: 1.5,-50.5 + parent: 2 + - uid: 15211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24394 + rot: 3.141592653589793 rad + pos: 5.5,-50.5 + parent: 2 + - uid: 15212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,10.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24395 + rot: 3.141592653589793 rad + pos: 6.5,-50.5 + parent: 2 + - uid: 15213 components: - type: Transform - pos: -20.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24396 + rot: 3.141592653589793 rad + pos: 7.5,-50.5 + parent: 2 + - uid: 15214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,15.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24397 + rot: 3.141592653589793 rad + pos: 7.5,-47.5 + parent: 2 + - uid: 15215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,6.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24398 + rot: 3.141592653589793 rad + pos: 7.5,-46.5 + parent: 2 + - uid: 15216 components: - type: Transform - pos: -10.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24399 + rot: 3.141592653589793 rad + pos: 7.5,-45.5 + parent: 2 + - uid: 15217 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,4.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24400 + pos: 7.5,-44.5 + parent: 2 + - uid: 15218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,14.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24401 + rot: 3.141592653589793 rad + pos: 7.5,-43.5 + parent: 2 + - uid: 15219 components: - type: Transform - pos: -3.5,24.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24402 + rot: 3.141592653589793 rad + pos: 7.5,-42.5 + parent: 2 + - uid: 15220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24403 + rot: 3.141592653589793 rad + pos: 7.5,-38.5 + parent: 2 + - uid: 15221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,6.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24404 + rot: 3.141592653589793 rad + pos: 7.5,-35.5 + parent: 2 + - uid: 15222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24405 + rot: 3.141592653589793 rad + pos: 7.5,-37.5 + parent: 2 + - uid: 15223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' - - uid: 24406 + rot: 3.141592653589793 rad + pos: 7.5,-36.5 + parent: 2 + - uid: 15224 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,5.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#FF0000FF' -- proto: GasVolumePump - entities: - - uid: 229 + pos: 11.5,-33.5 + parent: 2 + - uid: 15225 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1577 + pos: 12.5,-33.5 + parent: 2 + - uid: 15226 components: - - type: MetaData - name: насос в канистру 1 - type: Transform rot: 3.141592653589793 rad - pos: -94.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1578 + pos: 13.5,-33.5 + parent: 2 + - uid: 15227 components: - - type: MetaData - name: насос в канистру 2 - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1579 + pos: 13.5,-32.5 + parent: 2 + - uid: 15228 components: - - type: MetaData - name: насос в канистру 3 - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 1915 + pos: 13.5,-31.5 + parent: 2 + - uid: 15229 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-41.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2383 + pos: 13.5,-30.5 + parent: 2 + - uid: 15230 components: - - type: MetaData - name: выход камеры - type: Transform rot: 3.141592653589793 rad - pos: -79.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#FF9900FF' - - uid: 8896 + pos: 13.5,-29.5 + parent: 2 + - uid: 15231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8897 + rot: 3.141592653589793 rad + pos: 13.5,-28.5 + parent: 2 + - uid: 15232 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9610 + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 2 + - uid: 15233 components: - type: Transform - pos: -93.5,20.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 9636 + rot: 3.141592653589793 rad + pos: 13.5,-25.5 + parent: 2 + - uid: 15234 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 10866 + rot: 3.141592653589793 rad + pos: 13.5,-24.5 + parent: 2 + - uid: 15235 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#D3FC03FF' - - uid: 15389 + rot: 3.141592653589793 rad + pos: 13.5,-23.5 + parent: 2 + - uid: 15236 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24407 + rot: 3.141592653589793 rad + pos: 13.5,-22.5 + parent: 2 + - uid: 15237 components: - type: Transform - pos: -18.5,-14.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#0000FFFF' - - uid: 24408 + rot: 3.141592653589793 rad + pos: 13.5,-21.5 + parent: 2 + - uid: 15238 components: - type: Transform rot: 3.141592653589793 rad - pos: -18.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#990000FF' - - uid: 24409 + pos: 18.5,-20.5 + parent: 2 + - uid: 15239 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24410 + pos: 19.5,-20.5 + parent: 2 + - uid: 15240 components: - type: Transform - pos: -15.5,-11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' - - uid: 24411 + rot: 3.141592653589793 rad + pos: 20.5,-20.5 + parent: 2 + - uid: 15241 components: - type: Transform - pos: -14.5,-11.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - type: AtmosPipeColor - color: '#17E8E2FF' -- proto: Gateway - entities: - - uid: 14107 + rot: 3.141592653589793 rad + pos: 21.5,-20.5 + parent: 2 + - uid: 15242 components: - type: Transform - pos: -29.5,49.5 - parent: 89 - - type: Gateway - enabled: True -- proto: Gauze - entities: - - uid: 20820 + rot: 3.141592653589793 rad + pos: 22.5,-20.5 + parent: 2 + - uid: 15243 components: - type: Transform - pos: -1.6229911,15.447899 - parent: 89 -- proto: GeneratorBasic15kW - entities: - - uid: 24412 + rot: 3.141592653589793 rad + pos: -98.5,19.5 + parent: 2 + - uid: 15244 components: - type: Transform - pos: -6.5,-17.5 - parent: 22565 -- proto: GeneratorRTGDamaged - entities: - - uid: 25863 + pos: 33.5,40.5 + parent: 2 + - uid: 15245 components: - type: Transform - pos: -125.5,4.5 - parent: 89 - - uid: 25864 + pos: -12.5,25.5 + parent: 2 + - uid: 15246 components: - type: Transform - pos: -127.5,3.5 - parent: 89 -- proto: GeneratorWallmountAPU - entities: - - uid: 14563 + pos: 25.5,33.5 + parent: 2 + - uid: 15247 components: - type: Transform - pos: -29.5,51.5 - parent: 89 - - uid: 14564 + pos: 23.5,44.5 + parent: 2 + - uid: 15248 components: - type: Transform - pos: -28.5,51.5 - parent: 89 - - uid: 21694 + pos: 24.5,44.5 + parent: 2 + - uid: 15249 components: - type: Transform - pos: 2.5,-1.5 - parent: 21627 - - uid: 21695 + pos: 25.5,44.5 + parent: 2 + - uid: 15250 components: - type: Transform - pos: -1.5,-1.5 - parent: 21627 - - uid: 21696 + pos: 23.5,33.5 + parent: 2 + - uid: 15251 components: - type: Transform - pos: -0.5,-3.5 - parent: 21627 - - uid: 25528 + pos: 33.5,37.5 + parent: 2 + - uid: 15252 components: - type: Transform - pos: 2.5,-10.5 - parent: 18153 - - type: PowerSupplier - supplyRate: 9000 - - uid: 25529 + pos: 33.5,38.5 + parent: 2 + - uid: 15253 components: - type: Transform - pos: 1.5,-10.5 - parent: 18153 -- proto: GeneratorWallmountBasic - entities: - - uid: 24413 + pos: 33.5,39.5 + parent: 2 + - uid: 15254 components: - type: Transform - pos: -6.5,-15.5 - parent: 22565 - - type: PowerSupplier - supplyRampRate: 1000 - supplyRampTolerance: 1000 - supplyRate: 20000 -- proto: Girder - entities: - - uid: 14566 + pos: 33.5,36.5 + parent: 2 + - uid: 15255 components: - type: Transform - pos: -17.5,16.5 - parent: 89 - - uid: 17636 + pos: 33.5,41.5 + parent: 2 + - uid: 15256 components: - type: Transform - pos: -15.5,23.5 - parent: 89 -- proto: GlowstickYellow - entities: - - uid: 10232 + pos: 28.5,44.5 + parent: 2 + - uid: 15257 components: - type: Transform - pos: -27.695927,23.49133 - parent: 89 - - uid: 10234 + pos: 28.5,45.5 + parent: 2 + - uid: 15258 components: - type: Transform - pos: -27.305302,23.52258 - parent: 89 - - uid: 17654 + pos: 28.5,46.5 + parent: 2 + - uid: 15259 components: - type: Transform - pos: -27.480957,23.532402 - parent: 89 - - uid: 17655 + pos: 26.5,47.5 + parent: 2 + - uid: 15260 components: - type: Transform - pos: -27.168457,23.469902 - parent: 89 -- proto: GravityGenerator - entities: - - uid: 19572 + pos: 25.5,47.5 + parent: 2 + - uid: 15261 components: - type: Transform - pos: -113.5,-18.5 - parent: 89 -- proto: GravityGeneratorMini - entities: - - uid: 21697 + pos: 24.5,47.5 + parent: 2 + - uid: 15262 components: - type: Transform - pos: 1.5,-0.5 - parent: 21627 - - type: Visibility - layer: 15 - - uid: 24414 + pos: 23.5,47.5 + parent: 2 + - uid: 15263 components: - type: Transform - pos: -12.5,7.5 - parent: 22565 - - uid: 25530 + pos: 22.5,47.5 + parent: 2 + - uid: 15264 components: - type: Transform - pos: 5.5,-11.5 - parent: 18153 -- proto: Grille - entities: - - uid: 28 + pos: 20.5,46.5 + parent: 2 + - uid: 15265 components: - type: Transform - pos: -8.5,-6.5 - parent: 89 - - uid: 104 + pos: 20.5,45.5 + parent: 2 + - uid: 15266 components: - type: Transform - pos: -38.5,-17.5 - parent: 89 - - uid: 126 + pos: 20.5,44.5 + parent: 2 + - uid: 15267 components: - type: Transform - pos: 8.5,36.5 - parent: 89 - - uid: 137 + pos: 17.5,42.5 + parent: 2 + - uid: 15268 components: - type: Transform - pos: 11.5,37.5 - parent: 89 - - uid: 253 + pos: 18.5,42.5 + parent: 2 + - uid: 15269 components: - type: Transform - pos: -7.5,-42.5 - parent: 89 - - uid: 268 + rot: 1.5707963267948966 rad + pos: 10.5,47.5 + parent: 2 + - uid: 15270 components: - type: Transform - pos: -103.5,22.5 - parent: 89 - - uid: 383 + rot: 1.5707963267948966 rad + pos: 38.5,27.5 + parent: 2 + - uid: 15271 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,26.5 - parent: 89 - - uid: 406 + pos: -111.5,28.5 + parent: 2 + - uid: 15272 components: - type: Transform - pos: -103.5,-6.5 - parent: 89 - - uid: 407 + pos: -105.5,28.5 + parent: 2 + - uid: 15273 components: - type: Transform - pos: -102.5,-6.5 - parent: 89 - - uid: 418 + rot: 3.141592653589793 rad + pos: -116.5,26.5 + parent: 2 + - uid: 15274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,5.5 - parent: 89 - - uid: 419 + pos: -118.5,25.5 + parent: 2 + - uid: 15275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,6.5 - parent: 89 - - uid: 420 + rot: 3.141592653589793 rad + pos: 51.5,25.5 + parent: 2 + - uid: 15276 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,7.5 - parent: 89 - - uid: 421 + rot: 3.141592653589793 rad + pos: 37.5,32.5 + parent: 2 + - uid: 15277 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,8.5 - parent: 89 - - uid: 422 + rot: 3.141592653589793 rad + pos: 45.5,27.5 + parent: 2 + - uid: 15278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,2.5 - parent: 89 - - uid: 423 + rot: 3.141592653589793 rad + pos: 50.5,25.5 + parent: 2 + - uid: 15279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,1.5 - parent: 89 - - uid: 424 + rot: 3.141592653589793 rad + pos: 47.5,27.5 + parent: 2 + - uid: 15280 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,0.5 - parent: 89 - - uid: 425 + rot: 3.141592653589793 rad + pos: 43.5,27.5 + parent: 2 + - uid: 15281 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,3.5 - parent: 89 - - uid: 442 + pos: 35.5,36.5 + parent: 2 + - uid: 15282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,10.5 - parent: 89 - - uid: 443 + pos: 15.5,-26.5 + parent: 2 + - uid: 15283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,11.5 - parent: 89 - - uid: 444 + pos: 16.5,-26.5 + parent: 2 + - uid: 15284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,12.5 - parent: 89 - - uid: 445 + pos: 17.5,-26.5 + parent: 2 + - uid: 15285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,13.5 - parent: 89 - - uid: 446 + pos: 17.5,-25.5 + parent: 2 + - uid: 15286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,14.5 - parent: 89 - - uid: 447 + pos: 17.5,-24.5 + parent: 2 + - uid: 15287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,14.5 - parent: 89 - - uid: 448 + pos: 17.5,-23.5 + parent: 2 + - uid: 15288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,14.5 - parent: 89 - - uid: 449 + pos: 19.5,-23.5 + parent: 2 + - uid: 15289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,14.5 - parent: 89 - - uid: 450 + pos: 20.5,-23.5 + parent: 2 + - uid: 15290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,16.5 - parent: 89 - - uid: 451 + pos: 20.5,-22.5 + parent: 2 + - uid: 15291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,16.5 - parent: 89 - - uid: 452 + rot: 1.5707963267948966 rad + pos: 48.5,21.5 + parent: 2 + - uid: 15292 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,16.5 - parent: 89 - - uid: 453 + rot: 1.5707963267948966 rad + pos: 47.5,21.5 + parent: 2 + - uid: 15293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,16.5 - parent: 89 - - uid: 454 + pos: 49.5,18.5 + parent: 2 + - uid: 15294 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,16.5 - parent: 89 - - uid: 455 + pos: 49.5,17.5 + parent: 2 + - uid: 15295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,16.5 - parent: 89 - - uid: 456 + rot: 3.141592653589793 rad + pos: 55.5,25.5 + parent: 2 + - uid: 15296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,16.5 - parent: 89 - - uid: 457 + rot: 1.5707963267948966 rad + pos: 11.5,47.5 + parent: 2 + - uid: 15297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,16.5 - parent: 89 - - uid: 469 + rot: 1.5707963267948966 rad + pos: 12.5,47.5 + parent: 2 + - uid: 15298 components: - type: Transform - pos: 12.5,41.5 - parent: 89 - - uid: 476 + rot: 1.5707963267948966 rad + pos: 15.5,46.5 + parent: 2 + - uid: 15299 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-20.5 - parent: 89 - - uid: 493 + rot: 1.5707963267948966 rad + pos: 16.5,45.5 + parent: 2 + - uid: 15300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 89 - - uid: 495 + pos: 53.5,-38.5 + parent: 2 + - uid: 15301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 89 - - uid: 496 + pos: 38.5,-38.5 + parent: 2 + - uid: 15302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,3.5 - parent: 89 - - uid: 497 + pos: 55.5,-37.5 + parent: 2 + - uid: 15303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,3.5 - parent: 89 - - uid: 498 + pos: 51.5,-38.5 + parent: 2 + - uid: 15304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,3.5 - parent: 89 - - uid: 615 + pos: 52.5,-38.5 + parent: 2 + - uid: 15305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-12.5 - parent: 89 - - uid: 617 + pos: 49.5,-38.5 + parent: 2 + - uid: 15306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-12.5 - parent: 89 - - uid: 619 + pos: 50.5,-38.5 + parent: 2 + - uid: 15307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-12.5 - parent: 89 - - uid: 621 + pos: 44.5,-38.5 + parent: 2 + - uid: 15308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-12.5 - parent: 89 - - uid: 628 + pos: 48.5,-38.5 + parent: 2 + - uid: 15309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-19.5 - parent: 89 - - uid: 645 + pos: 42.5,-38.5 + parent: 2 + - uid: 15310 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-20.5 - parent: 89 - - uid: 646 + pos: 43.5,-38.5 + parent: 2 + - uid: 15311 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-20.5 - parent: 89 - - uid: 647 + pos: 40.5,-38.5 + parent: 2 + - uid: 15312 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-20.5 - parent: 89 - - uid: 648 + pos: 39.5,-38.5 + parent: 2 + - uid: 15313 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-20.5 - parent: 89 - - uid: 649 + pos: 55.5,-38.5 + parent: 2 + - uid: 15314 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-20.5 - parent: 89 - - uid: 650 + pos: 46.5,-38.5 + parent: 2 + - uid: 15315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-20.5 - parent: 89 - - uid: 651 + pos: 45.5,-38.5 + parent: 2 + - uid: 15316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 652 + pos: 38.5,-37.5 + parent: 2 + - uid: 15317 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-20.5 - parent: 89 - - uid: 653 + pos: 53.5,-37.5 + parent: 2 + - uid: 15318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-20.5 - parent: 89 - - uid: 654 + pos: 41.5,-38.5 + parent: 2 + - uid: 15319 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-20.5 - parent: 89 - - uid: 660 + pos: 38.5,-36.5 + parent: 2 + - uid: 15320 components: - type: Transform - pos: -109.5,-20.5 - parent: 89 - - uid: 661 + pos: 37.5,-35.5 + parent: 2 + - uid: 15321 components: - type: Transform - pos: -108.5,-20.5 - parent: 89 - - uid: 662 + pos: 36.5,-34.5 + parent: 2 + - uid: 15322 components: - type: Transform - pos: -107.5,-20.5 - parent: 89 - - uid: 666 + pos: 36.5,-33.5 + parent: 2 + - uid: 15323 components: - type: Transform - pos: -106.5,-15.5 - parent: 89 - - uid: 667 + pos: 36.5,-32.5 + parent: 2 + - uid: 15324 components: - type: Transform - pos: -106.5,-14.5 - parent: 89 - - uid: 837 + pos: 36.5,-31.5 + parent: 2 + - uid: 15325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-14.5 - parent: 89 - - uid: 849 + pos: 37.5,-31.5 + parent: 2 + - uid: 15326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-17.5 - parent: 89 - - uid: 851 + pos: 37.5,-30.5 + parent: 2 + - uid: 15327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-15.5 - parent: 89 - - uid: 856 + pos: 37.5,-29.5 + parent: 2 + - uid: 15328 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-16.5 - parent: 89 - - uid: 863 + pos: 56.5,-38.5 + parent: 2 + - uid: 15329 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-18.5 - parent: 89 - - uid: 869 + pos: 57.5,-38.5 + parent: 2 + - uid: 15330 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-22.5 - parent: 89 - - uid: 874 + pos: 58.5,-38.5 + parent: 2 + - uid: 15331 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-22.5 - parent: 89 - - uid: 898 + pos: 59.5,-37.5 + parent: 2 + - uid: 15332 components: - type: Transform - pos: -101.5,-6.5 - parent: 89 - - uid: 899 + pos: 60.5,-37.5 + parent: 2 + - uid: 15333 components: - type: Transform - pos: -100.5,-6.5 - parent: 89 - - uid: 900 + pos: 61.5,-37.5 + parent: 2 + - uid: 15334 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-10.5 - parent: 89 - - uid: 901 + pos: 62.5,-37.5 + parent: 2 + - uid: 15335 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-9.5 - parent: 89 - - uid: 902 + pos: 62.5,-36.5 + parent: 2 + - uid: 15336 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-8.5 - parent: 89 - - uid: 904 + pos: 62.5,-35.5 + parent: 2 + - uid: 15337 components: - type: Transform - pos: -106.5,7.5 - parent: 89 - - uid: 905 + pos: 62.5,-34.5 + parent: 2 + - uid: 15338 components: - type: Transform - pos: -106.5,8.5 - parent: 89 - - uid: 906 + pos: 62.5,-33.5 + parent: 2 + - uid: 15339 components: - type: Transform - pos: -106.5,9.5 - parent: 89 - - uid: 907 + pos: 62.5,-32.5 + parent: 2 + - uid: 15340 components: - type: Transform - pos: -105.5,6.5 - parent: 89 - - uid: 908 + pos: 62.5,-31.5 + parent: 2 + - uid: 15341 components: - type: Transform - pos: -104.5,6.5 - parent: 89 - - uid: 909 + pos: 62.5,-30.5 + parent: 2 + - uid: 15342 components: - type: Transform - pos: -103.5,6.5 - parent: 89 - - uid: 925 + pos: 62.5,-29.5 + parent: 2 + - uid: 15343 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 89 - - uid: 962 + pos: 63.5,-28.5 + parent: 2 + - uid: 15344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-6.5 - parent: 89 - - uid: 1005 + pos: 63.5,-27.5 + parent: 2 + - uid: 15345 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 89 - - uid: 1046 + pos: 63.5,-26.5 + parent: 2 + - uid: 15346 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-1.5 - parent: 89 - - uid: 1051 + pos: 63.5,-25.5 + parent: 2 + - uid: 15347 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 89 - - uid: 1147 + pos: 63.5,-24.5 + parent: 2 + - uid: 15348 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-22.5 - parent: 89 - - uid: 1196 + pos: 63.5,-23.5 + parent: 2 + - uid: 15349 components: - type: Transform - pos: -12.5,10.5 - parent: 89 - - uid: 1210 + pos: 63.5,-22.5 + parent: 2 + - uid: 15350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,32.5 - parent: 89 - - uid: 1259 + pos: 62.5,-22.5 + parent: 2 + - uid: 15351 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-22.5 - parent: 89 - - uid: 1291 + pos: 62.5,-21.5 + parent: 2 + - uid: 15352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 89 - - uid: 1318 + pos: 62.5,-20.5 + parent: 2 + - uid: 15353 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-22.5 - parent: 89 - - uid: 1319 + pos: 62.5,-19.5 + parent: 2 + - uid: 15354 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-22.5 - parent: 89 - - uid: 1320 + pos: 61.5,-18.5 + parent: 2 + - uid: 15355 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-22.5 - parent: 89 - - uid: 1443 + pos: 60.5,-18.5 + parent: 2 + - uid: 15356 components: - type: Transform - pos: -8.5,11.5 - parent: 89 - - uid: 1479 + pos: 60.5,-17.5 + parent: 2 + - uid: 15357 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,-17.5 - parent: 89 - - uid: 1603 + pos: 60.5,-16.5 + parent: 2 + - uid: 15358 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-4.5 - parent: 89 - - uid: 1799 + pos: 59.5,-16.5 + parent: 2 + - uid: 15359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,9.5 - parent: 89 - - uid: 1859 + pos: 42.5,-37.5 + parent: 2 + - uid: 15360 components: - type: Transform - pos: -9.5,10.5 - parent: 89 - - uid: 1910 + pos: 42.5,-36.5 + parent: 2 + - uid: 15361 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 89 - - uid: 2029 + pos: 42.5,-35.5 + parent: 2 + - uid: 15362 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-22.5 - parent: 89 - - uid: 2030 + pos: 57.5,-37.5 + parent: 2 + - uid: 15363 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-22.5 - parent: 89 - - uid: 2031 + pos: 57.5,-36.5 + parent: 2 + - uid: 15364 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-22.5 - parent: 89 - - uid: 2191 + pos: 57.5,-35.5 + parent: 2 + - uid: 15365 components: - type: Transform - pos: 29.5,9.5 - parent: 89 - - uid: 2193 + pos: 50.5,-35.5 + parent: 2 + - uid: 15366 components: - type: Transform - pos: 29.5,5.5 - parent: 89 - - uid: 2197 + pos: 50.5,-37.5 + parent: 2 + - uid: 15367 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 89 - - uid: 2201 + pos: 59.5,-22.5 + parent: 2 + - uid: 15368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 89 - - uid: 2220 + pos: 48.5,-36.5 + parent: 2 + - uid: 15369 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-25.5 - parent: 89 - - uid: 2271 + pos: 48.5,-35.5 + parent: 2 + - uid: 15370 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-24.5 - parent: 89 - - uid: 2272 + pos: 60.5,-32.5 + parent: 2 + - uid: 15371 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-23.5 - parent: 89 - - uid: 2275 + pos: 61.5,-32.5 + parent: 2 + - uid: 15372 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,-22.5 - parent: 89 - - uid: 2276 + pos: 60.5,-22.5 + parent: 2 + - uid: 15373 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,-22.5 - parent: 89 - - uid: 2277 + pos: 61.5,-22.5 + parent: 2 + - uid: 15374 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-22.5 - parent: 89 - - uid: 2283 + rot: 3.141592653589793 rad + pos: -123.5,20.5 + parent: 2 + - uid: 15375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-26.5 - parent: 89 - - uid: 2284 + rot: 3.141592653589793 rad + pos: -14.5,-25.5 + parent: 2 + - uid: 15376 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-26.5 - parent: 89 - - uid: 2285 + rot: 3.141592653589793 rad + pos: -34.5,-17.5 + parent: 2 + - uid: 15377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-26.5 - parent: 89 - - uid: 2306 + pos: -76.5,22.5 + parent: 2 + - uid: 15378 components: - type: Transform - pos: 34.5,9.5 - parent: 89 - - uid: 2307 + pos: -74.5,22.5 + parent: 2 + - uid: 15379 components: - type: Transform - pos: 36.5,9.5 - parent: 89 - - uid: 2331 + pos: -50.5,-5.5 + parent: 2 + - uid: 15380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-20.5 - parent: 89 - - uid: 2334 + pos: -114.5,-21.5 + parent: 2 + - uid: 15381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-20.5 - parent: 89 - - uid: 2335 + rot: 3.141592653589793 rad + pos: -98.5,28.5 + parent: 2 + - uid: 15382 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-20.5 - parent: 89 - - uid: 2336 + rot: 3.141592653589793 rad + pos: -97.5,28.5 + parent: 2 + - uid: 15383 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-20.5 - parent: 89 - - uid: 2361 + pos: -108.5,30.5 + parent: 2 + - uid: 15384 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-20.5 - parent: 89 - - uid: 2392 + pos: -110.5,-16.5 + parent: 2 + - uid: 15385 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-16.5 - parent: 89 - - uid: 2532 + pos: -117.5,28.5 + parent: 2 + - uid: 15386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-20.5 - parent: 89 - - uid: 2545 + rot: 3.141592653589793 rad + pos: -96.5,28.5 + parent: 2 + - uid: 15387 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,-20.5 - parent: 89 - - uid: 2546 + pos: -110.5,-18.5 + parent: 2 + - uid: 15388 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-20.5 - parent: 89 - - uid: 2547 + pos: -110.5,-17.5 + parent: 2 + - uid: 15389 + components: + - type: Transform + pos: -52.5,-19.5 + parent: 2 + - uid: 15390 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,-20.5 - parent: 89 - - uid: 2787 + pos: -116.5,-13.5 + parent: 2 + - uid: 15391 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-3.5 - parent: 89 - - uid: 2873 + pos: -80.5,-27.5 + parent: 2 + - uid: 15392 components: - type: Transform - pos: 1.5,-11.5 - parent: 89 - - uid: 2874 + pos: -95.5,-11.5 + parent: 2 + - uid: 15393 components: - type: Transform - pos: 4.5,-9.5 - parent: 89 - - uid: 2875 + pos: -84.5,-20.5 + parent: 2 + - uid: 15394 components: - type: Transform - pos: 6.5,-10.5 - parent: 89 - - uid: 2876 + pos: -85.5,-20.5 + parent: 2 + - uid: 15395 components: - type: Transform - pos: 6.5,-12.5 - parent: 89 - - uid: 2877 + pos: -110.5,-24.5 + parent: 2 + - uid: 15396 components: - type: Transform - pos: 8.5,-7.5 - parent: 89 - - uid: 2878 + rot: 3.141592653589793 rad + pos: -102.5,-20.5 + parent: 2 + - uid: 15397 components: - type: Transform - pos: 7.5,-7.5 - parent: 89 - - uid: 2879 + rot: -1.5707963267948966 rad + pos: -133.5,0.5 + parent: 2 + - uid: 15398 components: - type: Transform - pos: 12.5,-4.5 - parent: 89 - - uid: 2880 + pos: -53.5,-20.5 + parent: 2 + - uid: 15399 components: - type: Transform - pos: 13.5,-4.5 - parent: 89 - - uid: 2881 + pos: -120.5,22.5 + parent: 2 + - uid: 15400 components: - type: Transform - pos: 14.5,-4.5 - parent: 89 - - uid: 2882 + pos: -114.5,-11.5 + parent: 2 + - uid: 15401 components: - type: Transform - pos: 15.5,-4.5 - parent: 89 - - uid: 2883 + pos: -116.5,-12.5 + parent: 2 + - uid: 15402 components: - type: Transform - pos: 18.5,-11.5 - parent: 89 - - uid: 2884 + pos: -121.5,-14.5 + parent: 2 + - uid: 15403 components: - type: Transform - pos: 21.5,-11.5 - parent: 89 - - uid: 2885 + rot: -1.5707963267948966 rad + pos: -134.5,0.5 + parent: 2 + - uid: 15404 components: - type: Transform - pos: 24.5,-11.5 - parent: 89 - - uid: 2886 + rot: 3.141592653589793 rad + pos: -51.5,-18.5 + parent: 2 + - uid: 15405 components: - type: Transform - pos: 27.5,-11.5 - parent: 89 - - uid: 2889 + pos: -67.5,48.5 + parent: 2 + - uid: 15406 components: - type: Transform - pos: 25.5,-7.5 - parent: 89 - - uid: 2890 + pos: -63.5,48.5 + parent: 2 + - uid: 15407 components: - type: Transform - pos: 28.5,-7.5 - parent: 89 - - uid: 2891 + rot: 1.5707963267948966 rad + pos: -61.5,-20.5 + parent: 2 + - uid: 15408 components: - type: Transform - pos: 29.5,-5.5 - parent: 89 - - uid: 2892 + rot: 1.5707963267948966 rad + pos: -61.5,-19.5 + parent: 2 + - uid: 15409 components: - type: Transform - pos: 29.5,-6.5 - parent: 89 - - uid: 2893 + pos: -86.5,-27.5 + parent: 2 + - uid: 15410 components: - type: Transform - pos: 32.5,-4.5 - parent: 89 - - uid: 2894 + pos: -93.5,-28.5 + parent: 2 + - uid: 15411 components: - type: Transform - pos: 33.5,-4.5 - parent: 89 - - uid: 2895 + pos: -95.5,-28.5 + parent: 2 + - uid: 15412 components: - type: Transform - pos: 34.5,-4.5 - parent: 89 - - uid: 2896 + pos: -97.5,-27.5 + parent: 2 + - uid: 15413 components: - type: Transform - pos: 35.5,-4.5 - parent: 89 - - uid: 3116 + pos: -102.5,-27.5 + parent: 2 + - uid: 15414 components: - type: Transform - pos: 12.5,-16.5 - parent: 89 - - uid: 3147 + pos: -103.5,-23.5 + parent: 2 + - uid: 15415 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-5.5 - parent: 89 - - uid: 3148 + pos: -103.5,-24.5 + parent: 2 + - uid: 15416 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-5.5 - parent: 89 - - uid: 3149 + pos: -114.5,-23.5 + parent: 2 + - uid: 15417 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 89 - - uid: 3152 + pos: -121.5,-18.5 + parent: 2 + - uid: 15418 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-7.5 - parent: 89 - - uid: 3153 + pos: -125.5,-15.5 + parent: 2 + - uid: 15419 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 - parent: 89 - - uid: 3154 + pos: -125.5,-14.5 + parent: 2 + - uid: 15420 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 89 - - uid: 3155 + pos: -135.5,-0.5 + parent: 2 + - uid: 15421 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 89 - - uid: 3156 + pos: -96.5,-11.5 + parent: 2 + - uid: 15422 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 89 - - uid: 3157 + pos: -90.5,-10.5 + parent: 2 + - uid: 15423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 89 - - uid: 3158 + pos: -91.5,-10.5 + parent: 2 + - uid: 15424 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 89 - - uid: 3244 + pos: -135.5,-7.5 + parent: 2 + - uid: 15425 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,8.5 - parent: 89 - - uid: 3245 + pos: -135.5,-6.5 + parent: 2 + - uid: 15426 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,9.5 - parent: 89 - - uid: 3247 + pos: -135.5,-1.5 + parent: 2 + - uid: 15427 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,11.5 - parent: 89 - - uid: 3248 + pos: -135.5,-8.5 + parent: 2 + - uid: 15428 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,12.5 - parent: 89 - - uid: 3249 + rot: -1.5707963267948966 rad + pos: -59.5,6.5 + parent: 2 + - uid: 15429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,13.5 - parent: 89 - - uid: 3250 + rot: -1.5707963267948966 rad + pos: -89.5,43.5 + parent: 2 + - uid: 15430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,14.5 - parent: 89 - - uid: 3306 + rot: -1.5707963267948966 rad + pos: -89.5,42.5 + parent: 2 + - uid: 15431 components: - type: Transform - pos: 40.5,34.5 - parent: 89 - - uid: 3317 + rot: -1.5707963267948966 rad + pos: -89.5,40.5 + parent: 2 + - uid: 15432 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,1.5 - parent: 89 - - uid: 3505 + rot: -1.5707963267948966 rad + pos: -89.5,39.5 + parent: 2 + - uid: 15433 components: - type: Transform - pos: -13.5,-10.5 - parent: 89 - - uid: 3542 + rot: -1.5707963267948966 rad + pos: -89.5,37.5 + parent: 2 + - uid: 15434 components: - type: Transform - pos: -7.5,-6.5 - parent: 89 - - uid: 3861 + rot: -1.5707963267948966 rad + pos: -89.5,36.5 + parent: 2 + - uid: 15435 components: - type: Transform - pos: -4.5,-6.5 - parent: 89 - - uid: 3862 + rot: -1.5707963267948966 rad + pos: -89.5,34.5 + parent: 2 + - uid: 15436 components: - type: Transform - pos: -4.5,-7.5 - parent: 89 - - uid: 3863 + rot: -1.5707963267948966 rad + pos: -89.5,33.5 + parent: 2 + - uid: 15437 components: - type: Transform - pos: -4.5,-8.5 - parent: 89 - - uid: 3864 + pos: -89.5,28.5 + parent: 2 + - uid: 15438 components: - type: Transform - pos: -4.5,-9.5 - parent: 89 - - uid: 4000 + pos: -47.5,31.5 + parent: 2 + - uid: 15439 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,12.5 - parent: 89 - - uid: 4035 + pos: -48.5,29.5 + parent: 2 + - uid: 15440 components: - type: Transform - pos: 21.5,-19.5 - parent: 89 - - uid: 4287 + pos: -49.5,22.5 + parent: 2 + - uid: 15441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 89 - - uid: 4320 + pos: -51.5,24.5 + parent: 2 + - uid: 15442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 89 - - uid: 4445 + pos: -89.5,-9.5 + parent: 2 + - uid: 15443 components: - type: Transform - pos: -48.5,-5.5 - parent: 89 - - uid: 4487 + pos: -89.5,-8.5 + parent: 2 + - uid: 15444 components: - type: Transform - pos: -66.5,-18.5 - parent: 89 - - uid: 4488 + pos: -89.5,-7.5 + parent: 2 + - uid: 15445 components: - type: Transform - pos: -67.5,-18.5 - parent: 89 - - uid: 4491 + rot: 3.141592653589793 rad + pos: 56.5,25.5 + parent: 2 + - uid: 15446 components: - type: Transform - pos: -71.5,-18.5 - parent: 89 - - uid: 4493 + rot: 3.141592653589793 rad + pos: 49.5,27.5 + parent: 2 + - uid: 15447 components: - type: Transform - pos: -72.5,-18.5 - parent: 89 - - uid: 4494 + rot: 3.141592653589793 rad + pos: 37.5,31.5 + parent: 2 + - uid: 15448 components: - type: Transform - pos: -68.5,-11.5 - parent: 89 - - uid: 4524 + rot: 3.141592653589793 rad + pos: 54.5,25.5 + parent: 2 + - uid: 15449 components: - type: Transform - pos: 9.5,-22.5 - parent: 89 - - uid: 4534 + rot: 3.141592653589793 rad + pos: 52.5,25.5 + parent: 2 + - uid: 15450 components: - type: Transform - pos: -62.5,2.5 - parent: 89 - - uid: 4535 + pos: -120.5,27.5 + parent: 2 + - uid: 15451 components: - type: Transform - pos: -63.5,2.5 - parent: 89 - - uid: 4538 + pos: -120.5,28.5 + parent: 2 + - uid: 15452 components: - type: Transform - pos: -66.5,2.5 - parent: 89 - - uid: 4540 + pos: -119.5,28.5 + parent: 2 + - uid: 15453 components: - type: Transform - pos: -65.5,2.5 - parent: 89 - - uid: 4707 + rot: 3.141592653589793 rad + pos: -74.5,-23.5 + parent: 2 + - uid: 15454 components: - type: Transform - pos: -48.5,-18.5 - parent: 89 - - uid: 4708 + rot: 3.141592653589793 rad + pos: -94.5,-29.5 + parent: 2 + - uid: 15455 components: - type: Transform - pos: -49.5,-16.5 - parent: 89 - - uid: 4709 + rot: 3.141592653589793 rad + pos: -94.5,-28.5 + parent: 2 + - uid: 15456 components: - type: Transform - pos: -68.5,-12.5 - parent: 89 - - uid: 4715 + rot: 3.141592653589793 rad + pos: -109.5,-25.5 + parent: 2 + - uid: 15457 components: - type: Transform - pos: -60.5,2.5 - parent: 89 - - uid: 4716 + rot: 3.141592653589793 rad + pos: -107.5,-25.5 + parent: 2 + - uid: 15458 components: - type: Transform - pos: -59.5,2.5 - parent: 89 - - uid: 4732 + rot: 3.141592653589793 rad + pos: -111.5,-24.5 + parent: 2 + - uid: 15459 components: - type: Transform - pos: -38.5,-0.5 - parent: 89 - - uid: 4782 + rot: 3.141592653589793 rad + pos: -35.5,-21.5 + parent: 2 + - uid: 15460 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,28.5 - parent: 89 - - uid: 4803 + rot: 3.141592653589793 rad + pos: -37.5,-22.5 + parent: 2 + - uid: 15461 components: - type: Transform - pos: -18.5,0.5 - parent: 89 - - uid: 4805 + rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 15462 components: - type: Transform - pos: -18.5,-9.5 - parent: 89 - - uid: 4806 + rot: 3.141592653589793 rad + pos: -35.5,-22.5 + parent: 2 + - uid: 15463 components: - type: Transform - pos: -17.5,-9.5 - parent: 89 - - uid: 4807 + rot: 3.141592653589793 rad + pos: -37.5,-21.5 + parent: 2 + - uid: 15464 components: - type: Transform - pos: -21.5,-9.5 - parent: 89 - - uid: 4808 + rot: 3.141592653589793 rad + pos: -39.5,-21.5 + parent: 2 + - uid: 15465 components: - type: Transform - pos: -24.5,-9.5 - parent: 89 - - uid: 4809 + rot: 3.141592653589793 rad + pos: -30.5,-22.5 + parent: 2 + - uid: 15466 components: - type: Transform - pos: -25.5,-9.5 - parent: 89 - - uid: 4810 + rot: 3.141592653589793 rad + pos: -31.5,-21.5 + parent: 2 + - uid: 15467 components: - type: Transform - pos: -26.5,-9.5 - parent: 89 - - uid: 4870 + rot: 3.141592653589793 rad + pos: -39.5,-22.5 + parent: 2 + - uid: 15468 components: - type: Transform - pos: -48.5,-14.5 - parent: 89 - - uid: 4894 + rot: 3.141592653589793 rad + pos: -33.5,-21.5 + parent: 2 + - uid: 15469 components: - type: Transform - pos: -68.5,-16.5 - parent: 89 - - uid: 5049 + rot: 3.141592653589793 rad + pos: -33.5,-22.5 + parent: 2 + - uid: 15470 components: - type: Transform - pos: -64.5,-3.5 - parent: 89 - - uid: 5050 + rot: 3.141592653589793 rad + pos: -30.5,-26.5 + parent: 2 + - uid: 15471 components: - type: Transform - pos: -61.5,-3.5 - parent: 89 - - uid: 5192 + rot: 3.141592653589793 rad + pos: -30.5,-30.5 + parent: 2 + - uid: 15472 components: - type: Transform - pos: -57.5,-8.5 - parent: 89 - - uid: 5193 + rot: 3.141592653589793 rad + pos: -16.5,-41.5 + parent: 2 + - uid: 15473 components: - type: Transform - pos: -57.5,-9.5 - parent: 89 - - uid: 5272 + rot: 3.141592653589793 rad + pos: -19.5,-31.5 + parent: 2 + - uid: 15474 components: - type: Transform - pos: -51.5,2.5 - parent: 89 - - uid: 5273 + rot: 3.141592653589793 rad + pos: -21.5,-31.5 + parent: 2 + - uid: 15475 components: - type: Transform - pos: -48.5,2.5 - parent: 89 - - uid: 5314 + rot: 3.141592653589793 rad + pos: -17.5,-33.5 + parent: 2 + - uid: 15476 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,22.5 - parent: 89 - - uid: 5405 + pos: -16.5,-33.5 + parent: 2 + - uid: 15477 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-42.5 - parent: 89 - - uid: 5420 + pos: -17.5,-39.5 + parent: 2 + - uid: 15478 components: - type: Transform - pos: 2.5,-42.5 - parent: 89 - - uid: 6026 + rot: 3.141592653589793 rad + pos: -16.5,-39.5 + parent: 2 + - uid: 15479 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,30.5 - parent: 89 - - uid: 6055 + pos: -16.5,-40.5 + parent: 2 + - uid: 15480 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 89 - - uid: 6061 + rot: 3.141592653589793 rad + pos: -29.5,-31.5 + parent: 2 + - uid: 15481 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 89 - - uid: 6062 + rot: 3.141592653589793 rad + pos: -29.5,-32.5 + parent: 2 + - uid: 15482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 89 - - uid: 6063 + rot: 3.141592653589793 rad + pos: -21.5,-32.5 + parent: 2 + - uid: 15483 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 89 - - uid: 6069 + rot: 3.141592653589793 rad + pos: -68.5,-21.5 + parent: 2 + - uid: 15484 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,6.5 - parent: 89 - - uid: 6070 + rot: 3.141592653589793 rad + pos: -75.5,-23.5 + parent: 2 + - uid: 15485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,6.5 - parent: 89 - - uid: 6071 + rot: 3.141592653589793 rad + pos: -80.5,-28.5 + parent: 2 + - uid: 15486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 89 - - uid: 6072 + rot: 3.141592653589793 rad + pos: -78.5,-29.5 + parent: 2 + - uid: 15487 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,6.5 - parent: 89 - - uid: 6076 + rot: 3.141592653589793 rad + pos: -78.5,-28.5 + parent: 2 + - uid: 15488 components: - type: Transform - pos: -43.5,2.5 - parent: 89 - - uid: 6134 + rot: 3.141592653589793 rad + pos: -98.5,-28.5 + parent: 2 + - uid: 15489 components: - type: Transform rot: 3.141592653589793 rad - pos: -36.5,22.5 - parent: 89 - - uid: 6184 + pos: -100.5,-28.5 + parent: 2 + - uid: 15490 components: - type: Transform - pos: -21.5,6.5 - parent: 89 - - uid: 6197 + rot: 3.141592653589793 rad + pos: -98.5,-29.5 + parent: 2 + - uid: 15491 components: - type: Transform - pos: -19.5,4.5 - parent: 89 - - uid: 6198 + rot: 3.141592653589793 rad + pos: -96.5,-29.5 + parent: 2 + - uid: 15492 components: - type: Transform - pos: -18.5,4.5 - parent: 89 - - uid: 6199 + rot: 3.141592653589793 rad + pos: -129.5,-16.5 + parent: 2 + - uid: 15493 components: - type: Transform - pos: -17.5,4.5 - parent: 89 - - uid: 6200 + rot: 3.141592653589793 rad + pos: -96.5,-28.5 + parent: 2 + - uid: 15494 components: - type: Transform - pos: -16.5,4.5 - parent: 89 - - uid: 6201 + rot: 3.141592653589793 rad + pos: -92.5,-28.5 + parent: 2 + - uid: 15495 components: - type: Transform - pos: -15.5,6.5 - parent: 89 - - uid: 6202 + rot: 3.141592653589793 rad + pos: -92.5,-29.5 + parent: 2 + - uid: 15496 components: - type: Transform - pos: -15.5,8.5 - parent: 89 - - uid: 6203 + rot: 3.141592653589793 rad + pos: -90.5,-28.5 + parent: 2 + - uid: 15497 components: - type: Transform - pos: -15.5,9.5 - parent: 89 - - uid: 6212 + rot: 3.141592653589793 rad + pos: -90.5,-29.5 + parent: 2 + - uid: 15498 components: - type: Transform - pos: -21.5,5.5 - parent: 89 - - uid: 6297 + rot: 3.141592653589793 rad + pos: -91.5,-28.5 + parent: 2 + - uid: 15499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 89 - - uid: 6298 + rot: 3.141592653589793 rad + pos: -88.5,-28.5 + parent: 2 + - uid: 15500 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 89 - - uid: 6319 + rot: 3.141592653589793 rad + pos: -88.5,-29.5 + parent: 2 + - uid: 15501 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,4.5 - parent: 89 - - uid: 6342 + rot: 3.141592653589793 rad + pos: -88.5,-27.5 + parent: 2 + - uid: 15502 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,15.5 - parent: 89 - - uid: 6456 + pos: -86.5,-29.5 + parent: 2 + - uid: 15503 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,29.5 - parent: 89 - - uid: 6467 + rot: 3.141592653589793 rad + pos: -86.5,-28.5 + parent: 2 + - uid: 15504 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,29.5 - parent: 89 - - uid: 6469 + rot: 3.141592653589793 rad + pos: -75.5,-21.5 + parent: 2 + - uid: 15505 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,36.5 - parent: 89 - - uid: 6472 + rot: 3.141592653589793 rad + pos: -74.5,-21.5 + parent: 2 + - uid: 15506 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,31.5 - parent: 89 - - uid: 6474 + rot: 3.141592653589793 rad + pos: -103.5,-25.5 + parent: 2 + - uid: 15507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,31.5 - parent: 89 - - uid: 6546 + rot: 3.141592653589793 rad + pos: -102.5,-28.5 + parent: 2 + - uid: 15508 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,36.5 - parent: 89 - - uid: 6625 + rot: 3.141592653589793 rad + pos: -100.5,-29.5 + parent: 2 + - uid: 15509 components: - type: Transform - pos: -45.5,2.5 - parent: 89 - - uid: 6629 + rot: 3.141592653589793 rad + pos: -104.5,-27.5 + parent: 2 + - uid: 15510 components: - type: Transform - pos: -42.5,0.5 - parent: 89 - - uid: 6790 + rot: 3.141592653589793 rad + pos: -104.5,-25.5 + parent: 2 + - uid: 15511 components: - type: Transform - pos: -42.5,-1.5 - parent: 89 - - uid: 7070 + rot: 3.141592653589793 rad + pos: -103.5,-27.5 + parent: 2 + - uid: 15512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,42.5 - parent: 89 - - uid: 7072 + rot: 3.141592653589793 rad + pos: -76.5,-28.5 + parent: 2 + - uid: 15513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,43.5 - parent: 89 - - uid: 7168 + rot: 3.141592653589793 rad + pos: -131.5,-16.5 + parent: 2 + - uid: 15514 components: - type: Transform - pos: -147.5,5.5 - parent: 89 - - uid: 7250 + rot: 3.141592653589793 rad + pos: -76.5,-29.5 + parent: 2 + - uid: 15515 components: - type: Transform - pos: -90.5,3.5 - parent: 89 - - uid: 7251 + rot: 3.141592653589793 rad + pos: -76.5,-29.5 + parent: 2 + - uid: 15516 components: - type: Transform - pos: -90.5,4.5 - parent: 89 - - uid: 7279 + rot: 3.141592653589793 rad + pos: -75.5,-27.5 + parent: 2 + - uid: 15517 components: - type: Transform - pos: -83.5,14.5 - parent: 89 - - uid: 7284 + rot: 3.141592653589793 rad + pos: -74.5,-27.5 + parent: 2 + - uid: 15518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 - parent: 89 - - uid: 7285 + rot: 3.141592653589793 rad + pos: -74.5,-25.5 + parent: 2 + - uid: 15519 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-14.5 - parent: 89 - - uid: 7375 + rot: 3.141592653589793 rad + pos: -75.5,-25.5 + parent: 2 + - uid: 15520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-11.5 - parent: 89 - - uid: 7377 + rot: 3.141592653589793 rad + pos: -82.5,-29.5 + parent: 2 + - uid: 15521 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-12.5 - parent: 89 - - uid: 7378 + rot: 3.141592653589793 rad + pos: -82.5,-28.5 + parent: 2 + - uid: 15522 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-12.5 - parent: 89 - - uid: 7480 + rot: 3.141592653589793 rad + pos: -84.5,-29.5 + parent: 2 + - uid: 15523 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-11.5 - parent: 89 - - uid: 7502 + rot: 3.141592653589793 rad + pos: -84.5,-28.5 + parent: 2 + - uid: 15524 components: - type: Transform - pos: -106.5,22.5 - parent: 89 - - uid: 7507 + rot: 3.141592653589793 rad + pos: -102.5,-29.5 + parent: 2 + - uid: 15525 components: - type: Transform - pos: -111.5,22.5 - parent: 89 - - uid: 7556 + rot: 3.141592653589793 rad + pos: -119.5,-22.5 + parent: 2 + - uid: 15526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,2.5 - parent: 89 - - uid: 7584 + rot: 3.141592653589793 rad + pos: -117.5,-23.5 + parent: 2 + - uid: 15527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 89 - - uid: 7632 + rot: 3.141592653589793 rad + pos: -111.5,-25.5 + parent: 2 + - uid: 15528 components: - type: Transform - pos: -110.5,22.5 - parent: 89 - - uid: 7678 + rot: 3.141592653589793 rad + pos: -113.5,-23.5 + parent: 2 + - uid: 15529 components: - type: Transform - pos: -100.5,28.5 - parent: 89 - - uid: 7731 + rot: 3.141592653589793 rad + pos: -115.5,-24.5 + parent: 2 + - uid: 15530 components: - type: Transform - pos: -105.5,22.5 - parent: 89 - - uid: 7735 + rot: 3.141592653589793 rad + pos: -117.5,-24.5 + parent: 2 + - uid: 15531 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,11.5 - parent: 89 - - uid: 7775 + pos: -119.5,-23.5 + parent: 2 + - uid: 15532 components: - type: Transform - pos: -2.5,47.5 - parent: 89 - - uid: 7776 + rot: 3.141592653589793 rad + pos: -115.5,-23.5 + parent: 2 + - uid: 15533 components: - type: Transform - pos: -3.5,47.5 - parent: 89 - - uid: 7777 + rot: 3.141592653589793 rad + pos: -113.5,-24.5 + parent: 2 + - uid: 15534 components: - type: Transform - pos: -4.5,47.5 - parent: 89 - - uid: 7778 + rot: 3.141592653589793 rad + pos: -66.5,-21.5 + parent: 2 + - uid: 15535 components: - type: Transform - pos: -0.5,47.5 - parent: 89 - - uid: 7779 + rot: 3.141592653589793 rad + pos: -66.5,-20.5 + parent: 2 + - uid: 15536 components: - type: Transform - pos: 0.5,47.5 - parent: 89 - - uid: 7780 + rot: 3.141592653589793 rad + pos: -70.5,-21.5 + parent: 2 + - uid: 15537 components: - type: Transform - pos: -7.5,47.5 - parent: 89 - - uid: 7781 + rot: 3.141592653589793 rad + pos: -70.5,-20.5 + parent: 2 + - uid: 15538 components: - type: Transform - pos: -6.5,47.5 - parent: 89 - - uid: 7947 + rot: 3.141592653589793 rad + pos: -68.5,-20.5 + parent: 2 + - uid: 15539 components: - type: Transform - pos: -58.5,20.5 - parent: 89 - - uid: 7977 + rot: 3.141592653589793 rad + pos: -72.5,-21.5 + parent: 2 + - uid: 15540 components: - type: Transform - pos: -70.5,12.5 - parent: 89 - - uid: 7978 + rot: 3.141592653589793 rad + pos: -72.5,-20.5 + parent: 2 + - uid: 15541 components: - type: Transform - pos: -70.5,13.5 - parent: 89 - - uid: 7979 + rot: 3.141592653589793 rad + pos: -30.5,-24.5 + parent: 2 + - uid: 15542 components: - type: Transform - pos: -70.5,14.5 - parent: 89 - - uid: 7980 + rot: 3.141592653589793 rad + pos: -31.5,-24.5 + parent: 2 + - uid: 15543 components: - type: Transform - pos: -64.5,12.5 - parent: 89 - - uid: 7981 + rot: 3.141592653589793 rad + pos: -31.5,-26.5 + parent: 2 + - uid: 15544 components: - type: Transform - pos: -63.5,12.5 - parent: 89 - - uid: 7982 + rot: 3.141592653589793 rad + pos: -30.5,-28.5 + parent: 2 + - uid: 15545 components: - type: Transform - pos: -62.5,12.5 - parent: 89 - - uid: 7983 + rot: 3.141592653589793 rad + pos: -31.5,-28.5 + parent: 2 + - uid: 15546 components: - type: Transform - pos: -61.5,10.5 - parent: 89 - - uid: 7984 + rot: 3.141592653589793 rad + pos: -31.5,-30.5 + parent: 2 + - uid: 15547 components: - type: Transform - pos: -61.5,9.5 - parent: 89 - - uid: 7985 + rot: 3.141592653589793 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 15548 components: - type: Transform - pos: -61.5,7.5 - parent: 89 - - uid: 7986 + rot: 3.141592653589793 rad + pos: -23.5,-31.5 + parent: 2 + - uid: 15549 components: - type: Transform - pos: -53.5,15.5 - parent: 89 - - uid: 7987 + rot: 3.141592653589793 rad + pos: -23.5,-32.5 + parent: 2 + - uid: 15550 components: - type: Transform - pos: -50.5,14.5 - parent: 89 - - uid: 7988 + rot: 3.141592653589793 rad + pos: -25.5,-31.5 + parent: 2 + - uid: 15551 components: - type: Transform - pos: -50.5,13.5 - parent: 89 - - uid: 8029 + rot: 3.141592653589793 rad + pos: -25.5,-32.5 + parent: 2 + - uid: 15552 components: - type: Transform - pos: -1.5,36.5 - parent: 89 - - uid: 8116 + rot: 3.141592653589793 rad + pos: -27.5,-32.5 + parent: 2 + - uid: 15553 components: - type: Transform - pos: -37.5,12.5 - parent: 89 - - uid: 8165 + rot: 3.141592653589793 rad + pos: -27.5,-31.5 + parent: 2 + - uid: 15554 components: - type: Transform - pos: -9.5,36.5 - parent: 89 - - uid: 8199 + rot: 3.141592653589793 rad + pos: -16.5,-37.5 + parent: 2 + - uid: 15555 components: - type: Transform - pos: -15.5,25.5 - parent: 89 - - uid: 8346 + rot: 3.141592653589793 rad + pos: -17.5,-37.5 + parent: 2 + - uid: 15556 components: - type: Transform - pos: -58.5,22.5 - parent: 89 - - uid: 8347 + rot: 3.141592653589793 rad + pos: -17.5,-35.5 + parent: 2 + - uid: 15557 components: - type: Transform - pos: -59.5,23.5 - parent: 89 - - uid: 8348 + rot: 3.141592653589793 rad + pos: -16.5,-35.5 + parent: 2 + - uid: 15558 components: - type: Transform - pos: -61.5,23.5 - parent: 89 - - uid: 8349 + rot: 3.141592653589793 rad + pos: -107.5,-24.5 + parent: 2 + - uid: 15559 components: - type: Transform - pos: -61.5,23.5 - parent: 89 - - uid: 8384 + rot: 3.141592653589793 rad + pos: -123.5,-21.5 + parent: 2 + - uid: 15560 components: - type: Transform - pos: -11.5,-15.5 - parent: 89 - - uid: 8385 + rot: 3.141592653589793 rad + pos: -122.5,-21.5 + parent: 2 + - uid: 15561 components: - type: Transform - pos: -9.5,-15.5 - parent: 89 - - uid: 8386 + rot: 3.141592653589793 rad + pos: -121.5,-22.5 + parent: 2 + - uid: 15562 components: - type: Transform - pos: -10.5,-15.5 - parent: 89 - - uid: 8408 + rot: 3.141592653589793 rad + pos: -121.5,-23.5 + parent: 2 + - uid: 15563 components: - type: Transform - pos: -104.5,22.5 - parent: 89 - - uid: 8475 + rot: 3.141592653589793 rad + pos: -123.5,-19.5 + parent: 2 + - uid: 15564 components: - type: Transform rot: 3.141592653589793 rad - pos: 33.5,23.5 - parent: 89 - - uid: 8512 + pos: -122.5,-19.5 + parent: 2 + - uid: 15565 components: - type: Transform - pos: -126.5,12.5 - parent: 89 - - uid: 8513 + rot: 3.141592653589793 rad + pos: -80.5,-29.5 + parent: 2 + - uid: 15566 components: - type: Transform - pos: -128.5,3.5 - parent: 89 - - uid: 8514 + rot: 3.141592653589793 rad + pos: -133.5,-16.5 + parent: 2 + - uid: 15567 components: - type: Transform - pos: -128.5,4.5 - parent: 89 - - uid: 8577 + rot: 3.141592653589793 rad + pos: -31.5,-22.5 + parent: 2 + - uid: 15568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,1.5 - parent: 89 - - uid: 8582 + pos: -120.5,16.5 + parent: 2 + - uid: 15569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,6.5 - parent: 89 - - uid: 8600 + pos: 31.5,23.5 + parent: 2 + - uid: 23827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,3.5 - parent: 89 - - uid: 8661 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 23711 + - uid: 23828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,5.5 - parent: 89 - - uid: 8664 + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 23711 + - uid: 23829 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,2.5 - parent: 89 - - uid: 8681 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 23711 + - uid: 23830 components: - type: Transform - pos: -123.5,-14.5 - parent: 89 - - uid: 8683 + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 23711 + - uid: 23831 components: - type: Transform - pos: -124.5,-13.5 - parent: 89 - - uid: 8684 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 23711 + - uid: 23832 components: - type: Transform - pos: -124.5,-12.5 - parent: 89 - - uid: 8723 + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 23711 + - uid: 23833 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,8.5 - parent: 89 - - uid: 8724 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 23711 + - uid: 23834 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,7.5 - parent: 89 - - uid: 8725 + pos: 6.5,-7.5 + parent: 23711 + - uid: 23835 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,6.5 - parent: 89 - - uid: 8726 + pos: 0.5,-5.5 + parent: 23711 + - uid: 23836 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,5.5 - parent: 89 - - uid: 8727 + pos: 0.5,-6.5 + parent: 23711 + - uid: 23837 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,4.5 - parent: 89 - - uid: 8728 + pos: 6.5,-8.5 + parent: 23711 + - uid: 23838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,3.5 - parent: 89 - - uid: 8729 + rot: -1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 23711 + - uid: 23839 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,2.5 - parent: 89 - - uid: 8730 + rot: -1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 23711 + - uid: 23840 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,1.5 - parent: 89 - - uid: 8731 + pos: 6.5,-5.5 + parent: 23711 + - uid: 23841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,0.5 - parent: 89 - - uid: 8732 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-0.5 - parent: 89 - - uid: 8854 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23843 components: - type: Transform - pos: -136.5,-9.5 - parent: 89 - - uid: 8862 + pos: 3.5,-9.5 + parent: 23711 + - uid: 23844 components: - type: Transform - pos: -13.5,25.5 - parent: 89 - - uid: 8888 + pos: 3.5,-4.5 + parent: 23711 + - uid: 24165 components: - type: Transform - pos: -136.5,-6.5 - parent: 89 - - uid: 8889 + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 23919 + - uid: 24166 components: - type: Transform - pos: -136.5,-7.5 - parent: 89 - - uid: 8890 + rot: -1.5707963267948966 rad + pos: 5.5,7.5 + parent: 23919 + - uid: 24167 components: - type: Transform - pos: -136.5,-8.5 - parent: 89 - - uid: 8892 + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 23919 + - uid: 24168 components: - type: Transform - pos: -136.5,-5.5 - parent: 89 - - uid: 8907 + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 23919 + - uid: 24169 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-10.5 - parent: 89 - - uid: 8916 + pos: 4.5,7.5 + parent: 23919 + - uid: 24170 components: - type: Transform - pos: -14.5,25.5 - parent: 89 - - uid: 9031 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 23919 + - uid: 24408 components: - type: Transform - pos: -90.5,2.5 - parent: 89 - - uid: 9032 + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 24340 + - uid: 24409 components: - type: Transform - pos: -90.5,1.5 - parent: 89 - - uid: 9146 + rot: 1.5707963267948966 rad + pos: -1.5,-2.5 + parent: 24340 + - uid: 24410 components: - type: Transform - pos: -33.5,6.5 - parent: 89 - - uid: 9147 + pos: 0.5,1.5 + parent: 24340 + - uid: 26323 components: - type: Transform - pos: -38.5,5.5 - parent: 89 - - uid: 9148 + rot: 3.141592653589793 rad + pos: -6.5,-21.5 + parent: 24450 + - uid: 26324 components: - type: Transform - pos: -38.5,2.5 - parent: 89 - - uid: 9149 + rot: 1.5707963267948966 rad + pos: -11.5,11.5 + parent: 24450 + - uid: 26325 components: - type: Transform - pos: -29.5,6.5 - parent: 89 - - uid: 9150 + rot: 1.5707963267948966 rad + pos: -8.5,11.5 + parent: 24450 + - uid: 26326 components: - type: Transform - pos: -28.5,5.5 - parent: 89 - - uid: 9151 + pos: -25.5,-1.5 + parent: 24450 + - uid: 26327 components: - type: Transform - pos: -28.5,2.5 - parent: 89 - - uid: 9165 + rot: 1.5707963267948966 rad + pos: -9.5,11.5 + parent: 24450 + - uid: 26328 components: - type: Transform - pos: -106.5,30.5 - parent: 89 - - uid: 9166 + pos: -23.5,-1.5 + parent: 24450 + - uid: 26329 components: - type: Transform - pos: -108.5,30.5 - parent: 89 - - uid: 9167 + pos: -24.5,19.5 + parent: 24450 + - uid: 26330 components: - type: Transform - pos: -110.5,30.5 - parent: 89 - - uid: 9168 + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 24450 + - uid: 26331 components: - type: Transform - pos: -112.5,30.5 - parent: 89 - - uid: 9169 + rot: 3.141592653589793 rad + pos: 4.5,2.5 + parent: 24450 + - uid: 26332 components: - type: Transform - pos: -114.5,29.5 - parent: 89 - - uid: 9170 + rot: 3.141592653589793 rad + pos: -28.5,1.5 + parent: 24450 + - uid: 26333 components: - type: Transform - pos: -115.5,27.5 - parent: 89 - - uid: 9171 + rot: 1.5707963267948966 rad + pos: -7.5,11.5 + parent: 24450 + - uid: 26334 components: - type: Transform - pos: -115.5,25.5 - parent: 89 - - uid: 9174 + rot: 1.5707963267948966 rad + pos: -36.5,5.5 + parent: 24450 + - uid: 26335 components: - type: Transform rot: 1.5707963267948966 rad - pos: -101.5,32.5 - parent: 89 - - uid: 9175 + pos: -15.5,6.5 + parent: 24450 + - uid: 26336 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -102.5,32.5 - parent: 89 - - uid: 9257 + rot: -1.5707963267948966 rad + pos: -19.5,-2.5 + parent: 24450 + - uid: 26337 components: - type: Transform rot: 1.5707963267948966 rad - pos: 20.5,4.5 - parent: 89 - - uid: 9518 + pos: -8.5,5.5 + parent: 24450 + - uid: 26338 components: - type: Transform - pos: -146.5,5.5 - parent: 89 - - uid: 9678 + rot: -1.5707963267948966 rad + pos: -4.5,-2.5 + parent: 24450 + - uid: 26339 components: - type: Transform rot: 1.5707963267948966 rad - pos: -49.5,41.5 - parent: 89 - - uid: 9693 + pos: -8.5,6.5 + parent: 24450 + - uid: 26340 components: - type: Transform - pos: -49.5,48.5 - parent: 89 - - uid: 9694 + pos: -19.5,19.5 + parent: 24450 + - uid: 26341 components: - type: Transform - pos: -51.5,49.5 - parent: 89 - - uid: 9705 + rot: 3.141592653589793 rad + pos: -28.5,2.5 + parent: 24450 + - uid: 26342 components: - type: Transform - pos: -68.5,33.5 - parent: 89 - - uid: 9706 + pos: -12.5,-27.5 + parent: 24450 + - uid: 26343 components: - type: Transform - pos: -68.5,35.5 - parent: 89 - - uid: 9707 + pos: 0.5,19.5 + parent: 24450 + - uid: 26344 components: - type: Transform - pos: -68.5,34.5 - parent: 89 - - uid: 9771 + pos: -4.5,19.5 + parent: 24450 + - uid: 26345 components: - type: Transform - pos: -60.5,23.5 - parent: 89 - - uid: 9781 + pos: 1.5,-1.5 + parent: 24450 + - uid: 26346 components: - type: Transform - pos: -65.5,47.5 - parent: 89 - - uid: 9782 + rot: 1.5707963267948966 rad + pos: -12.5,11.5 + parent: 24450 + - uid: 26347 components: - type: Transform - pos: -65.5,48.5 - parent: 89 - - uid: 9783 + rot: 1.5707963267948966 rad + pos: -14.5,11.5 + parent: 24450 + - uid: 26348 components: - type: Transform - pos: -68.5,42.5 - parent: 89 - - uid: 9784 + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 24450 + - uid: 26349 components: - type: Transform - pos: -68.5,43.5 - parent: 89 - - uid: 9785 + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 24450 + - uid: 26350 components: - type: Transform - pos: -68.5,44.5 - parent: 89 - - uid: 9786 + rot: 3.141592653589793 rad + pos: -28.5,3.5 + parent: 24450 + - uid: 26351 components: - type: Transform - pos: -62.5,46.5 - parent: 89 - - uid: 9787 + rot: 1.5707963267948966 rad + pos: -12.5,8.5 + parent: 24450 + - uid: 26352 components: - type: Transform - pos: -61.5,46.5 - parent: 89 - - uid: 9788 + rot: -1.5707963267948966 rad + pos: 12.5,12.5 + parent: 24450 + - uid: 26353 components: - type: Transform - pos: -60.5,46.5 - parent: 89 - - uid: 9791 + pos: -14.5,-27.5 + parent: 24450 + - uid: 26354 components: - type: Transform - pos: -57.5,47.5 - parent: 89 - - uid: 9792 + pos: -24.5,-1.5 + parent: 24450 + - uid: 26355 components: - type: Transform - pos: -57.5,48.5 - parent: 89 - - uid: 9793 + pos: 0.5,-1.5 + parent: 24450 + - uid: 26356 components: - type: Transform - pos: -53.5,45.5 - parent: 89 - - uid: 9794 + pos: -0.5,-1.5 + parent: 24450 + - uid: 26357 components: - type: Transform - pos: -53.5,43.5 - parent: 89 - - uid: 9796 + rot: 3.141592653589793 rad + pos: 4.5,1.5 + parent: 24450 + - uid: 26358 components: - type: Transform - pos: -53.5,41.5 - parent: 89 - - uid: 9797 + pos: -8.5,-24.5 + parent: 24450 + - uid: 26359 components: - type: Transform - pos: -53.5,39.5 - parent: 89 - - uid: 9801 + pos: -8.5,-23.5 + parent: 24450 + - uid: 26360 components: - type: Transform - pos: -60.5,27.5 - parent: 89 - - uid: 9802 + pos: -18.5,-24.5 + parent: 24450 + - uid: 26361 components: - type: Transform - pos: -59.5,27.5 - parent: 89 - - uid: 9803 + pos: -18.5,-23.5 + parent: 24450 + - uid: 26362 components: - type: Transform - pos: -58.5,27.5 - parent: 89 - - uid: 9804 + rot: 1.5707963267948966 rad + pos: -11.5,8.5 + parent: 24450 + - uid: 26363 components: - type: Transform - pos: -57.5,27.5 - parent: 89 - - uid: 9834 + rot: 1.5707963267948966 rad + pos: -15.5,5.5 + parent: 24450 + - uid: 26364 components: - type: Transform - pos: -53.5,49.5 - parent: 89 - - uid: 9854 + rot: 1.5707963267948966 rad + pos: -12.5,3.5 + parent: 24450 + - uid: 26365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,34.5 - parent: 89 - - uid: 9855 + rot: 1.5707963267948966 rad + pos: -11.5,3.5 + parent: 24450 + - uid: 26366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,31.5 - parent: 89 - - uid: 9856 + pos: -1.5,26.5 + parent: 24450 + - uid: 26367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -56.5,31.5 - parent: 89 - - uid: 9858 + pos: -2.5,26.5 + parent: 24450 + - uid: 26368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -69.5,38.5 - parent: 89 - - uid: 9886 + pos: -21.5,26.5 + parent: 24450 + - uid: 26369 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,13.5 - parent: 89 - - uid: 9898 + pos: -22.5,26.5 + parent: 24450 + - uid: 26370 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-26.5 + parent: 24450 + - uid: 26371 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-27.5 + parent: 24450 + - uid: 26372 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -7.5,-25.5 + parent: 24450 + - uid: 26373 components: - type: Transform rot: 3.141592653589793 rad - pos: -65.5,49.5 - parent: 89 - - uid: 9900 + pos: -7.5,-22.5 + parent: 24450 + - uid: 26374 components: - type: Transform rot: 3.141592653589793 rad - pos: -57.5,49.5 - parent: 89 - - uid: 9954 + pos: -7.5,-21.5 + parent: 24450 + - uid: 26375 components: - type: Transform - pos: -49.5,47.5 - parent: 89 - - uid: 10191 + rot: 3.141592653589793 rad + pos: -19.5,-22.5 + parent: 24450 + - uid: 26376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -74.5,2.5 - parent: 89 - - uid: 10192 + rot: 3.141592653589793 rad + pos: -19.5,-21.5 + parent: 24450 + - uid: 26377 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,2.5 - parent: 89 - - uid: 10193 + rot: 3.141592653589793 rad + pos: -19.5,-20.5 + parent: 24450 + - uid: 26378 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,2.5 - parent: 89 - - uid: 10194 + rot: 3.141592653589793 rad + pos: -19.5,-25.5 + parent: 24450 + - uid: 26379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-1.5 - parent: 89 - - uid: 10198 + rot: 3.141592653589793 rad + pos: -19.5,-26.5 + parent: 24450 + - uid: 26380 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-0.5 - parent: 89 - - uid: 10221 + rot: 3.141592653589793 rad + pos: -19.5,-27.5 + parent: 24450 + - uid: 26381 components: - type: Transform - pos: -75.5,2.5 - parent: 89 - - uid: 10273 + rot: 3.141592653589793 rad + pos: -20.5,-20.5 + parent: 24450 + - uid: 26382 components: - type: Transform - pos: -41.5,27.5 - parent: 89 - - uid: 10274 + rot: 3.141592653589793 rad + pos: -21.5,-19.5 + parent: 24450 + - uid: 26383 components: - type: Transform - pos: -41.5,30.5 - parent: 89 - - uid: 10275 + rot: 3.141592653589793 rad + pos: -22.5,-19.5 + parent: 24450 + - uid: 26384 components: - type: Transform - pos: -41.5,31.5 - parent: 89 - - uid: 10276 + rot: 3.141592653589793 rad + pos: -23.5,-18.5 + parent: 24450 + - uid: 26385 components: - type: Transform - pos: -41.5,32.5 - parent: 89 - - uid: 10399 + rot: 3.141592653589793 rad + pos: -24.5,-18.5 + parent: 24450 + - uid: 26386 components: - type: Transform - pos: -122.5,-14.5 - parent: 89 - - uid: 10416 + rot: 3.141592653589793 rad + pos: -25.5,-17.5 + parent: 24450 + - uid: 26387 components: - type: Transform - pos: -115.5,21.5 - parent: 89 - - uid: 10483 + rot: 3.141592653589793 rad + pos: -26.5,-16.5 + parent: 24450 + - uid: 26388 components: - type: Transform - pos: -148.5,5.5 - parent: 89 - - uid: 10487 + rot: 3.141592653589793 rad + pos: -26.5,-15.5 + parent: 24450 + - uid: 26389 components: - type: Transform - pos: -149.5,5.5 - parent: 89 - - uid: 10491 + rot: 3.141592653589793 rad + pos: -26.5,-14.5 + parent: 24450 + - uid: 26390 components: - type: Transform - pos: -150.5,5.5 - parent: 89 - - uid: 10492 + rot: 3.141592653589793 rad + pos: -5.5,-20.5 + parent: 24450 + - uid: 26391 components: - type: Transform - pos: -151.5,5.5 - parent: 89 - - uid: 10493 + rot: 3.141592653589793 rad + pos: -0.5,-15.5 + parent: 24450 + - uid: 26392 components: - type: Transform - pos: -152.5,5.5 - parent: 89 - - uid: 10494 + rot: 3.141592653589793 rad + pos: 0.5,-15.5 + parent: 24450 + - uid: 26393 components: - type: Transform - pos: -153.5,5.5 - parent: 89 - - uid: 10496 + rot: 3.141592653589793 rad + pos: 1.5,-15.5 + parent: 24450 + - uid: 26394 components: - type: Transform - pos: -154.5,5.5 - parent: 89 - - uid: 10538 + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 24450 + - uid: 26395 components: - type: Transform - pos: -85.5,18.5 - parent: 89 - - uid: 10541 + rot: 3.141592653589793 rad + pos: 1.5,-13.5 + parent: 24450 + - uid: 26396 components: - type: Transform - pos: -84.5,18.5 - parent: 89 - - uid: 10569 + rot: 3.141592653589793 rad + pos: 1.5,-12.5 + parent: 24450 + - uid: 26397 components: - type: Transform - pos: -86.5,42.5 - parent: 89 - - uid: 10570 + rot: 3.141592653589793 rad + pos: 6.5,13.5 + parent: 24450 + - uid: 26398 components: - type: Transform - pos: -86.5,43.5 - parent: 89 - - uid: 10571 + rot: -1.5707963267948966 rad + pos: 12.5,8.5 + parent: 24450 + - uid: 26399 components: - type: Transform - pos: -86.5,44.5 - parent: 89 - - uid: 10577 + rot: -1.5707963267948966 rad + pos: 12.5,9.5 + parent: 24450 + - uid: 26400 components: - type: Transform - pos: -82.5,42.5 - parent: 89 - - uid: 10578 + rot: -1.5707963267948966 rad + pos: 12.5,11.5 + parent: 24450 + - uid: 26401 components: - type: Transform - pos: -82.5,43.5 - parent: 89 - - uid: 10579 + pos: -8.5,-19.5 + parent: 24450 + - uid: 26402 components: - type: Transform - pos: -82.5,44.5 - parent: 89 - - uid: 10583 + rot: 1.5707963267948966 rad + pos: 12.5,6.5 + parent: 24450 + - uid: 26403 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,-16.5 - parent: 89 - - uid: 10584 + rot: 1.5707963267948966 rad + pos: -36.5,6.5 + parent: 24450 + - uid: 26404 components: - type: Transform - pos: -85.5,46.5 - parent: 89 - - uid: 10585 + rot: 1.5707963267948966 rad + pos: -36.5,8.5 + parent: 24450 + - uid: 26405 components: - type: Transform - pos: -81.5,38.5 - parent: 89 - - uid: 10587 + rot: 1.5707963267948966 rad + pos: -36.5,9.5 + parent: 24450 + - uid: 26406 components: - type: Transform - pos: -155.5,5.5 - parent: 89 - - uid: 10588 + rot: 1.5707963267948966 rad + pos: -36.5,11.5 + parent: 24450 + - uid: 26407 components: - type: Transform - pos: -82.5,33.5 - parent: 89 - - uid: 10589 + rot: 1.5707963267948966 rad + pos: -36.5,12.5 + parent: 24450 + - uid: 26408 components: - type: Transform - pos: -82.5,34.5 - parent: 89 - - uid: 10590 + rot: 1.5707963267948966 rad + pos: 12.5,5.5 + parent: 24450 + - uid: 26409 components: - type: Transform - pos: -82.5,35.5 - parent: 89 - - uid: 10591 + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 24450 + - uid: 26410 components: - type: Transform - pos: -86.5,38.5 - parent: 89 - - uid: 10592 + rot: 3.141592653589793 rad + pos: -30.5,13.5 + parent: 24450 + - uid: 26411 components: - type: Transform - pos: -87.5,38.5 - parent: 89 - - uid: 10593 + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 24450 + - uid: 26412 components: - type: Transform - pos: -88.5,38.5 - parent: 89 - - uid: 10594 + rot: -1.5707963267948966 rad + pos: -18.5,-2.5 + parent: 24450 + - uid: 26413 components: - type: Transform - pos: -89.5,38.5 - parent: 89 - - uid: 10595 + rot: -1.5707963267948966 rad + pos: -5.5,-2.5 + parent: 24450 + - uid: 26414 components: - type: Transform - pos: -85.5,48.5 - parent: 89 - - uid: 10596 + pos: -24.5,-14.5 + parent: 24450 + - uid: 26415 components: - type: Transform - pos: -83.5,48.5 - parent: 89 - - uid: 10597 + pos: -23.5,-15.5 + parent: 24450 + - uid: 26416 components: - type: Transform - pos: -83.5,46.5 - parent: 89 - - uid: 10630 + pos: -22.5,-16.5 + parent: 24450 + - uid: 26417 components: - type: Transform - pos: 12.5,9.5 - parent: 89 - - uid: 10635 + pos: -21.5,-17.5 + parent: 24450 + - uid: 26418 components: - type: Transform - pos: 12.5,5.5 - parent: 89 - - uid: 10636 + pos: -20.5,-18.5 + parent: 24450 + - uid: 26419 components: - type: Transform - pos: 12.5,6.5 - parent: 89 - - uid: 10647 + pos: -19.5,-19.5 + parent: 24450 + - uid: 26420 components: - type: Transform - pos: 12.5,8.5 - parent: 89 - - uid: 10653 + pos: -26.5,-13.5 + parent: 24450 + - uid: 26421 components: - type: Transform - pos: -8.5,9.5 - parent: 89 - - uid: 10655 + pos: -26.5,-12.5 + parent: 24450 + - uid: 26422 components: - type: Transform - pos: -8.5,6.5 - parent: 89 - - uid: 10679 + pos: -25.5,-13.5 + parent: 24450 + - uid: 26423 components: - type: Transform - pos: -8.5,-39.5 - parent: 89 - - uid: 10681 + pos: 1.5,-16.5 + parent: 24450 + - uid: 26424 components: - type: Transform - pos: -8.5,-40.5 - parent: 89 - - uid: 10682 + pos: 0.5,-17.5 + parent: 24450 + - uid: 26425 components: - type: Transform - pos: 3.5,-39.5 - parent: 89 - - uid: 10684 + pos: -0.5,-18.5 + parent: 24450 + - uid: 26426 components: - type: Transform - pos: 3.5,-40.5 - parent: 89 - - uid: 10746 + pos: -1.5,-19.5 + parent: 24450 + - uid: 26427 components: - type: Transform - pos: 3.5,-23.5 - parent: 89 - - uid: 10747 + pos: -2.5,-19.5 + parent: 24450 + - uid: 26428 components: - type: Transform - pos: 1.5,-23.5 - parent: 89 - - uid: 10748 + pos: -3.5,-19.5 + parent: 24450 + - uid: 26429 components: - type: Transform - pos: 1.5,-26.5 - parent: 89 - - uid: 10749 + pos: -0.5,-19.5 + parent: 24450 + - uid: 26430 components: - type: Transform - pos: 3.5,-26.5 - parent: 89 - - uid: 10750 + rot: -1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 24450 + - uid: 26431 components: - type: Transform - pos: 1.5,-32.5 - parent: 89 - - uid: 10751 + rot: -1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 24450 + - uid: 26432 components: - type: Transform - pos: 2.5,-32.5 - parent: 89 - - uid: 10752 + rot: -1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 24450 + - uid: 26433 components: - type: Transform - pos: 3.5,-32.5 - parent: 89 - - uid: 10753 + rot: -1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 24450 + - uid: 26434 components: - type: Transform - pos: 4.5,-32.5 - parent: 89 - - uid: 10755 + rot: -1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 24450 + - uid: 26435 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 89 - - uid: 10792 + rot: 1.5707963267948966 rad + pos: -31.5,13.5 + parent: 24450 + - uid: 27697 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,48.5 - parent: 89 - - uid: 10794 + pos: -11.5,-15.5 + parent: 27260 + - uid: 27698 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,48.5 - parent: 89 - - uid: 10812 + pos: -11.5,-14.5 + parent: 27260 + - uid: 27699 components: - type: Transform - pos: 21.5,16.5 - parent: 89 - - uid: 10813 + rot: 3.141592653589793 rad + pos: -11.5,-13.5 + parent: 27260 + - uid: 27700 components: - type: Transform - pos: 23.5,17.5 - parent: 89 - - uid: 10814 + rot: 3.141592653589793 rad + pos: -12.5,-13.5 + parent: 27260 + - uid: 27701 components: - type: Transform - pos: 23.5,18.5 - parent: 89 - - uid: 10815 + rot: 3.141592653589793 rad + pos: -12.5,-12.5 + parent: 27260 + - uid: 27702 components: - type: Transform - pos: 23.5,19.5 - parent: 89 - - uid: 10821 + rot: 3.141592653589793 rad + pos: 12.5,-15.5 + parent: 27260 + - uid: 27703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 89 - - uid: 10850 + rot: 3.141592653589793 rad + pos: -12.5,-11.5 + parent: 27260 + - uid: 27704 components: - type: Transform - pos: -120.5,22.5 - parent: 89 - - uid: 10851 + rot: 3.141592653589793 rad + pos: -12.5,-10.5 + parent: 27260 + - uid: 27705 components: - type: Transform - pos: -123.5,22.5 - parent: 89 - - uid: 10854 + rot: 3.141592653589793 rad + pos: -11.5,-10.5 + parent: 27260 + - uid: 27706 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 89 - - uid: 10856 + rot: 3.141592653589793 rad + pos: -11.5,-9.5 + parent: 27260 + - uid: 27707 components: - type: Transform - pos: -122.5,22.5 - parent: 89 - - uid: 10857 + rot: 3.141592653589793 rad + pos: -11.5,-8.5 + parent: 27260 + - uid: 27708 components: - type: Transform - pos: -121.5,22.5 - parent: 89 - - uid: 10911 + rot: 3.141592653589793 rad + pos: 12.5,-14.5 + parent: 27260 + - uid: 27709 components: - type: Transform rot: 3.141592653589793 rad - pos: -8.5,14.5 - parent: 89 - - uid: 10914 + pos: 12.5,-13.5 + parent: 27260 + - uid: 27710 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,15.5 - parent: 89 - - uid: 10930 + pos: 13.5,-13.5 + parent: 27260 + - uid: 27711 components: - type: Transform - pos: -156.5,5.5 - parent: 89 - - uid: 10938 + rot: 3.141592653589793 rad + pos: 13.5,-12.5 + parent: 27260 + - uid: 27712 components: - type: Transform - pos: -157.5,5.5 - parent: 89 - - uid: 10947 + rot: 3.141592653589793 rad + pos: 13.5,-11.5 + parent: 27260 + - uid: 27713 components: - type: Transform - pos: -158.5,5.5 - parent: 89 - - uid: 10948 + rot: 3.141592653589793 rad + pos: 13.5,-10.5 + parent: 27260 + - uid: 27714 components: - type: Transform - pos: -159.5,5.5 - parent: 89 - - uid: 10951 + rot: 3.141592653589793 rad + pos: 12.5,-10.5 + parent: 27260 + - uid: 27715 components: - type: Transform - pos: -160.5,5.5 - parent: 89 - - uid: 10955 + rot: 3.141592653589793 rad + pos: 12.5,-9.5 + parent: 27260 + - uid: 27716 components: - type: Transform - pos: -160.5,4.5 - parent: 89 - - uid: 10959 + rot: 3.141592653589793 rad + pos: 12.5,-8.5 + parent: 27260 + - uid: 27717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,6.5 - parent: 89 - - uid: 10960 + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 27260 + - uid: 27718 components: - type: Transform - pos: -160.5,3.5 - parent: 89 - - uid: 10974 + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 27260 + - uid: 27719 components: - type: Transform - pos: -160.5,2.5 - parent: 89 - - uid: 10978 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 27260 + - uid: 27720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 89 - - uid: 11053 + rot: 3.141592653589793 rad + pos: -7.5,-5.5 + parent: 27260 + - uid: 27721 components: - type: Transform - pos: -160.5,1.5 - parent: 89 - - uid: 11054 + rot: 3.141592653589793 rad + pos: -7.5,-6.5 + parent: 27260 + - uid: 27722 components: - type: Transform - pos: -160.5,0.5 - parent: 89 - - uid: 11055 + rot: 3.141592653589793 rad + pos: -7.5,-7.5 + parent: 27260 + - uid: 27723 components: - type: Transform - pos: -160.5,-0.5 - parent: 89 - - uid: 11056 + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 27260 + - uid: 27724 components: - type: Transform - pos: -160.5,-1.5 - parent: 89 - - uid: 11058 + rot: 3.141592653589793 rad + pos: -7.5,-11.5 + parent: 27260 + - uid: 27725 components: - type: Transform - pos: -160.5,-2.5 - parent: 89 - - uid: 11069 + rot: 3.141592653589793 rad + pos: -7.5,-12.5 + parent: 27260 + - uid: 27726 components: - type: Transform - pos: -160.5,-3.5 - parent: 89 - - uid: 11072 + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 27260 + - uid: 27727 components: - type: Transform - pos: -160.5,-4.5 - parent: 89 - - uid: 11075 + rot: 3.141592653589793 rad + pos: -5.5,-15.5 + parent: 27260 + - uid: 27728 components: - type: Transform - pos: -160.5,-5.5 - parent: 89 - - uid: 11093 + rot: 3.141592653589793 rad + pos: -4.5,-15.5 + parent: 27260 + - uid: 27729 components: - type: Transform - pos: 6.5,38.5 - parent: 89 - - uid: 11094 + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 27260 + - uid: 27730 components: - type: Transform - pos: 12.5,35.5 - parent: 89 - - uid: 11153 + rot: 3.141592653589793 rad + pos: -0.5,-14.5 + parent: 27260 + - uid: 27731 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 89 - - uid: 11199 + rot: 3.141592653589793 rad + pos: 0.5,-14.5 + parent: 27260 + - uid: 27732 components: - type: Transform - pos: -160.5,-6.5 - parent: 89 - - uid: 11200 + rot: 3.141592653589793 rad + pos: 1.5,-14.5 + parent: 27260 + - uid: 27733 components: - type: Transform - pos: -160.5,-7.5 - parent: 89 - - uid: 11202 + rot: 3.141592653589793 rad + pos: 4.5,-15.5 + parent: 27260 + - uid: 27734 components: - type: Transform - pos: -160.5,-8.5 - parent: 89 - - uid: 11203 + rot: 3.141592653589793 rad + pos: 5.5,-15.5 + parent: 27260 + - uid: 27735 components: - type: Transform - pos: -160.5,-9.5 - parent: 89 - - uid: 11205 + rot: 3.141592653589793 rad + pos: 6.5,-15.5 + parent: 27260 + - uid: 27736 components: - type: Transform - pos: -160.5,-10.5 - parent: 89 - - uid: 11207 + rot: 3.141592653589793 rad + pos: 8.5,-13.5 + parent: 27260 + - uid: 27737 components: - type: Transform - pos: -160.5,-11.5 - parent: 89 - - uid: 11208 + rot: 3.141592653589793 rad + pos: 8.5,-12.5 + parent: 27260 + - uid: 27738 components: - type: Transform - pos: -160.5,-12.5 - parent: 89 - - uid: 11209 + rot: 3.141592653589793 rad + pos: 8.5,-11.5 + parent: 27260 + - uid: 27739 components: - type: Transform - pos: -160.5,-13.5 - parent: 89 - - uid: 12530 + rot: 3.141592653589793 rad + pos: 8.5,-10.5 + parent: 27260 + - uid: 27740 components: - type: Transform - pos: 12.5,12.5 - parent: 89 - - uid: 12569 + rot: 3.141592653589793 rad + pos: 8.5,-7.5 + parent: 27260 + - uid: 27741 components: - type: Transform - pos: -160.5,-14.5 - parent: 89 - - uid: 12591 + rot: 3.141592653589793 rad + pos: 8.5,-6.5 + parent: 27260 + - uid: 27742 components: - type: Transform - pos: 8.5,43.5 - parent: 89 - - uid: 12592 + rot: 3.141592653589793 rad + pos: 8.5,-5.5 + parent: 27260 + - uid: 27743 components: - type: Transform - pos: -160.5,-15.5 - parent: 89 - - uid: 12596 + rot: 3.141592653589793 rad + pos: 8.5,-4.5 + parent: 27260 + - uid: 27744 components: - type: Transform - pos: 7.5,42.5 - parent: 89 - - uid: 12603 + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 27260 + - uid: 27745 components: - type: Transform - pos: -160.5,-16.5 - parent: 89 - - uid: 12604 + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 27260 + - uid: 27746 components: - type: Transform - pos: -160.5,-17.5 - parent: 89 - - uid: 12612 + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 27260 + - uid: 27747 components: - type: Transform - pos: -160.5,-18.5 - parent: 89 - - uid: 12614 + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 27260 + - uid: 27748 components: - type: Transform - pos: 13.5,38.5 - parent: 89 - - uid: 12623 + rot: 3.141592653589793 rad + pos: -6.5,-1.5 + parent: 27260 + - uid: 27749 components: - type: Transform - pos: -160.5,-19.5 - parent: 89 - - uid: 12631 + rot: 3.141592653589793 rad + pos: -6.5,-0.5 + parent: 27260 + - uid: 27750 components: - type: Transform - pos: -160.5,-20.5 - parent: 89 - - uid: 12632 + rot: 3.141592653589793 rad + pos: 8.5,10.5 + parent: 27260 + - uid: 27751 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 89 - - uid: 12637 + pos: -7.5,2.5 + parent: 27260 + - uid: 27752 components: - type: Transform - pos: -159.5,-20.5 - parent: 89 - - uid: 12645 + rot: 3.141592653589793 rad + pos: -7.5,3.5 + parent: 27260 + - uid: 27753 components: - type: Transform - pos: -158.5,-20.5 - parent: 89 - - uid: 12658 + rot: 3.141592653589793 rad + pos: -8.5,6.5 + parent: 27260 + - uid: 27754 components: - type: Transform - pos: -157.5,-20.5 - parent: 89 - - uid: 12667 + rot: 3.141592653589793 rad + pos: -8.5,7.5 + parent: 27260 + - uid: 27755 components: - type: Transform - pos: -156.5,-20.5 - parent: 89 - - uid: 12670 + rot: 3.141592653589793 rad + pos: -8.5,8.5 + parent: 27260 + - uid: 27756 components: - type: Transform - pos: -155.5,-20.5 - parent: 89 - - uid: 12671 + rot: 3.141592653589793 rad + pos: -7.5,10.5 + parent: 27260 + - uid: 27757 components: - type: Transform - pos: -154.5,-20.5 - parent: 89 - - uid: 12675 + rot: 3.141592653589793 rad + pos: 9.5,8.5 + parent: 27260 + - uid: 27758 components: - type: Transform - pos: -153.5,-20.5 - parent: 89 - - uid: 12704 + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 27260 + - uid: 27759 components: - type: Transform - pos: -152.5,-20.5 - parent: 89 - - uid: 12742 + rot: 3.141592653589793 rad + pos: 9.5,6.5 + parent: 27260 + - uid: 27760 components: - type: Transform - pos: -151.5,-20.5 - parent: 89 - - uid: 12743 + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 27260 + - uid: 27761 components: - type: Transform - pos: -150.5,-20.5 - parent: 89 - - uid: 12780 + rot: 3.141592653589793 rad + pos: 8.5,2.5 + parent: 27260 + - uid: 27762 components: - type: Transform - pos: -149.5,-20.5 - parent: 89 - - uid: 12786 + rot: 3.141592653589793 rad + pos: -6.5,-17.5 + parent: 27260 + - uid: 27763 components: - type: Transform - pos: -148.5,-20.5 - parent: 89 - - uid: 12793 + rot: 3.141592653589793 rad + pos: -5.5,-17.5 + parent: 27260 + - uid: 27764 components: - type: Transform - pos: -147.5,-20.5 - parent: 89 - - uid: 12794 + rot: 3.141592653589793 rad + pos: -4.5,-17.5 + parent: 27260 + - uid: 27765 components: - type: Transform - pos: -146.5,-20.5 - parent: 89 - - uid: 12798 + rot: 3.141592653589793 rad + pos: -3.5,-17.5 + parent: 27260 + - uid: 27766 components: - type: Transform - pos: -145.5,-20.5 - parent: 89 - - uid: 12799 + rot: 3.141592653589793 rad + pos: -2.5,-17.5 + parent: 27260 + - uid: 27767 components: - type: Transform - pos: -144.5,-20.5 - parent: 89 - - uid: 12801 + rot: 3.141592653589793 rad + pos: 3.5,-17.5 + parent: 27260 + - uid: 27768 components: - type: Transform - pos: -143.5,-20.5 - parent: 89 - - uid: 12817 + rot: 3.141592653589793 rad + pos: 4.5,-17.5 + parent: 27260 + - uid: 27769 components: - type: Transform - pos: -142.5,-20.5 - parent: 89 - - uid: 12820 + rot: 3.141592653589793 rad + pos: 5.5,-17.5 + parent: 27260 + - uid: 27770 components: - type: Transform - pos: -141.5,-20.5 - parent: 89 - - uid: 12821 + rot: 3.141592653589793 rad + pos: 6.5,-17.5 + parent: 27260 + - uid: 27771 components: - type: Transform - pos: -140.5,-20.5 - parent: 89 - - uid: 12828 + rot: 3.141592653589793 rad + pos: 7.5,-17.5 + parent: 27260 + - uid: 27772 components: - type: Transform - pos: -139.5,-20.5 - parent: 89 - - uid: 12849 + pos: 12.5,4.5 + parent: 27260 + - uid: 27773 components: - type: Transform - pos: -139.5,-21.5 - parent: 89 - - uid: 13210 + pos: 12.5,3.5 + parent: 27260 + - uid: 27774 components: - type: Transform - pos: 7.5,35.5 - parent: 89 - - uid: 14020 + pos: 12.5,2.5 + parent: 27260 + - uid: 27775 components: - type: Transform - pos: 7.5,41.5 - parent: 89 - - uid: 14052 + pos: 12.5,1.5 + parent: 27260 + - uid: 27776 components: - type: Transform - pos: 7.5,38.5 - parent: 89 - - uid: 14560 + pos: 12.5,0.5 + parent: 27260 + - uid: 27777 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 14587 + pos: 12.5,-0.5 + parent: 27260 + - uid: 27778 components: - type: Transform - pos: -13.5,-34.5 - parent: 89 - - uid: 14637 + pos: 12.5,-1.5 + parent: 27260 + - uid: 27779 components: - type: Transform - pos: 55.5,-16.5 - parent: 89 - - uid: 14659 + pos: 12.5,-2.5 + parent: 27260 + - uid: 27780 components: - type: Transform - pos: 38.5,-35.5 - parent: 89 - - uid: 14881 + pos: 12.5,-3.5 + parent: 27260 + - uid: 27781 components: - type: Transform - pos: -13.5,-35.5 - parent: 89 - - uid: 14882 + pos: 12.5,-4.5 + parent: 27260 + - uid: 27782 components: - type: Transform - pos: -13.5,-36.5 - parent: 89 - - uid: 14982 + pos: 12.5,-5.5 + parent: 27260 + - uid: 27783 components: - type: Transform - pos: -19.5,23.5 - parent: 89 - - uid: 15175 + pos: -11.5,-5.5 + parent: 27260 + - uid: 27784 components: - type: Transform - pos: 11.5,43.5 - parent: 89 - - uid: 15177 + pos: -11.5,-4.5 + parent: 27260 + - uid: 27785 components: - type: Transform - pos: 12.5,42.5 - parent: 89 - - uid: 15249 + pos: -11.5,-3.5 + parent: 27260 + - uid: 27786 components: - type: Transform - pos: 11.5,36.5 - parent: 89 - - uid: 15315 + pos: -11.5,-2.5 + parent: 27260 + - uid: 27787 components: - type: Transform - pos: 22.5,16.5 - parent: 89 - - uid: 15316 + pos: -11.5,-1.5 + parent: 27260 + - uid: 27788 components: - type: Transform - pos: 21.5,35.5 - parent: 89 - - uid: 15327 + pos: -11.5,-0.5 + parent: 27260 + - uid: 27789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,36.5 - parent: 89 - - uid: 15328 + pos: -11.5,0.5 + parent: 27260 + - uid: 27790 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 89 - - uid: 15329 + pos: -11.5,1.5 + parent: 27260 + - uid: 27791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 89 - - uid: 15330 + pos: -11.5,2.5 + parent: 27260 + - uid: 27792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 89 - - uid: 15422 + pos: -11.5,3.5 + parent: 27260 + - uid: 27793 components: - type: Transform - pos: 8.5,37.5 - parent: 89 - - uid: 15425 + pos: -11.5,4.5 + parent: 27260 + - uid: 27794 components: - type: Transform - pos: 12.5,38.5 - parent: 89 - - uid: 15563 + pos: -9.5,-3.5 + parent: 27260 + - uid: 27795 components: - type: Transform - pos: 6.5,31.5 - parent: 89 - - uid: 15621 + pos: -9.5,0.5 + parent: 27260 + - uid: 27796 components: - type: Transform - pos: -114.5,-15.5 - parent: 89 - - uid: 15622 + pos: 10.5,-3.5 + parent: 27260 + - uid: 27797 components: - type: Transform - pos: -112.5,-15.5 - parent: 89 - - uid: 15767 + pos: 10.5,2.5 + parent: 27260 + - uid: 28149 components: - type: Transform - pos: 27.5,35.5 - parent: 89 - - uid: 15769 + rot: 3.141592653589793 rad + pos: -123.5,-17.5 + parent: 28148 + - uid: 28150 components: - type: Transform - pos: 21.5,36.5 - parent: 89 - - uid: 15778 + rot: 3.141592653589793 rad + pos: -122.5,-17.5 + parent: 28148 +- proto: GrilleBroken + entities: + - uid: 15570 components: - type: Transform - pos: 27.5,36.5 - parent: 89 - - uid: 16276 + rot: 1.5707963267948966 rad + pos: -92.5,26.5 + parent: 2 + - uid: 15571 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,-20.5 - parent: 89 - - uid: 16293 + pos: -38.5,-16.5 + parent: 2 + - uid: 15572 components: - type: Transform - pos: 12.5,21.5 - parent: 89 - - uid: 16294 + pos: 70.5,15.5 + parent: 2 + - uid: 15573 components: - type: Transform - pos: 12.5,20.5 - parent: 89 - - uid: 16316 + rot: 3.141592653589793 rad + pos: 70.5,10.5 + parent: 2 + - uid: 15574 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,-22.5 - parent: 89 - - uid: 16317 + pos: 70.5,10.5 + parent: 2 + - uid: 15575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,-25.5 - parent: 89 - - uid: 16331 + rot: -1.5707963267948966 rad + pos: -92.5,26.5 + parent: 2 + - uid: 15576 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-32.5 - parent: 89 - - uid: 16332 + rot: 3.141592653589793 rad + pos: -92.5,26.5 + parent: 2 + - uid: 15577 components: - type: Transform rot: 1.5707963267948966 rad - pos: -133.5,-33.5 - parent: 89 - - uid: 16333 + pos: -92.5,28.5 + parent: 2 + - uid: 15578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-30.5 - parent: 89 - - uid: 16334 + pos: -91.5,29.5 + parent: 2 + - uid: 15579 components: - type: Transform rot: 1.5707963267948966 rad - pos: -135.5,-32.5 - parent: 89 - - uid: 16335 + pos: -91.5,29.5 + parent: 2 + - uid: 15580 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-27.5 - parent: 89 - - uid: 16336 + pos: 12.5,-15.5 + parent: 2 + - uid: 15581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -139.5,-23.5 - parent: 89 - - uid: 16455 + pos: 50.5,-36.5 + parent: 2 + - uid: 15582 components: - type: Transform rot: 1.5707963267948966 rad - pos: -57.5,41.5 - parent: 89 - - uid: 16462 + pos: 55.5,-15.5 + parent: 2 + - uid: 15583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,45.5 - parent: 89 - - uid: 16919 + pos: -125.5,20.5 + parent: 2 + - uid: 15584 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,2.5 - parent: 89 - - uid: 16920 + pos: -125.5,21.5 + parent: 2 + - uid: 15585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,4.5 - parent: 89 - - uid: 16923 + pos: -52.5,21.5 + parent: 2 + - uid: 15586 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,5.5 - parent: 89 - - uid: 17027 + pos: -41.5,20.5 + parent: 2 + - uid: 15587 components: - type: Transform - pos: 20.5,16.5 - parent: 89 - - uid: 17148 + pos: -19.5,24.5 + parent: 2 + - uid: 15588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-18.5 - parent: 89 - - uid: 17151 + pos: -16.5,15.5 + parent: 2 + - uid: 15589 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,-28.5 - parent: 89 - - uid: 17152 + pos: -2.5,25.5 + parent: 2 + - uid: 15590 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-26.5 - parent: 89 - - uid: 17153 + pos: -21.5,21.5 + parent: 2 + - uid: 15591 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-20.5 - parent: 89 - - uid: 17159 + rot: 3.141592653589793 rad + pos: 15.5,45.5 + parent: 2 + - uid: 15592 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,42.5 - parent: 89 - - uid: 17174 + rot: 3.141592653589793 rad + pos: -104.5,31.5 + parent: 2 + - uid: 15593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -42.5,37.5 - parent: 89 - - uid: 17224 + pos: -103.5,32.5 + parent: 2 + - uid: 15594 components: - type: Transform - pos: 41.5,-19.5 - parent: 89 - - uid: 17281 + rot: -1.5707963267948966 rad + pos: -60.5,49.5 + parent: 2 + - uid: 15595 components: - type: Transform - pos: -52.5,49.5 - parent: 89 - - uid: 17315 + rot: 1.5707963267948966 rad + pos: -103.5,32.5 + parent: 2 + - uid: 15596 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-7.5 - parent: 89 - - uid: 17329 + pos: -61.5,48.5 + parent: 2 + - uid: 15597 + components: + - type: Transform + pos: -45.5,42.5 + parent: 2 + - uid: 15598 components: - type: Transform rot: 3.141592653589793 rad - pos: 64.5,-9.5 - parent: 89 - - uid: 17332 + pos: -45.5,43.5 + parent: 2 + - uid: 15599 components: - type: Transform rot: 1.5707963267948966 rad - pos: -104.5,32.5 - parent: 89 - - uid: 17335 + pos: -129.5,28.5 + parent: 2 + - uid: 15600 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,49.5 - parent: 89 - - uid: 17336 + pos: -131.5,28.5 + parent: 2 + - uid: 15601 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,49.5 - parent: 89 - - uid: 17337 + pos: -124.5,28.5 + parent: 2 + - uid: 15602 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -46.5,49.5 - parent: 89 - - uid: 17338 + pos: -137.5,28.5 + parent: 2 + - uid: 15603 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,48.5 - parent: 89 - - uid: 17341 + rot: 1.5707963267948966 rad + pos: -136.5,28.5 + parent: 2 + - uid: 15604 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,48.5 - parent: 89 - - uid: 17342 + pos: -138.5,23.5 + parent: 2 + - uid: 15605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,49.5 - parent: 89 - - uid: 17344 + rot: 3.141592653589793 rad + pos: -137.5,24.5 + parent: 2 + - uid: 15606 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,46.5 - parent: 89 - - uid: 17345 + rot: 3.141592653589793 rad + pos: -138.5,18.5 + parent: 2 + - uid: 15607 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,45.5 - parent: 89 - - uid: 17346 + pos: -16.5,38.5 + parent: 2 + - uid: 15608 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,44.5 - parent: 89 - - uid: 17349 + pos: -138.5,14.5 + parent: 2 + - uid: 15609 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,47.5 - parent: 89 - - uid: 17350 + pos: -99.5,32.5 + parent: 2 + - uid: 15610 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,28.5 - parent: 89 - - uid: 17353 + pos: -123.5,26.5 + parent: 2 + - uid: 15611 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -121.5,25.5 + parent: 2 + - uid: 15612 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -102.5,31.5 + parent: 2 + - uid: 15613 components: - type: Transform rot: -1.5707963267948966 rad - pos: -122.5,26.5 - parent: 89 - - uid: 17354 + pos: -45.5,49.5 + parent: 2 + - uid: 15614 components: - type: Transform rot: 1.5707963267948966 rad - pos: -137.5,26.5 - parent: 89 - - uid: 17355 + pos: -42.5,38.5 + parent: 2 + - uid: 15615 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,27.5 - parent: 89 - - uid: 17356 + pos: -45.5,49.5 + parent: 2 + - uid: 15616 components: - type: Transform rot: 1.5707963267948966 rad - pos: -137.5,25.5 - parent: 89 - - uid: 17357 + pos: -44.5,37.5 + parent: 2 + - uid: 15617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,11.5 - parent: 89 - - uid: 17359 + rot: 3.141592653589793 rad + pos: -42.5,36.5 + parent: 2 + - uid: 15618 components: - type: Transform rot: -1.5707963267948966 rad - pos: -121.5,26.5 - parent: 89 - - uid: 17362 + pos: -35.5,38.5 + parent: 2 + - uid: 15619 components: - type: Transform rot: 1.5707963267948966 rad - pos: -135.5,28.5 - parent: 89 - - uid: 17363 + pos: -33.5,38.5 + parent: 2 + - uid: 15620 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,28.5 - parent: 89 - - uid: 17370 + rot: -1.5707963267948966 rad + pos: -25.5,38.5 + parent: 2 + - uid: 15621 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-8.5 - parent: 89 - - uid: 17371 + rot: -1.5707963267948966 rad + pos: -17.5,38.5 + parent: 2 + - uid: 15622 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-5.5 - parent: 89 - - uid: 17373 + pos: -13.5,38.5 + parent: 2 + - uid: 15623 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-3.5 - parent: 89 - - uid: 17374 + pos: -13.5,38.5 + parent: 2 + - uid: 15624 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-4.5 - parent: 89 - - uid: 17375 + pos: -13.5,47.5 + parent: 2 + - uid: 15625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,39.5 - parent: 89 - - uid: 17376 + rot: 1.5707963267948966 rad + pos: -13.5,48.5 + parent: 2 + - uid: 15626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,38.5 - parent: 89 - - uid: 17377 + rot: 3.141592653589793 rad + pos: 35.5,35.5 + parent: 2 + - uid: 15627 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,41.5 - parent: 89 - - uid: 17378 + rot: 1.5707963267948966 rad + pos: -10.5,51.5 + parent: 2 + - uid: 15628 components: - type: Transform rot: -1.5707963267948966 rad - pos: -45.5,40.5 - parent: 89 - - uid: 17380 + pos: -4.5,51.5 + parent: 2 + - uid: 15629 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,39.5 - parent: 89 - - uid: 17381 + rot: 1.5707963267948966 rad + pos: -1.5,51.5 + parent: 2 + - uid: 15630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,38.5 - parent: 89 - - uid: 17383 + pos: 8.5,49.5 + parent: 2 + - uid: 15631 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,37.5 - parent: 89 - - uid: 17392 + pos: 6.5,51.5 + parent: 2 + - uid: 15632 components: - type: Transform - pos: -127.5,28.5 - parent: 89 - - uid: 17394 + pos: 16.5,40.5 + parent: 2 + - uid: 15633 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-5.5 - parent: 89 - - uid: 17404 + pos: 35.5,34.5 + parent: 2 + - uid: 15634 components: - type: Transform rot: 3.141592653589793 rad - pos: 70.5,-2.5 - parent: 89 - - uid: 17405 + pos: 70.5,2.5 + parent: 2 + - uid: 15635 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-6.5 - parent: 89 - - uid: 17407 + pos: 70.5,6.5 + parent: 2 + - uid: 15636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -40.5,38.5 - parent: 89 - - uid: 17410 + rot: 1.5707963267948966 rad + pos: 69.5,4.5 + parent: 2 + - uid: 15637 components: - type: Transform - pos: -150.5,-21.5 - parent: 89 - - uid: 17414 + rot: 3.141592653589793 rad + pos: 70.5,7.5 + parent: 2 + - uid: 15638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -39.5,38.5 - parent: 89 - - uid: 17415 + rot: 1.5707963267948966 rad + pos: 52.5,-9.5 + parent: 2 + - uid: 15639 components: - type: Transform rot: -1.5707963267948966 rad - pos: -38.5,38.5 - parent: 89 - - uid: 17417 + pos: 56.5,-9.5 + parent: 2 + - uid: 15640 components: - type: Transform rot: -1.5707963267948966 rad - pos: -37.5,38.5 - parent: 89 - - uid: 17418 + pos: 60.5,-9.5 + parent: 2 + - uid: 15641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,38.5 - parent: 89 - - uid: 17426 + pos: 60.5,-9.5 + parent: 2 + - uid: 15642 components: - type: Transform - pos: -126.5,28.5 - parent: 89 - - uid: 17427 + rot: 1.5707963267948966 rad + pos: 59.5,-11.5 + parent: 2 + - uid: 15643 components: - type: Transform - pos: -125.5,28.5 - parent: 89 - - uid: 17432 + rot: -1.5707963267948966 rad + pos: 63.5,-11.5 + parent: 2 + - uid: 15644 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 64.5,-11.5 + parent: 2 + - uid: 15645 components: - type: Transform rot: 1.5707963267948966 rad - pos: -135.5,-16.5 - parent: 89 - - uid: 17433 + pos: 65.5,-9.5 + parent: 2 + - uid: 15646 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,38.5 - parent: 89 - - uid: 17434 + pos: 65.5,-9.5 + parent: 2 + - uid: 15647 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,38.5 - parent: 89 - - uid: 17435 + pos: 67.5,-9.5 + parent: 2 + - uid: 15648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,38.5 - parent: 89 - - uid: 17436 + rot: 1.5707963267948966 rad + pos: 67.5,-7.5 + parent: 2 + - uid: 15649 components: - type: Transform rot: -1.5707963267948966 rad - pos: -15.5,37.5 - parent: 89 - - uid: 17438 + pos: 67.5,-7.5 + parent: 2 + - uid: 15650 components: - type: Transform rot: -1.5707963267948966 rad - pos: -120.5,26.5 - parent: 89 - - uid: 17440 + pos: 69.5,-5.5 + parent: 2 + - uid: 15651 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,13.5 - parent: 89 - - uid: 17441 + pos: 69.5,-5.5 + parent: 2 + - uid: 15652 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,20.5 - parent: 89 - - uid: 17442 + rot: 3.141592653589793 rad + pos: 68.5,-1.5 + parent: 2 + - uid: 15653 components: - type: Transform - pos: -128.5,28.5 - parent: 89 - - uid: 17443 + pos: 68.5,-4.5 + parent: 2 + - uid: 15654 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,21.5 - parent: 89 - - uid: 17444 + pos: 67.5,-5.5 + parent: 2 + - uid: 15655 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,19.5 - parent: 89 - - uid: 17445 + rot: 3.141592653589793 rad + pos: 7.5,-48.5 + parent: 2 + - uid: 15656 components: - type: Transform rot: 1.5707963267948966 rad - pos: -138.5,22.5 - parent: 89 - - uid: 17447 + pos: 9.5,-33.5 + parent: 2 + - uid: 15657 components: - type: Transform rot: -1.5707963267948966 rad - pos: -119.5,26.5 - parent: 89 - - uid: 17448 + pos: 23.5,-20.5 + parent: 2 + - uid: 15658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -26.5,38.5 - parent: 89 - - uid: 17449 + pos: 13.5,-27.5 + parent: 2 + - uid: 15659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,38.5 - parent: 89 - - uid: 17450 + rot: 1.5707963267948966 rad + pos: -5.5,-50.5 + parent: 2 + - uid: 15660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,38.5 - parent: 89 - - uid: 17451 + rot: 3.141592653589793 rad + pos: 7.5,-39.5 + parent: 2 + - uid: 15661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,37.5 - parent: 89 - - uid: 17452 + rot: 1.5707963267948966 rad + pos: 6.5,-42.5 + parent: 2 + - uid: 15662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -14.5,37.5 - parent: 89 - - uid: 17453 + pos: 7.5,-41.5 + parent: 2 + - uid: 15663 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,40.5 - parent: 89 - - uid: 17459 + pos: 2.5,-50.5 + parent: 2 + - uid: 15664 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-50.5 + parent: 2 + - uid: 15665 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-9.5 - parent: 89 - - uid: 17461 + pos: -12.5,-46.5 + parent: 2 + - uid: 15666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,19.5 - parent: 89 - - uid: 17462 + rot: -1.5707963267948966 rad + pos: -7.5,-50.5 + parent: 2 + - uid: 15667 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,12.5 - parent: 89 - - uid: 17463 + pos: -12.5,-47.5 + parent: 2 + - uid: 15668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,46.5 - parent: 89 - - uid: 17464 + pos: -17.5,-39.5 + parent: 2 + - uid: 15669 components: - type: Transform rot: -1.5707963267948966 rad - pos: -13.5,41.5 - parent: 89 - - uid: 17465 + pos: -12.5,-41.5 + parent: 2 + - uid: 15670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,48.5 - parent: 89 - - uid: 17467 + pos: -12.5,-41.5 + parent: 2 + - uid: 15671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,45.5 - parent: 89 - - uid: 17468 + rot: 3.141592653589793 rad + pos: -17.5,-38.5 + parent: 2 + - uid: 15672 components: - type: Transform rot: 1.5707963267948966 rad - pos: -133.5,28.5 - parent: 89 - - uid: 17469 + pos: -41.5,-22.5 + parent: 2 + - uid: 15673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,37.5 - parent: 89 - - uid: 17471 + rot: 1.5707963267948966 rad + pos: -19.5,-32.5 + parent: 2 + - uid: 15674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,38.5 - parent: 89 - - uid: 17475 + rot: 3.141592653589793 rad + pos: -31.5,-27.5 + parent: 2 + - uid: 15675 + components: + - type: Transform + pos: -31.5,-29.5 + parent: 2 + - uid: 15676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 21.5,47.5 + parent: 2 + - uid: 15677 components: - type: Transform rot: -1.5707963267948966 rad - pos: -12.5,48.5 - parent: 89 - - uid: 17623 + pos: 27.5,47.5 + parent: 2 + - uid: 15678 components: - type: Transform - pos: 43.5,-19.5 - parent: 89 - - uid: 17642 + pos: 27.5,47.5 + parent: 2 + - uid: 15679 components: - type: Transform - pos: 41.5,34.5 - parent: 89 - - uid: 17644 + rot: -1.5707963267948966 rad + pos: 56.5,-15.5 + parent: 2 + - uid: 15680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,-33.5 - parent: 89 - - uid: 17646 + pos: 33.5,42.5 + parent: 2 + - uid: 15681 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -138.5,-29.5 - parent: 89 - - uid: 17651 + pos: 30.5,42.5 + parent: 2 + - uid: 15682 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -137.5,-32.5 - parent: 89 - - uid: 17665 + pos: 31.5,42.5 + parent: 2 + - uid: 15683 components: - type: Transform rot: 1.5707963267948966 rad - pos: -11.5,49.5 - parent: 89 - - uid: 17669 + pos: 15.5,45.5 + parent: 2 + - uid: 15684 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,51.5 - parent: 89 - - uid: 17670 + rot: -1.5707963267948966 rad + pos: 9.5,47.5 + parent: 2 + - uid: 15685 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,51.5 - parent: 89 - - uid: 17671 + pos: 54.5,-16.5 + parent: 2 + - uid: 15686 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,51.5 - parent: 89 - - uid: 17672 + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 + - uid: 15687 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,51.5 - parent: 89 - - uid: 17673 + rot: -1.5707963267948966 rad + pos: 54.5,-37.5 + parent: 2 + - uid: 15688 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,51.5 - parent: 89 - - uid: 17678 + rot: 3.141592653589793 rad + pos: 54.5,-37.5 + parent: 2 + - uid: 15689 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,51.5 - parent: 89 - - uid: 17679 + pos: 54.5,-37.5 + parent: 2 + - uid: 15690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,51.5 - parent: 89 - - uid: 17680 + pos: 54.5,-37.5 + parent: 2 + - uid: 15691 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,51.5 - parent: 89 - - uid: 17681 + pos: 50.5,-36.5 + parent: 2 + - uid: 15692 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,51.5 - parent: 89 - - uid: 17682 + rot: -1.5707963267948966 rad + pos: 50.5,-36.5 + parent: 2 + - uid: 15693 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,51.5 - parent: 89 - - uid: 17683 + pos: 50.5,-36.5 + parent: 2 + - uid: 15694 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,51.5 - parent: 89 - - uid: 17684 + pos: 50.5,-36.5 + parent: 2 + - uid: 15695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,51.5 - parent: 89 - - uid: 17690 + rot: 3.141592653589793 rad + pos: 48.5,-37.5 + parent: 2 + - uid: 15696 components: - type: Transform rot: 1.5707963267948966 rad - pos: 8.5,48.5 - parent: 89 - - uid: 17691 + pos: 48.5,-37.5 + parent: 2 + - uid: 15697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,47.5 - parent: 89 - - uid: 17705 + pos: 48.5,-37.5 + parent: 2 + - uid: 15698 components: - type: Transform - pos: 70.5,-0.5 - parent: 89 - - uid: 17707 + rot: -1.5707963267948966 rad + pos: 48.5,-37.5 + parent: 2 + - uid: 15699 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,39.5 - parent: 89 - - uid: 17708 + pos: 55.5,-15.5 + parent: 2 + - uid: 26436 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,38.5 - parent: 89 - - uid: 17709 + pos: -4.5,-19.5 + parent: 24450 + - uid: 26437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,37.5 - parent: 89 - - uid: 17710 + pos: -4.5,-19.5 + parent: 24450 + - uid: 26438 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,36.5 - parent: 89 - - uid: 17715 + rot: -1.5707963267948966 rad + pos: -20.5,-19.5 + parent: 24450 + - uid: 26439 components: - type: Transform - pos: 69.5,-0.5 - parent: 89 - - uid: 17716 + pos: -20.5,-19.5 + parent: 24450 + - uid: 26440 components: - type: Transform - pos: 68.5,-0.5 - parent: 89 - - uid: 17717 + rot: -1.5707963267948966 rad + pos: -22.5,-18.5 + parent: 24450 + - uid: 26441 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,0.5 - parent: 89 - - uid: 17718 + pos: -22.5,-18.5 + parent: 24450 + - uid: 26442 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,-1.5 - parent: 89 - - uid: 17731 + rot: -1.5707963267948966 rad + pos: -24.5,-17.5 + parent: 24450 + - uid: 26443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,33.5 - parent: 89 - - uid: 17732 + pos: -24.5,-17.5 + parent: 24450 + - uid: 26444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -130.5,-33.5 - parent: 89 - - uid: 17741 + rot: -1.5707963267948966 rad + pos: -25.5,-16.5 + parent: 24450 + - uid: 26445 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-33.5 - parent: 89 - - uid: 17754 + pos: -25.5,-16.5 + parent: 24450 + - uid: 26446 components: - type: Transform - pos: 70.5,5.5 - parent: 89 - - uid: 17755 + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 24450 + - uid: 26447 components: - type: Transform - pos: 70.5,4.5 - parent: 89 - - uid: 17756 + rot: -1.5707963267948966 rad + pos: -6.5,-19.5 + parent: 24450 + - uid: 26448 components: - type: Transform - pos: 70.5,3.5 - parent: 89 - - uid: 17773 + rot: 1.5707963267948966 rad + pos: -7.5,-19.5 + parent: 24450 + - uid: 26449 components: - type: Transform rot: 3.141592653589793 rad - pos: 68.5,-6.5 - parent: 89 - - uid: 17774 + pos: -6.5,-20.5 + parent: 24450 + - uid: 26450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-7.5 - parent: 89 - - uid: 17775 + rot: -1.5707963267948966 rad + pos: -5.5,-19.5 + parent: 24450 + - uid: 26451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-10.5 - parent: 89 - - uid: 17776 + rot: -1.5707963267948966 rad + pos: -7.5,-20.5 + parent: 24450 + - uid: 26452 components: - type: Transform - rot: 3.141592653589793 rad - pos: 62.5,-11.5 - parent: 89 - - uid: 17777 + pos: -6.5,-20.5 + parent: 24450 + - uid: 26453 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-11.5 - parent: 89 - - uid: 17778 + rot: 1.5707963267948966 rad + pos: -0.5,-17.5 + parent: 24450 + - uid: 26454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-11.5 - parent: 89 - - uid: 17780 + pos: -0.5,-17.5 + parent: 24450 + - uid: 26455 components: - type: Transform rot: 3.141592653589793 rad - pos: 60.5,-10.5 - parent: 89 - - uid: 17781 + pos: -0.5,-16.5 + parent: 24450 + - uid: 26456 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-9.5 - parent: 89 - - uid: 17782 + pos: 0.5,-16.5 + parent: 24450 + - uid: 26457 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-9.5 - parent: 89 - - uid: 17783 + rot: -1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 24450 + - uid: 26458 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-9.5 - parent: 89 - - uid: 17784 + pos: 0.5,-16.5 + parent: 24450 + - uid: 26459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-9.5 - parent: 89 - - uid: 17785 + rot: 1.5707963267948966 rad + pos: 0.5,-16.5 + parent: 24450 + - uid: 26460 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-9.5 - parent: 89 - - uid: 17786 + rot: -1.5707963267948966 rad + pos: -0.5,-16.5 + parent: 24450 + - uid: 28151 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-9.5 - parent: 89 - - uid: 17831 + anchored: False + rot: 1.5707963267948966 rad + pos: -24.5,38.5 + parent: 1 + - type: Physics + bodyType: Dynamic + - uid: 28152 components: - type: Transform - pos: 37.5,35.5 - parent: 89 - - uid: 17832 + anchored: False + rot: 1.5707963267948966 rad + pos: 35.5,42.5 + parent: 1 + - type: Physics + bodyType: Dynamic +- proto: GrilleDiagonal + entities: + - uid: 15700 components: - type: Transform - pos: 34.5,36.5 - parent: 89 - - uid: 17876 + rot: 1.5707963267948966 rad + pos: -49.5,49.5 + parent: 2 + - uid: 15701 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,25.5 - parent: 89 - - uid: 17885 + rot: 1.5707963267948966 rad + pos: -124.5,-14.5 + parent: 2 + - uid: 15702 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-19.5 - parent: 89 - - uid: 17912 + rot: 1.5707963267948966 rad + pos: -121.5,-16.5 + parent: 2 + - uid: 23845 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-20.5 - parent: 89 - - uid: 18006 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 23711 + - uid: 23846 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-22.5 - parent: 89 - - uid: 18048 + pos: 1.5,-0.5 + parent: 23711 + - uid: 24171 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,-33.5 - parent: 89 - - uid: 18060 + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 23919 + - uid: 24172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,-22.5 - parent: 89 - - uid: 18061 + pos: 2.5,7.5 + parent: 23919 + - uid: 24173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,-22.5 - parent: 89 - - uid: 18062 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 23919 + - uid: 24174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -37.5,-22.5 - parent: 89 - - uid: 18063 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 23919 + - uid: 24411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-22.5 - parent: 89 - - uid: 18064 + pos: -0.5,1.5 + parent: 24340 + - uid: 24412 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-22.5 - parent: 89 - - uid: 18065 + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 24340 +- proto: GunSafe + entities: + - uid: 1163 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-23.5 - parent: 89 - - uid: 18066 + pos: 37.5,-1.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: + - 1164 + - 1170 + - 1169 + - 1165 + - 1166 + - 1168 + - 1167 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 1171 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-24.5 - parent: 89 - - uid: 18067 + pos: 43.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 1178 + - 1174 + - 1177 + - 1172 + - 1175 + - 1173 + - 1176 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15703 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-25.5 - parent: 89 - - uid: 18068 + pos: 42.5,-16.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.8968438 + - 7.1357465 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 15709 + - 15708 + - 15710 + - 15706 + - 15705 + - 15704 + - 15707 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 15711 components: + - type: MetaData + name: сейф дубинок-шокеров - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-26.5 - parent: 89 - - uid: 18069 + pos: 42.5,-6.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: + - 15719 + - 15718 + - 15717 + - 15716 + - 15715 + - 15714 + - 15713 + - 15712 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 24526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-30.5 - parent: 89 - - uid: 18070 + pos: -11.5,4.5 + parent: 24450 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14972 + moles: + - 1.8856695 + - 7.0937095 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 24545 + - 24547 + - 24536 + - 24535 + - 24539 + - 24538 + - 24537 + - 24542 + - 24530 + - 24550 + - 24531 + - 24527 + - 24529 + - 24534 + - 24540 + - 24541 + - 24528 + - 24543 + - 24548 + - 24533 + - 24546 + - 24544 + - 24549 + - 24532 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 27315 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-30.5 - parent: 89 - - uid: 18071 + pos: -3.5,-6.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27316 + - 27317 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 27318 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-31.5 - parent: 89 - - uid: 18072 + pos: 5.5,-11.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27320 + - 27321 + - 27319 + - 27322 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: GunSafeDisabler + entities: + - uid: 15720 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-32.5 - parent: 89 - - uid: 18073 + pos: 43.5,-6.5 + parent: 2 +- proto: GunSafeLaserCarbine + entities: + - uid: 15721 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-32.5 - parent: 89 - - uid: 18074 + pos: 49.5,-8.5 + parent: 2 +- proto: GunSafePistolMk58 + entities: + - uid: 15722 + components: + - type: Transform + pos: 45.5,-8.5 + parent: 2 +- proto: GunSafeRifleLecter + entities: + - uid: 15723 + components: + - type: Transform + pos: 48.5,-8.5 + parent: 2 +- proto: GunSafeShotgunKammerer + entities: + - uid: 15724 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-32.5 - parent: 89 - - uid: 18075 + pos: 47.5,-8.5 + parent: 2 +- proto: GunSafeSubMachineGunWt550 + entities: + - uid: 15725 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-32.5 - parent: 89 - - uid: 18076 + pos: 46.5,-8.5 + parent: 2 +- proto: Gyroscope + entities: + - uid: 23847 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,-32.5 - parent: 89 - - uid: 18077 + rot: 1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 23711 + - uid: 24175 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,-32.5 - parent: 89 - - uid: 18078 + pos: 4.5,1.5 + parent: 23919 + - uid: 24413 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-32.5 - parent: 89 - - uid: 18079 + rot: 1.5707963267948966 rad + pos: -0.5,-0.5 + parent: 24340 + - type: Visibility + layer: 15 + - uid: 26461 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,-32.5 - parent: 89 - - uid: 18080 + pos: -2.5,25.5 + parent: 24450 +- proto: Handcuffs + entities: + - uid: 15726 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-32.5 - parent: 89 - - uid: 18081 + pos: -20.509203,7.4855614 + parent: 2 + - uid: 15727 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-32.5 - parent: 89 - - uid: 18082 + pos: -86.700455,14.60647 + parent: 2 + - uid: 15728 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-32.5 - parent: 89 - - uid: 18083 + pos: -45.6171,0.5859333 + parent: 2 + - uid: 15729 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-32.5 - parent: 89 - - uid: 18084 + pos: -59.432873,7.5281296 + parent: 2 +- proto: HandheldGPSBasic + entities: + - uid: 15730 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-33.5 - parent: 89 - - uid: 18085 + rot: 1.5707963267948966 rad + pos: 30.547134,7.4998913 + parent: 2 + - uid: 15731 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-34.5 - parent: 89 - - uid: 18086 + pos: 30.570797,7.462756 + parent: 2 + - uid: 15732 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-35.5 - parent: 89 - - uid: 18087 + pos: 30.258297,7.478381 + parent: 2 + - uid: 15733 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-36.5 - parent: 89 - - uid: 18088 + pos: 30.430172,7.509631 + parent: 2 + - uid: 15734 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-37.5 - parent: 89 - - uid: 18089 + pos: 30.758297,7.478381 + parent: 2 + - uid: 26462 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-41.5 - parent: 89 - - uid: 18090 + pos: -5.532196,-17.647125 + parent: 24450 +- proto: HandHeldMassScanner + entities: + - uid: 15735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-41.5 - parent: 89 - - uid: 18091 + rot: -1.5707963267948966 rad + pos: -50.481277,-15.240487 + parent: 2 +- proto: HandLabeler + entities: + - uid: 15736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-41.5 - parent: 89 - - uid: 18092 + pos: 44.527477,6.704564 + parent: 2 + - uid: 15737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-41.5 - parent: 89 - - uid: 18093 + pos: 20.515057,6.879887 + parent: 2 + - uid: 15738 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-41.5 - parent: 89 - - uid: 18094 + rot: -1.5707963267948966 rad + pos: -50.293777,-16.287361 + parent: 2 +- proto: HappyHonkNukieSnacks + entities: + - uid: 15739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-40.5 - parent: 89 - - uid: 18095 + pos: 21.487997,-17.439909 + parent: 2 +- proto: HarpInstrument + entities: + - uid: 15740 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-42.5 - parent: 89 - - uid: 18096 + pos: -29.5,-9.5 + parent: 2 +- proto: HeadBorgJanitor + entities: + - uid: 15741 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-43.5 - parent: 89 - - uid: 18097 + pos: -35.29812,9.790613 + parent: 2 +- proto: HeadSkeleton + entities: + - uid: 26463 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-44.5 - parent: 89 - - uid: 18098 + pos: 3.9304833,10.600748 + parent: 24450 +- proto: HeatExchanger + entities: + - uid: 15742 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-45.5 - parent: 89 - - uid: 18099 + rot: 1.5707963267948966 rad + pos: -76.5,-13.5 + parent: 2 + - uid: 15743 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-48.5 - parent: 89 - - uid: 18100 + rot: 1.5707963267948966 rad + pos: -76.5,-11.5 + parent: 2 +- proto: HelicopterInstrument + entities: + - uid: 15744 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-49.5 - parent: 89 - - uid: 18101 + pos: 17.650578,25.636961 + parent: 2 + - uid: 15745 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-50.5 - parent: 89 - - uid: 18102 + pos: -61.430115,47.965298 + parent: 2 +- proto: Hemostat + entities: + - uid: 15746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,-50.5 - parent: 89 - - uid: 18103 + pos: -11.463182,21.549883 + parent: 2 +- proto: HighSecArmoryLocked + entities: + - uid: 15747 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-50.5 - parent: 89 - - uid: 18104 + pos: 38.5,-5.5 + parent: 2 + - uid: 15748 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-50.5 - parent: 89 - - uid: 18105 + pos: 42.5,-9.5 + parent: 2 + - uid: 15749 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,-50.5 - parent: 89 - - uid: 18106 + pos: 38.5,-6.5 + parent: 2 + - uid: 27798 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-50.5 - parent: 89 - - uid: 18107 + pos: 3.5,-9.5 + parent: 27260 +- proto: HighSecCommandLocked + entities: + - uid: 15750 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-50.5 - parent: 89 - - uid: 18108 + pos: 56.5,4.5 + parent: 2 + - uid: 15751 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-50.5 - parent: 89 - - uid: 18109 + pos: 49.5,-0.5 + parent: 2 + - uid: 15752 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-50.5 - parent: 89 - - uid: 18110 + pos: -113.5,25.5 + parent: 2 + - uid: 15753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-50.5 - parent: 89 - - uid: 18111 + pos: -108.5,22.5 + parent: 2 + - uid: 15754 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-50.5 - parent: 89 - - uid: 18112 + pos: -108.5,19.5 + parent: 2 +- proto: HolofanProjector + entities: + - uid: 15755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-50.5 - parent: 89 - - uid: 18113 + pos: 1.0469074,27.745178 + parent: 2 +- proto: HospitalCurtains + entities: + - uid: 15756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-50.5 - parent: 89 - - uid: 18114 + pos: 9.5,18.5 + parent: 2 + - uid: 15757 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-50.5 - parent: 89 - - uid: 18115 + pos: -20.5,-22.5 + parent: 2 + - uid: 15758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-50.5 - parent: 89 - - uid: 18117 + pos: -36.5,33.5 + parent: 2 + - type: Occluder + enabled: False + - type: Door + state: Open + - type: Physics + canCollide: False + - uid: 15759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-47.5 - parent: 89 - - uid: 18118 + pos: -23.5,33.5 + parent: 2 + - uid: 15760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-46.5 - parent: 89 - - uid: 18119 + pos: 1.5,21.5 + parent: 2 + - uid: 15761 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-45.5 - parent: 89 - - uid: 18120 + pos: 1.5,19.5 + parent: 2 + - uid: 15762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-44.5 - parent: 89 - - uid: 18121 + pos: 1.5,15.5 + parent: 2 + - uid: 15763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-43.5 - parent: 89 - - uid: 18122 + pos: 1.5,17.5 + parent: 2 + - uid: 15764 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,-42.5 - parent: 89 - - uid: 18124 + pos: 1.5,7.5 + parent: 2 + - uid: 15765 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-38.5 - parent: 89 - - uid: 18125 + rot: 1.5707963267948966 rad + pos: 19.5,-14.5 + parent: 2 + - uid: 15766 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-35.5 - parent: 89 - - uid: 18126 + rot: 1.5707963267948966 rad + pos: 22.5,-14.5 + parent: 2 + - uid: 15767 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-37.5 - parent: 89 - - uid: 18127 + rot: 1.5707963267948966 rad + pos: 25.5,-14.5 + parent: 2 + - uid: 15768 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-36.5 - parent: 89 - - uid: 18128 + rot: 1.5707963267948966 rad + pos: 28.5,-14.5 + parent: 2 + - uid: 15769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-33.5 - parent: 89 - - uid: 18129 + pos: 53.5,-33.5 + parent: 2 + - uid: 15770 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,-33.5 - parent: 89 - - uid: 18130 + pos: 51.5,-33.5 + parent: 2 + - uid: 15771 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-33.5 - parent: 89 - - uid: 18131 + pos: 49.5,-33.5 + parent: 2 + - uid: 15772 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-32.5 - parent: 89 - - uid: 18132 + pos: 47.5,-33.5 + parent: 2 + - uid: 15773 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-31.5 - parent: 89 - - uid: 18133 + pos: 10.5,18.5 + parent: 2 + - uid: 15774 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-30.5 - parent: 89 - - uid: 18134 + pos: 11.5,18.5 + parent: 2 +- proto: HospitalCurtainsOpen + entities: + - uid: 15775 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-29.5 - parent: 89 - - uid: 18135 + pos: -27.5,-4.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15776 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-28.5 - parent: 89 - - uid: 18136 + pos: -27.5,-5.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15777 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-25.5 - parent: 89 - - uid: 18138 + pos: 50.5,14.5 + parent: 2 + - uid: 15778 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-25.5 - parent: 89 - - uid: 18139 + pos: -34.5,-3.5 + parent: 2 + - uid: 15779 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-24.5 - parent: 89 - - uid: 18140 + pos: -35.5,-6.5 + parent: 2 + - uid: 15780 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-23.5 - parent: 89 - - uid: 18141 + pos: -34.5,-9.5 + parent: 2 + - uid: 15781 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-22.5 - parent: 89 - - uid: 18142 + pos: -27.5,-6.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15782 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-21.5 - parent: 89 - - uid: 18145 + pos: -73.5,-12.5 + parent: 2 + - uid: 15783 components: - type: Transform - rot: 3.141592653589793 rad - pos: 17.5,-20.5 - parent: 89 - - uid: 18146 + pos: 31.5,-3.5 + parent: 2 + - uid: 15784 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-20.5 - parent: 89 - - uid: 18147 + pos: -47.5,10.5 + parent: 2 + - uid: 15785 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,-20.5 - parent: 89 - - uid: 18148 + pos: -27.5,-7.5 + parent: 2 + - uid: 15786 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,-20.5 - parent: 89 - - uid: 18149 + pos: 7.5,-28.5 + parent: 2 + - uid: 15787 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-20.5 - parent: 89 - - uid: 18150 + pos: -37.5,33.5 + parent: 2 + - uid: 15788 components: - type: Transform - rot: 3.141592653589793 rad - pos: 22.5,-20.5 - parent: 89 - - uid: 18160 + pos: -22.5,33.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,19.5 - parent: 89 - - uid: 18330 + pos: 3.5,15.5 + parent: 2 + - uid: 15790 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -128.5,-34.5 - parent: 89 - - uid: 18340 + pos: 1.5,20.5 + parent: 2 + - uid: 15791 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-34.5 - parent: 89 - - uid: 18405 + pos: 3.5,17.5 + parent: 2 + - uid: 15792 components: - type: Transform - pos: 41.5,-12.5 - parent: 89 - - uid: 18406 + pos: 3.5,21.5 + parent: 2 + - uid: 15793 components: - type: Transform - pos: 41.5,-14.5 - parent: 89 - - uid: 18426 + pos: 3.5,19.5 + parent: 2 + - uid: 15794 components: - type: Transform - pos: 61.5,27.5 - parent: 89 - - uid: 18432 + pos: 1.5,16.5 + parent: 2 + - uid: 15795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-33.5 - parent: 89 - - uid: 18444 + pos: 21.5,23.5 + parent: 2 + - uid: 15796 components: - type: Transform rot: 1.5707963267948966 rad - pos: -124.5,-33.5 - parent: 89 - - uid: 18734 + pos: 12.5,37.5 + parent: 2 + - uid: 15797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,-32.5 - parent: 89 - - uid: 18865 + pos: 5.5,37.5 + parent: 2 + - uid: 15798 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-32.5 - parent: 89 - - uid: 18868 + pos: 7.5,37.5 + parent: 2 + - uid: 15799 components: - type: Transform rot: 1.5707963267948966 rad - pos: -119.5,-29.5 - parent: 89 - - uid: 18871 + pos: 14.5,37.5 + parent: 2 + - uid: 15800 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-24.5 - parent: 89 - - uid: 18872 + pos: -27.5,-8.5 + parent: 2 + - type: Door + state: Closed + - type: Occluder + enabled: True + - type: Physics + canCollide: True + - uid: 15801 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-23.5 - parent: 89 - - uid: 19798 + rot: -1.5707963267948966 rad + pos: -0.5,15.5 + parent: 2 + - uid: 15802 components: - type: Transform - pos: 33.5,40.5 - parent: 89 - - uid: 19824 + rot: -1.5707963267948966 rad + pos: -2.5,15.5 + parent: 2 + - uid: 15803 components: - type: Transform - pos: -12.5,25.5 - parent: 89 - - uid: 19865 + pos: 40.5,17.5 + parent: 2 + - uid: 15804 components: - type: Transform - pos: 25.5,33.5 - parent: 89 - - uid: 19867 + rot: 3.141592653589793 rad + pos: -46.5,25.5 + parent: 2 + - uid: 15805 components: - type: Transform - pos: 23.5,44.5 - parent: 89 - - uid: 19868 + rot: 3.141592653589793 rad + pos: -45.5,25.5 + parent: 2 + - uid: 15806 components: - type: Transform - pos: 24.5,44.5 - parent: 89 - - uid: 19869 + rot: 3.141592653589793 rad + pos: -44.5,25.5 + parent: 2 + - uid: 15807 components: - type: Transform - pos: 25.5,44.5 - parent: 89 - - uid: 19881 + rot: 3.141592653589793 rad + pos: -43.5,25.5 + parent: 2 + - uid: 15808 components: - type: Transform - pos: 23.5,33.5 - parent: 89 - - uid: 19907 + rot: 3.141592653589793 rad + pos: -42.5,25.5 + parent: 2 + - uid: 24176 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 89 - - uid: 19908 + pos: 6.5,-4.5 + parent: 23919 + - uid: 24177 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 89 - - uid: 19909 + pos: 6.5,-5.5 + parent: 23919 +- proto: hydroponicsSoil + entities: + - uid: 15809 + components: + - type: Transform + pos: -8.5,37.5 + parent: 2 + - uid: 15810 + components: + - type: Transform + pos: -8.5,36.5 + parent: 2 + - uid: 15811 + components: + - type: Transform + pos: -8.5,35.5 + parent: 2 + - uid: 15812 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 89 - - uid: 19920 + pos: 7.5,-22.5 + parent: 2 + - uid: 15813 components: - type: Transform - pos: 33.5,37.5 - parent: 89 - - uid: 19921 + pos: 40.5,-31.5 + parent: 2 + - uid: 15814 components: - type: Transform - pos: 33.5,38.5 - parent: 89 - - uid: 19922 + pos: 43.5,-29.5 + parent: 2 + - uid: 15815 components: - type: Transform - pos: 33.5,39.5 - parent: 89 - - uid: 19923 + pos: 40.5,-29.5 + parent: 2 + - uid: 15816 components: - type: Transform - pos: 33.5,36.5 - parent: 89 - - uid: 19929 + pos: 43.5,-31.5 + parent: 2 + - uid: 15817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 89 - - uid: 19941 + pos: 43.5,-32.5 + parent: 2 + - uid: 15818 components: - type: Transform - pos: 33.5,41.5 - parent: 89 - - uid: 19942 + pos: 40.5,-28.5 + parent: 2 +- proto: HydroponicsToolClippers + entities: + - uid: 15819 components: - type: Transform - pos: 28.5,44.5 - parent: 89 - - uid: 19943 + pos: 41.537804,-33.535225 + parent: 2 + - uid: 15820 components: - type: Transform - pos: 28.5,45.5 - parent: 89 - - uid: 19944 + pos: 41.45968,-31.300852 + parent: 2 + - uid: 15821 components: - type: Transform - pos: 28.5,46.5 - parent: 89 - - uid: 19945 + pos: 42.64718,-30.191477 + parent: 2 +- proto: HydroponicsToolHatchet + entities: + - uid: 15822 components: - type: Transform - pos: 26.5,47.5 - parent: 89 - - uid: 19946 + rot: -1.5707963267948966 rad + pos: 6.4907417,-25.471716 + parent: 2 +- proto: HydroponicsToolMiniHoe + entities: + - uid: 15823 components: - type: Transform - pos: 25.5,47.5 - parent: 89 - - uid: 19947 + pos: -5.3726068,37.559914 + parent: 2 + - uid: 15824 components: - type: Transform - pos: 24.5,47.5 - parent: 89 - - uid: 19948 + pos: 42.58468,-31.003977 + parent: 2 + - uid: 15825 components: - type: Transform - pos: 23.5,47.5 - parent: 89 - - uid: 19949 + pos: 41.45968,-32.80085 + parent: 2 + - uid: 15826 components: - type: Transform - pos: 22.5,47.5 - parent: 89 - - uid: 19951 + rot: 3.141592653589793 rad + pos: 42.261623,-31.969624 + parent: 2 + - uid: 15827 components: - type: Transform - pos: 20.5,46.5 - parent: 89 - - uid: 19952 + rot: 3.141592653589793 rad + pos: 42.636623,-33.6415 + parent: 2 +- proto: HydroponicsToolSpade + entities: + - uid: 15828 components: - type: Transform - pos: 20.5,45.5 - parent: 89 - - uid: 19953 + pos: 42.706074,-32.85235 + parent: 2 + - uid: 15829 components: - type: Transform - pos: 20.5,44.5 - parent: 89 - - uid: 19955 + pos: 41.424824,-28.586721 + parent: 2 + - uid: 15830 components: - type: Transform - pos: 17.5,42.5 - parent: 89 - - uid: 19956 + rot: 3.141592653589793 rad + pos: 41.355373,-30.110249 + parent: 2 + - uid: 15831 components: - type: Transform - pos: 18.5,42.5 - parent: 89 - - uid: 20009 + rot: 3.141592653589793 rad + pos: 42.917873,-29.141499 + parent: 2 +- proto: hydroponicsTray + entities: + - uid: 15832 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,47.5 - parent: 89 - - uid: 20022 + pos: -7.5,-0.5 + parent: 2 + - uid: 15833 components: - type: Transform - pos: -7.5,19.5 - parent: 89 - - uid: 20023 + pos: -7.5,-2.5 + parent: 2 + - uid: 15834 components: - type: Transform - pos: -7.5,20.5 - parent: 89 - - uid: 20024 + pos: -6.5,-2.5 + parent: 2 + - uid: 15835 components: - type: Transform - pos: -7.5,17.5 - parent: 89 - - uid: 20204 + pos: -6.5,-4.5 + parent: 2 + - uid: 15836 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,34.5 - parent: 89 - - uid: 20255 + pos: -7.5,-4.5 + parent: 2 + - uid: 15837 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 - parent: 89 - - uid: 20256 + pos: -6.5,-0.5 + parent: 2 + - uid: 15838 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,27.5 - parent: 89 - - uid: 20389 + pos: -8.5,-2.5 + parent: 2 + - uid: 15839 components: - type: Transform - pos: 39.5,-32.5 - parent: 89 - - uid: 20392 + pos: -8.5,-4.5 + parent: 2 + - uid: 15840 components: - type: Transform - pos: 39.5,-31.5 - parent: 89 - - uid: 20400 + pos: 40.5,-30.5 + parent: 2 + - uid: 15841 components: - type: Transform - pos: -142.5,-19.5 - parent: 89 - - uid: 20420 + pos: 43.5,-30.5 + parent: 2 + - uid: 15842 components: - type: Transform - pos: 39.5,-33.5 - parent: 89 - - uid: 20437 + pos: 40.5,-33.5 + parent: 2 + - uid: 15843 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,37.5 - parent: 89 - - uid: 20475 + pos: 43.5,-33.5 + parent: 2 + - uid: 15844 components: - type: Transform - pos: -139.5,-19.5 - parent: 89 - - uid: 20572 + pos: 40.5,-32.5 + parent: 2 + - uid: 15845 components: - type: Transform - pos: -145.5,-19.5 - parent: 89 - - uid: 20574 + pos: -5.5,-4.5 + parent: 2 + - uid: 15846 components: - type: Transform - pos: -145.5,-21.5 - parent: 89 - - uid: 20580 + pos: -4.5,-4.5 + parent: 2 + - uid: 15847 components: - type: Transform - pos: -161.5,-11.5 - parent: 89 - - uid: 20585 + pos: -4.5,-2.5 + parent: 2 + - uid: 15848 components: - type: Transform - pos: -161.5,-5.5 - parent: 89 - - uid: 20586 + pos: -5.5,-2.5 + parent: 2 +- proto: IgniteRune + entities: + - uid: 26464 components: - type: Transform - pos: -142.5,-21.5 - parent: 89 - - uid: 20597 + pos: -8.5,-2.5 + parent: 24450 +- proto: InflatableDoorStack + entities: + - uid: 15849 components: - type: Transform - pos: -148.5,-19.5 - parent: 89 - - uid: 20601 + rot: 3.141592653589793 rad + pos: -90.34418,-11.2949505 + parent: 2 + - uid: 15850 components: - type: Transform - pos: -148.5,-21.5 - parent: 89 - - uid: 20603 + rot: 3.141592653589793 rad + pos: -90.2973,-11.6699505 + parent: 2 + - uid: 15851 components: - type: Transform - pos: -150.5,-19.5 - parent: 89 - - uid: 20604 + pos: -75.44624,12.53618 + parent: 2 +- proto: InflatableWall + entities: + - uid: 15852 components: - type: Transform - pos: -152.5,-21.5 - parent: 89 - - uid: 20605 + rot: -1.5707963267948966 rad + pos: -128.5,-7.5 + parent: 2 + - uid: 15853 components: - type: Transform - pos: -152.5,-19.5 - parent: 89 - - uid: 20606 + rot: -1.5707963267948966 rad + pos: -128.5,-6.5 + parent: 2 + - uid: 15854 components: - type: Transform - pos: -154.5,-21.5 - parent: 89 - - uid: 20608 + pos: -52.5,32.5 + parent: 2 + - uid: 15855 components: - type: Transform - pos: -154.5,-19.5 - parent: 89 - - uid: 20609 + pos: -41.5,28.5 + parent: 2 + - uid: 15856 components: - type: Transform - pos: -156.5,-21.5 - parent: 89 - - uid: 20610 + pos: -41.5,29.5 + parent: 2 + - uid: 15857 components: - type: Transform - pos: -156.5,-19.5 - parent: 89 - - uid: 20611 + pos: -131.5,24.5 + parent: 2 + - uid: 15858 components: - type: Transform - pos: -158.5,-21.5 - parent: 89 - - uid: 20612 + pos: -130.5,24.5 + parent: 2 + - uid: 15859 components: - type: Transform - pos: -158.5,-19.5 - parent: 89 - - uid: 20613 + pos: -133.5,21.5 + parent: 2 +- proto: InflatableWallStack + entities: + - uid: 15860 components: - type: Transform - pos: -161.5,-17.5 - parent: 89 - - uid: 20614 + rot: 3.141592653589793 rad + pos: -90.9848,-11.5918255 + parent: 2 + - uid: 15861 components: - type: Transform - pos: -159.5,-17.5 - parent: 89 - - uid: 20616 + rot: 3.141592653589793 rad + pos: -90.9223,-11.3418255 + parent: 2 + - uid: 15862 components: - type: Transform - pos: -161.5,-15.5 - parent: 89 - - uid: 20617 + pos: -75.46187,13.06743 + parent: 2 +- proto: IngotGold + entities: + - uid: 15863 components: - type: Transform - pos: -159.5,-15.5 - parent: 89 - - uid: 20619 + pos: -8.470213,28.527115 + parent: 2 + - uid: 15864 components: - type: Transform - pos: -161.5,-13.5 - parent: 89 - - uid: 20621 + pos: 48.437695,-3.4508457 + parent: 2 + - uid: 25746 components: - type: Transform - pos: -159.5,-13.5 - parent: 89 - - uid: 20624 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IngotSilver + entities: + - uid: 15865 components: - type: Transform - pos: -159.5,-11.5 - parent: 89 - - uid: 20625 + pos: 50.562695,-3.4508457 + parent: 2 + - uid: 24178 components: - type: Transform - pos: -154.5,4.5 - parent: 89 - - uid: 20626 + pos: 4.408203,-7.3639374 + parent: 23919 + - uid: 25747 components: - type: Transform - pos: -161.5,-9.5 - parent: 89 - - uid: 20627 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: IntercomCommand + entities: + - uid: 15866 components: - type: Transform - pos: -159.5,-9.5 - parent: 89 - - uid: 20628 + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - uid: 15867 components: - type: Transform - pos: -161.5,-7.5 - parent: 89 - - uid: 20629 + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 15868 components: - type: Transform - pos: -159.5,-7.5 - parent: 89 - - uid: 20630 + pos: 61.5,14.5 + parent: 2 + - uid: 15869 components: - type: Transform - pos: -159.5,-5.5 - parent: 89 - - uid: 20631 + rot: 3.141592653589793 rad + pos: 61.5,-5.5 + parent: 2 + - uid: 15870 components: - type: Transform - pos: -161.5,-3.5 - parent: 89 - - uid: 20632 + pos: 25.5,38.5 + parent: 2 +- proto: IntercomCommon + entities: + - uid: 15871 components: - type: Transform - pos: -159.5,-3.5 - parent: 89 - - uid: 20633 + rot: 3.141592653589793 rad + pos: -49.5,-5.5 + parent: 2 +- proto: IntercomElectronics + entities: + - uid: 15872 components: - type: Transform - pos: -161.5,-1.5 - parent: 89 - - uid: 20634 + pos: -104.34865,-10.52207 + parent: 2 + - uid: 15873 components: - type: Transform - pos: -159.5,-1.5 - parent: 89 - - uid: 20635 + pos: -104.6299,-10.24082 + parent: 2 +- proto: IntercomMedical + entities: + - uid: 15874 components: - type: Transform - pos: -161.5,0.5 - parent: 89 - - uid: 20636 + rot: -1.5707963267948966 rad + pos: 11.5,35.5 + parent: 2 + - uid: 15875 components: - type: Transform - pos: -159.5,0.5 - parent: 89 - - uid: 20638 + pos: -13.5,10.5 + parent: 2 + - uid: 15876 components: - type: Transform - pos: -161.5,2.5 - parent: 89 - - uid: 20639 + pos: 16.5,16.5 + parent: 2 +- proto: IntercomScience + entities: + - uid: 15877 components: - type: Transform - pos: -159.5,2.5 - parent: 89 - - uid: 20640 + rot: 3.141592653589793 rad + pos: -9.5,-19.5 + parent: 2 + - uid: 15878 components: - type: Transform - pos: -158.5,4.5 - parent: 89 - - uid: 20642 + pos: -3.5,-37.5 + parent: 2 + - uid: 15879 components: - type: Transform - pos: -158.5,6.5 - parent: 89 - - uid: 20643 + pos: -6.5,-19.5 + parent: 2 + - uid: 15880 components: - type: Transform - pos: -156.5,4.5 - parent: 89 - - uid: 20644 + rot: 1.5707963267948966 rad + pos: -23.5,-19.5 + parent: 2 +- proto: IntercomSecurity + entities: + - uid: 15881 components: - type: Transform - pos: -156.5,6.5 - parent: 89 - - uid: 20646 + pos: 30.5,-0.5 + parent: 2 + - uid: 15882 components: - type: Transform - pos: -154.5,6.5 - parent: 89 - - uid: 20647 + rot: 1.5707963267948966 rad + pos: 15.5,6.5 + parent: 2 +- proto: IntercomService + entities: + - uid: 15883 components: - type: Transform - pos: -152.5,4.5 - parent: 89 - - uid: 20648 + rot: -1.5707963267948966 rad + pos: -32.5,-5.5 + parent: 2 + - uid: 15884 components: - type: Transform - pos: -152.5,6.5 - parent: 89 - - uid: 20649 + rot: 1.5707963267948966 rad + pos: -27.5,-2.5 + parent: 2 +- proto: IronRock + entities: + - uid: 26465 components: - type: Transform - pos: -150.5,4.5 - parent: 89 - - uid: 20651 + pos: -26.5,-8.5 + parent: 24450 + - uid: 26466 components: - type: Transform - pos: -150.5,6.5 - parent: 89 - - uid: 20652 + pos: -26.5,-7.5 + parent: 24450 + - uid: 26467 components: - type: Transform - pos: -148.5,4.5 - parent: 89 - - uid: 20653 + pos: -25.5,-7.5 + parent: 24450 +- proto: IronRockMining + entities: + - uid: 26468 components: - type: Transform - pos: -148.5,6.5 - parent: 89 - - uid: 20654 + pos: -1.5,-8.5 + parent: 24450 + - uid: 26469 components: - type: Transform - pos: -146.5,4.5 - parent: 89 - - uid: 20655 + pos: 2.5,-7.5 + parent: 24450 + - uid: 26470 components: - type: Transform - pos: -146.5,6.5 - parent: 89 - - uid: 20664 + pos: 0.5,-4.5 + parent: 24450 +- proto: JanitorialTrolley + entities: + - uid: 15885 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,35.5 - parent: 89 - - uid: 20665 + pos: -41.5,8.5 + parent: 2 + - uid: 15886 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,33.5 - parent: 89 - - uid: 20672 + pos: 5.5,9.5 + parent: 2 + - uid: 15887 components: - type: Transform rot: -1.5707963267948966 rad - pos: 63.5,35.5 - parent: 89 - - uid: 20673 + pos: -36.5,7.5 + parent: 2 +- proto: JetpackBlueFilled + entities: + - uid: 15888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,38.5 - parent: 89 - - uid: 20674 + pos: 32.695797,5.556506 + parent: 2 + - uid: 15889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,37.5 - parent: 89 - - uid: 20683 + pos: 32.398922,5.572131 + parent: 2 + - uid: 15890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,34.5 - parent: 89 - - uid: 20700 + pos: 32.664547,5.556506 + parent: 2 + - uid: 15891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,37.5 - parent: 89 - - uid: 20702 + pos: 32.570797,5.525256 + parent: 2 + - uid: 15892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,33.5 - parent: 89 - - uid: 20710 + pos: 32.680172,5.587756 + parent: 2 +- proto: JetpackMini + entities: + - uid: 26471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,37.5 - parent: 89 - - uid: 20711 + pos: -0.04309082,-12.018944 + parent: 24450 +- proto: JetpackMiniFilled + entities: + - uid: 15893 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,38.5 - parent: 89 - - uid: 20712 + pos: -88.53448,26.530077 + parent: 2 + - uid: 15894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,40.5 - parent: 89 - - uid: 20713 + pos: 52.53474,-8.405069 + parent: 2 +- proto: KitchenElectricGrill + entities: + - uid: 15895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,41.5 - parent: 89 - - uid: 20714 + pos: -13.5,-3.5 + parent: 2 + - uid: 15896 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,30.5 - parent: 89 - - uid: 20715 + pos: 46.5,-25.5 + parent: 2 +- proto: KitchenMicrowave + entities: + - uid: 15897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,41.5 - parent: 89 - - uid: 20716 + pos: -14.5,-0.5 + parent: 2 + - uid: 15898 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,40.5 - parent: 89 - - uid: 20717 + pos: -12.5,-0.5 + parent: 2 + - uid: 15899 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,41.5 - parent: 89 - - uid: 20718 + pos: -119.5,-15.5 + parent: 2 + - uid: 15900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,41.5 - parent: 89 - - uid: 20720 + pos: -5.5,32.5 + parent: 2 + - uid: 15901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,31.5 - parent: 89 - - uid: 20721 + pos: 46.5,-28.5 + parent: 2 + - uid: 15902 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,31.5 - parent: 89 - - uid: 20723 + pos: 46.5,-24.5 + parent: 2 + - uid: 15903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,31.5 - parent: 89 - - uid: 20724 + pos: 33.5,-5.5 + parent: 2 + - uid: 15904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,31.5 - parent: 89 - - uid: 20725 + pos: -96.5,-4.5 + parent: 2 + - uid: 26472 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,43.5 - parent: 89 - - uid: 20726 + pos: -14.5,-24.5 + parent: 24450 +- proto: KitchenReagentGrinder + entities: + - uid: 15905 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,45.5 - parent: 89 - - uid: 20727 + pos: -11.5,-0.5 + parent: 2 + - uid: 15906 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,45.5 - parent: 89 - - uid: 20728 + pos: -29.5,0.5 + parent: 2 + - uid: 15907 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,44.5 - parent: 89 - - uid: 20729 + pos: -13.5,-0.5 + parent: 2 + - uid: 15908 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,45.5 - parent: 89 - - uid: 20730 + pos: -5.5,33.5 + parent: 2 + - uid: 15909 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,45.5 - parent: 89 - - uid: 20731 + pos: 47.5,-28.5 + parent: 2 + - uid: 15910 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,41.5 - parent: 89 - - uid: 20732 + pos: 46.5,-27.5 + parent: 2 + - uid: 15911 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,41.5 - parent: 89 - - uid: 20733 + pos: -3.5,6.5 + parent: 2 + - uid: 27799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,41.5 - parent: 89 - - uid: 20734 + pos: -2.5,-12.5 + parent: 27260 +- proto: KitchenSpike + entities: + - uid: 15912 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,41.5 - parent: 89 - - uid: 20735 + pos: -12.5,-9.5 + parent: 2 +- proto: KnifePlastic + entities: + - uid: 15913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,41.5 - parent: 89 - - uid: 20736 + pos: -12.095051,-31.779919 + parent: 2 + - uid: 15914 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,41.5 - parent: 89 - - uid: 20737 + pos: 46.707172,-27.829277 + parent: 2 +- proto: KudzuFlowerFriendly + entities: + - uid: 15915 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,41.5 - parent: 89 - - uid: 20738 + rot: 3.141592653589793 rad + pos: -90.5,-14.5 + parent: 2 +- proto: Lamp + entities: + - uid: 15916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,41.5 - parent: 89 - - uid: 20739 + rot: 3.141592653589793 rad + pos: -103.93759,21.725552 + parent: 2 + - uid: 15917 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,28.5 - parent: 89 - - uid: 20740 + pos: -61.446922,-5.000888 + parent: 2 + - uid: 15918 components: - type: Transform rot: -1.5707963267948966 rad - pos: 62.5,27.5 - parent: 89 - - uid: 20781 + pos: 44.501057,6.3397737 + parent: 2 + - uid: 15919 components: - type: Transform - pos: 38.5,35.5 - parent: 89 - - uid: 20799 + pos: 20.482098,5.6791444 + parent: 2 + - uid: 15920 components: - type: Transform - pos: 35.5,36.5 - parent: 89 - - uid: 20883 + pos: 8.682205,9.82186 + parent: 2 + - uid: 15921 components: - type: Transform - pos: 15.5,-26.5 - parent: 89 - - uid: 20884 + rot: 3.141592653589793 rad + pos: -25.549576,9.8738165 + parent: 2 + - uid: 15922 components: - type: Transform - pos: 16.5,-26.5 - parent: 89 - - uid: 20885 + rot: 3.141592653589793 rad + pos: -0.5588393,19.764381 + parent: 2 + - uid: 15923 components: - type: Transform - pos: 17.5,-26.5 - parent: 89 - - uid: 20886 + rot: -1.5707963267948966 rad + pos: 25.538666,40.34335 + parent: 2 + - uid: 15924 components: - type: Transform - pos: 17.5,-25.5 - parent: 89 - - uid: 20887 + rot: 3.141592653589793 rad + pos: 58.432224,-31.40483 + parent: 2 +- proto: LampBanana + entities: + - uid: 15925 components: - type: Transform - pos: 17.5,-24.5 - parent: 89 - - uid: 20888 + pos: -35.397045,-3.1333203 + parent: 2 +- proto: LampGold + entities: + - uid: 15926 components: - type: Transform - pos: 17.5,-23.5 - parent: 89 - - uid: 20890 + pos: -27.461552,25.006954 + parent: 2 + - uid: 15927 components: - type: Transform - pos: 19.5,-23.5 - parent: 89 - - uid: 20891 + rot: 1.5707963267948966 rad + pos: -49.895138,9.879225 + parent: 2 + - uid: 15928 components: - type: Transform - pos: 20.5,-23.5 - parent: 89 - - uid: 20892 + rot: -1.5707963267948966 rad + pos: -73.3404,-1.379747 + parent: 2 + - uid: 15929 components: - type: Transform - pos: 20.5,-22.5 - parent: 89 - - uid: 21042 + rot: 3.141592653589793 rad + pos: 55.557224,-33.389206 + parent: 2 + - uid: 15930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 48.5,21.5 - parent: 89 - - uid: 21043 + pos: -79.66362,-1.3675164 + parent: 2 +- proto: LampInterrogator + entities: + - uid: 15931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,21.5 - parent: 89 - - uid: 21055 + pos: 18.405268,11.867744 + parent: 2 + - uid: 15932 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 58.5,26.5 - parent: 89 - - uid: 21056 + pos: 3.9796157,-0.92675114 + parent: 2 + - uid: 15933 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,26.5 - parent: 89 - - uid: 21057 + pos: 34.329742,-3.3009233 + parent: 2 + - uid: 15934 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,26.5 - parent: 89 - - uid: 21065 + pos: -23.583075,8.832296 + parent: 2 +- proto: LandMineExplosive + entities: + - uid: 15935 components: - type: Transform - pos: 37.5,42.5 - parent: 89 - - uid: 21066 + pos: -121.41261,20.372383 + parent: 2 + - uid: 15936 components: - type: Transform - pos: 36.5,42.5 - parent: 89 - - uid: 21067 + pos: -17.49261,17.490574 + parent: 2 + - uid: 15937 components: - type: Transform - pos: 38.5,42.5 - parent: 89 - - uid: 21068 + pos: -7.4802694,33.297485 + parent: 2 + - uid: 15938 components: - type: Transform - pos: 39.5,42.5 - parent: 89 - - uid: 21069 + pos: 0.49442625,43.3962 + parent: 2 + - uid: 15939 components: - type: Transform - pos: 40.5,42.5 - parent: 89 - - uid: 21160 + pos: 50.606052,-16.011705 + parent: 2 + - uid: 15940 components: - type: Transform - pos: 49.5,18.5 - parent: 89 - - uid: 21161 + pos: -4.4686537,40.2199 + parent: 2 + - uid: 15941 components: - type: Transform - pos: 49.5,17.5 - parent: 89 - - uid: 21199 + pos: 34.688606,-35.510906 + parent: 2 + - uid: 15942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,25.5 - parent: 89 - - uid: 21579 + pos: 45.455486,-39.604183 + parent: 2 + - uid: 15943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,47.5 - parent: 89 - - uid: 21580 + pos: 0.68342876,35.56857 + parent: 2 + - uid: 15944 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,47.5 - parent: 89 - - uid: 21581 + pos: -22.0184,28.013847 + parent: 2 + - uid: 15945 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,46.5 - parent: 89 - - uid: 21582 + pos: -37.92106,27.596144 + parent: 2 + - uid: 15946 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 16.5,45.5 - parent: 89 - - uid: 21698 + pos: 51.694767,-39.464676 + parent: 2 + - uid: 15947 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 21627 - - uid: 21699 + pos: 37.066868,-39.541683 + parent: 2 + - uid: 15948 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 21627 - - uid: 21700 + pos: 60.532272,-15.471241 + parent: 2 + - uid: 15949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,0.5 - parent: 21627 - - uid: 21837 + pos: -20.449375,23.433443 + parent: 2 + - uid: 15950 components: - type: Transform - pos: 53.5,-38.5 - parent: 89 - - uid: 21882 + pos: -14.347334,33.5509 + parent: 2 + - uid: 15951 components: - type: Transform - pos: 38.5,-38.5 - parent: 89 - - uid: 21885 + pos: 65.5428,-24.867735 + parent: 2 + - uid: 15952 components: - type: Transform - pos: 55.5,-37.5 - parent: 89 - - uid: 21886 + pos: 55.81865,-39.589676 + parent: 2 + - uid: 15953 components: - type: Transform - pos: 51.5,-38.5 - parent: 89 - - uid: 21887 + pos: 60.473576,-39.495926 + parent: 2 + - uid: 15954 components: - type: Transform - pos: 52.5,-38.5 - parent: 89 - - uid: 21888 + pos: 64.45394,-36.5428 + parent: 2 + - uid: 15955 components: - type: Transform - pos: 49.5,-38.5 - parent: 89 - - uid: 21889 + pos: 64.40707,-30.985271 + parent: 2 + - uid: 15956 components: - type: Transform - pos: 50.5,-38.5 - parent: 89 - - uid: 21890 + pos: 63.5428,-18.87275 + parent: 2 + - uid: 15957 components: - type: Transform - pos: 44.5,-38.5 - parent: 89 - - uid: 21891 + pos: 41.560143,-39.416103 + parent: 2 + - uid: 15958 components: - type: Transform - pos: 48.5,-38.5 - parent: 89 - - uid: 21892 + pos: 34.571785,-30.9184 + parent: 2 + - uid: 15959 components: - type: Transform - pos: 42.5,-38.5 - parent: 89 - - uid: 21893 + pos: -21.363699,23.506382 + parent: 2 + - uid: 15960 components: - type: Transform - pos: 43.5,-38.5 - parent: 89 - - uid: 21894 + pos: -44.660183,24.428074 + parent: 2 + - uid: 15961 components: - type: Transform - pos: 40.5,-38.5 - parent: 89 - - uid: 21895 + pos: -92.34617,26.45698 + parent: 2 + - uid: 15962 components: - type: Transform - pos: 39.5,-38.5 - parent: 89 - - uid: 21897 + pos: -127.621735,20.374523 + parent: 2 + - uid: 15963 components: - type: Transform - pos: 55.5,-38.5 - parent: 89 - - uid: 21898 + pos: -125.420425,20.408354 + parent: 2 +- proto: LandMineModular + entities: + - uid: 15964 components: - type: Transform - pos: 46.5,-38.5 - parent: 89 - - uid: 21899 + pos: 47.42424,13.201784 + parent: 2 + - uid: 15965 components: + - type: MetaData + name: взрывная мина - type: Transform - pos: 45.5,-38.5 - parent: 89 - - uid: 21900 + pos: 47.278114,-15.313954 + parent: 2 + - uid: 15966 components: + - type: MetaData + name: взрывная мина - type: Transform - pos: 38.5,-37.5 - parent: 89 - - uid: 21901 + pos: 50.23124,-13.423328 + parent: 2 +- proto: Lantern + entities: + - uid: 15967 components: - type: Transform - pos: 53.5,-37.5 - parent: 89 - - uid: 21903 + pos: 8.490026,-20.236387 + parent: 2 + - uid: 15968 components: - type: Transform - pos: 41.5,-38.5 - parent: 89 - - uid: 21904 + pos: -12.79487,-35.70387 + parent: 2 + - uid: 26473 components: - type: Transform - pos: 38.5,-36.5 - parent: 89 - - uid: 21905 + pos: 4.397705,10.767603 + parent: 24450 + - uid: 26474 components: - type: Transform - pos: 37.5,-35.5 - parent: 89 - - uid: 21907 + pos: 3.5099854,10.626978 + parent: 24450 +- proto: LargeBeaker + entities: + - uid: 15969 components: - type: Transform - pos: 36.5,-34.5 - parent: 89 - - uid: 21908 + pos: 46.36333,-26.008604 + parent: 2 + - uid: 15970 components: - type: Transform - pos: 36.5,-33.5 - parent: 89 - - uid: 21909 + pos: 46.597706,-25.99298 + parent: 2 + - uid: 15971 components: - type: Transform - pos: 36.5,-32.5 - parent: 89 - - uid: 21910 + pos: -1.9276239,5.7597456 + parent: 2 + - uid: 27800 components: - type: Transform - pos: 36.5,-31.5 - parent: 89 - - uid: 21911 + pos: -3.3199615,-13.10495 + parent: 27260 +- proto: LeavesCannabisDried + entities: + - uid: 9224 components: - type: Transform - pos: 37.5,-31.5 - parent: 89 - - uid: 21912 + parent: 9223 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LightBulb + entities: + - uid: 15973 components: - type: Transform - pos: 37.5,-30.5 - parent: 89 - - uid: 21913 + parent: 15972 + - type: Physics + canCollide: False + - uid: 15975 components: - type: Transform - pos: 37.5,-29.5 - parent: 89 - - uid: 21915 + parent: 15974 + - type: Physics + canCollide: False + - uid: 15977 components: - type: Transform - pos: 56.5,-38.5 - parent: 89 - - uid: 21916 + parent: 15976 + - type: Physics + canCollide: False + - uid: 15979 components: - type: Transform - pos: 57.5,-38.5 - parent: 89 - - uid: 21917 + parent: 15978 + - type: Physics + canCollide: False + - uid: 15981 components: - type: Transform - pos: 58.5,-38.5 - parent: 89 - - uid: 21921 + parent: 15980 + - type: Physics + canCollide: False + - uid: 15983 components: - type: Transform - pos: 59.5,-37.5 - parent: 89 - - uid: 21922 + parent: 15982 + - type: Physics + canCollide: False +- proto: Lighter + entities: + - uid: 25646 components: - type: Transform - pos: 60.5,-37.5 - parent: 89 - - uid: 21923 + parent: 25644 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: LightReplacer + entities: + - uid: 15984 components: - type: Transform - pos: 61.5,-37.5 - parent: 89 - - uid: 21924 + pos: -78.464035,-6.370775 + parent: 2 + - uid: 15985 components: - type: Transform - pos: 62.5,-37.5 - parent: 89 - - uid: 21925 + pos: -95.46373,16.583893 + parent: 2 +- proto: LightTree04 + entities: + - uid: 15986 components: - type: Transform - pos: 62.5,-36.5 - parent: 89 - - uid: 21926 + pos: 40.450554,-29.439976 + parent: 2 +- proto: LiquidCarbonDioxideCanister + entities: + - uid: 15987 components: - type: Transform - pos: 62.5,-35.5 - parent: 89 - - uid: 21927 + pos: -86.5,-4.5 + parent: 2 + - uid: 15988 components: - type: Transform - pos: 62.5,-34.5 - parent: 89 - - uid: 21928 + pos: 2.5,-38.5 + parent: 2 +- proto: LiquidNitrogenCanister + entities: + - uid: 15989 components: - type: Transform - pos: 62.5,-33.5 - parent: 89 - - uid: 21929 + pos: -84.5,-5.5 + parent: 2 + - uid: 15990 components: - type: Transform - pos: 62.5,-32.5 - parent: 89 - - uid: 21930 + pos: -0.5,-38.5 + parent: 2 + - uid: 15991 components: - type: Transform - pos: 62.5,-31.5 - parent: 89 - - uid: 21931 + pos: -84.5,-4.5 + parent: 2 +- proto: LiquidOxygenCanister + entities: + - uid: 15992 components: - type: Transform - pos: 62.5,-30.5 - parent: 89 - - uid: 21932 + pos: -85.5,-5.5 + parent: 2 + - uid: 15993 components: - type: Transform - pos: 62.5,-29.5 - parent: 89 - - uid: 21934 + pos: 0.5,-38.5 + parent: 2 + - uid: 15994 components: - type: Transform - pos: 63.5,-28.5 - parent: 89 - - uid: 21935 + pos: -85.5,-4.5 + parent: 2 +- proto: LockableButtonCaptain + entities: + - uid: 27801 components: - type: Transform - pos: 63.5,-27.5 - parent: 89 - - uid: 21936 + rot: 1.5707963267948966 rad + pos: 3.517624,-6.217499 + parent: 27260 + - type: DeviceLinkSource + linkedPorts: + 27280: + - Pressed: Toggle +- proto: LockableButtonCommand + entities: + - uid: 15995 components: + - type: MetaData + name: кнопка с замком вызова ОБР - type: Transform - pos: 63.5,-26.5 - parent: 89 - - uid: 21937 + rot: -1.5707963267948966 rad + pos: 49.5,14.5 + parent: 2 + - type: WirelessNetworkConnection + range: 10000 + - type: DeviceLinkSource + range: 10000 + linkedPorts: + 27281: + - Pressed: Open + 15972: + - Pressed: Toggle + 15978: + - Pressed: Toggle + 15976: + - Pressed: Toggle + - uid: 15996 components: + - type: MetaData + name: кнопка с замком вызова ОБР - type: Transform - pos: 63.5,-25.5 - parent: 89 - - uid: 21938 + rot: -1.5707963267948966 rad + pos: 38.5,-2.5 + parent: 2 + - type: WirelessNetworkConnection + range: 10000 + - type: DeviceLinkSource + range: 10000 + linkedPorts: + 27282: + - Pressed: Open + 15982: + - Pressed: Toggle + 15974: + - Pressed: Toggle + 15980: + - Pressed: Toggle + - uid: 24179 components: - type: Transform - pos: 63.5,-24.5 - parent: 89 - - uid: 21939 + rot: 3.141592653589793 rad + pos: 4.5,-10.5 + parent: 23919 + - type: DeviceLinkSource + linkedPorts: + 23957: + - Pressed: Toggle + 23958: + - Pressed: Toggle +- proto: LockableButtonEngineering + entities: + - uid: 15997 components: - type: Transform - pos: 63.5,-23.5 - parent: 89 - - uid: 21940 + rot: -1.5707963267948966 rad + pos: -127.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18171: + - Pressed: Toggle + 18172: + - Pressed: Toggle + 18173: + - Pressed: Toggle + - uid: 15998 components: - type: Transform - pos: 63.5,-22.5 - parent: 89 - - uid: 21942 + rot: -1.5707963267948966 rad + pos: -123.5,-4.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1047: + - Pressed: Toggle + 1049: + - Pressed: Toggle + 1050: + - Pressed: Toggle + 1048: + - Pressed: Toggle + - uid: 15999 components: - type: Transform - pos: 62.5,-22.5 - parent: 89 - - uid: 21943 + rot: 3.141592653589793 rad + pos: -122.5,-9.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1047: + - Pressed: Toggle + 1049: + - Pressed: Toggle + 1050: + - Pressed: Toggle + 1048: + - Pressed: Toggle +- proto: LockableButtonHeadOfPersonnel + entities: + - uid: 16000 components: - type: Transform - pos: 62.5,-21.5 - parent: 89 - - uid: 21944 + rot: 1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18114: + - Pressed: Toggle + 18112: + - Pressed: Toggle + 18113: + - Pressed: Toggle +- proto: LockableButtonResearch + entities: + - uid: 16001 components: - type: Transform - pos: 62.5,-20.5 - parent: 89 - - uid: 21945 + rot: -1.5707963267948966 rad + pos: -17.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18118: + - Pressed: Toggle + 18117: + - Pressed: Toggle + 18116: + - Pressed: Toggle + - uid: 16002 components: - type: Transform - pos: 62.5,-19.5 - parent: 89 - - uid: 21947 + rot: 3.141592653589793 rad + pos: -21.5,-14.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18116: + - Pressed: Toggle + 18117: + - Pressed: Toggle + 18118: + - Pressed: Toggle +- proto: LockableButtonSalvage + entities: + - uid: 16003 components: + - type: MetaData + name: кнопка с замком от внешних гермозатворов - type: Transform - pos: 61.5,-18.5 - parent: 89 - - uid: 21948 + rot: -1.5707963267948966 rad + pos: -53.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1044: + - Pressed: Toggle + 1040: + - Pressed: Toggle + 1039: + - Pressed: Toggle + - uid: 16004 components: + - type: MetaData + name: кнопка с замком от внешних гермозатворов - type: Transform - pos: 60.5,-18.5 - parent: 89 - - uid: 21949 + pos: -53.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1044: + - Pressed: Toggle + 1040: + - Pressed: Toggle + 1039: + - Pressed: Toggle + - uid: 16005 components: + - type: MetaData + name: кнопка с замком от защитных гермозатворов - type: Transform - pos: 60.5,-17.5 - parent: 89 - - uid: 21950 + rot: 1.5707963267948966 rad + pos: -53.5,-12.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1052: + - Pressed: Toggle + 1053: + - Pressed: Toggle +- proto: LockerAtmosphericsFilled + entities: + - uid: 8767 components: - type: Transform - pos: 60.5,-16.5 - parent: 89 - - uid: 21951 + pos: -90.5,-9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8768 + - 8771 + - 8770 + - 8773 + - 8769 + - 8772 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8774 components: - type: Transform - pos: 59.5,-16.5 - parent: 89 - - uid: 21960 + pos: -90.5,-8.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8775 + - 8776 + - 8779 + - 8777 + - 8780 + - 8778 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8781 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-4.5 - parent: 89 - - uid: 21961 + pos: -90.5,-7.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8782 + - 8783 + - 8787 + - 8786 + - 8784 + - 8785 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerBoozeFilled + entities: + - uid: 16006 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-3.5 - parent: 89 - - uid: 21962 + pos: 3.5,46.5 + parent: 2 + - uid: 16007 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-2.5 - parent: 89 - - uid: 21991 + pos: -28.5,-0.5 + parent: 2 +- proto: LockerBotanistFilled + entities: + - uid: 16008 components: - type: Transform - pos: 42.5,-37.5 - parent: 89 - - uid: 21992 + pos: -3.5,-9.5 + parent: 2 + - uid: 16009 components: - type: Transform - pos: 42.5,-36.5 - parent: 89 - - uid: 21993 + pos: -3.5,-8.5 + parent: 2 + - uid: 16010 components: - type: Transform - pos: 42.5,-35.5 - parent: 89 - - uid: 22000 + pos: -3.5,-7.5 + parent: 2 +- proto: LockerBrigmedicFilled + entities: + - uid: 16011 components: - type: Transform - pos: 57.5,-37.5 - parent: 89 - - uid: 22001 + pos: 10.5,-2.5 + parent: 2 +- proto: LockerCaptainFilled + entities: + - uid: 16012 components: - type: Transform - pos: 57.5,-36.5 - parent: 89 - - uid: 22002 + pos: 46.5,14.5 + parent: 2 +- proto: LockerChemistryFilled + entities: + - uid: 16013 components: - type: Transform - pos: 57.5,-35.5 - parent: 89 - - uid: 22003 + pos: 2.5,9.5 + parent: 2 + - uid: 16014 components: - type: Transform - pos: 50.5,-35.5 - parent: 89 - - uid: 22005 + pos: 3.5,9.5 + parent: 2 +- proto: LockerChiefEngineerFilled + entities: + - uid: 16015 components: - type: Transform - pos: 50.5,-37.5 - parent: 89 - - uid: 22012 + pos: -102.5,11.5 + parent: 2 +- proto: LockerChiefMedicalOfficerFilled + entities: + - uid: 16016 components: - type: Transform - pos: 39.5,-29.5 - parent: 89 - - uid: 22021 + pos: 23.5,43.5 + parent: 2 +- proto: LockerDetective + entities: + - uid: 8752 components: + - type: MetaData + name: шкаф - type: Transform - pos: 39.5,-30.5 - parent: 89 - - uid: 22023 + pos: 11.5,9.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 1.9938449 + - 7.5006547 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: Lock + locked: False + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8760 + - 8757 + - 8753 + - 8758 + - 8754 + - 8759 + - 8756 + - 8755 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerDetectiveFilled + entities: + - uid: 16017 components: - type: Transform - pos: 39.5,-28.5 - parent: 89 - - uid: 22027 + pos: 17.5,8.5 + parent: 2 +- proto: LockerEngineerFilled + entities: + - uid: 16018 components: - type: Transform - pos: 55.5,-34.5 - parent: 89 - - uid: 22028 + pos: -112.5,14.5 + parent: 2 + - uid: 16019 components: - type: Transform - pos: 56.5,-34.5 - parent: 89 - - uid: 22030 + pos: -100.5,0.5 + parent: 2 + - uid: 16020 components: - type: Transform - pos: 59.5,-31.5 - parent: 89 - - uid: 22081 + pos: -101.5,0.5 + parent: 2 + - uid: 16021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-22.5 - parent: 89 - - uid: 22125 + pos: -105.5,-0.5 + parent: 2 + - uid: 16022 components: - type: Transform - pos: 48.5,-36.5 - parent: 89 - - uid: 22126 + pos: -103.5,0.5 + parent: 2 + - uid: 16023 components: - type: Transform - pos: 48.5,-35.5 - parent: 89 - - uid: 22205 + pos: -102.5,0.5 + parent: 2 + - uid: 16024 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-32.5 - parent: 89 - - uid: 22206 + pos: -98.5,-1.5 + parent: 2 + - uid: 16025 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-32.5 - parent: 89 - - uid: 22208 + pos: -98.5,-2.5 + parent: 2 + - uid: 16026 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-22.5 - parent: 89 - - uid: 22209 + pos: -98.5,-3.5 + parent: 2 + - uid: 16027 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,-22.5 - parent: 89 - - uid: 24415 + pos: -105.5,-1.5 + parent: 2 +- proto: LockerEvidence + entities: + - uid: 16028 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-21.5 - parent: 22565 - - uid: 24416 + pos: -80.5,-3.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1495 + moles: + - 3.0981817 + - 11.655066 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - uid: 16029 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,11.5 - parent: 22565 - - uid: 24417 + pos: -54.5,39.5 + parent: 2 + - uid: 16030 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 22565 - - uid: 24418 + pos: -54.5,45.5 + parent: 2 + - uid: 16031 components: - type: Transform - pos: -25.5,-1.5 - parent: 22565 - - uid: 24419 + pos: 21.5,12.5 + parent: 2 + - uid: 16032 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,11.5 - parent: 22565 - - uid: 24420 + pos: 40.5,-25.5 + parent: 2 + - uid: 16033 components: - type: Transform - pos: -23.5,-1.5 - parent: 22565 - - uid: 24421 + pos: 38.5,-25.5 + parent: 2 + - uid: 16034 components: - type: Transform - pos: -24.5,19.5 - parent: 22565 - - uid: 24422 + pos: 40.5,-26.5 + parent: 2 + - uid: 16035 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 22565 - - uid: 24423 + pos: 38.5,-26.5 + parent: 2 + - uid: 16036 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 22565 - - uid: 24424 + pos: 40.5,-23.5 + parent: 2 + - uid: 16037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,1.5 - parent: 22565 - - uid: 24425 + pos: 40.5,-24.5 + parent: 2 + - uid: 16038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,11.5 - parent: 22565 - - uid: 24426 + pos: 38.5,-23.5 + parent: 2 + - uid: 16039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,5.5 - parent: 22565 - - uid: 24427 + pos: 38.5,-24.5 + parent: 2 + - uid: 16040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 22565 - - uid: 24428 + pos: 28.5,-1.5 + parent: 2 + - uid: 16041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-2.5 - parent: 22565 - - uid: 24429 + pos: 28.5,-2.5 + parent: 2 + - uid: 16042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,5.5 - parent: 22565 - - uid: 24430 + pos: 21.5,-10.5 + parent: 2 + - uid: 16043 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,-2.5 - parent: 22565 - - uid: 24431 + pos: 18.5,-10.5 + parent: 2 + - uid: 16044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,6.5 - parent: 22565 - - uid: 24432 + pos: 24.5,-10.5 + parent: 2 + - uid: 16045 components: - type: Transform - pos: -19.5,19.5 - parent: 22565 - - uid: 24433 + pos: 27.5,-10.5 + parent: 2 +- proto: LockerFreezer + entities: + - uid: 16046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,2.5 - parent: 22565 - - uid: 24434 + pos: -12.5,-7.5 + parent: 2 +- proto: LockerFreezerBase + entities: + - uid: 25863 components: - type: Transform - pos: -12.5,-27.5 - parent: 22565 - - uid: 24435 + pos: -12.5,-24.5 + parent: 24450 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 25868 + - 25869 + - 25867 + - 25870 + - 25872 + - 25866 + - 25865 + - 25871 + - 25864 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerFreezerVaultFilled + entities: + - uid: 16047 components: - type: Transform - pos: 0.5,19.5 - parent: 22565 - - uid: 24436 + pos: 50.5,-1.5 + parent: 2 +- proto: LockerHeadOfPersonnelFilled + entities: + - uid: 16048 components: - type: Transform - pos: -4.5,19.5 - parent: 22565 - - uid: 24437 + pos: 44.5,14.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: LockerHeadOfSecurityFilled + entities: + - uid: 16049 components: - type: Transform - pos: 1.5,-1.5 - parent: 22565 - - uid: 24438 + pos: 31.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 16050 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedical + entities: + - uid: 8931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,11.5 - parent: 22565 - - uid: 24439 + pos: 27.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8937 + - 8933 + - 8936 + - 8932 + - 8935 + - 8934 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,11.5 - parent: 22565 - - uid: 24440 + pos: 21.5,29.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8940 + - 8944 + - 8939 + - 8943 + - 8942 + - 8941 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicalFilled + entities: + - uid: 16051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 22565 - - uid: 24441 + pos: 11.5,16.5 + parent: 2 + - uid: 16052 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 - parent: 22565 - - uid: 24442 + pos: 35.5,18.5 + parent: 2 + - uid: 16053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,3.5 - parent: 22565 - - uid: 24443 + pos: 31.5,20.5 + parent: 2 +- proto: LockerMedicine + entities: + - uid: 10519 + components: + - type: Transform + pos: 22.5,19.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 10521 + - 10522 + - 10526 + - 10523 + - 10524 + - 10527 + - 10525 + - 10520 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerMedicineFilled + entities: + - uid: 16054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,8.5 - parent: 22565 - - uid: 24444 + pos: -11.5,15.5 + parent: 2 + - uid: 16055 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,12.5 - parent: 22565 - - uid: 24445 + pos: -12.5,15.5 + parent: 2 + - uid: 16056 components: - type: Transform - pos: -14.5,-27.5 - parent: 22565 - - uid: 24446 + pos: 34.5,18.5 + parent: 2 + - uid: 16057 components: - type: Transform - pos: -24.5,-1.5 - parent: 22565 - - uid: 24447 + pos: 5.5,14.5 + parent: 2 + - uid: 16058 components: - type: Transform - pos: 0.5,-1.5 - parent: 22565 - - uid: 24448 + pos: 33.5,18.5 + parent: 2 +- proto: LockerParamedicFilled + entities: + - uid: 16059 components: - type: Transform - pos: -0.5,-1.5 - parent: 22565 - - uid: 24449 + pos: 16.5,21.5 + parent: 2 +- proto: LockerQuarterMasterFilled + entities: + - uid: 8927 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 22565 - - uid: 24450 + pos: -73.5,-17.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: + - 8928 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerRepresentative + entities: + - uid: 27546 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 24451 + pos: -5.5,-4.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27552 + - 27548 + - 27549 + - 27551 + - 27547 + - 27550 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerResearchDirectorFilled + entities: + - uid: 16060 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 24452 + pos: 3.5,-31.5 + parent: 2 +- proto: LockerSalvageSpecialistFilled + entities: + - uid: 8819 components: - type: Transform - pos: -18.5,-24.5 - parent: 22565 - - uid: 24453 + pos: -47.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8820 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8821 components: - type: Transform - pos: -18.5,-23.5 - parent: 22565 - - uid: 24454 + pos: -48.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8822 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,8.5 - parent: 22565 - - uid: 24455 + pos: -49.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8824 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 8825 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,5.5 - parent: 22565 - - uid: 24456 + pos: -50.5,-11.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8826 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null +- proto: LockerScienceFilled + entities: + - uid: 16061 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,3.5 - parent: 22565 - - uid: 24457 + pos: -6.5,-25.5 + parent: 2 + - uid: 16062 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,3.5 - parent: 22565 - - uid: 24458 + pos: -7.5,-25.5 + parent: 2 +- proto: LockerSecurityFilled + entities: + - uid: 16063 components: - type: Transform - pos: -1.5,26.5 - parent: 22565 - - uid: 24459 + pos: 19.5,-6.5 + parent: 2 + - uid: 16064 components: - type: Transform - pos: -2.5,26.5 - parent: 22565 - - uid: 24460 + pos: -61.5,20.5 + parent: 2 + - uid: 16065 components: - type: Transform - pos: -21.5,26.5 - parent: 22565 - - uid: 24461 + pos: 18.5,-6.5 + parent: 2 + - uid: 16066 components: - type: Transform - pos: -22.5,26.5 - parent: 22565 - - uid: 24462 + pos: 20.5,-6.5 + parent: 2 + - uid: 16067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-26.5 - parent: 22565 - - uid: 24463 + pos: 17.5,-6.5 + parent: 2 + - uid: 16068 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-27.5 - parent: 22565 - - uid: 24464 + pos: 21.5,-6.5 + parent: 2 +- proto: LockerWallMedical + entities: + - uid: 23936 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-25.5 - parent: 22565 - - uid: 24465 + pos: 4.5,-2.5 + parent: 23919 + - 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: + - 23946 + - 23938 + - 23945 + - 23942 + - 23943 + - 23940 + - 23937 + - 23941 + - 23944 + - 23947 + - 23939 + - 23950 + - 23952 + - 23951 + - 23949 + - 23948 + - uid: 27293 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-22.5 - parent: 22565 - - uid: 24466 + pos: -2.5,-13.5 + parent: 27260 + - 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: + - 27294 + - 27295 + - 27296 +- proto: LockerWardenFilled + entities: + - uid: 16069 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-21.5 - parent: 22565 - - uid: 24467 + pos: 9.5,-8.5 + parent: 2 +- proto: LockerWeldingSuppliesFilled + entities: + - uid: 16070 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-22.5 - parent: 22565 - - uid: 24468 + pos: 49.5,5.5 + parent: 2 + - uid: 16071 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-21.5 - parent: 22565 - - uid: 24469 + pos: -39.5,-17.5 + parent: 2 + - uid: 16072 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-20.5 - parent: 22565 - - uid: 24470 + pos: -5.5,25.5 + parent: 2 + - uid: 16073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-25.5 - parent: 22565 - - uid: 24471 + pos: -16.5,13.5 + parent: 2 +- proto: Log + entities: + - uid: 16074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-26.5 - parent: 22565 - - uid: 24472 + pos: 7.479765,-25.628338 + parent: 2 + - uid: 16075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-27.5 - parent: 22565 - - uid: 24473 + pos: 7.015009,-25.861204 + parent: 2 +- proto: LogicGate + entities: + - uid: 27802 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-20.5 - parent: 22565 - - uid: 24474 + anchored: True + pos: -4.5,-0.5 + parent: 27260 + - type: LogicGate + gate: And + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 27284 + - 27281 + - type: Physics + canCollide: False + bodyType: Static + - uid: 27803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-19.5 - parent: 22565 - - uid: 24475 + anchored: True + pos: -4.5,-1.5 + parent: 27260 + - type: LogicGate + gate: And + - type: DeviceLinkSink + invokeCounter: 2 + links: + - 27281 + - 27282 + - type: DeviceLinkSource + linkedPorts: + 27864: + - Output: Trigger + - type: Physics + canCollide: False + bodyType: Static + - uid: 27804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,-19.5 - parent: 22565 - - uid: 24476 + anchored: True + pos: -4.5,-2.5 + parent: 27260 + - type: LogicGate + gate: And + - type: DeviceLinkSink + invokeCounter: 4 + links: + - 27283 + - 27282 + - type: Physics + canCollide: False + bodyType: Static +- proto: MachineAnomalyGenerator + entities: + - uid: 16076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-18.5 - parent: 22565 - - uid: 24477 + pos: -8.5,-28.5 + parent: 2 +- proto: MachineAnomalyVessel + entities: + - uid: 16077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-18.5 - parent: 22565 - - uid: 24478 + rot: 1.5707963267948966 rad + pos: -5.5,-32.5 + parent: 2 + - uid: 16078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-17.5 - parent: 22565 - - uid: 24479 + rot: 1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 2 + - uid: 16079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-16.5 - parent: 22565 - - uid: 24480 + rot: 1.5707963267948966 rad + pos: -6.5,-32.5 + parent: 2 +- proto: MachineAPE + entities: + - uid: 16080 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-15.5 - parent: 22565 - - uid: 24481 + rot: 1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - uid: 16081 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-14.5 - parent: 22565 - - uid: 24482 + rot: 1.5707963267948966 rad + pos: -7.5,-32.5 + parent: 2 + - uid: 16082 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-20.5 - parent: 22565 - - uid: 24483 + rot: 1.5707963267948966 rad + pos: -8.5,-32.5 + parent: 2 +- proto: MachineArtifactAnalyzer + entities: + - uid: 16083 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-15.5 - parent: 22565 - - uid: 24484 + pos: 0.5,-44.5 + parent: 2 + - uid: 16084 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-15.5 - parent: 22565 - - uid: 24485 + pos: -5.5,-44.5 + parent: 2 +- proto: MachineCentrifuge + entities: + - uid: 16085 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-15.5 - parent: 22565 - - uid: 24486 + pos: -0.5,9.5 + parent: 2 + - uid: 27805 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-14.5 - parent: 22565 - - uid: 24487 + pos: -4.5,-11.5 + parent: 27260 +- proto: MachineElectrolysisUnit + entities: + - uid: 16086 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 22565 - - uid: 24488 + pos: -0.5,8.5 + parent: 2 + - uid: 27806 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-12.5 - parent: 22565 - - uid: 24489 + pos: -2.5,-11.5 + parent: 27260 +- proto: MachineFrame + entities: + - uid: 16087 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,13.5 - parent: 22565 - - uid: 24490 + pos: 11.5,18.5 + parent: 2 + - uid: 16088 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,8.5 - parent: 22565 - - uid: 24491 + pos: -132.5,-7.5 + parent: 2 + - uid: 16089 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,9.5 - parent: 22565 - - uid: 24492 + pos: -131.5,-7.5 + parent: 2 + - uid: 16090 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,11.5 - parent: 22565 - - uid: 24493 - components: - - type: Transform - pos: -8.5,-19.5 - parent: 22565 - - uid: 24494 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,6.5 - parent: 22565 - - uid: 24495 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,6.5 - parent: 22565 - - uid: 24496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,8.5 - parent: 22565 - - uid: 24497 + pos: -133.5,-7.5 + parent: 2 + - uid: 16091 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,9.5 - parent: 22565 - - uid: 24498 + pos: -133.5,-6.5 + parent: 2 + - uid: 16092 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,11.5 - parent: 22565 - - uid: 24499 + pos: -133.5,-8.5 + parent: 2 + - uid: 16093 components: - type: Transform rot: 1.5707963267948966 rad - pos: -36.5,12.5 - parent: 22565 - - uid: 24500 + pos: -130.5,-7.5 + parent: 2 + - uid: 16094 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,5.5 - parent: 22565 - - uid: 24501 + pos: 9.5,18.5 + parent: 2 +- proto: MachineFrameDestroyed + entities: + - uid: 26475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 22565 - - uid: 24502 + pos: 1.5,9.5 + parent: 24450 +- proto: MagazineBoxLightRifle + entities: + - uid: 1166 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,13.5 - parent: 22565 - - uid: 24503 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,13.5 - parent: 22565 - - uid: 24504 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifleIncendiary + entities: + - uid: 1167 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-2.5 - parent: 22565 - - uid: 24505 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRiflePractice + entities: + - uid: 1168 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 22565 - - uid: 24506 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxLightRifleUranium + entities: + - uid: 1169 components: - type: Transform - pos: -24.5,-14.5 - parent: 22565 - - uid: 24507 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxMagnum + entities: + - uid: 1192 components: - type: Transform - pos: -23.5,-15.5 - parent: 22565 - - uid: 24508 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistol + entities: + - uid: 1193 components: - type: Transform - pos: -22.5,-16.5 - parent: 22565 - - uid: 24509 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxPistolPractice + entities: + - uid: 1175 components: - type: Transform - pos: -21.5,-17.5 - parent: 22565 - - uid: 24510 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineBoxRifle + entities: + - uid: 1194 components: - type: Transform - pos: -20.5,-18.5 - parent: 22565 - - uid: 24511 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27320 components: - type: Transform - pos: -19.5,-19.5 - parent: 22565 - - uid: 24512 + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineGrenadeBlast + entities: + - uid: 24078 components: - type: Transform - pos: -26.5,-13.5 - parent: 22565 - - uid: 24513 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24079 components: - type: Transform - pos: -26.5,-12.5 - parent: 22565 - - uid: 24514 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24080 components: - type: Transform - pos: -25.5,-13.5 - parent: 22565 - - uid: 24515 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24081 components: - type: Transform - pos: 1.5,-16.5 - parent: 22565 - - uid: 24516 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24082 components: - type: Transform - pos: 0.5,-17.5 - parent: 22565 - - uid: 24517 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineGrenadeEMP + entities: + - uid: 24083 components: - type: Transform - pos: -0.5,-18.5 - parent: 22565 - - uid: 24518 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24084 components: - type: Transform - pos: -1.5,-19.5 - parent: 22565 - - uid: 24519 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24085 components: - type: Transform - pos: -2.5,-19.5 - parent: 22565 - - uid: 24520 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24086 components: - type: Transform - pos: -3.5,-19.5 - parent: 22565 - - uid: 24521 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24087 components: - type: Transform - pos: -0.5,-19.5 - parent: 22565 - - uid: 24522 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineGrenadeFrag + entities: + - uid: 24088 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 22565 - - uid: 24523 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24089 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 22565 - - uid: 24524 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24090 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 22565 - - uid: 24525 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24091 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 22565 - - uid: 24526 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24092 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 22565 - - uid: 24527 + parent: 24077 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazinePistolPractice + entities: + - uid: 1176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,13.5 - parent: 22565 - - uid: 25360 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-27.5 - parent: 89 - - uid: 25361 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1178 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 89 - - uid: 25531 + parent: 1171 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineRifle + entities: + - uid: 27321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 18153 - - uid: 25532 + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27322 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 18153 - - uid: 25533 + parent: 27318 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MagazineShotgunBeanbag + entities: + - uid: 16095 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 18153 - - uid: 25534 + pos: 48.802456,-6.4385347 + parent: 2 + - uid: 16096 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 18153 - - uid: 25535 + pos: 48.399677,-6.8042755 + parent: 2 + - uid: 16097 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 18153 - - uid: 25536 + pos: 48.399677,-6.646868 + parent: 2 + - uid: 16098 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-1.5 - parent: 18153 - - uid: 25537 + pos: 48.441345,-6.4153867 + parent: 2 + - uid: 16099 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 18153 - - uid: 25538 + pos: 48.793198,-6.7950163 + parent: 2 + - uid: 16100 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 18153 - - uid: 25539 + pos: 48.811714,-6.6190906 + parent: 2 +- proto: MaintenanceFluffSpawner + entities: + - uid: 16101 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 18153 - - uid: 25540 + pos: -30.5,-15.5 + parent: 2 + - uid: 16102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 18153 - - uid: 25541 + pos: -81.5,5.5 + parent: 2 + - uid: 16103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 18153 - - uid: 25542 + pos: -72.5,21.5 + parent: 2 + - uid: 16104 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 18153 - - uid: 25543 + pos: -38.5,23.5 + parent: 2 + - uid: 16105 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 18153 - - uid: 25544 + pos: 7.5,27.5 + parent: 2 + - uid: 16106 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-5.5 - parent: 18153 - - uid: 25545 + pos: -26.5,-23.5 + parent: 2 + - uid: 16107 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25546 + rot: 3.141592653589793 rad + pos: 11.5,-19.5 + parent: 2 + - uid: 16108 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25547 + pos: 36.5,23.5 + parent: 2 + - uid: 16109 components: - type: Transform - pos: 3.5,-9.5 - parent: 18153 - - uid: 25548 + pos: 27.5,25.5 + parent: 2 + - uid: 26476 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25859 + rot: -1.5707963267948966 rad + pos: -27.5,10.5 + parent: 24450 +- proto: MaintenancePlantSpawner + entities: + - uid: 16110 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,20.5 - parent: 89 - - uid: 25866 + pos: 11.5,27.5 + parent: 2 + - uid: 16111 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-25.5 - parent: 89 - - uid: 25867 + pos: -3.5,24.5 + parent: 2 + - uid: 16112 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,-17.5 - parent: 89 -- proto: GrilleBroken + pos: -12.5,24.5 + parent: 2 +- proto: MaintenanceToolSpawner entities: - - uid: 75 + - uid: 16113 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,26.5 - parent: 89 - - uid: 105 + pos: -24.5,-15.5 + parent: 2 + - uid: 16114 components: - type: Transform - pos: -38.5,-16.5 - parent: 89 - - uid: 823 + pos: -15.5,-23.5 + parent: 2 + - uid: 16115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,26.5 - parent: 89 - - uid: 3305 + pos: -18.5,-23.5 + parent: 2 + - uid: 16116 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,35.5 - parent: 89 - - uid: 3318 + pos: -76.5,-15.5 + parent: 2 + - uid: 16117 components: - type: Transform - pos: 70.5,15.5 - parent: 89 - - uid: 3321 + pos: -82.5,-1.5 + parent: 2 + - uid: 16118 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,10.5 - parent: 89 - - uid: 3323 + pos: -80.5,5.5 + parent: 2 + - uid: 16119 components: - type: Transform - pos: 70.5,10.5 - parent: 89 - - uid: 3793 + pos: -73.5,21.5 + parent: 2 + - uid: 16120 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,26.5 - parent: 89 - - uid: 3840 + pos: -38.5,24.5 + parent: 2 + - uid: 16121 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,26.5 - parent: 89 - - uid: 4873 + pos: 8.5,27.5 + parent: 2 + - uid: 16122 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -92.5,28.5 - parent: 89 - - uid: 4876 + pos: 48.5,3.5 + parent: 2 + - uid: 16123 components: - type: Transform - pos: -91.5,29.5 - parent: 89 - - uid: 4878 + pos: -26.5,-25.5 + parent: 2 + - uid: 16124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -91.5,29.5 - parent: 89 - - uid: 5969 + pos: -78.5,-6.5 + parent: 2 + - uid: 16125 components: - type: Transform - pos: 12.5,-15.5 - parent: 89 - - uid: 7103 + pos: 40.5,16.5 + parent: 2 +- proto: MaintenanceWeaponSpawner + entities: + - uid: 16126 components: - type: Transform - pos: 50.5,-36.5 - parent: 89 - - uid: 11601 + pos: -43.5,-3.5 + parent: 2 + - uid: 16127 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,25.5 - parent: 89 - - uid: 14636 + pos: -33.5,-1.5 + parent: 2 + - uid: 16128 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-15.5 - parent: 89 - - uid: 14656 + pos: -82.5,5.5 + parent: 2 + - uid: 16129 components: - type: Transform - pos: -125.5,20.5 - parent: 89 - - uid: 14657 + pos: -69.5,21.5 + parent: 2 + - uid: 16130 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,21.5 - parent: 89 - - uid: 14897 + pos: -68.5,21.5 + parent: 2 + - uid: 16131 components: - type: Transform - pos: -52.5,21.5 - parent: 89 - - uid: 14900 + pos: -51.5,32.5 + parent: 2 + - uid: 16132 components: - type: Transform - pos: -41.5,20.5 - parent: 89 - - uid: 14980 + rot: 3.141592653589793 rad + pos: 7.5,-26.5 + parent: 2 + - uid: 16133 components: - type: Transform - pos: -19.5,24.5 - parent: 89 - - uid: 15110 + rot: 3.141592653589793 rad + pos: 36.5,-19.5 + parent: 2 + - uid: 16134 components: - type: Transform - pos: -16.5,15.5 - parent: 89 - - uid: 15111 + pos: 57.5,-19.5 + parent: 2 + - uid: 16135 components: - type: Transform - pos: -2.5,25.5 - parent: 89 - - uid: 15112 + pos: 54.5,-19.5 + parent: 2 +- proto: Matchbox + entities: + - uid: 16136 components: - type: Transform - pos: -21.5,21.5 - parent: 89 - - uid: 15118 + pos: -117.26836,-14.507084 + parent: 2 +- proto: MaterialBiomass + entities: + - uid: 16137 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,45.5 - parent: 89 - - uid: 15597 + pos: 6.434067,16.596329 + parent: 2 + - uid: 16138 components: - type: Transform rot: 3.141592653589793 rad - pos: -104.5,31.5 - parent: 89 - - uid: 17066 + pos: 6.7399516,16.784958 + parent: 2 +- proto: MaterialBones1 + entities: + - uid: 26477 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,26.5 - parent: 89 - - uid: 17226 + pos: -4.2203536,4.4322076 + parent: 24450 + - uid: 26478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,26.5 - parent: 89 - - uid: 17227 + pos: -4.5484786,1.7447076 + parent: 24450 + - uid: 26479 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,26.5 - parent: 89 - - uid: 17333 + pos: 0.7796464,3.0103326 + parent: 24450 + - uid: 26480 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,32.5 - parent: 89 - - uid: 17334 + pos: 0.9515214,5.5455093 + parent: 24450 + - uid: 26481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,49.5 - parent: 89 - - uid: 17339 + pos: -5.2984786,6.4673843 + parent: 24450 + - uid: 26482 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -103.5,32.5 - parent: 89 - - uid: 17343 + pos: -4.5328536,8.436134 + parent: 24450 +- proto: MaterialCloth + entities: + - uid: 16139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,48.5 - parent: 89 - - uid: 17347 + pos: 42.415596,10.695596 + parent: 2 + - uid: 26483 components: - type: Transform - pos: -45.5,42.5 - parent: 89 - - uid: 17348 + pos: -31.50148,1.603975 + parent: 24450 + - uid: 26484 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,43.5 - parent: 89 - - uid: 17351 + pos: 7.401089,1.572725 + parent: 24450 +- proto: MaterialCloth10 + entities: + - uid: 16140 components: - type: Transform rot: 1.5707963267948966 rad - pos: -129.5,28.5 - parent: 89 - - uid: 17352 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,28.5 - parent: 89 - - uid: 17358 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -124.5,28.5 - parent: 89 - - uid: 17361 + pos: 18.304749,-14.450155 + parent: 2 + - uid: 16141 components: - type: Transform - pos: -137.5,28.5 - parent: 89 - - uid: 17364 + rot: 1.5707963267948966 rad + pos: 21.382874,-14.43453 + parent: 2 + - uid: 16142 components: - type: Transform rot: 1.5707963267948966 rad - pos: -136.5,28.5 - parent: 89 - - uid: 17368 + pos: 24.384485,-14.40328 + parent: 2 + - uid: 16143 components: - type: Transform - pos: -138.5,23.5 - parent: 89 - - uid: 17382 + rot: 1.5707963267948966 rad + pos: 27.308783,-14.43453 + parent: 2 +- proto: MaterialDurathread + entities: + - uid: 16144 components: - type: Transform - rot: 3.141592653589793 rad - pos: -137.5,24.5 - parent: 89 - - uid: 17395 + pos: 42.759346,10.398721 + parent: 2 +- proto: MaterialWoodPlank + entities: + - uid: 16145 components: - type: Transform - rot: 3.141592653589793 rad - pos: -138.5,18.5 - parent: 89 - - uid: 17403 + pos: -115.5242,13.621173 + parent: 2 + - uid: 16146 components: - type: Transform - pos: -16.5,38.5 - parent: 89 - - uid: 17406 + pos: 8.49539,-21.442284 + parent: 2 + - uid: 16147 components: - type: Transform - pos: -138.5,14.5 - parent: 89 - - uid: 17430 + pos: -115.3367,13.793048 + parent: 2 +- proto: MatterBinStockPart + entities: + - uid: 16148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -99.5,32.5 - parent: 89 - - uid: 17431 + pos: -15.444581,-15.227853 + parent: 2 + - uid: 16149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -118.5,26.5 - parent: 89 - - uid: 17437 + pos: -15.257081,-15.509103 + parent: 2 + - uid: 16150 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,26.5 - parent: 89 - - uid: 17439 + pos: -98.65939,-7.6130424 + parent: 2 + - uid: 16151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,25.5 - parent: 89 - - uid: 17460 + pos: -98.51877,-7.2849174 + parent: 2 + - uid: 16152 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,31.5 - parent: 89 - - uid: 17466 + pos: -98.28439,-7.5505424 + parent: 2 +- proto: Mattress + entities: + - uid: 16153 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -45.5,49.5 - parent: 89 - - uid: 17473 + pos: 36.5,-19.5 + parent: 2 + - uid: 16154 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,38.5 - parent: 89 - - uid: 17474 + pos: 54.5,-23.5 + parent: 2 + - uid: 16155 components: - type: Transform - pos: -45.5,49.5 - parent: 89 - - uid: 17476 + pos: 54.5,-19.5 + parent: 2 + - uid: 16156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -44.5,37.5 - parent: 89 - - uid: 17477 + pos: 54.5,-22.5 + parent: 2 + - uid: 16157 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,36.5 - parent: 89 - - uid: 17478 + pos: 54.5,-25.5 + parent: 2 + - uid: 16158 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,38.5 - parent: 89 - - uid: 17479 + pos: 54.5,-20.5 + parent: 2 + - uid: 16159 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,38.5 - parent: 89 - - uid: 17480 + pos: 54.5,-26.5 + parent: 2 + - uid: 26485 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,38.5 - parent: 89 - - uid: 17481 + pos: -14.5,-21.5 + parent: 24450 + - uid: 26486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,38.5 - parent: 89 - - uid: 17482 + pos: -12.5,-21.5 + parent: 24450 + - uid: 26487 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,38.5 - parent: 89 - - uid: 17483 + pos: 11.5,12.5 + parent: 24450 + - uid: 26488 components: - type: Transform - pos: -13.5,38.5 - parent: 89 - - uid: 17485 + pos: 11.5,8.5 + parent: 24450 + - uid: 26489 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,38.5 - parent: 89 - - uid: 17486 + pos: 11.5,6.5 + parent: 24450 + - uid: 26490 components: - type: Transform - pos: -13.5,47.5 - parent: 89 - - uid: 17488 + pos: -35.5,8.5 + parent: 24450 + - uid: 26491 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,48.5 - parent: 89 - - uid: 17635 + pos: -35.5,6.5 + parent: 24450 + - uid: 26492 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,35.5 - parent: 89 - - uid: 17666 + pos: -35.5,12.5 + parent: 24450 +- proto: MedicalBed + entities: + - uid: 16160 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,51.5 - parent: 89 - - uid: 17674 + pos: 15.5,-3.5 + parent: 2 + - uid: 16161 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,51.5 - parent: 89 - - uid: 17675 + pos: 3.5,15.5 + parent: 2 + - uid: 16162 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,51.5 - parent: 89 - - uid: 17676 + pos: 3.5,19.5 + parent: 2 + - uid: 16163 components: - type: Transform - pos: 8.5,49.5 - parent: 89 - - uid: 17677 + pos: 3.5,17.5 + parent: 2 + - uid: 16164 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,51.5 - parent: 89 - - uid: 17688 + pos: 3.5,21.5 + parent: 2 + - uid: 24180 components: - type: Transform - pos: 16.5,40.5 - parent: 89 - - uid: 17697 + pos: 6.5,-5.5 + parent: 23919 + - uid: 24181 components: - type: Transform - pos: 35.5,34.5 - parent: 89 - - uid: 17748 + pos: 6.5,-4.5 + parent: 23919 + - uid: 27807 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,26.5 - parent: 89 - - uid: 17749 + pos: -5.5,-8.5 + parent: 27260 +- proto: MedicalScannerMachineCircuitboard + entities: + - uid: 16165 components: - type: Transform - pos: 60.5,26.5 - parent: 89 - - uid: 17750 + pos: 22.465963,36.494637 + parent: 2 +- proto: MedicalTechFab + entities: + - uid: 16166 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,26.5 - parent: 89 - - uid: 17757 + pos: 35.5,20.5 + parent: 2 +- proto: MedkitAdvancedFilled + entities: + - uid: 16167 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,2.5 - parent: 89 - - uid: 17758 + pos: 10.448055,-0.43033665 + parent: 2 + - uid: 16168 components: - type: Transform - pos: 70.5,6.5 - parent: 89 - - uid: 17759 + pos: -18.990215,-23.36074 + parent: 2 + - uid: 16169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,4.5 - parent: 89 - - uid: 17772 + pos: 34.44323,20.619473 + parent: 2 + - uid: 27808 components: - type: Transform - rot: 3.141592653589793 rad - pos: 70.5,7.5 - parent: 89 - - uid: 17787 + pos: -5.3487854,-10.439423 + parent: 27260 +- proto: MedkitBruteFilled + entities: + - uid: 16170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-9.5 - parent: 89 - - uid: 17788 + pos: 12.375316,-3.499538 + parent: 2 + - uid: 16171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-9.5 - parent: 89 - - uid: 17789 + pos: 31.543634,18.579988 + parent: 2 + - uid: 16172 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,-9.5 - parent: 89 - - uid: 17790 + pos: 18.821274,23.624659 + parent: 2 + - uid: 16173 components: - type: Transform - pos: 60.5,-9.5 - parent: 89 - - uid: 17791 + pos: 31.480804,18.7342 + parent: 2 + - uid: 24182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 59.5,-11.5 - parent: 89 - - uid: 17792 + pos: 6.404312,-3.1273499 + parent: 23919 +- proto: MedkitBurnFilled + entities: + - uid: 16174 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,-11.5 - parent: 89 - - uid: 17793 + pos: 12.635732,-3.2599547 + parent: 2 + - uid: 16175 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-11.5 - parent: 89 - - uid: 17794 + pos: 32.50263,18.744473 + parent: 2 + - uid: 16176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 89 - - uid: 17795 + pos: 32.53388,18.572598 + parent: 2 + - uid: 24183 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,-9.5 - parent: 89 - - uid: 17796 + pos: 6.716812,-3.2679749 + parent: 23919 +- proto: MedkitCombatFilled + entities: + - uid: 16177 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-9.5 - parent: 89 - - uid: 17797 + pos: 12.919604,-3.4879332 + parent: 2 + - uid: 16178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 89 - - uid: 17798 + pos: 3.5065022,37.602577 + parent: 2 + - uid: 16179 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 67.5,-7.5 - parent: 89 - - uid: 17800 + pos: -46.42974,-10.583627 + parent: 2 + - uid: 24184 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 89 - - uid: 17801 + pos: 6.388687,-3.4085999 + parent: 23919 + - uid: 27809 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 69.5,-5.5 - parent: 89 - - uid: 17802 + pos: -5.570999,-10.550507 + parent: 27260 +- proto: MedkitFilled + entities: + - uid: 16180 components: - type: Transform - rot: 3.141592653589793 rad - pos: 68.5,-1.5 - parent: 89 - - uid: 17803 + pos: -5.4384103,-15.26897 + parent: 2 + - uid: 16181 components: - type: Transform - pos: 68.5,-4.5 - parent: 89 - - uid: 17804 + pos: 13.437702,-3.4645877 + parent: 2 + - uid: 16182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 67.5,-5.5 - parent: 89 - - uid: 18116 + pos: 1.5690022,37.586952 + parent: 2 + - uid: 16183 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-48.5 - parent: 89 - - uid: 18169 + pos: -32.37581,21.539759 + parent: 2 + - uid: 16184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-33.5 - parent: 89 - - uid: 18200 + pos: -2.4789925,19.583319 + parent: 2 + - uid: 16185 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,-20.5 - parent: 89 - - uid: 18203 + pos: 26.51709,20.479082 + parent: 2 + - uid: 16186 components: - type: Transform - pos: 13.5,-27.5 - parent: 89 - - uid: 18204 + pos: 34.64928,20.525723 + parent: 2 + - uid: 16187 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-50.5 - parent: 89 - - uid: 18206 + pos: 19.458591,23.716438 + parent: 2 + - uid: 16188 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,-39.5 - parent: 89 - - uid: 18207 + pos: 19.458591,23.575813 + parent: 2 + - uid: 16189 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-42.5 - parent: 89 - - uid: 18208 + pos: 63.486095,3.6539416 + parent: 2 + - uid: 16190 components: - type: Transform - pos: 7.5,-41.5 - parent: 89 - - uid: 18209 + pos: 53.514782,15.551919 + parent: 2 + - uid: 16191 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-50.5 - parent: 89 - - uid: 18210 + pos: 65.42551,10.507832 + parent: 2 + - uid: 26493 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-50.5 - parent: 89 - - uid: 18213 + pos: -9.375939,7.591918 + parent: 24450 +- proto: MedkitOxygenFilled + entities: + - uid: 16192 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-46.5 - parent: 89 - - uid: 18214 + pos: 32.02969,18.572598 + parent: 2 + - uid: 16193 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-50.5 - parent: 89 - - uid: 18215 + pos: 33.660248,20.626863 + parent: 2 + - uid: 16194 components: - type: Transform - pos: -12.5,-47.5 - parent: 89 - - uid: 18216 + pos: 31.99844,18.744473 + parent: 2 + - uid: 16195 components: - type: Transform - pos: -17.5,-39.5 - parent: 89 - - uid: 18217 + pos: 33.660248,20.720613 + parent: 2 + - uid: 16196 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-41.5 - parent: 89 - - uid: 18218 + pos: 18.821274,23.765284 + parent: 2 + - uid: 27810 components: - type: Transform - pos: -12.5,-41.5 - parent: 89 - - uid: 18219 + pos: -5.5953827,-10.361389 + parent: 27260 +- proto: MedkitRadiationFilled + entities: + - uid: 16197 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-38.5 - parent: 89 - - uid: 18220 + pos: 13.169604,-3.2535582 + parent: 2 + - uid: 16198 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,-22.5 - parent: 89 - - uid: 18221 + pos: 30.458956,18.57795 + parent: 2 + - uid: 16199 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-32.5 - parent: 89 - - uid: 18222 + pos: 30.41208,18.718575 + parent: 2 +- proto: MedkitToxin + entities: + - uid: 16200 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,-32.5 - parent: 89 - - uid: 18223 + pos: 30.942322,18.7342 + parent: 2 + - uid: 16201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,-27.5 - parent: 89 - - uid: 18224 + pos: 30.989197,18.57795 + parent: 2 +- proto: MedkitToxinFilled + entities: + - uid: 16202 components: - type: Transform - pos: -31.5,-29.5 - parent: 89 - - uid: 19957 + pos: 13.700854,-3.2535582 + parent: 2 +- proto: MicroManipulatorStockPart + entities: + - uid: 16203 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,47.5 - parent: 89 - - uid: 19958 + pos: -14.616456,-15.352853 + parent: 2 + - uid: 16204 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,47.5 - parent: 89 - - uid: 19959 + pos: -14.555504,-15.680248 + parent: 2 +- proto: MicrophoneInstrument + entities: + - uid: 16205 components: - type: Transform - pos: 27.5,47.5 - parent: 89 - - uid: 20208 + pos: -23.645575,9.285421 + parent: 2 +- proto: MindShieldImplanter + entities: + - uid: 599 components: - type: Transform - pos: 43.5,32.5 - parent: 89 - - uid: 20218 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 600 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,41.5 - parent: 89 - - uid: 20230 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: MinimoogInstrument + entities: + - uid: 16206 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,29.5 - parent: 89 - - uid: 20237 - components: - - type: Transform - pos: 55.5,42.5 - parent: 89 - - uid: 20264 + pos: 30.5,-5.5 + parent: 2 +- proto: MiningDrill + entities: + - uid: 16207 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,-15.5 - parent: 89 - - uid: 20777 + pos: -27.485138,27.681524 + parent: 2 +- proto: MiningWindow + entities: + - uid: 26494 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,41.5 - parent: 89 - - uid: 20783 + pos: -5.5,-2.5 + parent: 24450 + - uid: 26495 components: - type: Transform - pos: 63.5,36.5 - parent: 89 - - uid: 20784 + pos: 12.5,11.5 + parent: 24450 + - uid: 26496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,41.5 - parent: 89 - - uid: 20785 + pos: -28.5,2.5 + parent: 24450 + - uid: 26497 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,41.5 - parent: 89 - - uid: 20786 + pos: -28.5,1.5 + parent: 24450 + - uid: 26498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,45.5 - parent: 89 - - uid: 20787 + pos: -18.5,-2.5 + parent: 24450 + - uid: 26499 components: - type: Transform - pos: 51.5,44.5 - parent: 89 - - uid: 20789 + pos: -4.5,-2.5 + parent: 24450 + - uid: 26500 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,41.5 - parent: 89 - - uid: 20792 + pos: -19.5,19.5 + parent: 24450 + - uid: 26501 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,36.5 - parent: 89 - - uid: 20793 + pos: -24.5,19.5 + parent: 24450 + - uid: 26502 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,32.5 - parent: 89 - - uid: 20795 + pos: -2.5,26.5 + parent: 24450 + - uid: 26503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,41.5 - parent: 89 - - uid: 20796 + pos: 0.5,19.5 + parent: 24450 + - uid: 26504 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,43.5 - parent: 89 - - uid: 20800 + pos: -4.5,19.5 + parent: 24450 + - uid: 26505 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,34.5 - parent: 89 - - uid: 21059 + pos: -15.5,11.5 + parent: 24450 + - uid: 26506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,26.5 - parent: 89 - - uid: 21070 + pos: -14.5,11.5 + parent: 24450 + - uid: 26507 components: - type: Transform - pos: 33.5,42.5 - parent: 89 - - uid: 21071 + pos: -12.5,11.5 + parent: 24450 + - uid: 26508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,42.5 - parent: 89 - - uid: 21072 + pos: -9.5,11.5 + parent: 24450 + - uid: 26509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,42.5 - parent: 89 - - uid: 21073 + pos: -7.5,11.5 + parent: 24450 + - uid: 26510 components: - type: Transform - pos: 30.5,42.5 - parent: 89 - - uid: 21074 + pos: -1.5,26.5 + parent: 24450 + - uid: 26511 components: - type: Transform - pos: 31.5,42.5 - parent: 89 - - uid: 21075 + pos: -16.5,11.5 + parent: 24450 + - uid: 26512 components: - type: Transform - pos: 44.5,42.5 - parent: 89 - - uid: 21076 + pos: -19.5,-2.5 + parent: 24450 + - uid: 26513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,42.5 - parent: 89 - - uid: 21077 + pos: 0.5,-1.5 + parent: 24450 + - uid: 26514 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,42.5 - parent: 89 - - uid: 21190 + pos: -11.5,8.5 + parent: 24450 + - uid: 26515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,25.5 - parent: 89 - - uid: 21197 + pos: -12.5,8.5 + parent: 24450 + - uid: 26516 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,26.5 - parent: 89 - - uid: 21198 + pos: -12.5,3.5 + parent: 24450 + - uid: 26517 components: - type: Transform - pos: 54.5,27.5 - parent: 89 - - uid: 21576 + pos: -11.5,3.5 + parent: 24450 + - uid: 26518 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,45.5 - parent: 89 - - uid: 21578 + pos: -8.5,6.5 + parent: 24450 + - uid: 26519 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,47.5 - parent: 89 - - uid: 21941 + pos: -8.5,5.5 + parent: 24450 + - uid: 26520 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-16.5 - parent: 89 - - uid: 21953 + pos: -15.5,6.5 + parent: 24450 + - uid: 26521 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 55.5,-17.5 - parent: 89 - - uid: 21955 + pos: -15.5,5.5 + parent: 24450 + - uid: 26522 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-17.5 - parent: 89 - - uid: 21964 + pos: -11.5,11.5 + parent: 24450 + - uid: 26523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21965 + pos: -22.5,26.5 + parent: 24450 + - uid: 26524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21968 + pos: -21.5,26.5 + parent: 24450 + - uid: 26525 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21971 + pos: 6.5,13.5 + parent: 24450 + - uid: 26526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,-37.5 - parent: 89 - - uid: 21974 + pos: 12.5,8.5 + parent: 24450 + - uid: 26527 components: - type: Transform - pos: 54.5,-37.5 - parent: 89 - - uid: 22004 + pos: 12.5,12.5 + parent: 24450 + - uid: 26528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22006 + pos: -8.5,11.5 + parent: 24450 + - uid: 26529 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22007 + pos: 12.5,6.5 + parent: 24450 + - uid: 26530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22008 + pos: -36.5,9.5 + parent: 24450 + - uid: 26531 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-36.5 - parent: 89 - - uid: 22136 + pos: -36.5,5.5 + parent: 24450 + - uid: 26532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-37.5 - parent: 89 - - uid: 22138 + pos: -36.5,6.5 + parent: 24450 + - uid: 26533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-37.5 - parent: 89 - - uid: 22140 + pos: -36.5,8.5 + parent: 24450 + - uid: 26534 components: - type: Transform - pos: 48.5,-37.5 - parent: 89 - - uid: 22141 + pos: -36.5,12.5 + parent: 24450 + - uid: 26535 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-37.5 - parent: 89 - - uid: 22345 + pos: -36.5,11.5 + parent: 24450 + - uid: 26536 components: - type: Transform - pos: 55.5,-15.5 - parent: 89 - - uid: 24528 + pos: -23.5,-1.5 + parent: 24450 + - uid: 26537 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-19.5 - parent: 22565 - - uid: 24529 + pos: 12.5,9.5 + parent: 24450 + - uid: 26538 components: - type: Transform - pos: -4.5,-19.5 - parent: 22565 - - uid: 24530 + pos: -24.5,-1.5 + parent: 24450 + - uid: 26539 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,-19.5 - parent: 22565 - - uid: 24531 + pos: -25.5,-1.5 + parent: 24450 + - uid: 26540 components: - type: Transform - pos: -20.5,-19.5 - parent: 22565 - - uid: 24532 + pos: -31.5,13.5 + parent: 24450 + - uid: 26541 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,-18.5 - parent: 22565 - - uid: 24533 + pos: 7.5,13.5 + parent: 24450 + - uid: 26542 components: - type: Transform - pos: -22.5,-18.5 - parent: 22565 - - uid: 24534 + pos: -28.5,3.5 + parent: 24450 + - uid: 26543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,-17.5 - parent: 22565 - - uid: 24535 + pos: -0.5,-1.5 + parent: 24450 + - uid: 26544 components: - type: Transform - pos: -24.5,-17.5 - parent: 22565 - - uid: 24536 + pos: -30.5,13.5 + parent: 24450 + - uid: 26545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -25.5,-16.5 - parent: 22565 - - uid: 24537 + pos: 12.5,5.5 + parent: 24450 + - uid: 26546 components: - type: Transform - pos: -25.5,-16.5 - parent: 22565 - - uid: 24538 + pos: 1.5,-1.5 + parent: 24450 + - uid: 26547 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-19.5 - parent: 22565 - - uid: 24539 + pos: 4.5,1.5 + parent: 24450 + - uid: 26548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,-19.5 - parent: 22565 - - uid: 24540 + pos: 4.5,3.5 + parent: 24450 + - uid: 26549 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-19.5 - parent: 22565 - - uid: 24541 + pos: 4.5,2.5 + parent: 24450 +- proto: Mirror + entities: + - uid: 16208 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-20.5 - parent: 22565 - - uid: 24542 + pos: -30.5,-2.5 + parent: 2 + - uid: 16209 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-19.5 - parent: 22565 - - uid: 24543 + pos: -35.5,32.5 + parent: 2 + - uid: 16210 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,-20.5 - parent: 22565 - - uid: 24544 + pos: -21.5,32.5 + parent: 2 + - uid: 16211 components: - type: Transform - pos: -6.5,-20.5 - parent: 22565 - - uid: 24545 + pos: -24.5,15.5 + parent: 2 + - uid: 16212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-17.5 - parent: 22565 - - uid: 24546 + pos: -25.5,15.5 + parent: 2 + - uid: 16213 components: - type: Transform - pos: -0.5,-17.5 - parent: 22565 - - uid: 24547 + pos: -23.5,15.5 + parent: 2 + - uid: 16214 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-16.5 - parent: 22565 - - uid: 24548 + pos: -22.5,15.5 + parent: 2 + - uid: 16215 components: - type: Transform - pos: 0.5,-16.5 - parent: 22565 - - uid: 24549 + pos: -21.5,15.5 + parent: 2 + - uid: 16216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 22565 - - uid: 24550 + rot: 1.5707963267948966 rad + pos: 9.5,29.5 + parent: 2 + - uid: 16217 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-16.5 - parent: 22565 - - uid: 24551 + pos: 27.5,27.5 + parent: 2 + - uid: 16218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-16.5 - parent: 22565 - - uid: 24552 + pos: 28.5,27.5 + parent: 2 +- proto: ModularGrenade + entities: + - uid: 16219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-16.5 - parent: 22565 -- proto: GrilleDiagonal - entities: - - uid: 5317 + pos: -5.5569973,-18.252968 + parent: 2 + - uid: 16220 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-34.5 - parent: 89 - - uid: 13726 + pos: -5.2680063,-18.252968 + parent: 2 + - uid: 16221 components: - type: Transform - pos: -0.5,0.5 - parent: 21627 - - uid: 13727 + pos: -5.532914,-15.331863 + parent: 2 + - uid: 16222 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 21627 - - uid: 13934 + pos: -5.629245,-15.789328 + parent: 2 + - uid: 16223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 21627 - - uid: 13935 + pos: -5.821905,-18.277044 + parent: 2 + - uid: 16224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 21627 - - uid: 17889 + pos: -5.2680063,-15.789328 + parent: 2 + - uid: 26550 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 89 - - uid: 17907 + pos: 4.3521523,11.690499 + parent: 24450 + - uid: 26551 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-5.5 - parent: 89 - - uid: 20912 + pos: 4.0865273,11.690499 + parent: 24450 + - uid: 27811 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,27.5 - parent: 89 - - uid: 21153 + pos: -3.6557312,-13.251007 + parent: 27260 + - uid: 27812 components: - type: Transform - pos: 57.5,-33.5 - parent: 89 - - uid: 21269 + pos: -3.699524,-13.221802 + parent: 27260 + - uid: 27813 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-33.5 - parent: 89 - - uid: 21270 + pos: -3.728714,-13.411652 + parent: 27260 +- proto: MonkeyCubeWrapped + entities: + - uid: 16225 components: - type: Transform - pos: 58.5,-32.5 - parent: 89 - - uid: 21272 + pos: -29.972765,0.6645479 + parent: 2 +- proto: MopBucket + entities: + - uid: 16226 components: - type: Transform - pos: 57.5,-34.5 - parent: 89 - - uid: 21273 + pos: -38.70507,7.3472652 + parent: 2 + - uid: 16227 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,49.5 - parent: 89 - - uid: 21275 + pos: -43.256332,14.594401 + parent: 2 +- proto: MopBucketFull + entities: + - uid: 16228 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-14.5 - parent: 89 - - uid: 21279 + pos: 11.719251,41.365593 + parent: 2 + - uid: 16229 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,38.5 - parent: 89 - - uid: 21296 + pos: 23.496418,22.463985 + parent: 2 + - uid: 16230 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,38.5 - parent: 89 - - uid: 21392 + pos: 45.58958,-33.533894 + parent: 2 +- proto: MopItem + entities: + - uid: 16231 components: - type: Transform - pos: 7.5,43.5 - parent: 89 - - uid: 21545 + pos: 11.609876,41.537468 + parent: 2 + - uid: 16232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,43.5 - parent: 89 - - uid: 25744 + pos: -39.01757,7.4410152 + parent: 2 + - uid: 16233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 18153 - - uid: 25745 + pos: 5.658451,9.575063 + parent: 2 + - uid: 16234 components: - type: Transform - pos: 1.5,-0.5 - parent: 18153 -- proto: GunSafe - entities: - - uid: 523 + pos: -44.568832,14.563151 + parent: 2 + - uid: 16235 components: - type: Transform - pos: 39.5,-2.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.8744951 - - 7.051672 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 713 - - 533 - - 532 - - 531 - - 530 - - 529 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22447 + rot: 1.5707963267948966 rad + pos: 23.465168,22.526485 + parent: 2 + - uid: 16236 components: - type: Transform - pos: 42.5,-16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22448 - - 22450 - - 22451 - - 22452 - - 22453 - - 22454 - - 8913 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22455 + rot: 1.5707963267948966 rad + pos: 45.40208,-32.73702 + parent: 2 +- proto: Morgue + entities: + - uid: 16237 components: - type: Transform - pos: 43.5,-16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22456 - - 22457 - - 22458 - - 22459 - - 22460 - - 22461 - - 22462 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 22641 + rot: 3.141592653589793 rad + pos: 7.5,5.5 + parent: 2 + - uid: 16238 components: - type: Transform - pos: -11.5,4.5 - parent: 22565 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.14972 - moles: - - 1.8856695 - - 7.0937095 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 22660 - - 22662 - - 22651 - - 22650 - - 22654 - - 22653 - - 22652 - - 22657 - - 22645 - - 22665 - - 22646 - - 22642 - - 22644 - - 22649 - - 22655 - - 22656 - - 22643 - - 22658 - - 22663 - - 22648 - - 22661 - - 22659 - - 22664 - - 22647 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: Gyroscope - entities: - - uid: 21701 + rot: 1.5707963267948966 rad + pos: 5.5,6.5 + parent: 2 + - uid: 16239 components: - type: Transform rot: 1.5707963267948966 rad - pos: -0.5,-0.5 - parent: 21627 - - type: Visibility - layer: 15 - - uid: 24553 + pos: 5.5,8.5 + parent: 2 + - uid: 16240 components: - type: Transform rot: 3.141592653589793 rad - pos: -2.5,25.5 - parent: 22565 - - uid: 25549 + pos: 6.5,5.5 + parent: 2 + - uid: 16241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-11.5 - parent: 18153 -- proto: Handcuffs - entities: - - uid: 6195 + rot: 3.141592653589793 rad + pos: 8.5,5.5 + parent: 2 + - uid: 16242 components: - type: Transform - pos: -20.509203,7.4855614 - parent: 89 - - uid: 8120 + rot: 3.141592653589793 rad + pos: 9.5,5.5 + parent: 2 + - uid: 16243 components: - type: Transform - pos: -86.700455,14.60647 - parent: 89 - - uid: 8131 + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 2 + - uid: 16244 components: - type: Transform - pos: -45.6171,0.5859333 - parent: 89 - - uid: 8170 + rot: 1.5707963267948966 rad + pos: -52.5,-7.5 + parent: 2 +- proto: MouseTimedSpawner + entities: + - uid: 16245 components: - type: Transform - pos: -59.432873,7.5281296 - parent: 89 - - uid: 8268 + pos: -23.5,-11.5 + parent: 2 +- proto: MousetrapArmed + entities: + - uid: 16246 components: - type: Transform - pos: -60.46638,22.582329 - parent: 89 -- proto: HandLabeler + pos: -124.52778,3.4515061 + parent: 2 + - type: StepTriggerActive + - uid: 16247 + components: + - type: Transform + pos: -124.38715,4.451506 + parent: 2 + - type: StepTriggerActive +- proto: Multitool entities: - - uid: 5381 + - uid: 16248 components: - type: Transform - pos: 44.527477,6.704564 - parent: 89 - - uid: 10435 + pos: -93.639496,17.646248 + parent: 2 + - uid: 16249 components: - type: Transform - pos: 20.515057,6.879887 - parent: 89 - - uid: 15896 + pos: -26.66166,-23.33507 + parent: 2 + - uid: 16250 components: - type: Transform - pos: 7.5071297,-2.407922 - parent: 89 - - type: HandLabeler - assignedLabel: Успокоительное -- proto: HappyHonkNukieSnacks + pos: 56.673943,-1.3626473 + parent: 2 +- proto: MusicBoxInstrument entities: - - uid: 25679 + - uid: 16251 components: - type: Transform - pos: 21.487997,-17.439909 - parent: 89 -- proto: HarpInstrument + pos: -35.559135,-5.5539656 + parent: 2 +- proto: NitrogenCanister entities: - - uid: 4078 + - uid: 16252 components: - type: Transform - pos: -29.5,-9.5 - parent: 89 -- proto: HeadBorgJanitor - entities: - - uid: 20859 + pos: -35.5,-17.5 + parent: 2 + - uid: 16253 components: - type: Transform - pos: -35.29812,9.790613 - parent: 89 -- proto: HeadSkeleton - entities: - - uid: 24554 + pos: -98.5,-23.5 + parent: 2 + - uid: 16254 components: - type: Transform - pos: 3.9304833,10.600748 - parent: 22565 -- proto: HeatExchanger - entities: - - uid: 7416 + pos: -48.5,-16.5 + parent: 2 + - uid: 16255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7417 + pos: 0.5,29.5 + parent: 2 + - uid: 16256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -76.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: HelicopterInstrument - entities: - - uid: 15029 + pos: -93.5,29.5 + parent: 2 + - uid: 16257 components: - type: Transform - pos: 17.650578,25.636961 - parent: 89 - - uid: 18357 + pos: -70.5,21.5 + parent: 2 + - uid: 16258 components: - type: Transform - pos: -61.430115,47.965298 - parent: 89 -- proto: Hemostat - entities: - - uid: 15439 + pos: -42.5,14.5 + parent: 2 + - uid: 16259 components: - type: Transform - pos: -11.463182,21.549883 - parent: 89 -- proto: HighSecArmoryLocked - entities: - - uid: 4919 + pos: -31.5,37.5 + parent: 2 + - uid: 16260 components: - type: Transform - pos: 38.5,-5.5 - parent: 89 - - uid: 4920 + pos: 37.5,18.5 + parent: 2 + - uid: 16261 components: - type: Transform - pos: 38.5,-6.5 - parent: 89 -- proto: HighSecCommandLocked - entities: - - uid: 968 + pos: -97.5,15.5 + parent: 2 + - uid: 16262 components: - type: Transform - pos: 56.5,4.5 - parent: 89 - - uid: 3141 + pos: 9.5,-16.5 + parent: 2 + - uid: 16263 components: - type: Transform - pos: 49.5,-2.5 - parent: 89 - - uid: 15631 + pos: 25.5,9.5 + parent: 2 + - uid: 16264 components: - type: Transform - pos: -113.5,-15.5 - parent: 89 -- proto: HolofanProjector - entities: - - uid: 8208 + pos: -84.5,-6.5 + parent: 2 + - uid: 26552 + components: + - type: Transform + pos: -14.5,-8.5 + parent: 24450 + - uid: 26553 components: - type: Transform - pos: 1.0469074,27.745178 - parent: 89 -- proto: HospitalCurtains + pos: -17.5,-1.5 + parent: 24450 +- proto: NitrogenTankFilled entities: - - uid: 37 + - uid: 24540 components: - type: Transform - pos: -20.5,-22.5 - parent: 89 - - uid: 10297 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25075 components: - type: Transform - pos: -36.5,33.5 - parent: 89 - - type: Occluder - enabled: False - - type: Door - state: Open + parent: 25070 - type: Physics canCollide: False - - uid: 10351 + - type: InsideEntityStorage + - uid: 25083 components: - type: Transform - pos: -23.5,33.5 - parent: 89 - - uid: 15277 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25090 components: - type: Transform - pos: 1.5,21.5 - parent: 89 - - uid: 15293 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25097 components: - type: Transform - pos: 1.5,19.5 - parent: 89 - - uid: 15311 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25105 components: - type: Transform - pos: 1.5,15.5 - parent: 89 - - uid: 15375 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25113 components: - type: Transform - pos: 1.5,17.5 - parent: 89 - - uid: 17510 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,7.5 - parent: 89 - - uid: 21017 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27563 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.5,-14.5 - parent: 89 - - uid: 21018 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27569 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-14.5 - parent: 89 - - uid: 21019 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27575 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 25.5,-14.5 - parent: 89 - - uid: 21020 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-14.5 - parent: 89 - - uid: 21864 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27586 components: - type: Transform - pos: 53.5,-33.5 - parent: 89 - - uid: 21865 + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: NitrousOxideCanister + entities: + - uid: 16265 components: - type: Transform - pos: 51.5,-33.5 - parent: 89 - - uid: 21866 + pos: -130.5,0.5 + parent: 2 + - uid: 16266 components: - type: Transform - pos: 49.5,-33.5 - parent: 89 - - uid: 21867 + pos: -87.5,-5.5 + parent: 2 + - uid: 16267 components: - type: Transform - pos: 47.5,-33.5 - parent: 89 -- proto: HospitalCurtainsOpen - entities: - - uid: 39 + pos: 2.5,-39.5 + parent: 2 + - uid: 16268 components: - type: Transform - pos: -27.5,-4.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 40 + pos: -90.5,-23.5 + parent: 2 + - uid: 16269 components: - type: Transform - pos: -27.5,-5.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 718 + pos: -0.5,29.5 + parent: 2 + - uid: 16270 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - uid: 4280 + pos: -9.5,21.5 + parent: 2 + - uid: 26554 components: - type: Transform - pos: -34.5,-3.5 - parent: 89 - - uid: 4288 + pos: -13.5,-9.5 + parent: 24450 +- proto: NitrousOxideTankFilled + entities: + - uid: 16271 components: - type: Transform - pos: -35.5,-6.5 - parent: 89 - - uid: 4289 + pos: -8.449858,17.576614 + parent: 2 + - uid: 16272 components: - type: Transform - pos: -34.5,-9.5 - parent: 89 - - uid: 4291 + pos: -8.590483,17.62349 + parent: 2 +- proto: NodeScanner + entities: + - uid: 16273 components: - type: Transform - pos: -27.5,-6.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 5826 + pos: -7.3921776,-38.40237 + parent: 2 +- proto: NoticeBoard + entities: + - uid: 16274 components: - type: Transform - pos: -73.5,-12.5 - parent: 89 - - uid: 6041 + rot: -1.5707963267948966 rad + pos: -71.5,-6.5 + parent: 2 +- proto: NuclearBomb + entities: + - uid: 16275 components: - type: Transform - pos: 31.5,-3.5 - parent: 89 - - uid: 6109 + rot: -1.5707963267948966 rad + pos: 49.5,-3.5 + parent: 2 +- proto: Ointment + entities: + - uid: 24350 components: - type: Transform - pos: -47.5,10.5 - parent: 89 - - uid: 8845 + parent: 24347 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Omnitool + entities: + - uid: 16276 components: - type: Transform - pos: -27.5,-7.5 - parent: 89 - - uid: 9188 + pos: 54.688084,6.5938244 + parent: 2 +- proto: OperatingTable + entities: + - uid: 16277 components: - type: Transform - pos: 7.5,-28.5 - parent: 89 - - uid: 10296 + pos: -11.5,19.5 + parent: 2 + - uid: 16278 components: - type: Transform - pos: -37.5,33.5 - parent: 89 - - uid: 10350 + pos: 8.5,8.5 + parent: 2 + - uid: 16279 components: - type: Transform - pos: -22.5,33.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True + pos: -22.5,-22.5 + parent: 2 +- proto: OreBag + entities: + - uid: 25653 + components: + - type: Transform + parent: 25649 - type: Physics - canCollide: True - - uid: 11376 + canCollide: False + - type: InsideEntityStorage + - uid: 25654 components: - type: Transform - pos: 3.5,15.5 - parent: 89 - - uid: 15255 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25655 components: - type: Transform - pos: 1.5,20.5 - parent: 89 - - uid: 15265 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25663 components: - type: Transform - pos: 3.5,17.5 - parent: 89 - - uid: 15267 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25664 components: - type: Transform - pos: 3.5,21.5 - parent: 89 - - uid: 15272 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25665 components: - type: Transform - pos: 3.5,19.5 - parent: 89 - - uid: 15309 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: OreBox + entities: + - uid: 26555 components: - type: Transform - pos: 1.5,16.5 - parent: 89 - - uid: 15592 + rot: -1.5707963267948966 rad + pos: -12.5,-1.5 + parent: 24450 + - uid: 26556 components: - type: Transform - pos: 21.5,23.5 - parent: 89 - - uid: 16179 + rot: -1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 24450 +- proto: OreProcessor + entities: + - uid: 16280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 12.5,37.5 - parent: 89 - - uid: 16187 + pos: -57.5,-8.5 + parent: 2 + - uid: 26557 components: - type: Transform - pos: 5.5,37.5 - parent: 89 - - uid: 16188 + pos: 5.5,8.5 + parent: 24450 + - uid: 26558 components: - type: Transform - pos: 7.5,37.5 - parent: 89 - - uid: 16193 + pos: -29.5,8.5 + parent: 24450 +- proto: OxygenCanister + entities: + - uid: 16281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 14.5,37.5 - parent: 89 - - uid: 17239 + pos: -48.5,-15.5 + parent: 2 + - uid: 16282 components: - type: Transform - pos: -27.5,-8.5 - parent: 89 - - type: Door - state: Closed - - type: Occluder - enabled: True - - type: Physics - canCollide: True - - uid: 20810 + pos: 9.5,-14.5 + parent: 2 + - uid: 16283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,15.5 - parent: 89 - - uid: 20811 + pos: -36.5,-17.5 + parent: 2 + - uid: 16284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,15.5 - parent: 89 - - uid: 20957 + pos: -100.5,-23.5 + parent: 2 + - uid: 16285 components: - type: Transform - pos: 40.5,17.5 - parent: 89 - - uid: 21493 + pos: -93.5,27.5 + parent: 2 + - uid: 16286 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.5,25.5 - parent: 89 - - uid: 21494 + pos: -6.5,29.5 + parent: 2 + - uid: 16287 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,25.5 - parent: 89 - - uid: 21495 + pos: -5.5,29.5 + parent: 2 + - uid: 16288 components: - type: Transform - rot: 3.141592653589793 rad - pos: -44.5,25.5 - parent: 89 - - uid: 21496 + pos: 24.5,9.5 + parent: 2 + - uid: 16289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,25.5 - parent: 89 - - uid: 21497 + pos: -78.5,18.5 + parent: 2 + - uid: 16290 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.5,25.5 - parent: 89 -- proto: hydroponicsSoil - entities: - - uid: 5342 + pos: -71.5,21.5 + parent: 2 + - uid: 16291 components: - type: Transform - pos: 31.5,-5.5 - parent: 89 - - uid: 8057 + pos: -41.5,14.5 + parent: 2 + - uid: 16292 components: - type: Transform - pos: -8.5,37.5 - parent: 89 - - uid: 8058 + pos: -31.5,36.5 + parent: 2 + - uid: 16293 components: - type: Transform - pos: -8.5,36.5 - parent: 89 - - uid: 8059 + pos: 35.5,-17.5 + parent: 2 + - uid: 16294 components: - type: Transform - pos: -8.5,35.5 - parent: 89 - - uid: 15339 + pos: -85.5,-6.5 + parent: 2 + - uid: 16295 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-22.5 - parent: 89 - - uid: 20387 + pos: 36.5,27.5 + parent: 2 + - uid: 26559 components: - type: Transform - pos: 40.5,-31.5 - parent: 89 - - uid: 21289 + pos: -15.5,-9.5 + parent: 24450 + - uid: 26560 components: - type: Transform - pos: 43.5,-29.5 - parent: 89 - - uid: 21290 + pos: -6.5,-1.5 + parent: 24450 +- proto: OxygenTankFilled + entities: + - uid: 16296 components: - type: Transform - pos: 40.5,-29.5 - parent: 89 - - uid: 21340 + pos: -98.50578,20.543215 + parent: 2 + - uid: 24541 components: - type: Transform - pos: 43.5,-31.5 - parent: 89 - - uid: 21341 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25076 components: - type: Transform - pos: 43.5,-32.5 - parent: 89 - - uid: 21615 + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25084 components: - type: Transform - pos: 40.5,-28.5 - parent: 89 -- proto: HydroponicsToolClippers - entities: - - uid: 2918 + parent: 25078 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25091 components: - type: Transform - pos: 30.583954,-6.477442 - parent: 89 - - uid: 21357 + parent: 25085 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25098 components: - type: Transform - pos: 41.537804,-33.535225 - parent: 89 - - uid: 21834 + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25106 components: - type: Transform - pos: 41.45968,-31.300852 - parent: 89 - - uid: 21835 + parent: 25100 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25114 components: - type: Transform - pos: 42.64718,-30.191477 - parent: 89 -- proto: HydroponicsToolHatchet - entities: - - uid: 14739 + parent: 25107 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27558 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.4907417,-25.471716 - parent: 89 -- proto: HydroponicsToolMiniHoe - entities: - - uid: 8056 + parent: 27553 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27564 components: - type: Transform - pos: -5.3726068,37.559914 - parent: 89 - - uid: 21838 + parent: 27559 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27570 components: - type: Transform - pos: 42.58468,-31.003977 - parent: 89 - - uid: 21839 + parent: 27565 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27576 components: - type: Transform - pos: 41.45968,-32.80085 - parent: 89 - - uid: 21859 + parent: 27571 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27582 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.261623,-31.969624 - parent: 89 - - uid: 21860 + parent: 27577 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27587 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.636623,-33.6415 - parent: 89 -- proto: HydroponicsToolSpade + parent: 27583 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PackPaperRollingFilters entities: - - uid: 21021 + - uid: 16297 components: - type: Transform - pos: 30.582584,-5.9352856 - parent: 89 - - uid: 21853 + pos: -5.801279,-7.293356 + parent: 2 +- proto: PaintingAmogusTriptych + entities: + - uid: 16298 components: - type: Transform - pos: 42.706074,-32.85235 - parent: 89 - - uid: 21854 + pos: -90.5,23.5 + parent: 2 + - uid: 16299 components: - type: Transform - pos: 41.424824,-28.586721 - parent: 89 - - uid: 21857 + pos: 10.5,43.5 + parent: 2 +- proto: PaintingMonkey + entities: + - uid: 16300 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.355373,-30.110249 - parent: 89 - - uid: 21858 + pos: -27.5,-0.5 + parent: 2 + - uid: 16301 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.917873,-29.141499 - parent: 89 -- proto: hydroponicsTray + pos: 37.5,-0.5 + parent: 2 +- proto: PaintingPersistenceOfMemory entities: - - uid: 19 - components: - - type: Transform - pos: -7.5,-0.5 - parent: 89 - - uid: 20 + - uid: 16302 components: - type: Transform - pos: -7.5,-2.5 - parent: 89 - - uid: 22 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 +- proto: PaintingSaturn + entities: + - uid: 16303 components: - type: Transform - pos: -6.5,-2.5 - parent: 89 - - uid: 25 + pos: -76.5,-4.5 + parent: 2 +- proto: PaintingTheGreatWave + entities: + - uid: 16304 components: - type: Transform - pos: -6.5,-4.5 - parent: 89 - - uid: 26 + pos: 51.5,12.5 + parent: 2 +- proto: Paper + entities: + - uid: 1152 components: - type: Transform - pos: -7.5,-4.5 - parent: 89 - - uid: 30 + parent: 1151 + - type: Physics + canCollide: False + - uid: 1153 components: - type: Transform - pos: -6.5,-0.5 - parent: 89 - - uid: 14862 + parent: 1151 + - type: Physics + canCollide: False + - uid: 1154 components: - type: Transform - pos: -8.5,-0.5 - parent: 89 - - uid: 19911 + parent: 1151 + - type: Physics + canCollide: False + - uid: 16050 components: + - type: MetaData + name: Важные протоколы NT - type: Transform - pos: -8.5,-2.5 - parent: 89 - - uid: 19912 + parent: 16049 + - type: Paper + stampState: paper_stamp-rd + stampedBy: + - stampedColor: '#6D0091FF' + stampedName: BoyKisser + content: >2 + ⣀⡀⢠⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + ⠀⠀⠀⠀⠀⠀⠀ ⡠⠄⠂⠉⠀⠠⠓⠀⠀⠀⠀⠐⠀⠀⢄⡀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⠀⠀⢀⠠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⠌⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⠀⠀⠀⡠⠒⠁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠔⡁⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀ + + ⠀⠀⢀⠔⠉⠀⠀⠀⠀⠀⠀⠀⢀⣠⣀⡀⠀⠀⠀⠀⢀⣀⠀⠀⠀⠈⠢⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢀⣀ + + ⠀⠀⠈⢢⡀⠀⠀⠀⠀⠀⠀⠈⠀⣾⣿⣸⠀⠀⠀⠀⢸⡏⠆⠀⠀⠀⠠⠬⡆⠀⠀⠀⠀⠀⠀⣀⣀⣠⣤⡄ + + ⠀⠀⠀⠫⢄⠀⠀⠀⠀⠀⠀⠀⠘⣿⣿⠟⠀⠀⠀⠀⢹⠇⠀⠀⠀⠀⠀⠀⡨⠂⠀⣠⣴⣾⣿⣿⣿⣿⣿⡆ + + ⠀⠀⠀⠀⠀⠑⠤⢀⣀⠀⠀⠀⠀⠀⠀⠀⠀⠤⠤⠀⠀⣀⠤⠀⢀⣤⣴⣶⣶⣶⣾⣿⣿⣿⣿⣿⣿⣿⣿ + + ⠀⠀⠀⠀⡀⠀⠀⠀⠀⠯⠤⠤⠄⠊⠀⠀⠀⠀⠙⢕⠂⠤⢐⣶⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⡾ + + ⢀⠔⠁⠀⠀⠀⠀⠑⢄⠀⠀⠀⠰⠀⠀⠀⠀⠀⠀⠀⢢⣠⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠟ + + ⢐⠀⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⢸⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠛⠋ + + ⠀⠦⣀⠀⣀⡀⠀⠀⠀⠀⡆⠀⠀⠀⠀⠀⡇⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣷⣄ + + ⠀⠀⠀⠀⠀⠈⠢⡀⠀⠀⠘⡀⠀⠀⠀⠀⢡⠀⠀⠀⣇⢻⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⢿⣫⣭⡥⣬⣦ + + ⠀⠀⠀⠀⠀⠀⠀⢡⠀⠀⠀⠈⠒⠀⠀⠀⢸⠀⠀⠀⠘⣆⠻⣿⣿⣿⣿⣿⣿⣿⣿⠟⠉⠀⠀⠉⡄⠙⡄⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠱⢄⣀⠠⠃⠀⠀⠀⠘⡀⠀⠀⠀⠈⢷⣦⣉⠛⠿⠿⠿⠿⣏⠀⠀⠀⢀⢸⠇⠀⡇⠀ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠃⠀⠀⠀⠀⠀⠀⡙⢄⠀⠀⠀⠀⠈⠛⠻⠿⠶⠶⠾⠟⠋⢲⡖⠚⠁⠀⠀⡼⠁ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠣⠤⢀⣠⣀⠄⠠⠧⣀⡐⢤⡀⠀⠀⠀⠀⠀⠀⠀⠀⣠⣴⡋⠀⠀⠀⠀⣀⡤⠊ + + ⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠉⠉⠒⠒⠒⠂⠉⠉⠀⠀⠉⠉⠉⠉⠉⠀⠀⠀⠀⠀ + - type: Physics + canCollide: False + - type: Fixtures + fixtures: + fix1: + shape: !type:PolygonShape + radius: 0.01 + vertices: + - -0.25,-0.25 + - 0.25,-0.25 + - 0.25,0.25 + - -0.25,0.25 + mask: + - Impassable + - HighImpassable + layer: [] + density: 20 + hard: True + restitution: 0.3 + friction: 0.2 + flammable: + shape: !type:PhysShapeCircle + radius: 0.35 + position: 0,0 + mask: + - TableLayer + - HighImpassable + - LowImpassable + - BulletImpassable + - InteractImpassable + - Opaque + layer: [] + density: 1 + hard: False + restitution: 0 + friction: 0.4 + - type: InsideEntityStorage + - uid: 16305 components: - type: Transform - pos: -8.5,-4.5 - parent: 89 - - uid: 21339 + pos: -23.2862,9.801046 + parent: 2 + - uid: 16306 components: - type: Transform - pos: 40.5,-30.5 - parent: 89 - - uid: 21360 + pos: -23.676825,9.660421 + parent: 2 + - uid: 16307 components: - type: Transform - pos: 43.5,-30.5 - parent: 89 - - uid: 21373 + pos: -104.52547,0.4284501 + parent: 2 + - type: Paper + stampState: paper_stamp-ce + stampedBy: + - stampedColor: '#C69B17FF' + stampedName: stamp-component-stamped-name-ce + content: >- + Коллеги, я очень рад что вы привезли эту чудесную вещь сюда. Я неплохо отдохнул после сбежавшей сингулярности. + + Жаль всё опустело, эх... + + - С уважением, Старший Инженер смены №19840 + - uid: 16308 components: - type: Transform - pos: 40.5,-33.5 - parent: 89 - - uid: 21508 + rot: 1.5707963267948966 rad + pos: 44.663654,5.4828796 + parent: 2 + - uid: 16309 components: - type: Transform - pos: 43.5,-33.5 - parent: 89 - - uid: 21813 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16310 components: - type: Transform - pos: 40.5,-32.5 - parent: 89 -- proto: IgniteRune - entities: - - uid: 24555 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16311 components: - type: Transform - pos: -8.5,-2.5 - parent: 22565 -- proto: InflatableDoorStack - entities: - - uid: 2726 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16312 components: - type: Transform - pos: -88.41873,-13.149558 - parent: 89 - - uid: 2727 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16313 components: - type: Transform - pos: -88.43436,-13.524558 - parent: 89 - - uid: 9308 + pos: 40.54078,10.593507 + parent: 2 + - uid: 16314 components: - type: Transform - pos: 25.506908,7.471327 - parent: 89 - - uid: 9309 + pos: -102.8867,-2.4524355 + parent: 2 + - uid: 16315 components: - type: Transform - pos: 25.506908,7.471327 - parent: 89 - - uid: 9310 + pos: -101.15233,-2.3430603 + parent: 2 + - uid: 16316 components: - type: Transform - pos: 25.506908,7.471327 - parent: 89 - - uid: 14765 + pos: -100.5117,-2.483685 + parent: 2 + - uid: 16317 components: - type: Transform - pos: -75.44624,12.53618 - parent: 89 -- proto: InflatableWall - entities: - - uid: 10270 + pos: 12.287061,-1.5694923 + parent: 2 + - uid: 16318 components: - type: Transform - pos: -41.5,28.5 - parent: 89 - - uid: 10271 + pos: -104.68759,21.491177 + parent: 2 + - uid: 16319 components: - type: Transform - pos: -41.5,29.5 - parent: 89 - - uid: 14577 + pos: 34.586002,-2.6114135 + parent: 2 + - uid: 16320 components: - type: Transform - pos: -131.5,24.5 - parent: 89 - - uid: 14583 + pos: -50.26616,9.653446 + parent: 2 + - uid: 16321 components: - type: Transform - pos: -130.5,24.5 - parent: 89 - - uid: 14639 + pos: -50.35991,9.653446 + parent: 2 + - uid: 16322 components: - type: Transform - pos: -133.5,21.5 - parent: 89 -- proto: InflatableWallStack - entities: - - uid: 2724 + pos: -50.48491,9.637821 + parent: 2 + - uid: 16323 components: - type: Transform - pos: -88.82498,-13.212058 - parent: 89 - - uid: 2725 + pos: -50.57866,9.622196 + parent: 2 + - uid: 16324 components: - type: Transform - pos: -88.82498,-13.540183 - parent: 89 - - uid: 9305 + pos: -20.556078,5.7980614 + parent: 2 + - uid: 16325 components: - type: Transform - pos: 26.522533,7.502577 - parent: 89 - - uid: 9306 + pos: -20.556078,5.6574364 + parent: 2 + - uid: 16326 components: - type: Transform - pos: 26.522533,7.502577 - parent: 89 - - uid: 9307 + pos: -20.493578,5.5168114 + parent: 2 + - uid: 16327 components: - type: Transform - pos: 26.522533,7.502577 - parent: 89 - - uid: 14764 + pos: 48.40206,10.724899 + parent: 2 + - type: Paper + stampState: paper_stamp-centcom + stampedBy: + - stampedColor: '#006600FF' + stampedName: stamp-component-stamped-name-centcom + - stampedColor: '#00BE00FF' + stampedName: stamp-component-stamped-name-approved + content: >- + [color=#006400]███░███░░░░██░░░░[/color] + + [color=#006400]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] + + [color=#006400]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] + + [color=#006400]░░░░██░░██░██░██░[/color] [bold]USG Ishimura Station ЦК - КОМ[/bold] + + [color=#006400]░░░░██░░░████░███[/color] + + =================================================== + [head=3]Указание Секторального Штаба ЦК[/head] + =================================================== + + [bold]Дата отправки:[/bold] + 24.01.3024 + [bold]Составитель документа:[/bold] + + [color=Red] Доулсон-Младший Кристофор[/color] + + [bold]Должность составителя:[/bold] + + [color=Red] Оператор ЦК[/color] + + ───────────────────────────────────────── + + [bold][italic] Приветствуем, уважаемое Командование Станции.[/italic][/bold] В связи с долгой не эксплуатацией станций данного типа, а так-же несоблюдении СанПиН - на ней было замечено много биологических факторов жизнедеятельности, поражающие некоторые части станций этого типа. Грызуны, тараканы и многие другие. В связи с этой проблемой, нами было решено прийти к самому логичному, здравому и правильному смыслу решения проблемы - [bold]установка мин.[/bold] Предупредите свой персонал, и не ходите лишний раз по техническим тоннелям. Слава НТ! + + =================================================== + Подпись: Оператор ЦК, Доулсон-Младший + [italic]место для печатей:[/italic] + - uid: 16328 components: - type: Transform - pos: -75.46187,13.06743 - parent: 89 -- proto: IngotGold - entities: - - uid: 8155 + pos: -104.50009,21.647427 + parent: 2 + - uid: 16329 components: - type: Transform - pos: -8.470213,28.527115 - parent: 89 - - uid: 8968 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16330 components: - type: Transform - pos: 48.42294,-1.3874803 - parent: 89 -- proto: IngotSilver - entities: - - uid: 2637 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16331 components: - type: Transform - pos: 47.562244,-1.3937248 - parent: 89 -- proto: IntercomCommand - entities: - - uid: 5347 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,3.5 - parent: 89 - - uid: 6242 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16333 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-30.5 - parent: 89 - - uid: 7372 + pos: -87.762955,14.70022 + parent: 2 + - uid: 16334 components: - type: Transform - pos: 61.5,14.5 - parent: 89 - - uid: 17865 + pos: -87.669205,14.66897 + parent: 2 + - uid: 16335 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-5.5 - parent: 89 - - uid: 19895 + pos: -87.606705,14.51272 + parent: 2 + - uid: 16336 components: - type: Transform - pos: 25.5,38.5 - parent: 89 -- proto: IntercomCommon - entities: - - uid: 5741 + pos: -45.6796,1.7421833 + parent: 2 + - uid: 16337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -49.5,-5.5 - parent: 89 -- proto: IntercomElectronics - entities: - - uid: 13594 + pos: -45.46085,1.6796833 + parent: 2 + - uid: 16338 components: - type: Transform - pos: -104.34865,-10.52207 - parent: 89 - - uid: 13609 + pos: -45.2421,1.6171833 + parent: 2 + - uid: 16339 components: - type: Transform - pos: -104.6299,-10.24082 - parent: 89 -- proto: IntercomMedical - entities: - - uid: 10953 + pos: -58.789448,7.5664344 + parent: 2 + - uid: 16340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,35.5 - parent: 89 - - uid: 15698 + pos: -58.664448,7.5039344 + parent: 2 + - uid: 16341 components: - type: Transform - pos: -13.5,10.5 - parent: 89 - - uid: 15716 + pos: -58.914448,7.6601844 + parent: 2 + - uid: 16342 components: - type: Transform - pos: 16.5,16.5 - parent: 89 -- proto: IntercomScience - entities: - - uid: 1798 + pos: -59.65388,22.738579 + parent: 2 + - uid: 16343 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,-19.5 - parent: 89 - - uid: 10939 + pos: -59.31013,22.738579 + parent: 2 + - uid: 16344 components: - type: Transform - pos: -3.5,-37.5 - parent: 89 - - uid: 16865 + pos: -59.46638,22.519829 + parent: 2 + - uid: 16345 components: - type: Transform - pos: -6.5,-19.5 - parent: 89 - - uid: 16922 + pos: -113.752426,-7.604034 + parent: 2 + - uid: 16346 components: - type: Transform rot: 1.5707963267948966 rad - pos: -23.5,-19.5 - parent: 89 -- proto: IntercomSecurity - entities: - - uid: 4686 + pos: 19.527187,17.750849 + parent: 2 + - uid: 16347 components: - type: Transform - pos: 30.5,-0.5 - parent: 89 - - uid: 10453 + pos: 12.297477,-1.548659 + parent: 2 + - uid: 16348 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 15.5,6.5 - parent: 89 -- proto: IntercomService - entities: - - uid: 5742 + pos: -84.94473,17.782911 + parent: 2 + - uid: 16349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -32.5,-5.5 - parent: 89 - - uid: 5743 + pos: -84.74161,17.595411 + parent: 2 + - uid: 16350 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-2.5 - parent: 89 -- proto: IronRock - entities: - - uid: 24556 + pos: -84.92911,17.579786 + parent: 2 + - uid: 16351 components: - type: Transform - pos: -26.5,-8.5 - parent: 22565 - - uid: 24557 + pos: 25.21598,13.571265 + parent: 2 + - uid: 16352 components: - type: Transform - pos: -26.5,-7.5 - parent: 22565 - - uid: 24558 + pos: 25.545303,29.599596 + parent: 2 + - uid: 16353 components: - type: Transform - pos: -25.5,-7.5 - parent: 22565 -- proto: IronRockMining - entities: - - uid: 24559 + pos: -100.76776,-2.4943435 + parent: 2 + - uid: 16354 components: - type: Transform - pos: -1.5,-8.5 - parent: 22565 - - uid: 24560 + pos: -104.88585,9.505048 + parent: 2 + - uid: 16355 components: - type: Transform - pos: 2.5,-7.5 - parent: 22565 - - uid: 24561 + rot: 1.5707963267948966 rad + pos: 5.410079,32.649754 + parent: 2 + - uid: 16356 components: - type: Transform - pos: 0.5,-4.5 - parent: 22565 -- proto: JanitorialTrolley - entities: - - uid: 9505 + rot: 1.5707963267948966 rad + pos: 5.410079,32.649754 + parent: 2 + - uid: 16357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -41.5,8.5 - parent: 89 - - uid: 12770 + pos: -85.35823,1.6586027 + parent: 2 + - uid: 16358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 89 - - uid: 20863 + pos: -85.29573,1.5023527 + parent: 2 + - uid: 16359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,7.5 - parent: 89 -- proto: JetpackBlueFilled - entities: - - uid: 9315 + rot: 1.5707963267948966 rad + pos: 5.410079,32.649754 + parent: 2 + - uid: 16360 components: - type: Transform - pos: 26.483028,5.643202 - parent: 89 - - uid: 9316 + pos: 12.276644,-1.5590756 + parent: 2 + - uid: 16361 components: - type: Transform - pos: 26.54969,5.523116 - parent: 89 -- proto: JetpackMini - entities: - - uid: 9311 + pos: 25.508556,29.617373 + parent: 2 + - uid: 16362 components: - type: Transform - pos: 28.545528,5.6275773 - parent: 89 - - uid: 9312 + pos: -105.05744,9.610588 + parent: 2 + - uid: 16363 components: - type: Transform - pos: 28.545528,5.6275773 - parent: 89 - - uid: 9313 + pos: 26.798138,13.448929 + parent: 2 + - uid: 16364 components: - type: Transform - pos: 27.498653,5.6588273 - parent: 89 - - uid: 9314 + pos: 24.909904,13.689699 + parent: 2 + - uid: 16365 components: - type: Transform - pos: 27.498653,5.6588273 - parent: 89 -- proto: JetpackMiniFilled - entities: - - uid: 2144 + rot: 3.141592653589793 rad + pos: 11.763542,5.72961 + parent: 2 + - uid: 16366 components: - type: Transform - parent: 7129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2217 + rot: -1.5707963267948966 rad + pos: -8.523125,13.107367 + parent: 2 + - uid: 16367 components: - type: Transform - parent: 2332 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2326 + pos: -11.461197,10.5552 + parent: 2 + - uid: 16368 components: - type: Transform - parent: 7132 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2330 + rot: 3.141592653589793 rad + pos: 11.715376,5.512917 + parent: 2 + - uid: 16369 components: - type: Transform - parent: 7131 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 2333 + rot: 3.141592653589793 rad + pos: 11.66721,5.6573787 + parent: 2 + - uid: 16370 components: - type: Transform - parent: 7133 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 3362 + pos: -113.68643,-7.326989 + parent: 2 + - uid: 16371 components: - type: Transform - pos: -88.53448,26.530077 - parent: 89 - - uid: 21046 + pos: -113.68614,-7.970252 + parent: 2 + - uid: 16372 components: - type: Transform - pos: 51.38522,-8.203977 - parent: 89 -- proto: KitchenElectricGrill - entities: - - uid: 7633 + pos: -113.68614,-8.360877 + parent: 2 + - uid: 16373 components: - type: Transform - pos: -13.5,-3.5 - parent: 89 - - uid: 20253 + pos: -113.52989,-8.423377 + parent: 2 + - uid: 16374 components: - type: Transform - pos: 46.5,-25.5 - parent: 89 -- proto: KitchenMicrowave - entities: - - uid: 314 + pos: -113.49864,-8.235877 + parent: 2 + - uid: 16375 components: - type: Transform - pos: -14.5,-0.5 - parent: 89 - - uid: 315 + pos: 12.318311,-1.548659 + parent: 2 + - uid: 16376 components: - type: Transform - pos: -12.5,-0.5 - parent: 89 - - uid: 7158 + pos: 14.374804,6.3901353 + parent: 2 + - type: Paper + content: > + ЖУРНАЛ СМЕРТЕЙ НА БОРТУ + + ДАЛЛАС, A. (СТАРШИЙ МЕДИЦИНСКИЙ ОФИЦЕР) + + Число погибших растет. Пока достоверно известно о смерти: + + Аврора Р. + + Олег Х. + + Джессика Х. + + Шарлота Х. + + Калле А. + + Айси Р. + + Сакипу-Каи + + Ебашата Б. + + Фердинант Д. + - uid: 16377 components: - type: Transform - pos: -119.5,-15.5 - parent: 89 - - uid: 8080 + pos: 32.68014,14.60166 + parent: 2 + - uid: 16378 components: - type: Transform - pos: -5.5,32.5 - parent: 89 - - uid: 20296 + pos: 32.570766,14.336035 + parent: 2 + - uid: 16379 components: - type: Transform - pos: 46.5,-28.5 - parent: 89 - - uid: 21454 + pos: 36.664516,13.72666 + parent: 2 + - uid: 16380 components: - type: Transform - pos: 46.5,-24.5 - parent: 89 - - uid: 24562 + pos: 36.39889,13.586035 + parent: 2 + - uid: 16381 components: - type: Transform - pos: -14.5,-24.5 - parent: 22565 -- proto: KitchenReagentGrinder - entities: - - uid: 316 + rot: 1.5707963267948966 rad + pos: 19.480312,17.735224 + parent: 2 + - uid: 16382 components: - type: Transform - pos: -11.5,-0.5 - parent: 89 - - uid: 4229 + rot: 1.5707963267948966 rad + pos: 19.560575,18.307178 + parent: 2 + - uid: 16383 components: - type: Transform - pos: -29.5,0.5 - parent: 89 - - uid: 6931 + pos: 53.277283,-6.2131367 + parent: 2 + - uid: 16384 components: - type: Transform - pos: -13.5,-0.5 - parent: 89 - - uid: 8079 + pos: 53.355408,-6.4318867 + parent: 2 + - uid: 16385 components: - type: Transform - pos: -5.5,33.5 - parent: 89 - - uid: 20295 + pos: 53.589783,-6.1662617 + parent: 2 + - uid: 16386 components: - type: Transform - pos: 47.5,-28.5 - parent: 89 - - uid: 21443 + pos: 53.683533,-6.4787617 + parent: 2 + - uid: 16387 components: - type: Transform - pos: 46.5,-27.5 - parent: 89 - - uid: 21548 + pos: 58.621033,-6.2756367 + parent: 2 + - uid: 16388 components: - type: Transform - pos: -3.5,6.5 - parent: 89 -- proto: KitchenSpike - entities: - - uid: 3561 + pos: 58.636658,-6.4631367 + parent: 2 + - uid: 16389 components: - type: Transform - pos: -12.5,-9.5 - parent: 89 -- proto: KnifePlastic - entities: - - uid: 14959 + pos: 58.402283,-6.3225117 + parent: 2 + - uid: 16390 components: - type: Transform - pos: -12.095051,-31.779919 - parent: 89 - - uid: 22564 + pos: 59.277206,5.651163 + parent: 2 + - type: Paper + content: > + ДИРЕКТИВА ЦЕНТРАЛЬНОГО КОМАНДОВАНИЯ НАНОТРЕЙЗЕН + + ДЖЕССИКА, Х. (2-ОЙ КАПИТАН ФЛОТА НТ) + + Приказ о разоружении корабля USG Ishimura от 25.07.13 + + Требуется снять все бортовые пушки и БСА с корабля для перевода в гражданские структуры. + + Слава НаноТрейзен! + - uid: 16391 components: - type: Transform - pos: 46.707172,-27.829277 - parent: 89 -- proto: KukriKnife - entities: - - uid: 11596 + pos: -104.701065,9.571011 + parent: 2 + - uid: 16392 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11597 + rot: 3.141592653589793 rad + pos: -46.56842,24.176943 + parent: 2 + - type: Paper + content: Не роняй мыло........ + - uid: 16393 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11598 + rot: -1.5707963267948966 rad + pos: 57.45179,-31.312603 + parent: 2 + - uid: 16394 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Lamp - entities: - - uid: 2260 + rot: -1.5707963267948966 rad + pos: 57.467415,-31.328228 + parent: 2 + - uid: 16395 components: - type: Transform - rot: 3.141592653589793 rad - pos: -103.93759,21.725552 - parent: 89 - - uid: 5503 + rot: -1.5707963267948966 rad + pos: 57.38929,-31.437603 + parent: 2 + - uid: 16396 components: - type: Transform rot: -1.5707963267948966 rad - pos: -61.446922,-5.000888 - parent: 89 - - uid: 8137 + pos: 57.811165,-31.718853 + parent: 2 + - uid: 16397 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.501057,6.3397737 - parent: 89 - - uid: 10436 + pos: 57.60804,-31.546978 + parent: 2 + - uid: 16398 components: - type: Transform - pos: 20.482098,5.6791444 - parent: 89 - - uid: 12853 + rot: -1.5707963267948966 rad + pos: 57.529915,-31.515728 + parent: 2 + - uid: 16399 components: - type: Transform - pos: 8.682205,9.82186 - parent: 89 - - uid: 17937 + rot: -1.5707963267948966 rad + pos: 59.284332,4.4924917 + parent: 2 + - type: Paper + content: СДЕЛАЙ НАС ЕДИНЫМИ!!! + - uid: 16400 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.549576,9.8738165 - parent: 89 - - uid: 19584 + pos: 58.559803,-31.989944 + parent: 2 + - uid: 16401 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5588393,19.764381 - parent: 89 - - uid: 19974 + pos: 58.169178,-32.34932 + parent: 2 + - uid: 16402 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.538666,40.34335 - parent: 89 - - uid: 21832 + rot: 3.141592653589793 rad + pos: 58.247303,-32.583694 + parent: 2 + - uid: 16403 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.432224,-31.40483 - parent: 89 -- proto: LampBanana - entities: - - uid: 7432 + pos: 58.419178,-32.614944 + parent: 2 + - uid: 16404 components: - type: Transform - pos: -35.397045,-3.1333203 - parent: 89 -- proto: LampGold - entities: - - uid: 5782 + rot: 3.141592653589793 rad + pos: 58.559803,-32.396194 + parent: 2 + - uid: 16405 components: - type: Transform - pos: -27.461552,25.006954 - parent: 89 - - uid: 7562 + rot: 3.141592653589793 rad + pos: 57.028553,-33.364944 + parent: 2 + - uid: 16406 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.895138,9.879225 - parent: 89 - - uid: 10212 + rot: 3.141592653589793 rad + pos: 57.716053,-33.31807 + parent: 2 + - uid: 16407 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -73.3404,-1.379747 - parent: 89 - - uid: 21833 + rot: 3.141592653589793 rad + pos: 56.544178,-33.44307 + parent: 2 + - uid: 16408 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.557224,-33.389206 - parent: 89 - - uid: 25801 + pos: 56.450428,-33.427444 + parent: 2 + - uid: 16409 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -79.66362,-1.3675164 - parent: 89 -- proto: LampInterrogator - entities: - - uid: 15285 + pos: -23.739325,9.301046 + parent: 2 + - uid: 16410 components: - type: Transform - pos: 18.405268,11.867744 - parent: 89 - - uid: 25702 + pos: -23.301825,9.332296 + parent: 2 + - uid: 24185 components: - type: Transform - pos: 3.9796157,-0.92675114 - parent: 89 -- proto: LandMineExplosive - entities: - - uid: 6139 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24186 components: - type: Transform - pos: -4.4686537,40.2199 - parent: 89 - - uid: 6952 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24187 components: - type: Transform - pos: 34.688606,-35.510906 - parent: 89 - - uid: 7051 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24188 components: - type: Transform - pos: 45.455486,-39.604183 - parent: 89 - - uid: 8030 + pos: 4.9558105,3.4869156 + parent: 23919 + - uid: 24189 components: - type: Transform - pos: 0.68342876,35.56857 - parent: 89 - - uid: 8478 + pos: 4.9558105,3.4869156 + parent: 23919 +- proto: PaperBin10 + entities: + - uid: 16411 components: - type: Transform - pos: -22.0184,28.013847 - parent: 89 - - uid: 8682 + pos: -102.5,21.5 + parent: 2 + - uid: 16412 components: - type: Transform - pos: -37.92106,27.596144 - parent: 89 - - uid: 8928 + rot: 0.00040875888862988013 rad + pos: -9.212771,-16.376884 + parent: 2 + - uid: 16413 components: - type: Transform - pos: 51.694767,-39.464676 - parent: 89 - - uid: 9779 + pos: 25.5,40.5 + parent: 2 +- proto: PaperBin20 + entities: + - uid: 16414 components: - type: Transform - pos: 37.066868,-39.541683 - parent: 89 - - uid: 14076 + pos: 31.5,-12.5 + parent: 2 + - uid: 16415 components: - type: Transform - pos: -43.77981,-11.425076 - parent: 89 - - uid: 15325 + pos: 33.5,-12.5 + parent: 2 +- proto: PaperBin5 + entities: + - uid: 16416 components: - type: Transform - pos: -21.231293,17.468136 - parent: 89 - - uid: 17914 + rot: -1.5707963267948966 rad + pos: -0.5,20.5 + parent: 2 +- proto: PaperOffice + entities: + - uid: 16417 components: - type: Transform - pos: -20.449375,23.433443 - parent: 89 - - uid: 20270 + rot: 3.141592653589793 rad + pos: -1.9534917,19.498787 + parent: 2 + - uid: 16418 components: - type: Transform - pos: -14.347334,33.5509 - parent: 89 - - uid: 20855 + rot: 3.141592653589793 rad + pos: -1.8909917,19.561287 + parent: 2 +- proto: PaperRolling1 + entities: + - uid: 16419 components: + - type: MetaData + name: Использованная бумага - type: Transform - pos: -37.611073,13.366797 - parent: 89 - - uid: 21723 + pos: 36.221523,-19.722937 + parent: 2 +- proto: PartRodMetal + entities: + - uid: 8771 components: - type: Transform - pos: 6.586074,-21.640778 - parent: 89 - - uid: 21878 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8778 components: - type: Transform - pos: 60.424446,-26.467558 - parent: 89 - - uid: 21906 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8785 components: - type: Transform - pos: 54.420834,-11.5585 - parent: 89 - - uid: 21919 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 16420 components: - type: Transform - pos: 57.227066,-15.518201 - parent: 89 - - uid: 21975 + pos: 19.319859,-1.4254802 + parent: 2 + - uid: 16421 components: - type: Transform - pos: 65.5428,-24.867735 - parent: 89 - - uid: 21977 + pos: -91.52402,24.379433 + parent: 2 + - uid: 16422 components: - type: Transform - pos: 55.81865,-39.589676 - parent: 89 - - uid: 21979 + pos: 19.429234,-1.4254802 + parent: 2 + - uid: 16423 components: - type: Transform - pos: 60.473576,-39.495926 - parent: 89 - - uid: 21980 + pos: 19.585484,-1.4254802 + parent: 2 + - uid: 16424 components: - type: Transform - pos: 64.45394,-36.5428 - parent: 89 - - uid: 21981 + pos: 19.710484,-1.4254802 + parent: 2 + - uid: 16425 components: - type: Transform - pos: 64.40707,-30.985271 - parent: 89 - - uid: 21982 + pos: 19.804234,-1.4254802 + parent: 2 + - uid: 16426 components: - type: Transform - pos: 63.5428,-18.87275 - parent: 89 - - uid: 22009 + pos: 19.507359,-1.4254802 + parent: 2 + - uid: 16427 components: - type: Transform - pos: 41.560143,-39.416103 - parent: 89 - - uid: 22013 + pos: 15.522182,-16.495586 + parent: 2 + - uid: 16428 components: - type: Transform - pos: 43.74965,-37.534115 - parent: 89 - - uid: 22015 + pos: 32.602047,7.415881 + parent: 2 + - uid: 27814 components: - type: Transform - pos: 39.814507,-36.159115 - parent: 89 - - uid: 22016 + pos: -1.4355316,-7.3322144 + parent: 27260 +- proto: Pen + entities: + - uid: 16429 components: - type: Transform - pos: 38.543976,-29.734673 - parent: 89 - - uid: 22018 + pos: 34.751617,-3.0509233 + parent: 2 + - uid: 16430 components: - type: Transform - pos: 56.296066,-36.560616 - parent: 89 - - uid: 22019 + rot: 1.5707963267948966 rad + pos: 44.663654,5.2641296 + parent: 2 + - uid: 16431 components: - type: Transform - pos: 60.94568,-35.466866 - parent: 89 - - uid: 22020 + pos: -102.442795,-2.4083269 + parent: 2 + - uid: 16432 components: - type: Transform - pos: 59.486946,-18.90871 - parent: 89 - - uid: 25354 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16433 components: - type: Transform - pos: 34.571785,-30.9184 - parent: 89 -- proto: LandMineModular - entities: - - uid: 22469 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16434 components: - - type: MetaData - name: взрывная мина - type: Transform - pos: 47.278114,-15.313954 - parent: 89 - - uid: 22476 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16435 components: - - type: MetaData - name: взрывная мина - type: Transform - pos: 50.23124,-13.423328 - parent: 89 - - uid: 22478 + pos: 40.31191,10.641259 + parent: 2 + - uid: 16436 components: - - type: MetaData - name: взрывная мина - type: Transform - pos: 50.621864,-15.595203 - parent: 89 -- proto: Lantern - entities: - - uid: 14729 + pos: 12.755811,-1.5278256 + parent: 2 + - uid: 16437 components: - type: Transform - pos: 8.490026,-20.236387 - parent: 89 - - uid: 14937 + pos: -52.531784,9.387821 + parent: 2 + - uid: 16438 components: - type: Transform - pos: -12.79487,-35.70387 - parent: 89 - - uid: 24563 + pos: -20.149828,5.6105614 + parent: 2 + - uid: 16439 components: - type: Transform - pos: 4.397705,10.767603 - parent: 22565 - - uid: 24564 + rot: 3.141592653589793 rad + pos: -104.28134,21.428677 + parent: 2 + - uid: 16440 components: - type: Transform - pos: 3.5099854,10.626978 - parent: 22565 -- proto: LargeBeaker - entities: - - uid: 10010 + pos: -87.356705,14.63772 + parent: 2 + - uid: 16441 components: - type: Transform - pos: 46.36333,-26.008604 - parent: 89 - - uid: 20271 + pos: -58.383198,7.6601844 + parent: 2 + - uid: 16442 components: - type: Transform - pos: 46.597706,-25.99298 - parent: 89 - - uid: 21551 + pos: -45.58585,1.1796833 + parent: 2 + - uid: 16443 components: - type: Transform - pos: -1.9276239,5.7597456 - parent: 89 -- proto: LeavesCannabisDried - entities: - - uid: 5458 + pos: -59.96638,22.644829 + parent: 2 + - uid: 16444 components: - type: Transform - parent: 5392 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Lighter - entities: - - uid: 23750 + pos: -84.42911,17.611036 + parent: 2 + - uid: 16445 components: - type: Transform - parent: 23748 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: LightReplacer - entities: - - uid: 14705 + rot: -1.5707963267948966 rad + pos: -1.0206444,19.64295 + parent: 2 + - uid: 16446 components: - type: Transform - pos: -78.464035,-6.370775 - parent: 89 - - uid: 14706 + pos: -85.748856,1.5023527 + parent: 2 + - uid: 16447 components: - type: Transform - pos: -95.46373,16.583893 - parent: 89 -- proto: LiquidCarbonDioxideCanister - entities: - - uid: 6324 + pos: 25.171398,29.545141 + parent: 2 + - uid: 16448 components: - type: Transform - pos: -91.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: LiquidNitrogenCanister - entities: - - uid: 993 + rot: 3.141592653589793 rad + pos: 5.608939,16.567434 + parent: 2 + - uid: 16449 components: - type: Transform - pos: -91.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17208 + rot: 1.5707963267948966 rad + pos: 5.410079,32.462254 + parent: 2 + - uid: 16450 components: - type: Transform - pos: -98.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: LiquidOxygenCanister - entities: - - uid: 6323 + pos: -113.32677,-7.642127 + parent: 2 + - uid: 16451 components: - type: Transform - pos: -91.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17101 + rot: -1.5707963267948966 rad + pos: 32.477016,14.60166 + parent: 2 + - uid: 16452 components: - type: Transform - pos: -100.5,-19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: LockableButtonResearch - entities: - - uid: 15006 + rot: -1.5707963267948966 rad + pos: 36.477016,14.03916 + parent: 2 + - uid: 16453 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-15.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10765: - - Pressed: Toggle - 10764: - - Pressed: Toggle - 10763: - - Pressed: Toggle - - uid: 15027 + pos: 19.62081,18.746508 + parent: 2 + - uid: 16454 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,-14.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10763: - - Pressed: Toggle - 10764: - - Pressed: Toggle - 10765: - - Pressed: Toggle -- proto: LockerAtmosphericsFilled - entities: - - uid: 18178 + pos: 54.058533,-6.2912617 + parent: 2 + - uid: 16455 components: - type: Transform - pos: -104.5,-16.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25622 - - 17429 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18179 + pos: 54.089783,-6.4475117 + parent: 2 + - uid: 16456 components: - type: Transform - pos: -104.5,-17.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25623 - - 25624 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 18180 + pos: 57.917908,-6.3225117 + parent: 2 + - uid: 16457 components: - type: Transform - pos: -104.5,-18.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25626 - - 25625 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerBoozeFilled - entities: - - uid: 14623 + pos: 26.263317,37.09462 + parent: 2 + - uid: 16458 components: - type: Transform - pos: 3.5,46.5 - parent: 89 - - uid: 21457 + pos: -43.521545,30.07248 + parent: 2 + - uid: 16459 components: - type: Transform - pos: -28.5,-0.5 - parent: 89 -- proto: LockerBotanistFilled - entities: - - uid: 14624 + pos: 58.637928,-32.958694 + parent: 2 + - uid: 16460 components: - type: Transform - pos: -10.5,-9.5 - parent: 89 - - uid: 21385 + pos: 34.030506,-12.405725 + parent: 2 + - uid: 16461 components: - type: Transform - pos: -10.5,-8.5 - parent: 89 -- proto: LockerCaptainFilled - entities: - - uid: 3091 + pos: 30.889881,-12.5151 + parent: 2 + - uid: 16462 components: - type: Transform - pos: 46.5,14.5 - parent: 89 -- proto: LockerChemistryFilled + pos: -23.301825,9.129171 + parent: 2 +- proto: PersonalAI entities: - - uid: 15376 + - uid: 16463 components: - type: Transform - pos: 2.5,9.5 - parent: 89 - - uid: 15384 + pos: 1.571759,-29.847042 + parent: 2 + - uid: 16464 components: - type: Transform - pos: 3.5,9.5 - parent: 89 -- proto: LockerChiefEngineerFilled - entities: - - uid: 21401 + pos: -91.45784,6.461441 + parent: 2 + - uid: 16465 components: - type: Transform - pos: -102.5,11.5 - parent: 89 -- proto: LockerChiefMedicalOfficerFilled - entities: - - uid: 14767 + pos: 30.522495,-3.4520006 + parent: 2 + - uid: 16466 components: - type: Transform - pos: 23.5,43.5 - parent: 89 -- proto: LockerDetective - entities: - - uid: 4858 + pos: -19.416168,-6.4855185 + parent: 2 + - uid: 16467 components: - - type: MetaData - name: шкаф - type: Transform - pos: 11.5,9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 1.9938449 - - 7.5006547 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: Lock - locked: False - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 14044 - - 14042 - - 14047 - - 14041 - - 14046 - - 14040 - - 14045 - - 14043 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerDetectiveFilled - entities: - - uid: 14769 + pos: -57.471027,12.576777 + parent: 2 + - uid: 16468 components: - type: Transform - pos: 17.5,8.5 - parent: 89 -- proto: LockerEngineerFilled - entities: - - uid: 14770 + pos: -41.42999,-10.450936 + parent: 2 + - uid: 16469 components: - type: Transform - pos: -112.5,14.5 - parent: 89 - - uid: 18182 + pos: -4.533154,-20.272491 + parent: 2 + - uid: 16470 components: - type: Transform - pos: -100.5,0.5 - parent: 89 - - uid: 18183 + pos: -18.454983,-23.222599 + parent: 2 + - uid: 16471 components: - type: Transform - pos: -101.5,0.5 - parent: 89 - - uid: 18184 + pos: -18.531723,12.537066 + parent: 2 + - uid: 16472 components: - type: Transform - pos: -105.5,-0.5 - parent: 89 - - uid: 18189 + pos: -61.45272,5.614086 + parent: 2 + - uid: 16473 components: - type: Transform - pos: -103.5,0.5 - parent: 89 - - uid: 18190 + pos: -36.49227,27.653912 + parent: 2 + - uid: 16474 components: - type: Transform - pos: -102.5,0.5 - parent: 89 - - uid: 18191 + pos: -103.92291,9.576194 + parent: 2 + - uid: 16475 components: - type: Transform - pos: -98.5,-1.5 - parent: 89 - - uid: 18192 + pos: -69.48751,-17.338394 + parent: 2 + - uid: 16476 components: - type: Transform - pos: -98.5,-2.5 - parent: 89 - - uid: 18193 + pos: 44.26809,5.7978077 + parent: 2 + - uid: 16477 components: - type: Transform - pos: -98.5,-3.5 - parent: 89 - - uid: 21348 + pos: 56.51628,10.546991 + parent: 2 +- proto: PhoneInstrument + entities: + - uid: 16478 components: - type: Transform - pos: -105.5,-1.5 - parent: 89 -- proto: LockerEvidence + pos: -105.45816,21.652794 + parent: 2 + - uid: 16479 + components: + - type: Transform + pos: 34.35128,-2.1720636 + parent: 2 +- proto: PianoInstrument entities: - - uid: 10170 + - uid: 16480 components: - type: Transform - pos: -80.5,-3.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1495 - moles: - - 3.0981817 - - 11.655066 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - uid: 15048 + rot: 1.5707963267948966 rad + pos: -21.5,-4.5 + parent: 2 +- proto: Pickaxe + entities: + - uid: 16481 components: - type: Transform - pos: 26.5,-10.5 - parent: 89 - - uid: 15051 + pos: -25.454777,28.449745 + parent: 2 + - uid: 16482 components: - type: Transform - pos: 23.5,-10.5 - parent: 89 - - uid: 15078 + pos: 25.395391,-12.3433895 + parent: 2 + - uid: 25656 components: - type: Transform - pos: 20.5,-10.5 - parent: 89 - - uid: 15081 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25657 components: - type: Transform - pos: 17.5,-10.5 - parent: 89 - - uid: 15104 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25658 components: - type: Transform - pos: -54.5,39.5 - parent: 89 - - uid: 15128 + parent: 25649 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25666 components: - type: Transform - pos: -54.5,45.5 - parent: 89 - - uid: 16875 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25667 components: - type: Transform - pos: 21.5,12.5 - parent: 89 - - uid: 17052 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25668 components: - type: Transform - pos: 40.5,-25.5 - parent: 89 - - uid: 17055 + parent: 25659 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillCanister + entities: + - uid: 16483 components: - type: Transform - pos: 38.5,-25.5 - parent: 89 - - uid: 17205 + pos: -1.629554,10.697055 + parent: 2 + - uid: 16484 components: - type: Transform - pos: 40.5,-26.5 - parent: 89 - - uid: 20419 + pos: -2.9211035,5.53437 + parent: 2 +- proto: PillCanisterBicaridine + entities: + - uid: 23947 components: - type: Transform - pos: 38.5,-26.5 - parent: 89 - - uid: 21780 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillCanisterDermaline + entities: + - uid: 23948 components: - type: Transform - pos: 40.5,-23.5 - parent: 89 - - uid: 21781 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillCanisterIron + entities: + - uid: 23949 components: - type: Transform - pos: 40.5,-24.5 - parent: 89 - - uid: 21783 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PillSpaceDrugs + entities: + - uid: 10521 components: - type: Transform - pos: 38.5,-23.5 - parent: 89 - - uid: 21784 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10522 components: - type: Transform - pos: 38.5,-24.5 - parent: 89 -- proto: LockerFreezer - entities: - - uid: 21471 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10523 components: - type: Transform - pos: -12.5,-8.5 - parent: 89 -- proto: LockerFreezerBase - entities: - - uid: 21393 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10524 components: - type: Transform - pos: -1.5,-5.5 - parent: 89 - - uid: 23953 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10525 components: - type: Transform - pos: -12.5,-24.5 - parent: 22565 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 23958 - - 23959 - - 23957 - - 23960 - - 23962 - - 23956 - - 23955 - - 23961 - - 23954 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerHeadOfPersonnelFilled + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PinpointerNuclear entities: - - uid: 12621 + - uid: 16485 components: - type: Transform - pos: 44.5,14.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: LockerHeadOfSecurityFilled + pos: 48.625,-2.545616 + parent: 2 +- proto: PlaqueAtmos entities: - - uid: 15692 + - uid: 16486 components: + - type: MetaData + desc: Старая доска почета, жаль, что доска слишком изношена, чтобы можно было её прочитать, кроме нескольких слов "no_mad" "OopsieDoopsie" "tUndra" "Bebushka" "_CyreX_" "Bollo" "lapatison" "kevicky9" "vasalomka", вот только что означают эти слова, вы никогда не узнаете. Похоже кто-то наклеил поверх таблички фотку "Робастер, древний." + name: старая доска почета - type: Transform - pos: 30.5,-2.5 - parent: 89 -- proto: LockerMedical + pos: 14.5,-14.5 + parent: 2 + - uid: 16487 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -97.5,-5.5 + parent: 2 +- proto: PlasmaCanister entities: - - uid: 11201 + - uid: 16488 components: - type: Transform - pos: 27.5,29.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11303 - - 11302 - - 11301 - - 11224 - - 11211 - - 11206 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 11304 + pos: -88.5,-4.5 + parent: 2 + - uid: 16489 components: - type: Transform - pos: 21.5,29.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 11310 - - 11309 - - 11308 - - 11307 - - 11306 - - 11305 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicalFilled - entities: - - uid: 15693 + pos: -123.5,7.5 + parent: 2 + - uid: 16490 components: - type: Transform - pos: 11.5,16.5 - parent: 89 - - uid: 17906 + pos: -123.5,0.5 + parent: 2 + - uid: 16491 components: - type: Transform - pos: 35.5,18.5 - parent: 89 - - uid: 17908 + pos: -92.5,-23.5 + parent: 2 + - uid: 16492 components: - type: Transform - pos: 31.5,20.5 - parent: 89 -- proto: LockerMedicine - entities: - - uid: 12190 + pos: 1.5,-38.5 + parent: 2 + - uid: 26561 components: - type: Transform - pos: 22.5,19.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 12599 - - 12600 - - 12602 - - 12605 - - 12608 - - 12610 - - 12611 - - 12800 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerMedicineFilled + pos: -13.5,-8.5 + parent: 24450 +- proto: PlasmaReinforcedWindowDirectional entities: - - uid: 15548 + - uid: 16493 components: - type: Transform - pos: -11.5,15.5 - parent: 89 - - uid: 15581 + pos: -122.5,15.5 + parent: 2 + - uid: 16494 components: - type: Transform - pos: -12.5,15.5 - parent: 89 - - uid: 16417 + pos: -124.5,15.5 + parent: 2 + - uid: 16495 components: - type: Transform - pos: 34.5,18.5 - parent: 89 - - uid: 16458 + pos: -125.5,15.5 + parent: 2 + - uid: 16496 components: - type: Transform - pos: 5.5,14.5 - parent: 89 - - uid: 19642 + pos: -121.5,15.5 + parent: 2 + - uid: 16497 components: - type: Transform - pos: 33.5,18.5 - parent: 89 -- proto: LockerParamedicFilled - entities: - - uid: 8204 + rot: -1.5707963267948966 rad + pos: -110.5,20.5 + parent: 2 + - uid: 16498 components: - type: Transform - pos: 16.5,21.5 - parent: 89 -- proto: LockerQuarterMasterFilled - entities: - - uid: 16459 + rot: 3.141592653589793 rad + pos: -7.5,-43.5 + parent: 2 + - uid: 16499 components: - type: Transform - pos: -73.5,-17.5 - parent: 89 -- proto: LockerResearchDirectorFilled - entities: - - uid: 3090 + rot: 1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 16500 components: - type: Transform - pos: 3.5,-31.5 - parent: 89 -- proto: LockerSalvageSpecialistFilled - entities: - - uid: 21461 + rot: -1.5707963267948966 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 16501 components: - type: Transform - pos: -49.5,-9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25627 - - 25628 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21463 + rot: 3.141592653589793 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 16502 components: - type: Transform - pos: -48.5,-9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25630 - - 25629 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null - - uid: 21465 + rot: -1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 16503 components: - type: Transform - pos: -47.5,-9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 25631 - - 25632 - paper_label: !type:ContainerSlot - showEnts: False - occludes: True - ent: null -- proto: LockerScienceFilled - entities: - - uid: 3089 + rot: 1.5707963267948966 rad + pos: -5.5,-42.5 + parent: 2 + - uid: 16504 + components: + - type: Transform + pos: -5.5,-42.5 + parent: 2 + - uid: 16505 + components: + - type: Transform + pos: 0.5,-42.5 + parent: 2 + - uid: 16506 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 16507 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 16508 components: - type: Transform - pos: -6.5,-25.5 - parent: 89 - - uid: 3558 + rot: 1.5707963267948966 rad + pos: 0.5,-42.5 + parent: 2 + - uid: 16509 components: - type: Transform - pos: -7.5,-25.5 - parent: 89 -- proto: LockerSecurityFilled - entities: - - uid: 4330 + rot: 1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 16510 components: - type: Transform - pos: 19.5,-6.5 - parent: 89 - - uid: 5315 + pos: 2.5,-42.5 + parent: 2 + - uid: 16511 components: - type: Transform - pos: 21.5,-1.5 - parent: 89 - - uid: 15342 + pos: -7.5,-41.5 + parent: 2 + - uid: 16512 components: - type: Transform - pos: 18.5,-6.5 - parent: 89 - - uid: 17196 + pos: -5.5,-41.5 + parent: 2 + - uid: 16513 components: - type: Transform - pos: -88.5,12.5 - parent: 89 - - uid: 17206 + pos: 0.5,-41.5 + parent: 2 + - uid: 16514 components: - type: Transform - pos: 20.5,-6.5 - parent: 89 - - uid: 17233 + pos: 2.5,-41.5 + parent: 2 + - uid: 16515 components: - type: Transform - pos: 17.5,-6.5 - parent: 89 - - uid: 17252 + rot: 3.141592653589793 rad + pos: 2.5,-43.5 + parent: 2 + - uid: 16516 components: - type: Transform - pos: 21.5,-6.5 - parent: 89 -- proto: LockerWardenFilled - entities: - - uid: 21448 + rot: 3.141592653589793 rad + pos: 0.5,-43.5 + parent: 2 + - uid: 16517 components: - type: Transform - pos: 9.5,-8.5 - parent: 89 -- proto: LockerWeldingSuppliesFilled - entities: - - uid: 17211 + rot: 3.141592653589793 rad + pos: -5.5,-43.5 + parent: 2 + - uid: 16518 components: - type: Transform - pos: -39.5,-17.5 - parent: 89 - - uid: 17301 + rot: 3.141592653589793 rad + pos: -7.5,-42.5 + parent: 2 + - uid: 16519 components: - type: Transform - pos: 48.5,5.5 - parent: 89 - - uid: 17302 + rot: 3.141592653589793 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 16520 components: - type: Transform - pos: -5.5,25.5 - parent: 89 - - uid: 17379 + rot: -1.5707963267948966 rad + pos: 2.5,-42.5 + parent: 2 + - uid: 16521 components: - type: Transform - pos: -16.5,13.5 - parent: 89 -- proto: Log - entities: - - uid: 14740 + rot: 3.141592653589793 rad + pos: 54.5,4.5 + parent: 2 + - uid: 16522 components: - type: Transform - pos: 7.479765,-25.628338 - parent: 89 - - uid: 14741 + rot: 1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - uid: 16523 components: - type: Transform - pos: 7.015009,-25.861204 - parent: 89 -- proto: Machete - entities: - - uid: 3275 + pos: 54.5,4.5 + parent: 2 + - uid: 16524 components: - type: Transform - pos: 36.507298,-14.4976635 - parent: 89 -- proto: MachineAnomalyGenerator - entities: - - uid: 5432 + rot: -1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 + - uid: 16525 components: - type: Transform - pos: -8.5,-28.5 - parent: 89 -- proto: MachineAnomalyVessel - entities: - - uid: 20076 + rot: 1.5707963267948966 rad + pos: 48.5,-3.5 + parent: 2 + - uid: 16526 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-32.5 - parent: 89 - - uid: 20079 + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 2 + - uid: 16527 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 89 - - uid: 20081 + pos: -7.5,-29.5 + parent: 2 + - uid: 16528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-32.5 - parent: 89 -- proto: MachineAPE - entities: - - uid: 122 + pos: -9.5,-29.5 + parent: 2 + - uid: 16529 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 89 - - uid: 8533 + pos: -7.5,-29.5 + parent: 2 + - uid: 16530 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-32.5 - parent: 89 - - uid: 19580 + pos: -7.5,-28.5 + parent: 2 + - uid: 16531 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-32.5 - parent: 89 -- proto: MachineArtifactAnalyzer - entities: - - uid: 1435 + pos: -7.5,-27.5 + parent: 2 + - uid: 16532 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-44.5 - parent: 89 - - uid: 3262 + pos: -126.5,15.5 + parent: 2 + - uid: 16533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-44.5 - parent: 89 -- proto: MachineCentrifuge + pos: -135.5,-8.5 + parent: 2 +- proto: PlasmaShiv entities: - - uid: 21099 + - uid: 16534 components: - type: Transform - pos: -0.5,9.5 - parent: 89 -- proto: MachineElectrolysisUnit + pos: 53.479996,-33.581047 + parent: 2 + - uid: 25077 + components: + - type: Transform + parent: 25070 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PlasmaWindoorSecureCommandLocked entities: - - uid: 5240 + - uid: 16535 components: - type: Transform - pos: -0.5,8.5 - parent: 89 -- proto: MachineFrameDestroyed + pos: 49.5,-2.5 + parent: 2 +- proto: PlasmaWindoorSecureEngineeringLocked entities: - - uid: 21105 + - uid: 16536 components: - type: Transform - pos: 38.5,39.5 - parent: 89 - - uid: 21106 + pos: -123.5,15.5 + parent: 2 + - uid: 16537 components: - type: Transform - pos: 39.5,39.5 - parent: 89 - - uid: 24565 + rot: -1.5707963267948966 rad + pos: -110.5,21.5 + parent: 2 + - uid: 16538 components: - type: Transform - pos: 1.5,9.5 - parent: 22565 -- proto: MagazineBoxPistolPractice - entities: - - uid: 22458 + rot: -1.5707963267948966 rad + pos: -134.5,-4.5 + parent: 2 + - uid: 16539 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineLightRifle - entities: - - uid: 17722 + rot: -1.5707963267948966 rad + pos: -134.5,-10.5 + parent: 2 + - uid: 16540 components: - type: Transform - pos: 37.304096,-2.5230527 - parent: 89 - - uid: 17723 + rot: -1.5707963267948966 rad + pos: -134.5,-11.5 + parent: 2 + - uid: 16541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,-9.5 + parent: 2 + - uid: 16542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,-5.5 + parent: 2 + - uid: 16543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -134.5,-3.5 + parent: 2 + - uid: 16544 components: - type: Transform - pos: 37.60097,-2.5230527 - parent: 89 -- proto: MagazineLightRiflePractice + rot: -1.5707963267948966 rad + pos: -134.5,-2.5 + parent: 2 +- proto: PlasmaWindoorSecureScienceLocked entities: - - uid: 3251 + - uid: 16545 components: - type: Transform - pos: 37.491753,-1.4167659 - parent: 89 - - uid: 17662 + pos: -8.5,-29.5 + parent: 2 +- proto: PlasmaWindowDirectional + entities: + - uid: 16546 components: - type: Transform - pos: 37.757378,-1.4011409 - parent: 89 - - uid: 17667 + rot: 1.5707963267948966 rad + pos: -93.5,-14.5 + parent: 2 + - uid: 16547 components: - type: Transform - pos: 37.257378,-1.4167659 - parent: 89 - - uid: 18454 + pos: -92.5,-13.5 + parent: 2 + - uid: 16548 + components: + - type: Transform + pos: -91.5,-13.5 + parent: 2 + - uid: 16549 + components: + - type: Transform + pos: -90.5,-13.5 + parent: 2 + - uid: 16550 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.507378,-1.5573909 - parent: 89 -- proto: MagazinePistol - entities: - - uid: 1069 + pos: -89.5,-14.5 + parent: 2 + - uid: 16551 components: - type: Transform - pos: 43.177917,-9.356591 - parent: 89 - - uid: 17093 + rot: 3.141592653589793 rad + pos: -90.5,-15.5 + parent: 2 + - uid: 16552 components: - type: Transform - pos: 43.631042,-9.372216 - parent: 89 - - uid: 17094 + rot: 3.141592653589793 rad + pos: -91.5,-15.5 + parent: 2 + - uid: 16553 components: - type: Transform - pos: 43.412292,-9.356591 - parent: 89 - - uid: 17154 + rot: 3.141592653589793 rad + pos: -92.5,-15.5 + parent: 2 +- proto: PlasticFlapsAirtightClear + entities: + - uid: 16554 components: - type: Transform - pos: 43.865417,-9.372216 - parent: 89 - - uid: 17155 + pos: -63.5,-21.5 + parent: 2 + - uid: 16555 components: - type: Transform - pos: 43.865417,-9.231591 - parent: 89 - - uid: 17156 + pos: -59.5,-21.5 + parent: 2 + - uid: 16556 components: - type: Transform - pos: 43.693542,-9.215966 - parent: 89 - - uid: 17157 + pos: -59.5,-18.5 + parent: 2 + - uid: 16557 components: - type: Transform - pos: 43.459167,-9.200341 - parent: 89 - - uid: 17158 + pos: -63.5,-18.5 + parent: 2 + - uid: 16558 components: - type: Transform - pos: 43.209167,-9.184716 - parent: 89 -- proto: MagazinePistolPractice + pos: -101.5,29.5 + parent: 2 + - uid: 16559 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -99.5,29.5 + parent: 2 + - uid: 24190 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 1.5,5.5 + parent: 23919 +- proto: PlasticFlapsAirtightOpaque entities: - - uid: 22456 + - uid: 16560 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22460 + rot: 3.141592653589793 rad + pos: -92.5,-3.5 + parent: 2 + - uid: 16561 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22462 + pos: -59.5,-3.5 + parent: 2 + - uid: 16562 components: - type: Transform - parent: 22455 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MagazineRifle + pos: -66.5,-3.5 + parent: 2 +- proto: PlushieAtmosian entities: - - uid: 529 + - uid: 16563 components: + - type: MetaData + name: плюшевый TiFeRi - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MaintenanceFluffSpawner + pos: -90.946205,-14.580009 + parent: 2 +- proto: PlushieCarp entities: - - uid: 7006 + - uid: 16564 components: - type: Transform - pos: -30.5,-15.5 - parent: 89 - - uid: 14697 + pos: -25.532013,29.75965 + parent: 2 + - uid: 16565 components: - type: Transform - pos: -81.5,5.5 - parent: 89 - - uid: 14777 + pos: 1.5285358,-48.382328 + parent: 2 +- proto: PlushieLamp + entities: + - uid: 16566 components: - type: Transform - pos: -72.5,21.5 - parent: 89 - - uid: 14858 + pos: 24.491402,43.610085 + parent: 2 + - uid: 16567 components: - type: Transform - pos: -38.5,23.5 - parent: 89 - - uid: 16282 + pos: -105.51431,9.84532 + parent: 2 +- proto: PlushieLizard + entities: + - uid: 16568 components: - type: Transform - pos: 7.5,27.5 - parent: 89 - - uid: 19610 + pos: -89.61875,29.811512 + parent: 2 + - uid: 16569 components: - type: Transform - pos: -26.5,-23.5 - parent: 89 - - uid: 24567 + pos: 49.59375,-3.342491 + parent: 2 +- proto: PlushieNar + entities: + - uid: 16570 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,10.5 - parent: 22565 -- proto: MaintenanceToolSpawner + pos: 3.4692783,30.507156 + parent: 2 +- proto: PlushieNuke entities: - - uid: 92 + - uid: 16571 components: + - type: MetaData + name: плюшевая коммандер аврора - type: Transform - pos: -24.5,-15.5 - parent: 89 - - uid: 3387 + pos: 0.49973202,32.523396 + parent: 2 + - uid: 16572 components: + - type: MetaData + name: плюшевая коммандер аврора - type: Transform - pos: -15.5,-23.5 - parent: 89 - - uid: 3391 + pos: 59.524296,6.726757 + parent: 2 +- proto: PlushieSharkPink + entities: + - uid: 16573 components: - type: Transform - pos: -18.5,-23.5 - parent: 89 - - uid: 7483 + pos: 3.484107,32.50777 + parent: 2 +- proto: PlushieSlime + entities: + - uid: 16574 components: + - type: MetaData + desc: Добрый и маленький слаймик нурка + name: слаймик Нурану - type: Transform - pos: -76.5,-15.5 - parent: 89 - - uid: 7639 + pos: 1.4425585,-31.546919 + parent: 2 +- proto: PlushieSpaceLizard + entities: + - uid: 16575 components: - type: Transform - pos: -85.5,-4.5 - parent: 89 - - uid: 7733 + pos: 59.412067,2.6890216 + parent: 2 + - uid: 16576 components: - type: Transform - pos: -82.5,-1.5 - parent: 89 - - uid: 14698 + pos: 19.486435,38.771248 + parent: 2 +- proto: PonderingOrb + entities: + - uid: 16577 components: - type: Transform - pos: -80.5,5.5 - parent: 89 - - uid: 14778 + pos: 11.506685,-21.496483 + parent: 2 +- proto: PortableFlasher + entities: + - uid: 16578 components: - type: Transform - pos: -73.5,21.5 - parent: 89 - - uid: 14859 + pos: -53.5,36.5 + parent: 2 + - uid: 16579 components: - type: Transform - pos: -38.5,24.5 - parent: 89 - - uid: 16281 + pos: -53.5,34.5 + parent: 2 + - uid: 16580 components: - type: Transform - pos: 8.5,27.5 - parent: 89 - - uid: 16400 + pos: 43.5,-2.5 + parent: 2 + - uid: 16581 components: - type: Transform - pos: 48.5,3.5 - parent: 89 - - uid: 19616 + pos: 43.5,-3.5 + parent: 2 + - uid: 16582 components: - type: Transform - pos: -26.5,-25.5 - parent: 89 -- proto: MaintenanceWeaponSpawner + pos: 42.5,-2.5 + parent: 2 + - uid: 16583 + components: + - type: Transform + pos: 42.5,-3.5 + parent: 2 +- proto: PortableGeneratorJrPacman entities: - - uid: 106 + - uid: 16584 components: - type: Transform - pos: -43.5,-3.5 - parent: 89 - - uid: 6553 + pos: -53.5,32.5 + parent: 2 + - uid: 16585 components: - type: Transform - pos: -33.5,-1.5 - parent: 89 - - uid: 14696 + pos: -35.5,13.5 + parent: 2 + - uid: 16586 components: - type: Transform - pos: -82.5,5.5 - parent: 89 - - uid: 14775 + pos: -40.5,-15.5 + parent: 2 + - uid: 16587 components: - type: Transform - pos: -69.5,21.5 - parent: 89 - - uid: 14776 + pos: -38.5,21.5 + parent: 2 + - uid: 16588 components: - type: Transform - pos: -68.5,21.5 - parent: 89 - - uid: 14783 + pos: 7.5,-19.5 + parent: 2 + - uid: 16589 components: - type: Transform - pos: -51.5,32.5 - parent: 89 -- proto: Matchbox - entities: - - uid: 15639 + pos: -19.5,-27.5 + parent: 2 + - uid: 16590 components: - type: Transform - pos: -117.26836,-14.507084 - parent: 89 -- proto: MaterialBiomass + pos: 37.5,-14.5 + parent: 2 + - uid: 16591 + components: + - type: Transform + pos: 25.5,-0.5 + parent: 2 +- proto: PortableGeneratorPacman entities: - - uid: 16546 + - uid: 16592 components: - type: Transform - pos: 6.434067,16.596329 - parent: 89 - - uid: 20807 + pos: -129.5,11.5 + parent: 2 + - uid: 16593 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.7399516,16.784958 - parent: 89 -- proto: MaterialBones1 + pos: -130.5,11.5 + parent: 2 +- proto: PortableGeneratorSuperPacman entities: - - uid: 24568 + - uid: 16594 components: - type: Transform - pos: -4.2203536,4.4322076 - parent: 22565 - - uid: 24569 + pos: -132.5,11.5 + parent: 2 + - uid: 16595 components: - type: Transform - pos: -4.5484786,1.7447076 - parent: 22565 - - uid: 24570 + pos: -131.5,11.5 + parent: 2 + - uid: 16596 components: - type: Transform - pos: 0.7796464,3.0103326 - parent: 22565 - - uid: 24571 + pos: 16.5,-13.5 + parent: 2 + - uid: 16597 components: - type: Transform - pos: 0.9515214,5.5455093 - parent: 22565 - - uid: 24572 + pos: -10.5,-25.5 + parent: 2 +- proto: PortableScrubber + entities: + - uid: 16598 components: - type: Transform - pos: -5.2984786,6.4673843 - parent: 22565 - - uid: 24573 + pos: -103.5,-12.5 + parent: 2 + - uid: 16599 components: - type: Transform - pos: -4.5328536,8.436134 - parent: 22565 -- proto: MaterialCloth - entities: - - uid: 2023 + pos: -102.5,-12.5 + parent: 2 + - uid: 16600 components: - type: Transform - pos: 42.415596,10.695596 - parent: 89 - - uid: 24574 + pos: -104.5,-12.5 + parent: 2 + - uid: 16601 components: - type: Transform - pos: -31.50148,1.603975 - parent: 22565 - - uid: 24575 + pos: -90.5,-2.5 + parent: 2 + - uid: 16602 components: - type: Transform - pos: 7.401089,1.572725 - parent: 22565 -- proto: MaterialCloth10 - entities: - - uid: 21023 + pos: -91.5,9.5 + parent: 2 + - uid: 16603 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.304749,-14.450155 - parent: 89 - - uid: 21024 + pos: -91.5,8.5 + parent: 2 + - uid: 16604 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.382874,-14.43453 - parent: 89 - - uid: 21025 + pos: 0.5,25.5 + parent: 2 + - uid: 16605 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.384485,-14.40328 - parent: 89 - - uid: 21026 + pos: -92.5,19.5 + parent: 2 + - uid: 16606 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.308783,-14.43453 - parent: 89 -- proto: MaterialDurathread - entities: - - uid: 2024 + pos: -91.5,-2.5 + parent: 2 + - uid: 16607 components: - type: Transform - pos: 42.759346,10.398721 - parent: 89 -- proto: MaterialWoodPlank + pos: -91.5,10.5 + parent: 2 +- proto: PortableScrubberMachineCircuitBoard entities: - - uid: 11049 + - uid: 16608 components: - type: Transform - pos: -115.5242,13.621173 - parent: 89 - - uid: 14727 + pos: -105.3799,-10.45957 + parent: 2 + - uid: 16609 components: - type: Transform - pos: 8.49539,-21.442284 - parent: 89 - - uid: 14879 + pos: -105.61427,-10.20957 + parent: 2 +- proto: PosterBroken + entities: + - uid: 16610 components: - type: Transform - pos: -115.3367,13.793048 - parent: 89 -- proto: MatterBinStockPart + pos: -35.5,22.5 + parent: 2 +- proto: PosterContrabandAmbrosiaVulgaris entities: - - uid: 93 + - uid: 16611 components: - type: Transform - pos: -15.444581,-15.227853 - parent: 89 - - uid: 94 + pos: -10.5,-5.5 + parent: 2 +- proto: PosterContrabandAtmosiaDeclarationIndependence + entities: + - uid: 16612 components: - type: Transform - pos: -15.257081,-15.509103 - parent: 89 - - uid: 7053 + pos: -90.5,-3.5 + parent: 2 +- proto: PosterContrabandCC64KAd + entities: + - uid: 16613 components: - type: Transform - pos: -98.65939,-7.6130424 - parent: 89 - - uid: 7054 + pos: -3.5,4.5 + parent: 2 +- proto: PosterContrabandCommunistState + entities: + - uid: 16614 components: - type: Transform - pos: -98.51877,-7.2849174 - parent: 89 - - uid: 7055 + pos: -94.5,18.5 + parent: 2 +- proto: PosterContrabandEAT + entities: + - uid: 16615 components: - type: Transform - pos: -98.28439,-7.5505424 - parent: 89 -- proto: Mattress + pos: -16.5,-0.5 + parent: 2 +- proto: PosterContrabandFreeDrone entities: - - uid: 21785 + - uid: 16616 components: - type: Transform - pos: 36.5,-19.5 - parent: 89 - - uid: 21868 + pos: 17.5,0.5 + parent: 2 +- proto: PosterContrabandFunPolice + entities: + - uid: 16617 components: - type: Transform - pos: 54.5,-23.5 - parent: 89 - - uid: 21869 + pos: -73.5,-7.5 + parent: 2 +- proto: PosterContrabandGreyTide + entities: + - uid: 16618 components: - type: Transform - pos: 54.5,-19.5 - parent: 89 - - uid: 21870 + pos: -1.5,33.5 + parent: 2 +- proto: PosterContrabandHackingGuide + entities: + - uid: 16619 components: - type: Transform - pos: 54.5,-22.5 - parent: 89 - - uid: 21872 + pos: 2.5,33.5 + parent: 2 +- proto: PosterContrabandHaveaPuff + entities: + - uid: 16620 components: - type: Transform - pos: 54.5,-25.5 - parent: 89 - - uid: 21876 + pos: -6.5,34.5 + parent: 2 +- proto: PosterContrabandKosmicheskayaStantsiya + entities: + - uid: 16621 components: - type: Transform - pos: 54.5,-20.5 - parent: 89 - - uid: 21879 + pos: -9.5,32.5 + parent: 2 +- proto: PosterContrabandMissingGloves + entities: + - uid: 16622 components: - type: Transform - pos: 54.5,-26.5 - parent: 89 - - uid: 24576 + pos: -89.5,13.5 + parent: 2 +- proto: PosterContrabandRebelsUnite + entities: + - uid: 16623 components: - type: Transform - pos: -14.5,-21.5 - parent: 22565 - - uid: 24577 + pos: 0.5,38.5 + parent: 2 +- proto: PosterContrabandRevolver + entities: + - uid: 16624 components: - type: Transform - pos: -12.5,-21.5 - parent: 22565 - - uid: 24578 + pos: 17.5,10.5 + parent: 2 +- proto: PosterContrabandRise + entities: + - uid: 16625 components: - type: Transform - pos: 11.5,12.5 - parent: 22565 - - uid: 24579 + pos: -1.5,37.5 + parent: 2 +- proto: PosterContrabandSpaceCola + entities: + - uid: 16626 components: - type: Transform - pos: 11.5,8.5 - parent: 22565 - - uid: 24580 + pos: -5.5,47.5 + parent: 2 +- proto: PosterContrabandSunkist + entities: + - uid: 16627 components: - type: Transform - pos: 11.5,6.5 - parent: 22565 - - uid: 24581 + pos: -1.5,47.5 + parent: 2 +- proto: PosterContrabandSyndicatePistol + entities: + - uid: 16628 components: - type: Transform - pos: -35.5,8.5 - parent: 22565 - - uid: 24582 + pos: 1.5,38.5 + parent: 2 +- proto: PosterContrabandSyndicateRecruitment + entities: + - uid: 16629 components: - type: Transform - pos: -35.5,6.5 - parent: 22565 - - uid: 24583 + pos: -6.5,38.5 + parent: 2 + - uid: 16630 components: - type: Transform - pos: -35.5,12.5 - parent: 22565 -- proto: MedicalBed + pos: -89.5,30.5 + parent: 2 +- proto: PosterContrabandTools entities: - - uid: 11157 + - uid: 16631 components: - type: Transform - pos: 3.5,15.5 - parent: 89 - - uid: 12570 + pos: -94.5,11.5 + parent: 2 +- proto: PosterLegit12Gauge + entities: + - uid: 16632 components: - type: Transform - pos: 3.5,19.5 - parent: 89 - - uid: 14823 + pos: 6.5,-3.5 + parent: 2 +- proto: PosterLegitAnatomyPoster + entities: + - uid: 16633 components: - type: Transform - pos: 3.5,17.5 - parent: 89 - - uid: 15377 + pos: -13.5,20.5 + parent: 2 + - uid: 16634 components: - type: Transform - pos: 3.5,21.5 - parent: 89 -- proto: MedicalScanner + pos: -3.5,17.5 + parent: 2 +- proto: PosterLegitBlessThisSpess entities: - - uid: 17830 + - uid: 16635 components: - type: Transform - pos: 11.5,18.5 - parent: 89 -- proto: MedicalScannerMachineCircuitboard + pos: -46.5,-1.5 + parent: 2 +- proto: PosterLegitDickGumshue entities: - - uid: 15380 + - uid: 16636 components: - type: Transform - pos: 22.465963,36.494637 - parent: 89 -- proto: MedicalTechFab + pos: -45.5,12.5 + parent: 2 +- proto: PosterLegitDoNotQuestion entities: - - uid: 21451 + - uid: 16637 components: - type: Transform - pos: 35.5,20.5 - parent: 89 -- proto: MedicatedSuture + pos: -53.5,-2.5 + parent: 2 +- proto: PosterLegitHereForYourSafety entities: - - uid: 9190 + - uid: 16638 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11593 + pos: 2.5,-5.5 + parent: 2 +- proto: PosterLegitLoveIan + entities: + - uid: 16639 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11599 + pos: -35.5,28.5 + parent: 2 + - uid: 16640 components: - type: Transform - parent: 17129 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: MedkitAdvancedFilled + pos: -35.5,29.5 + parent: 2 + - uid: 16641 + components: + - type: Transform + pos: -35.5,27.5 + parent: 2 +- proto: PosterLegitNanotrasenLogo entities: - - uid: 3935 + - uid: 27815 components: - type: Transform - pos: 10.448055,-0.43033665 - parent: 89 - - uid: 18205 + pos: -2.5,-10.5 + parent: 27260 + - uid: 27816 components: - type: Transform - pos: -18.990215,-23.36074 - parent: 89 - - uid: 21459 + pos: 5.5,-7.5 + parent: 27260 + - uid: 27817 components: - type: Transform - pos: 34.44323,20.619473 - parent: 89 -- proto: MedkitBruteFilled + pos: 2.5,-3.5 + parent: 27260 +- proto: PosterLegitNoERP entities: - - uid: 12598 + - uid: 16642 components: - type: Transform - pos: 31.543634,18.579988 - parent: 89 - - uid: 16883 + pos: -26.5,19.5 + parent: 2 +- proto: PosterLegitPeriodicTable + entities: + - uid: 16643 components: - type: Transform - pos: 18.821274,23.624659 - parent: 89 - - uid: 17894 + pos: -0.5,10.5 + parent: 2 +- proto: PosterLegitReportCrimes + entities: + - uid: 16644 components: - type: Transform - pos: 31.480804,18.7342 - parent: 89 -- proto: MedkitBurnFilled + pos: 2.5,-6.5 + parent: 2 +- proto: PosterLegitSafetyInternals entities: - - uid: 17210 + - uid: 16645 components: - type: Transform - pos: 32.50263,18.744473 - parent: 89 - - uid: 21449 + pos: -86.5,-3.5 + parent: 2 +- proto: PosterLegitSecWatch + entities: + - uid: 16646 components: - type: Transform - pos: 32.53388,18.572598 - parent: 89 -- proto: MedkitCombatFilled + pos: 1.5,33.5 + parent: 2 +- proto: PotatoAIChip entities: - - uid: 2952 + - uid: 16647 components: - type: Transform - pos: 12.919604,-3.4879332 - parent: 89 - - uid: 8039 + pos: -15.97848,-15.454903 + parent: 2 +- proto: PottedPlant11 + entities: + - uid: 16648 components: - type: Transform - pos: 3.5065022,37.602577 - parent: 89 -- proto: MedkitFilled + pos: 14.5,5.5 + parent: 2 +- proto: PottedPlant15 entities: - - uid: 155 + - uid: 16649 components: - type: Transform - pos: -5.4384103,-15.26897 - parent: 89 - - uid: 6151 + pos: 22.5,8.5 + parent: 2 + - uid: 16650 components: - type: Transform - pos: 13.437702,-3.4645877 - parent: 89 - - uid: 8040 + pos: 5.5,5.5 + parent: 2 + - uid: 16651 components: - type: Transform - pos: 1.5690022,37.586952 - parent: 89 - - uid: 10159 + pos: 16.5,11.5 + parent: 2 + - uid: 16652 components: - type: Transform - pos: -32.37581,21.539759 - parent: 89 - - uid: 10771 + pos: -12.5,-19.5 + parent: 2 + - uid: 16653 components: - type: Transform - pos: -2.4789925,19.583319 - parent: 89 - - uid: 14822 + pos: 1.5,-30.5 + parent: 2 + - uid: 16654 components: - type: Transform - pos: 26.51709,20.479082 - parent: 89 - - uid: 15333 + pos: -14.5,-21.5 + parent: 2 + - uid: 16655 components: - type: Transform - pos: 34.64928,20.525723 - parent: 89 - - uid: 15687 + pos: 28.5,13.5 + parent: 2 + - uid: 16656 components: - type: Transform - pos: 19.458591,23.716438 - parent: 89 - - uid: 16169 + pos: 24.5,13.5 + parent: 2 + - uid: 16657 components: - type: Transform - pos: 19.458591,23.575813 - parent: 89 - - uid: 19490 + pos: 26.5,36.5 + parent: 2 +- proto: PottedPlant16 + entities: + - uid: 16658 components: - type: Transform - pos: 63.486095,3.6539416 - parent: 89 - - uid: 19500 + pos: -91.5,-14.5 + parent: 2 +- proto: PottedPlant2 + entities: + - uid: 16659 components: - type: Transform - pos: 53.514782,15.551919 - parent: 89 - - uid: 19513 + pos: -69.5,-15.5 + parent: 2 +- proto: PottedPlant21 + entities: + - uid: 16660 components: - type: Transform - pos: 65.42551,10.507832 - parent: 89 - - uid: 24584 + pos: 42.5,5.5 + parent: 2 +- proto: PottedPlant22 + entities: + - uid: 16661 components: - type: Transform - pos: -9.375939,7.591918 - parent: 22565 -- proto: MedkitOxygenFilled + pos: -64.5,1.5 + parent: 2 + - uid: 16662 + components: + - type: Transform + pos: -61.5,1.5 + parent: 2 +- proto: PottedPlant26 entities: - - uid: 55 + - uid: 16663 components: - type: Transform - pos: 32.02969,18.572598 - parent: 89 - - uid: 14972 + pos: 13.5,37.5 + parent: 2 +- proto: PottedPlant27 + entities: + - uid: 16664 components: - type: Transform - pos: 33.660248,20.626863 - parent: 89 - - uid: 15469 + pos: 5.5,34.5 + parent: 2 +- proto: PottedPlant29 + entities: + - uid: 16665 components: - type: Transform - pos: 31.99844,18.744473 - parent: 89 - - uid: 15479 + pos: 6.5,37.5 + parent: 2 +- proto: PottedPlant3 + entities: + - uid: 16666 components: - type: Transform - pos: 33.660248,20.720613 - parent: 89 - - uid: 16786 + pos: -105.5,7.5 + parent: 2 +- proto: PottedPlantBioluminscent + entities: + - uid: 16667 components: - type: Transform - pos: 18.821274,23.765284 - parent: 89 -- proto: MedkitRadiationFilled + pos: -90.5,-14.5 + parent: 2 + - uid: 16668 + components: + - type: Transform + pos: 36.5,4.5 + parent: 2 +- proto: PottedPlantRandom entities: - - uid: 15737 + - uid: 16669 components: - type: Transform - pos: 13.169604,-3.2535582 - parent: 89 - - uid: 21518 + pos: -17.5,-8.5 + parent: 2 + - uid: 16670 components: - type: Transform - pos: 30.458956,18.57795 - parent: 89 - - uid: 21519 + pos: -22.5,9.5 + parent: 2 + - uid: 16671 components: - type: Transform - pos: 30.41208,18.718575 - parent: 89 -- proto: MedkitToxin - entities: - - uid: 18343 + pos: -24.5,5.5 + parent: 2 + - uid: 16672 components: - type: Transform - pos: 30.942322,18.7342 - parent: 89 - - uid: 18344 + pos: -67.5,-15.5 + parent: 2 + - uid: 16673 components: - type: Transform - pos: 30.989197,18.57795 - parent: 89 -- proto: MedkitToxinFilled - entities: - - uid: 19670 + pos: 3.5,-0.5 + parent: 2 + - uid: 16674 components: - type: Transform - pos: 13.700854,-3.2535582 - parent: 89 -- proto: MicroManipulatorStockPart - entities: - - uid: 102 + pos: 30.5,-7.5 + parent: 2 + - uid: 16675 components: - type: Transform - pos: -14.616456,-15.352853 - parent: 89 - - uid: 103 + pos: -1.5,-0.5 + parent: 2 + - uid: 16676 components: - type: Transform - pos: -14.555504,-15.680248 - parent: 89 -- proto: MicrophoneInstrument - entities: - - uid: 19117 + pos: -1.5,-3.5 + parent: 2 + - uid: 16677 components: - type: Transform - pos: -22.387377,8.5858 - parent: 89 -- proto: MiningDrill - entities: - - uid: 10204 + pos: -4.5,-23.5 + parent: 2 + - uid: 16678 components: - type: Transform - pos: -27.485138,27.681524 - parent: 89 -- proto: MiningWindow - entities: - - uid: 25746 + pos: 0.5,0.5 + parent: 2 + - uid: 16679 components: - type: Transform - pos: -5.5,-2.5 - parent: 22565 - - uid: 25747 + pos: -14.5,4.5 + parent: 2 + - uid: 16680 components: - type: Transform - pos: 12.5,11.5 - parent: 22565 - - uid: 25748 + pos: 34.5,16.5 + parent: 2 + - uid: 16681 components: - type: Transform - pos: -28.5,2.5 - parent: 22565 - - uid: 25749 + pos: 38.5,14.5 + parent: 2 + - uid: 16682 components: - type: Transform - pos: -28.5,1.5 - parent: 22565 - - uid: 25750 + pos: 30.5,13.5 + parent: 2 + - uid: 16683 components: - type: Transform - pos: -18.5,-2.5 - parent: 22565 - - uid: 25751 + pos: 41.5,3.5 + parent: 2 + - uid: 16684 components: - type: Transform - pos: -4.5,-2.5 - parent: 22565 - - uid: 25752 + pos: -1.5,13.5 + parent: 2 + - uid: 16685 components: - type: Transform - pos: -19.5,19.5 - parent: 22565 - - uid: 25753 + pos: -6.5,21.5 + parent: 2 + - uid: 16686 components: - type: Transform - pos: -24.5,19.5 - parent: 22565 - - uid: 25754 + pos: -73.5,0.5 + parent: 2 + - uid: 16687 components: - type: Transform - pos: -2.5,26.5 - parent: 22565 - - uid: 25755 + pos: -58.5,38.5 + parent: 2 + - uid: 16688 components: - type: Transform - pos: 0.5,19.5 - parent: 22565 - - uid: 25756 + pos: -31.5,-9.5 + parent: 2 + - uid: 16689 components: - type: Transform - pos: -4.5,19.5 - parent: 22565 - - uid: 25757 + pos: -67.5,32.5 + parent: 2 + - uid: 16690 components: - type: Transform - pos: -15.5,11.5 - parent: 22565 - - uid: 25758 + pos: -67.5,36.5 + parent: 2 + - uid: 16691 components: - type: Transform - pos: -14.5,11.5 - parent: 22565 - - uid: 25759 + pos: -64.5,28.5 + parent: 2 + - uid: 16692 components: - type: Transform - pos: -12.5,11.5 - parent: 22565 - - uid: 25760 + pos: -59.5,45.5 + parent: 2 + - uid: 16693 components: - type: Transform - pos: -9.5,11.5 - parent: 22565 - - uid: 25761 + pos: -55.5,30.5 + parent: 2 + - uid: 16694 components: - type: Transform - pos: -7.5,11.5 - parent: 22565 - - uid: 25762 + pos: -79.5,0.5 + parent: 2 + - uid: 16695 components: - type: Transform - pos: -1.5,26.5 - parent: 22565 - - uid: 25763 + pos: 19.5,10.5 + parent: 2 + - uid: 16696 components: - type: Transform - pos: -16.5,11.5 - parent: 22565 - - uid: 25764 + pos: 16.5,5.5 + parent: 2 + - uid: 16697 components: - type: Transform - pos: -19.5,-2.5 - parent: 22565 - - uid: 25765 + pos: 13.5,9.5 + parent: 2 + - uid: 16698 components: - type: Transform - pos: 0.5,-1.5 - parent: 22565 - - uid: 25766 + pos: -9.5,4.5 + parent: 2 + - uid: 16699 components: - type: Transform - pos: -11.5,8.5 - parent: 22565 - - uid: 25767 + pos: -67.5,5.5 + parent: 2 + - uid: 16700 components: - type: Transform - pos: -12.5,8.5 - parent: 22565 - - uid: 25768 + pos: -64.5,5.5 + parent: 2 + - uid: 16701 components: - type: Transform - pos: -12.5,3.5 - parent: 22565 - - uid: 25769 + pos: -14.5,6.5 + parent: 2 + - uid: 16702 + components: + - type: Transform + pos: -9.5,6.5 + parent: 2 + - uid: 16703 + components: + - type: Transform + pos: -9.5,9.5 + parent: 2 + - uid: 16704 + components: + - type: Transform + pos: -5.5,5.5 + parent: 2 + - uid: 16705 + components: + - type: Transform + pos: -5.5,10.5 + parent: 2 + - uid: 16706 + components: + - type: Transform + pos: 15.5,15.5 + parent: 2 + - uid: 16707 + components: + - type: Transform + pos: 24.5,11.5 + parent: 2 + - uid: 16708 + components: + - type: Transform + pos: -4.5,15.5 + parent: 2 + - uid: 16709 components: - type: Transform - pos: -11.5,3.5 - parent: 22565 - - uid: 25770 + pos: 25.5,20.5 + parent: 2 + - uid: 16710 components: - type: Transform - pos: -8.5,6.5 - parent: 22565 - - uid: 25771 + pos: -80.5,7.5 + parent: 2 + - uid: 16711 components: - type: Transform - pos: -8.5,5.5 - parent: 22565 - - uid: 25772 + pos: 12.5,34.5 + parent: 2 + - uid: 16712 components: - type: Transform - pos: -15.5,6.5 - parent: 22565 - - uid: 25773 + pos: 7.5,34.5 + parent: 2 + - uid: 16713 components: - type: Transform - pos: -15.5,5.5 - parent: 22565 - - uid: 25774 + pos: -102.5,2.5 + parent: 2 + - uid: 16714 components: - type: Transform - pos: -11.5,11.5 - parent: 22565 - - uid: 25775 + pos: -13.5,-19.5 + parent: 2 + - uid: 16715 components: - type: Transform - pos: -22.5,26.5 - parent: 22565 - - uid: 25776 + pos: -7.5,-18.5 + parent: 2 + - uid: 16716 components: - type: Transform - pos: -21.5,26.5 - parent: 22565 - - uid: 25777 + pos: -9.5,-18.5 + parent: 2 + - uid: 16717 components: - type: Transform - pos: 6.5,13.5 - parent: 22565 - - uid: 25778 + pos: -2.5,-31.5 + parent: 2 + - uid: 16718 components: - type: Transform - pos: 12.5,8.5 - parent: 22565 - - uid: 25779 + pos: -0.5,-31.5 + parent: 2 + - uid: 16719 components: - type: Transform - pos: 12.5,12.5 - parent: 22565 - - uid: 25780 + pos: -16.5,-21.5 + parent: 2 + - uid: 16720 components: - type: Transform - pos: -8.5,11.5 - parent: 22565 - - uid: 25781 + pos: -18.5,-18.5 + parent: 2 + - uid: 16721 components: - type: Transform - pos: 12.5,6.5 - parent: 22565 - - uid: 25782 + pos: 3.5,-22.5 + parent: 2 + - uid: 16722 components: - type: Transform - pos: -36.5,9.5 - parent: 22565 - - uid: 25783 + pos: 2.5,-13.5 + parent: 2 + - uid: 16723 components: - type: Transform - pos: -36.5,5.5 - parent: 22565 - - uid: 25784 + pos: 5.5,-13.5 + parent: 2 + - uid: 16724 components: - type: Transform - pos: -36.5,6.5 - parent: 22565 - - uid: 25785 + pos: 3.5,-4.5 + parent: 2 + - uid: 16725 components: - type: Transform - pos: -36.5,8.5 - parent: 22565 - - uid: 25786 + pos: 4.5,-8.5 + parent: 2 + - uid: 16726 components: - type: Transform - pos: -36.5,12.5 - parent: 22565 - - uid: 25787 + pos: 38.5,-8.5 + parent: 2 + - uid: 16727 components: - type: Transform - pos: -36.5,11.5 - parent: 22565 - - uid: 25788 + pos: -65.5,-2.5 + parent: 2 + - uid: 16728 components: - type: Transform - pos: -23.5,-1.5 - parent: 22565 - - uid: 25789 + pos: -60.5,-2.5 + parent: 2 + - uid: 16729 components: - type: Transform - pos: 12.5,9.5 - parent: 22565 - - uid: 25790 + pos: 16.5,17.5 + parent: 2 + - uid: 16730 components: - type: Transform - pos: -24.5,-1.5 - parent: 22565 - - uid: 25791 + pos: 22.5,17.5 + parent: 2 + - uid: 16731 components: - type: Transform - pos: -25.5,-1.5 - parent: 22565 - - uid: 25792 + pos: 10.5,11.5 + parent: 2 + - uid: 16732 components: - type: Transform - pos: -31.5,13.5 - parent: 22565 - - uid: 25793 + pos: 28.5,14.5 + parent: 2 + - uid: 16733 components: - type: Transform - pos: 7.5,13.5 - parent: 22565 - - uid: 25794 + pos: 26.5,34.5 + parent: 2 + - uid: 16734 components: - type: Transform - pos: -28.5,3.5 - parent: 22565 - - uid: 25795 + pos: 25.5,32.5 + parent: 2 + - uid: 16735 components: - type: Transform - pos: -0.5,-1.5 - parent: 22565 - - uid: 25796 + pos: 23.5,32.5 + parent: 2 + - uid: 16736 components: - type: Transform - pos: -30.5,13.5 - parent: 22565 - - uid: 25797 + pos: 23.5,39.5 + parent: 2 + - uid: 16737 components: - type: Transform - pos: 12.5,5.5 - parent: 22565 - - uid: 25798 + pos: 35.5,-27.5 + parent: 2 + - uid: 16738 components: - type: Transform - pos: 1.5,-1.5 - parent: 22565 -- proto: Mirror - entities: - - uid: 4186 + pos: 34.5,-22.5 + parent: 2 + - uid: 16739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-2.5 - parent: 89 - - uid: 10295 + pos: 34.5,-5.5 + parent: 2 + - uid: 16740 components: - type: Transform - pos: -35.5,32.5 - parent: 89 - - uid: 10353 + pos: 40.5,-11.5 + parent: 2 + - uid: 16741 components: - type: Transform - pos: -21.5,32.5 - parent: 89 - - uid: 10357 + pos: 30.5,-11.5 + parent: 2 + - uid: 16742 components: - type: Transform - pos: -24.5,15.5 - parent: 89 - - uid: 10358 + pos: 14.5,-10.5 + parent: 2 + - uid: 16743 components: - type: Transform - pos: -25.5,15.5 - parent: 89 - - uid: 10359 + pos: 13.5,-5.5 + parent: 2 + - uid: 16744 components: - type: Transform - pos: -23.5,15.5 - parent: 89 - - uid: 10360 + pos: 42.5,-11.5 + parent: 2 + - uid: 16745 components: - type: Transform - pos: -22.5,15.5 - parent: 89 - - uid: 10361 + pos: 7.5,-4.5 + parent: 2 + - uid: 16746 components: - type: Transform - pos: -21.5,15.5 - parent: 89 - - uid: 15411 + pos: -58.5,-15.5 + parent: 2 + - uid: 16747 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,29.5 - parent: 89 - - uid: 15892 + pos: -67.5,-5.5 + parent: 2 + - uid: 16748 components: - type: Transform - pos: 27.5,27.5 - parent: 89 - - uid: 19249 + pos: -89.5,3.5 + parent: 2 + - uid: 16749 components: - type: Transform - pos: 28.5,27.5 - parent: 89 -- proto: ModularGrenade - entities: - - uid: 16970 + pos: -28.5,-4.5 + parent: 2 + - uid: 26562 components: - type: Transform - pos: -5.5569973,-18.252968 - parent: 89 - - uid: 16971 + pos: 7.5,6.5 + parent: 24450 + - uid: 26563 components: - type: Transform - pos: -5.2680063,-18.252968 - parent: 89 - - uid: 16973 + pos: -29.5,7.5 + parent: 24450 +- proto: PottedPlantRandomPlastic + entities: + - uid: 16750 components: - type: Transform - pos: -5.532914,-15.331863 - parent: 89 - - uid: 16974 + pos: -17.5,-23.5 + parent: 2 + - uid: 16751 components: - type: Transform - pos: -5.629245,-15.789328 - parent: 89 - - uid: 16975 + pos: -14.5,-23.5 + parent: 2 + - uid: 16752 components: - type: Transform - pos: -5.821905,-18.277044 - parent: 89 - - uid: 16976 + pos: -27.5,-10.5 + parent: 2 + - uid: 16753 components: - type: Transform - pos: -5.2680063,-15.789328 - parent: 89 - - uid: 24585 + pos: -17.5,-10.5 + parent: 2 + - uid: 16754 components: - type: Transform - pos: 4.3521523,11.690499 - parent: 22565 - - uid: 24586 + pos: 30.5,-2.5 + parent: 2 + - uid: 26564 components: - type: Transform - pos: 4.0865273,11.690499 - parent: 22565 -- proto: MonkeyCubeWrapped - entities: - - uid: 21090 + pos: -17.5,7.5 + parent: 24450 + - uid: 26565 components: - type: Transform - pos: -29.972765,0.6645479 - parent: 89 -- proto: MopBucket + pos: -2.5,7.5 + parent: 24450 +- proto: PottedPlantRD entities: - - uid: 9538 + - uid: 16755 components: - type: Transform - pos: -38.70507,7.3472652 - parent: 89 - - uid: 14805 + pos: 4.5,-30.5 + parent: 2 +- proto: PowerCageHigh + entities: + - uid: 24094 components: - type: Transform - pos: -43.256332,14.594401 - parent: 89 -- proto: MopBucketFull - entities: - - uid: 8198 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24095 components: - type: Transform - pos: 11.719251,41.365593 - parent: 89 - - uid: 17913 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24096 components: - type: Transform - pos: 23.496418,22.463985 - parent: 89 - - uid: 25383 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24097 components: - type: Transform - pos: 45.58958,-33.533894 - parent: 89 -- proto: MopItem - entities: - - uid: 8197 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24098 components: - type: Transform - pos: 11.609876,41.537468 - parent: 89 - - uid: 9539 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24099 components: - type: Transform - pos: -39.01757,7.4410152 - parent: 89 - - uid: 12771 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24100 components: - type: Transform - pos: 5.658451,9.575063 - parent: 89 - - uid: 14806 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24101 components: - type: Transform - pos: -44.568832,14.563151 - parent: 89 - - uid: 18336 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24102 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.465168,22.526485 - parent: 89 - - uid: 25384 + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24103 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.40208,-32.73702 - parent: 89 -- proto: Morgue + parent: 24093 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: PowerCageRecharger entities: - - uid: 25799 + - uid: 24191 components: - type: Transform - rot: 3.141592653589793 rad - pos: 7.5,5.5 - parent: 89 - - uid: 25839 + rot: -1.5707963267948966 rad + pos: 6.5,5.5 + parent: 23919 + - type: PointLight + enabled: False +- proto: PowerCellMicroreactor + entities: + - uid: 16756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,6.5 - parent: 89 - - uid: 25840 + pos: -22.450647,-22.528088 + parent: 2 +- proto: PowerCellPotato + entities: + - uid: 16757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,8.5 - parent: 89 - - uid: 25841 + pos: -5.129404,-6.652731 + parent: 2 +- proto: PowerCellRecharger + entities: + - uid: 16758 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,5.5 - parent: 89 - - uid: 25842 + pos: -96.5,-2.5 + parent: 2 + - uid: 16759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,5.5 - parent: 89 - - uid: 25843 + pos: -94.5,17.5 + parent: 2 + - uid: 16760 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,5.5 - parent: 89 - - uid: 25844 + pos: -31.5,21.5 + parent: 2 + - uid: 16761 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 - parent: 89 -- proto: MouseTimedSpawner - entities: - - uid: 10337 + pos: -10.5,-16.5 + parent: 2 + - uid: 16762 components: - type: Transform - pos: 10.5,41.5 - parent: 89 - - uid: 14995 + pos: -15.5,-23.5 + parent: 2 + - uid: 16763 components: - type: Transform - pos: -88.5,18.5 - parent: 89 - - uid: 15011 + pos: -50.5,-16.5 + parent: 2 + - uid: 16764 components: - type: Transform - pos: -108.5,26.5 - parent: 89 - - uid: 15030 + pos: -71.5,-12.5 + parent: 2 + - uid: 16765 components: - type: Transform - pos: -33.5,23.5 - parent: 89 - - uid: 16912 + pos: 25.5,-3.5 + parent: 2 + - uid: 16766 components: - type: Transform - pos: 24.5,32.5 - parent: 89 - - uid: 16978 + pos: 15.5,-6.5 + parent: 2 + - uid: 16767 components: - type: Transform - pos: 7.5,32.5 - parent: 89 - - uid: 19648 + pos: 33.5,-13.5 + parent: 2 + - uid: 16768 components: - type: Transform - pos: -26.5,24.5 - parent: 89 - - uid: 25691 + pos: 44.5,-16.5 + parent: 2 + - uid: 26566 components: - type: Transform - pos: -61.5,21.5 - parent: 89 - - uid: 25694 + pos: -9.5,7.5 + parent: 24450 + - uid: 26567 components: - type: Transform - pos: -50.5,-7.5 - parent: 89 - - uid: 25699 + pos: 5.5,2.5 + parent: 24450 + - uid: 26568 components: - type: Transform - pos: -23.5,-11.5 - parent: 89 - - uid: 25703 + pos: -29.5,2.5 + parent: 24450 +- proto: PowerComputerCircuitboard + entities: + - uid: 16769 components: - type: Transform - pos: 8.5,-11.5 - parent: 89 - - uid: 25741 + pos: -103.65402,-10.274773 + parent: 2 +- proto: PowerDrill + entities: + - uid: 16770 components: - type: Transform - pos: -25.5,2.5 - parent: 89 -- proto: MousetrapArmed + pos: 3.5,-27.5 + parent: 2 +- proto: Poweredlight entities: - - uid: 8454 + - uid: 16771 components: - type: Transform - pos: -124.52778,3.4515061 - parent: 89 - - type: StepTriggerActive - - uid: 25301 + rot: 3.141592653589793 rad + pos: -52.5,-17.5 + parent: 2 + - uid: 16772 components: - type: Transform - pos: -124.38715,4.451506 - parent: 89 - - type: StepTriggerActive -- proto: Multitool - entities: - - uid: 7090 + rot: -1.5707963267948966 rad + pos: -128.5,-11.5 + parent: 2 + - uid: 16773 components: - type: Transform - pos: -93.639496,17.646248 - parent: 89 - - uid: 10669 + pos: -107.5,-23.5 + parent: 2 + - uid: 16774 components: - type: Transform - pos: -26.66166,-23.33507 - parent: 89 - - uid: 19515 + rot: -1.5707963267948966 rad + pos: 37.5,-7.5 + parent: 2 + - uid: 16775 components: - type: Transform - pos: 56.673943,-1.3626473 - parent: 89 -- proto: MusicBoxInstrument - entities: - - uid: 4272 + pos: 33.5,-8.5 + parent: 2 + - uid: 16776 components: - type: Transform - pos: -35.559135,-5.5539656 - parent: 89 -- proto: NitrogenCanister - entities: - - uid: 98 + rot: 3.141592653589793 rad + pos: 14.5,-10.5 + parent: 2 + - uid: 16777 components: - type: Transform - pos: -35.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 990 + rot: 1.5707963267948966 rad + pos: 25.5,-5.5 + parent: 2 + - uid: 16778 components: - type: Transform - pos: -90.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1138 + pos: 22.5,-1.5 + parent: 2 + - uid: 16779 components: - type: Transform - pos: -98.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3084 + rot: -1.5707963267948966 rad + pos: 41.5,-8.5 + parent: 2 + - uid: 16780 components: - type: Transform - pos: -3.5,-38.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5114 + rot: 1.5707963267948966 rad + pos: -109.5,-5.5 + parent: 2 + - uid: 16781 components: - type: Transform - pos: -48.5,-16.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8128 + pos: 47.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16782 components: - type: Transform - pos: 0.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8905 + rot: -1.5707963267948966 rad + pos: 4.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16783 components: - type: Transform - pos: -130.5,7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8906 + pos: -21.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16784 components: - type: Transform - pos: -130.5,6.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14558 + rot: 1.5707963267948966 rad + pos: 60.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16785 components: - type: Transform - pos: -93.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14744 + rot: 1.5707963267948966 rad + pos: 60.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16786 components: - type: Transform - pos: 11.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14780 + rot: 3.141592653589793 rad + pos: -0.5,-41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16787 components: - type: Transform - pos: -70.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14802 + pos: -22.5,-22.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16788 components: - type: Transform - pos: -42.5,14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15331 + rot: 3.141592653589793 rad + pos: -15.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16789 components: - type: Transform - pos: -31.5,37.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 16881 + rot: 3.141592653589793 rad + pos: -7.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16790 components: - type: Transform - pos: 37.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 20260 + rot: 3.141592653589793 rad + pos: -7.5,-25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16791 components: - type: Transform - pos: -97.5,15.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24587 + pos: -3.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16792 components: - type: Transform - pos: -14.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24588 + pos: -7.5,-20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16793 components: - type: Transform - pos: -17.5,-1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: NitrogenTankFilled - entities: - - uid: 22655 + pos: -3.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16794 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23182 + rot: -1.5707963267948966 rad + pos: -4.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16795 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23190 + pos: 0.5,-24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16796 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23197 + pos: -5.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16797 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23204 + pos: -8.5,-27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16798 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23212 + pos: 0.5,-38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16799 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23220 + pos: 51.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16800 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: NitrousOxideCanister - entities: - - uid: 994 + rot: 1.5707963267948966 rad + pos: 1.5,-29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16801 components: - type: Transform - pos: -90.5,-7.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2035 + rot: -1.5707963267948966 rad + pos: 52.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16802 components: - type: Transform - pos: -90.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8129 + pos: 3.5,-18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16803 components: - type: Transform - pos: -0.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 17702 + rot: 1.5707963267948966 rad + pos: 50.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16804 components: - type: Transform - pos: -9.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24589 + rot: 1.5707963267948966 rad + pos: 52.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16805 components: - type: Transform - pos: -13.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: NitrousOxideTankFilled - entities: - - uid: 16381 + rot: 1.5707963267948966 rad + pos: -9.5,-32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16806 components: - type: Transform - pos: -8.449858,17.576614 - parent: 89 - - uid: 16509 + rot: -1.5707963267948966 rad + pos: 59.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16807 components: - type: Transform - pos: -8.590483,17.62349 - parent: 89 -- proto: NodeScanner - entities: - - uid: 16894 + pos: 60.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16808 components: - type: Transform - pos: -7.3921776,-38.40237 - parent: 89 -- proto: NoticeBoard - entities: - - uid: 14533 + rot: 3.141592653589793 rad + pos: -7.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16809 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-6.5 - parent: 89 -- proto: NuclearBomb - entities: - - uid: 3108 + rot: 3.141592653589793 rad + pos: 0.5,-45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16810 components: - type: Transform - pos: 48.5,-5.5 - parent: 89 -- proto: Ointment - entities: - - uid: 21637 + rot: 3.141592653589793 rad + pos: -4.5,-41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16811 components: - type: Transform - parent: 21634 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Omnitool - entities: - - uid: 3367 + rot: -1.5707963267948966 rad + pos: 62.5,4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16812 components: - type: Transform - pos: 54.688084,6.5938244 - parent: 89 -- proto: OperatingTable - entities: - - uid: 9330 + rot: 3.141592653589793 rad + pos: 64.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16813 components: - type: Transform - pos: -11.5,19.5 - parent: 89 - - uid: 15056 + pos: 55.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16814 components: - type: Transform - pos: 8.5,8.5 - parent: 89 - - uid: 19565 + rot: 3.141592653589793 rad + pos: 55.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16815 components: - type: Transform - pos: -22.5,-22.5 - parent: 89 -- proto: OreBag - entities: - - uid: 23757 + rot: -1.5707963267948966 rad + pos: -0.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16816 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23758 + rot: 1.5707963267948966 rad + pos: -2.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16817 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23759 + rot: -1.5707963267948966 rad + pos: 45.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16818 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23767 + rot: -1.5707963267948966 rad + pos: 45.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16819 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23768 + rot: 1.5707963267948966 rad + pos: 42.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16820 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23769 + pos: 31.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16821 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: OreBox - entities: - - uid: 24590 + pos: 37.5,16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-1.5 - parent: 22565 - - uid: 24591 + rot: 3.141592653589793 rad + pos: 31.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-1.5 - parent: 22565 -- proto: OreProcessor - entities: - - uid: 6172 + rot: 3.141592653589793 rad + pos: 37.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16824 components: - type: Transform - pos: -51.5,-9.5 - parent: 89 - - uid: 24592 + pos: 39.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16825 components: - type: Transform - pos: 5.5,8.5 - parent: 22565 - - uid: 24593 + rot: 3.141592653589793 rad + pos: 39.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16826 components: - type: Transform - pos: -29.5,8.5 - parent: 22565 -- proto: OxygenCanister - entities: - - uid: 96 + rot: -1.5707963267948966 rad + pos: 40.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16827 components: - type: Transform - pos: -36.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 992 + rot: 1.5707963267948966 rad + pos: 34.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16828 components: - type: Transform - pos: -90.5,-8.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 1081 + rot: 3.141592653589793 rad + pos: 35.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16829 components: - type: Transform - pos: -100.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 3548 + rot: 1.5707963267948966 rad + pos: -67.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16830 components: - type: Transform - pos: -93.5,27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 5521 + rot: 3.141592653589793 rad + pos: 31.5,-14.5 + parent: 2 + - uid: 16831 components: - type: Transform - pos: -48.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8125 + rot: -1.5707963267948966 rad + pos: -58.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16832 components: - type: Transform - pos: -6.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8126 + rot: 1.5707963267948966 rad + pos: 36.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16833 components: - type: Transform - pos: -5.5,29.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9317 + rot: 3.141592653589793 rad + pos: -55.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16834 components: - type: Transform - pos: 24.5,9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 13203 + rot: 3.141592653589793 rad + pos: 33.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16835 components: - type: Transform - pos: 0.5,-38.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14743 + rot: -1.5707963267948966 rad + pos: 19.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16836 components: - type: Transform - pos: 12.5,-12.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14760 + pos: 27.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16837 components: - type: Transform - pos: -78.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14779 + pos: 22.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16838 components: - type: Transform - pos: -71.5,21.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14801 + rot: -1.5707963267948966 rad + pos: 9.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16839 components: - type: Transform - pos: -41.5,14.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15332 + pos: 18.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16840 components: - type: Transform - pos: -31.5,36.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24594 + rot: 3.141592653589793 rad + pos: 27.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16841 components: - type: Transform - pos: -15.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24595 + rot: 3.141592653589793 rad + pos: 24.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16842 components: - type: Transform - pos: -6.5,-1.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 25674 + rot: 3.141592653589793 rad + pos: 21.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16843 components: - type: Transform - pos: 35.5,-17.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: OxygenTankFilled - entities: - - uid: 14607 + rot: 3.141592653589793 rad + pos: 18.5,-14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16844 components: - type: Transform - pos: -98.50578,20.543215 - parent: 89 - - uid: 22656 + pos: 15.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16845 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23183 + rot: -1.5707963267948966 rad + pos: 23.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16846 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23191 + pos: 31.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16847 components: - type: Transform - parent: 23185 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23198 + pos: -60.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16848 components: - type: Transform - parent: 23192 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23205 + rot: -1.5707963267948966 rad + pos: -47.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16849 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23213 + rot: 1.5707963267948966 rad + pos: -67.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16850 components: - type: Transform - parent: 23207 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23221 + rot: -1.5707963267948966 rad + pos: -58.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16851 components: - type: Transform - parent: 23214 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PackPaperRollingFilters - entities: - - uid: 5618 + pos: -65.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16852 components: - type: Transform - pos: -8.482672,-8.429665 - parent: 89 -- proto: PaintingAmogusTriptych - entities: - - uid: 14635 + rot: 1.5707963267948966 rad + pos: -52.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16853 components: - type: Transform - pos: -90.5,23.5 - parent: 89 - - uid: 15437 + rot: -1.5707963267948966 rad + pos: -47.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16854 components: - type: Transform - pos: 10.5,43.5 - parent: 89 -- proto: PaintingMonkey - entities: - - uid: 3878 + rot: 1.5707963267948966 rad + pos: 48.5,-2.5 + parent: 2 + - uid: 16855 components: - type: Transform - pos: -27.5,-0.5 - parent: 89 - - uid: 19488 + pos: -67.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16856 components: - type: Transform - pos: 37.5,-0.5 - parent: 89 -- proto: PaintingPersistenceOfMemory - entities: - - uid: 17254 + pos: -58.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16857 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-1.5 - parent: 89 -- proto: PaintingSaturn - entities: - - uid: 10256 - components: - - type: Transform - pos: -76.5,-4.5 - parent: 89 -- proto: PaintingTheGreatWave - entities: - - uid: 19517 + pos: -54.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16858 components: - type: Transform - pos: 51.5,12.5 - parent: 89 -- proto: Paper - entities: - - uid: 31 + rot: 3.141592653589793 rad + pos: -40.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16859 components: - type: Transform - pos: -104.52547,0.4284501 - parent: 89 - - type: Paper - stampState: paper_stamp-ce - stampedBy: - - stampedColor: '#C69B17FF' - stampedName: stamp-component-stamped-name-ce - content: >- - Коллеги, я очень рад что вы привезли эту чудесную вещь сюда. Я неплохо отдохнул после сбежавшей сингулярности. - - Жаль всё опустело, эх... - - - С уважением, Старший Инженер смены №19840 - - uid: 2015 + rot: -1.5707963267948966 rad + pos: -35.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16860 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.663654,5.4828796 - parent: 89 - - uid: 2065 + pos: -40.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16861 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2066 + rot: 1.5707963267948966 rad + pos: -60.5,42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16862 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2067 + rot: -1.5707963267948966 rad + pos: 44.5,13.5 + parent: 2 + - uid: 16863 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2068 + rot: 1.5707963267948966 rad + pos: -53.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16864 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2069 + rot: 3.141592653589793 rad + pos: -51.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16865 components: - type: Transform - pos: 40.54078,10.593507 - parent: 89 - - uid: 2077 + rot: -1.5707963267948966 rad + pos: -47.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16866 components: - type: Transform - pos: -102.8867,-2.4524355 - parent: 89 - - uid: 2078 + rot: 1.5707963267948966 rad + pos: -52.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16867 components: - type: Transform - pos: -101.15233,-2.3430603 - parent: 89 - - uid: 2079 + rot: 1.5707963267948966 rad + pos: 30.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16868 components: - type: Transform - pos: -100.5117,-2.483685 - parent: 89 - - uid: 2263 + pos: -101.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16869 components: - type: Transform - pos: -104.68759,21.491177 - parent: 89 - - uid: 3972 + rot: 3.141592653589793 rad + pos: 50.5,0.5 + parent: 2 + - uid: 16870 components: - type: Transform - pos: 34.586002,-2.6114135 - parent: 89 - - uid: 4324 + rot: 3.141592653589793 rad + pos: -54.5,38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16871 components: - type: Transform - pos: 8.430142,-0.42598736 - parent: 89 - - type: Paper - content: Покойся с миром, Шишимура.... - - uid: 4325 + rot: -1.5707963267948966 rad + pos: -54.5,42.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16872 components: - type: Transform - pos: 21.248468,-8.74424 - parent: 89 - - type: Paper - content: >- - Маляры злоебучие, как перестали проводить смене на этой прекрасной посудине так сразу бросили всё к хуям и не докрасив бриг съебались. - - - Ну ничё, всегда есть клоун, а если клоун будет плохо рисовать, то буду учить на нём кадетов стрелять! - - uid: 6126 + rot: 3.141592653589793 rad + pos: -19.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16873 components: - type: Transform - pos: -50.26616,9.653446 - parent: 89 - - uid: 6127 + rot: -1.5707963267948966 rad + pos: -43.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16874 components: - type: Transform - pos: -50.35991,9.653446 - parent: 89 - - uid: 6128 + pos: -45.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16875 components: - type: Transform - pos: -50.48491,9.637821 - parent: 89 - - uid: 6129 + pos: -50.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16876 components: - type: Transform - pos: -50.57866,9.622196 - parent: 89 - - uid: 6178 + rot: 1.5707963267948966 rad + pos: -52.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16877 components: - type: Transform - pos: -20.556078,5.7980614 - parent: 89 - - uid: 6179 + rot: -1.5707963267948966 rad + pos: -47.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16878 components: - type: Transform - pos: -20.556078,5.6574364 - parent: 89 - - uid: 6180 + rot: 3.141592653589793 rad + pos: -47.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16879 components: - type: Transform - pos: -20.493578,5.5168114 - parent: 89 - - uid: 6978 + pos: -33.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16880 components: - type: Transform - pos: 57.52295,6.650191 - parent: 89 - - type: Paper - stampState: paper_stamp-centcom - stampedBy: - - stampedColor: '#006600FF' - stampedName: stamp-component-stamped-name-centcom - - stampedColor: '#00BE00FF' - stampedName: stamp-component-stamped-name-approved - content: >- - [color=#006400]███░███░░░░██░░░░[/color] - - [color=#006400]░██░████░░░██░░░░[/color] [head=3]Бланк документа[/head] - - [color=#006400]░░█░██░██░░██░█░░[/color] [head=3]NanoTrasen[/head] - - [color=#006400]░░░░██░░██░██░██░[/color] [bold]USG Ishimura Station ЦК - КОМ[/bold] - - [color=#006400]░░░░██░░░████░███[/color] - - =================================================== - [head=3]Указание Секторального Штаба ЦК[/head] - =================================================== - - [bold]Дата отправки:[/bold] - 24.01.3024 - [bold]Составитель документа:[/bold] - - [color=Red] Доулсон-Младший Кристофор[/color] - - [bold]Должность составителя:[/bold] - - [color=Red] Оператор ЦК[/color] - - ───────────────────────────────────────── - - [bold][italic] Приветствуем, уважаемое Командование Станции.[/italic][/bold] В связи с долгой не эксплуатацией станций данного типа, а так-же несоблюдении СанПиН - на ней было замечено много биологических факторов жизнедеятельности, поражающие некоторые части станций этого типа. Грызуны, тараканы и многие другие. В связи с этой проблемой, нами было решено прийти к самому логичному, здравому и правильному смыслу решения проблемы - [bold]установка мин.[/bold] Предупредите свой персонал, и не ходите лишний раз по техническим тоннелям. Слава НТ! - - =================================================== - Подпись: Оператор ЦК, Доулсон-Младший - [italic]место для печатей:[/italic] - - uid: 7239 + rot: 3.141592653589793 rad + pos: -35.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16881 components: - type: Transform - pos: -104.50009,21.647427 - parent: 89 - - uid: 8111 + rot: 1.5707963267948966 rad + pos: -35.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16882 components: - type: Transform - pos: -87.762955,14.70022 - parent: 89 - - uid: 8115 + pos: -30.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16883 components: - type: Transform - pos: -87.669205,14.66897 - parent: 89 - - uid: 8117 + rot: 3.141592653589793 rad + pos: -30.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16884 components: - type: Transform - pos: -87.606705,14.51272 - parent: 89 - - uid: 8132 + rot: 3.141592653589793 rad + pos: -23.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16885 components: - type: Transform - pos: -45.6796,1.7421833 - parent: 89 - - uid: 8133 + rot: -1.5707963267948966 rad + pos: -17.5,-6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16886 components: - type: Transform - pos: -45.46085,1.6796833 - parent: 89 - - uid: 8134 + rot: -1.5707963267948966 rad + pos: -17.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16887 components: - type: Transform - pos: -45.2421,1.6171833 - parent: 89 - - uid: 8169 + pos: -21.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16888 components: - type: Transform - pos: -58.789448,7.5664344 - parent: 89 - - uid: 8172 + pos: -25.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16889 components: - type: Transform - pos: -58.664448,7.5039344 - parent: 89 - - uid: 8174 + rot: 1.5707963267948966 rad + pos: -26.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16890 components: - type: Transform - pos: -58.914448,7.6601844 - parent: 89 - - uid: 8337 + rot: -1.5707963267948966 rad + pos: -11.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16891 components: - type: Transform - pos: -59.65388,22.738579 - parent: 89 - - uid: 8338 + rot: 3.141592653589793 rad + pos: -15.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16892 components: - type: Transform - pos: -59.31013,22.738579 - parent: 89 - - uid: 8339 + pos: -37.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16893 components: - type: Transform - pos: -59.46638,22.519829 - parent: 89 - - uid: 8528 + pos: -1.5,21.5 + parent: 2 + - uid: 16894 components: - type: Transform - pos: -113.752426,-7.604034 - parent: 89 - - uid: 9138 + rot: -1.5707963267948966 rad + pos: 21.5,29.5 + parent: 2 + - uid: 16895 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.527187,17.750849 - parent: 89 - - uid: 10551 + pos: 27.5,29.5 + parent: 2 + - uid: 16896 components: - type: Transform - pos: -84.94473,17.782911 - parent: 89 - - uid: 10552 + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16897 components: - type: Transform - pos: -84.74161,17.595411 - parent: 89 - - uid: 10553 + rot: 1.5707963267948966 rad + pos: -33.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16898 components: - type: Transform - pos: -84.92911,17.579786 - parent: 89 - - uid: 11082 + rot: 1.5707963267948966 rad + pos: -33.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16899 components: - type: Transform - pos: 25.21598,13.571265 - parent: 89 - - uid: 11910 + rot: -1.5707963267948966 rad + pos: -22.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16900 components: - type: Transform - pos: 25.545303,29.599596 - parent: 89 - - uid: 11913 + rot: 3.141592653589793 rad + pos: -26.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16901 components: - type: Transform - pos: -100.76776,-2.4943435 - parent: 89 - - uid: 12317 + rot: 1.5707963267948966 rad + pos: -20.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16902 components: - type: Transform - pos: -104.88585,9.505048 - parent: 89 - - uid: 15462 + rot: 3.141592653589793 rad + pos: -6.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.410079,32.649754 - parent: 89 - - uid: 15466 + rot: 3.141592653589793 rad + pos: -15.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16904 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.410079,32.649754 - parent: 89 - - uid: 15501 + pos: -1.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 16905 components: - type: Transform - pos: -85.35823,1.6586027 - parent: 89 - - uid: 15502 + rot: -1.5707963267948966 rad + pos: 0.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16906 components: - type: Transform - pos: -85.29573,1.5023527 - parent: 89 - - uid: 15521 + rot: -1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16907 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.410079,32.649754 - parent: 89 - - uid: 15627 + rot: 3.141592653589793 rad + pos: -1.5,-17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16908 components: - type: Transform - pos: 25.508556,29.617373 - parent: 89 - - uid: 15746 + rot: 3.141592653589793 rad + pos: -16.5,-23.5 + parent: 2 + - uid: 16909 components: - type: Transform - pos: -105.05744,9.610588 - parent: 89 - - uid: 15861 + rot: 3.141592653589793 rad + pos: -17.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16910 components: - type: Transform - pos: 26.798138,13.448929 - parent: 89 - - uid: 15862 + rot: 3.141592653589793 rad + pos: -27.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16911 components: - type: Transform - pos: 24.909904,13.689699 - parent: 89 - - uid: 15877 + pos: -36.5,-11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16912 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.763542,5.72961 - parent: 89 - - uid: 15889 + rot: 1.5707963267948966 rad + pos: -41.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16913 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.523125,13.107367 - parent: 89 - - uid: 15890 + rot: 1.5707963267948966 rad + pos: -41.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16914 components: - type: Transform - pos: -11.461197,10.5552 - parent: 89 - - uid: 15893 + rot: 3.141592653589793 rad + pos: -46.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16915 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.715376,5.512917 - parent: 89 - - uid: 15894 + pos: -53.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16916 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.66721,5.6573787 - parent: 89 - - uid: 16440 + pos: -57.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16917 components: - type: Transform - pos: -113.68643,-7.326989 - parent: 89 - - uid: 16442 + rot: 3.141592653589793 rad + pos: -68.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16918 components: - type: Transform - pos: -113.68614,-7.970252 - parent: 89 - - uid: 16443 + rot: 1.5707963267948966 rad + pos: -78.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16919 components: - type: Transform - pos: -113.68614,-8.360877 - parent: 89 - - uid: 16444 + rot: 1.5707963267948966 rad + pos: -79.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16920 components: - type: Transform - pos: -113.52989,-8.423377 - parent: 89 - - uid: 16445 + rot: -1.5707963267948966 rad + pos: -73.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16921 components: - type: Transform - pos: -113.49864,-8.235877 - parent: 89 - - uid: 16879 + pos: -75.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16922 components: - type: Transform - parent: 16868 - - type: Physics - canCollide: False - - uid: 16880 + rot: 3.141592653589793 rad + pos: -67.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16923 components: - type: Transform - parent: 16868 - - type: Physics - canCollide: False - - uid: 16882 + rot: 3.141592653589793 rad + pos: -64.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16924 components: - type: Transform - parent: 16868 - - type: Physics - canCollide: False - - uid: 16896 + pos: -66.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16925 components: - type: Transform - pos: 14.374804,6.3901353 - parent: 89 - - type: Paper - content: > - ЖУРНАЛ СМЕРТЕЙ НА БОРТУ - - ДАЛЛАС, A. (СТАРШИЙ МЕДИЦИНСКИЙ ОФИЦЕР) - - Число погибших растет. Пока достоверно известно о смерти: - - Аврора Р. - - Олег Х. - - Джессика Х. - - Шарлота Х. - - Калле А. - - Айси Р. - - Сакипу-Каи - - Ебашата Б. - - Фердинант Д. - - uid: 17216 + pos: -56.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16926 components: - type: Transform - pos: 32.68014,14.60166 - parent: 89 - - uid: 17217 + rot: -1.5707963267948966 rad + pos: -47.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16927 components: - type: Transform - pos: 32.570766,14.336035 - parent: 89 - - uid: 17218 + pos: -53.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16928 components: - type: Transform - pos: 36.664516,13.72666 - parent: 89 - - uid: 17219 + pos: -61.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16929 components: - type: Transform - pos: 36.39889,13.586035 - parent: 89 - - uid: 17597 + pos: -68.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16930 components: - type: Transform rot: 1.5707963267948966 rad - pos: 19.480312,17.735224 - parent: 89 - - uid: 17602 + pos: -73.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16931 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 19.560575,18.307178 - parent: 89 - - uid: 17933 + rot: 3.141592653589793 rad + pos: -79.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16932 components: - type: Transform - pos: -22.63116,9.583739 - parent: 89 - - uid: 17947 + rot: 3.141592653589793 rad + pos: -72.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16933 components: - type: Transform - pos: -22.28741,8.989989 - parent: 89 - - uid: 17954 + rot: 1.5707963267948966 rad + pos: -82.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16934 components: - type: Transform - pos: -22.646786,9.193114 - parent: 89 - - uid: 19485 + rot: -1.5707963267948966 rad + pos: -84.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16935 components: - type: Transform - pos: -22.271786,9.427489 - parent: 89 - - uid: 19501 + rot: -1.5707963267948966 rad + pos: -80.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16936 components: - type: Transform - pos: 53.277283,-6.2131367 - parent: 89 - - uid: 19502 + rot: 1.5707963267948966 rad + pos: -88.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16937 components: - type: Transform - pos: 53.355408,-6.4318867 - parent: 89 - - uid: 19503 + rot: 1.5707963267948966 rad + pos: -89.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16938 components: - type: Transform - pos: 53.589783,-6.1662617 - parent: 89 - - uid: 19504 + rot: 1.5707963267948966 rad + pos: -89.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16939 components: - type: Transform - pos: 53.683533,-6.4787617 - parent: 89 - - uid: 19505 + rot: -1.5707963267948966 rad + pos: -84.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16940 components: - type: Transform - pos: 58.621033,-6.2756367 - parent: 89 - - uid: 19506 + rot: -1.5707963267948966 rad + pos: -87.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16941 components: - type: Transform - pos: 58.636658,-6.4631367 - parent: 89 - - uid: 19507 + rot: 1.5707963267948966 rad + pos: -95.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16942 components: - type: Transform - pos: 58.402283,-6.3225117 - parent: 89 - - uid: 19568 + pos: -92.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16943 components: - type: Transform - pos: -133.29323,-2.538804 - parent: 89 - - type: Paper - content: > - ДИРЕКТИВА ЦЕНТРАЛЬНОГО КОМАНДОВАНИЯ НАНОТРЕЙЗЕН - - ДЖЕССИКА, Х. (2-ОЙ КАПИТАН ФЛОТА НТ) - - Приказ о разоружении корабля USG Ishimura от 25.07.13 - - Требуется снять все бортовые пушки и БСА с корабля для перевода в гражданские структуры. - - Слава НаноТрейзен! - - uid: 19637 + rot: 3.141592653589793 rad + pos: -92.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16944 components: - type: Transform - pos: -104.701065,9.571011 - parent: 89 - - uid: 21286 + pos: -93.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16945 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -97.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16946 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.56842,24.176943 - parent: 89 - - type: Paper - content: Не роняй мыло........ - - uid: 21842 + pos: -101.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16947 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.45179,-31.312603 - parent: 89 - - uid: 21843 + rot: 3.141592653589793 rad + pos: -106.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16948 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.467415,-31.328228 - parent: 89 - - uid: 21844 + pos: -101.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16949 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.38929,-31.437603 - parent: 89 - - uid: 21845 + pos: -104.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16950 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.811165,-31.718853 - parent: 89 - - uid: 21846 + pos: -107.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16951 components: - type: Transform rot: -1.5707963267948966 rad - pos: 57.60804,-31.546978 - parent: 89 - - uid: 21847 + pos: -107.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16952 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.529915,-31.515728 - parent: 89 - - uid: 21848 + rot: 1.5707963267948966 rad + pos: -112.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16953 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.48304,-32.359478 - parent: 89 - - uid: 21849 + rot: 1.5707963267948966 rad + pos: -112.5,7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16954 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.623665,-32.390728 - parent: 89 - - uid: 21850 + pos: -113.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16955 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.38929,-32.406353 - parent: 89 - - uid: 21851 + pos: -113.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16956 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.529915,-32.468853 - parent: 89 - - uid: 21852 + pos: -117.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16957 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.498665,-32.468853 - parent: 89 -- proto: PaperBin10 - entities: - - uid: 7241 + pos: -117.5,1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16958 components: - type: Transform - pos: -102.5,21.5 - parent: 89 - - uid: 8511 + rot: -1.5707963267948966 rad + pos: -107.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16959 components: - type: Transform - rot: 0.00040875888862988013 rad - pos: -9.212771,-16.376884 - parent: 89 - - uid: 19408 + rot: -1.5707963267948966 rad + pos: -107.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16960 components: - type: Transform - pos: 25.5,40.5 - parent: 89 -- proto: PaperBin5 - entities: - - uid: 11092 + pos: -105.5,15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16961 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,20.5 - parent: 89 -- proto: PaperOffice - entities: - - uid: 3792 + pos: -107.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16962 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.9534917,19.498787 - parent: 89 - - uid: 15904 + pos: -111.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16963 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.8909917,19.561287 - parent: 89 -- proto: PaperRolling1 - entities: - - uid: 21826 - components: - - type: MetaData - name: Использованная бумага - - type: Transform - pos: 36.221523,-19.722937 - parent: 89 -- proto: ParticleAcceleratorControlBoxUnfinished - entities: - - uid: 1461 + pos: -103.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16964 components: - type: Transform - pos: -118.5,-7.5 - parent: 89 -- proto: PartRodMetal - entities: - - uid: 35 + rot: -1.5707963267948966 rad + pos: -119.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16965 components: - type: Transform - pos: 19.319859,-1.4254802 - parent: 89 - - uid: 2739 + rot: -1.5707963267948966 rad + pos: -119.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16966 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.47879,-13.314479 - parent: 89 - - uid: 2741 + pos: -117.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16967 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.494415,-13.595729 - parent: 89 - - uid: 14599 + rot: 1.5707963267948966 rad + pos: -126.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16968 components: - type: Transform - pos: -91.52402,24.379433 - parent: 89 - - uid: 14723 + rot: 1.5707963267948966 rad + pos: -126.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16969 components: - type: Transform - pos: 15.60869,-15.835364 - parent: 89 - - uid: 14883 + rot: -1.5707963267948966 rad + pos: -131.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16970 components: - type: Transform - pos: 19.429234,-1.4254802 - parent: 89 - - uid: 19674 + rot: 3.141592653589793 rad + pos: -130.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16971 components: - type: Transform - pos: 19.585484,-1.4254802 - parent: 89 - - uid: 19692 + pos: -129.5,9.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16972 components: - type: Transform - pos: 19.710484,-1.4254802 - parent: 89 - - uid: 19693 + rot: 1.5707963267948966 rad + pos: -125.5,14.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16973 components: - type: Transform - pos: 19.804234,-1.4254802 - parent: 89 - - uid: 19694 + rot: 1.5707963267948966 rad + pos: -126.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16974 components: - type: Transform - pos: 19.507359,-1.4254802 - parent: 89 -- proto: PartRodMetal1 - entities: - - uid: 9173 + pos: -130.5,17.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16975 components: - type: Transform - pos: -115.50935,23.444849 - parent: 89 -- proto: Pen - entities: - - uid: 2017 + rot: 3.141592653589793 rad + pos: -130.5,11.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16976 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.663654,5.2641296 - parent: 89 - - uid: 2083 + pos: -82.5,21.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16977 components: - type: Transform - pos: -102.442795,-2.4083269 - parent: 89 - - uid: 2099 + rot: -1.5707963267948966 rad + pos: -83.5,23.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16978 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 2100 + rot: -1.5707963267948966 rad + pos: -83.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16979 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 2101 + rot: -1.5707963267948966 rad + pos: -83.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16980 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 2102 + rot: -1.5707963267948966 rad + pos: -83.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16981 components: - type: Transform - pos: 40.31191,10.641259 - parent: 89 - - uid: 4352 + rot: -1.5707963267948966 rad + pos: -83.5,40.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16982 components: - type: Transform - pos: 34.461002,-3.4239135 - parent: 89 - - uid: 6103 + rot: -1.5707963267948966 rad + pos: -83.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16983 components: - type: Transform - pos: -52.531784,9.387821 - parent: 89 - - uid: 6176 + rot: 1.5707963267948966 rad + pos: -85.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16984 components: - type: Transform - pos: -20.149828,5.6105614 - parent: 89 - - uid: 7253 + rot: 1.5707963267948966 rad + pos: -105.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.28134,21.428677 - parent: 89 - - uid: 8118 + rot: 1.5707963267948966 rad + pos: -105.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16986 components: - type: Transform - pos: -87.356705,14.63772 - parent: 89 - - uid: 8119 + rot: -1.5707963267948966 rad + pos: -98.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16987 components: - type: Transform - pos: -58.383198,7.6601844 - parent: 89 - - uid: 8135 + rot: -1.5707963267948966 rad + pos: -98.5,-0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16988 components: - type: Transform - pos: -45.58585,1.1796833 - parent: 89 - - uid: 8310 + rot: 3.141592653589793 rad + pos: -99.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16989 components: - type: Transform - pos: -59.96638,22.644829 - parent: 89 - - uid: 10550 + rot: 3.141592653589793 rad + pos: -104.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16990 components: - type: Transform - pos: -84.42911,17.611036 - parent: 89 - - uid: 10954 + rot: 3.141592653589793 rad + pos: -59.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16991 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.0206444,19.64295 - parent: 89 - - uid: 15496 + rot: 3.141592653589793 rad + pos: -63.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16992 components: - type: Transform - pos: -85.748856,1.5023527 - parent: 89 - - uid: 15603 + rot: 3.141592653589793 rad + pos: -58.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16993 components: - type: Transform - pos: -22.740536,8.497745 - parent: 89 - - uid: 15628 + rot: 3.141592653589793 rad + pos: -63.5,24.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16994 components: - type: Transform - pos: 25.171398,29.545141 - parent: 89 - - uid: 15874 + rot: 1.5707963267948966 rad + pos: -67.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16995 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.608939,16.567434 - parent: 89 - - uid: 16147 + rot: 1.5707963267948966 rad + pos: -67.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16996 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.410079,32.462254 - parent: 89 - - uid: 16446 + pos: -67.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16997 components: - type: Transform - pos: -113.32677,-7.642127 - parent: 89 - - uid: 17214 + rot: 1.5707963267948966 rad + pos: -67.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16998 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.477016,14.60166 - parent: 89 - - uid: 17215 + pos: -63.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 16999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.477016,14.03916 - parent: 89 - - uid: 17601 + pos: -59.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17000 components: - type: Transform - pos: 19.62081,18.746508 - parent: 89 - - uid: 19509 + rot: -1.5707963267948966 rad + pos: -59.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17001 components: - type: Transform - pos: 54.058533,-6.2912617 - parent: 89 - - uid: 19510 + rot: -1.5707963267948966 rad + pos: -59.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17002 components: - type: Transform - pos: 54.089783,-6.4475117 - parent: 89 - - uid: 19511 + rot: 3.141592653589793 rad + pos: -61.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17003 components: - type: Transform - pos: 57.917908,-6.3225117 - parent: 89 - - uid: 19902 + rot: 3.141592653589793 rad + pos: -56.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17004 components: - type: Transform - pos: 26.263317,37.09462 - parent: 89 - - uid: 21474 + rot: -1.5707963267948966 rad + pos: -55.5,33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17005 components: - type: Transform - pos: -43.521545,30.07248 - parent: 89 - - uid: 21855 + rot: -1.5707963267948966 rad + pos: -55.5,36.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17006 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.42054,-32.328228 - parent: 89 -- proto: PersonalAI - entities: - - uid: 166 - components: - - type: Transform - pos: 1.571759,-29.847042 - parent: 89 - - uid: 10816 + pos: -54.5,38.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17007 components: - type: Transform - pos: -91.45784,6.461441 - parent: 89 - - uid: 12634 + pos: -54.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17008 components: - type: Transform - pos: 30.522495,-3.4520006 - parent: 89 - - uid: 17090 + rot: 1.5707963267948966 rad + pos: -58.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17009 components: - type: Transform - pos: -19.416168,-6.4855185 - parent: 89 - - uid: 17091 + rot: -1.5707963267948966 rad + pos: -64.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17010 components: - type: Transform - pos: -57.471027,12.576777 - parent: 89 - - uid: 19536 + rot: 1.5707963267948966 rad + pos: -66.5,47.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17011 components: - type: Transform - pos: -41.42999,-10.450936 - parent: 89 - - uid: 19576 + pos: -51.5,45.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17012 components: - type: Transform - pos: -4.533154,-20.272491 - parent: 89 - - uid: 19578 + pos: -51.5,41.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17013 components: - type: Transform - pos: -18.454983,-23.222599 - parent: 89 - - uid: 19579 + pos: -52.5,37.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17014 components: - type: Transform - pos: -18.531723,12.537066 - parent: 89 - - uid: 19599 + rot: 3.141592653589793 rad + pos: -51.5,34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17015 components: - type: Transform - pos: -61.45272,5.614086 - parent: 89 - - uid: 19601 + pos: 46.5,15.5 + parent: 2 + - uid: 17016 components: - type: Transform - pos: -36.49227,27.653912 - parent: 89 - - uid: 19615 + rot: 3.141592653589793 rad + pos: 5.5,36.5 + parent: 2 + - uid: 17017 components: - type: Transform - pos: -103.92291,9.576194 - parent: 89 - - uid: 19617 + rot: -1.5707963267948966 rad + pos: -115.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 17018 components: - type: Transform - pos: -69.48751,-17.338394 - parent: 89 - - uid: 19619 + rot: 1.5707963267948966 rad + pos: -127.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17019 components: - type: Transform - pos: 44.26809,5.7978077 - parent: 89 - - uid: 19621 + rot: 1.5707963267948966 rad + pos: -127.5,2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17020 components: - type: Transform - pos: 56.51628,10.546991 - parent: 89 -- proto: PhoneInstrument - entities: - - uid: 4705 + rot: 3.141592653589793 rad + pos: -56.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17021 components: - type: Transform - pos: 32.644638,-0.45123816 - parent: 89 - - uid: 7249 + rot: 3.141592653589793 rad + pos: -69.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17022 components: - type: Transform - pos: -105.45816,21.652794 - parent: 89 -- proto: PianoInstrument - entities: - - uid: 16602 + pos: -71.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17023 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-4.5 - parent: 89 -- proto: Pickaxe - entities: - - uid: 10263 + pos: -44.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17024 components: - type: Transform - pos: -25.454777,28.449745 - parent: 89 - - uid: 22546 + pos: -37.5,18.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17025 components: - type: Transform - pos: 25.395391,-12.3433895 - parent: 89 - - uid: 23760 + rot: 1.5707963267948966 rad + pos: -27.5,8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17026 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23761 + rot: 3.141592653589793 rad + pos: -32.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17027 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23762 + rot: 3.141592653589793 rad + pos: -27.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17028 components: - type: Transform - parent: 23753 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23770 + rot: 1.5707963267948966 rad + pos: -30.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17029 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23771 + rot: 1.5707963267948966 rad + pos: -30.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17030 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 23772 + pos: -33.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17031 components: - type: Transform - parent: 23763 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PillCanister - entities: - - uid: 15743 + pos: -33.5,29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17032 components: - type: Transform - pos: -1.629554,10.697055 - parent: 89 - - uid: 16198 + pos: -33.5,33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17033 components: - type: Transform - pos: -2.9211035,5.53437 - parent: 89 -- proto: PillSpaceDrugs - entities: - - uid: 12599 + pos: -26.5,33.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17034 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12600 + pos: -26.5,29.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17035 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12605 + pos: -26.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17036 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12608 + rot: 3.141592653589793 rad + pos: -22.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17037 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 12611 + rot: 3.141592653589793 rad + pos: -26.5,13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17038 components: - type: Transform - parent: 12190 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PinpointerNuclear - entities: - - uid: 1466 + pos: 11.5,24.5 + parent: 2 + - uid: 17039 components: - type: Transform - pos: 48.41028,10.601509 - parent: 89 - - uid: 5989 + pos: 6.5,24.5 + parent: 2 + - uid: 17040 components: - type: Transform - pos: 47.677902,-5.481676 - parent: 89 -- proto: PlaqueAtmos - entities: - - uid: 3049 + rot: -1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17041 components: - - type: MetaData - desc: Старая доска почета, жаль, что доска слишком изношена, чтобы можно было её прочитать, кроме нескольких слов "no_mad" "OopsieDoopsie" "tUndra" "Bebushka" "_CyreX_" "Bollo" "lapatison" "kevicky9" "vasalomka", вот только что означают эти слова, вы никогда не узнаете. Похоже кто-то наклеил поверх таблички фотку "Робастер, древний." - name: старая доска почета - type: Transform - pos: 14.5,-14.5 - parent: 89 -- proto: PlasmaCanister - entities: - - uid: 1142 + rot: -1.5707963267948966 rad + pos: 5.5,-13.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17042 components: - type: Transform - pos: -92.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 8853 + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17043 components: - type: Transform - pos: -130.5,0.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24596 + rot: 1.5707963267948966 rad + pos: 10.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17044 components: - type: Transform - pos: -13.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: PlasmaReinforcedWindowDirectional - entities: - - uid: 931 + rot: -1.5707963267948966 rad + pos: 15.5,-7.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - type: Timer + - uid: 17045 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,4.5 - parent: 89 - - uid: 932 + pos: -79.5,-3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17046 components: - type: Transform rot: 1.5707963267948966 rad - pos: 54.5,4.5 - parent: 89 - - uid: 933 + pos: -70.5,-6.5 + parent: 2 + - uid: 17047 components: - type: Transform - pos: 54.5,4.5 - parent: 89 - - uid: 935 + rot: 1.5707963267948966 rad + pos: -105.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17048 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,4.5 - parent: 89 - - uid: 8489 + pos: 10.5,42.5 + parent: 2 + - uid: 17049 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 8490 + rot: 1.5707963267948966 rad + pos: 9.5,35.5 + parent: 2 + - type: Timer + - uid: 17050 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 8519 + rot: -1.5707963267948966 rad + pos: 14.5,30.5 + parent: 2 + - uid: 17051 components: - type: Transform rot: 3.141592653589793 rad - pos: -125.5,1.5 - parent: 89 - - uid: 8520 + pos: 14.5,36.5 + parent: 2 + - uid: 17052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,1.5 - parent: 89 - - uid: 8521 + pos: 5.5,30.5 + parent: 2 + - uid: 17053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,1.5 - parent: 89 - - uid: 8523 + rot: 1.5707963267948966 rad + pos: 5.5,33.5 + parent: 2 + - uid: 17054 components: - type: Transform - pos: -127.5,6.5 - parent: 89 -- proto: PlasmaShiv - entities: - - uid: 21863 + pos: -110.5,10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17055 components: - type: Transform - pos: 53.479996,-33.581047 - parent: 89 - - uid: 23184 + rot: 3.141592653589793 rad + pos: -102.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17056 components: - type: Transform - parent: 23177 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: PlasticFlapsAirtightClear - entities: - - uid: 1745 + rot: -1.5707963267948966 rad + pos: 14.5,33.5 + parent: 2 + - uid: 17057 components: - type: Transform - pos: -92.5,-6.5 - parent: 89 - - uid: 4474 + pos: 18.5,23.5 + parent: 2 + - uid: 17058 components: - type: Transform - pos: -63.5,-21.5 - parent: 89 - - uid: 4475 + rot: -1.5707963267948966 rad + pos: 14.5,27.5 + parent: 2 + - uid: 17059 components: - type: Transform - pos: -59.5,-21.5 - parent: 89 - - uid: 4477 + pos: 6.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17060 components: - type: Transform - pos: -59.5,-18.5 - parent: 89 - - uid: 4478 + pos: 16.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17061 components: - type: Transform - pos: -63.5,-18.5 - parent: 89 - - uid: 10058 + pos: 27.5,3.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17062 components: - type: Transform - pos: -101.5,29.5 - parent: 89 -- proto: PlasticFlapsAirtightOpaque - entities: - - uid: 4410 + pos: 19.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17063 components: - type: Transform - pos: -59.5,-3.5 - parent: 89 - - uid: 4413 + rot: -1.5707963267948966 rad + pos: 22.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17064 components: - type: Transform - pos: -66.5,-3.5 - parent: 89 -- proto: PlushieCarp - entities: - - uid: 4685 + rot: 1.5707963267948966 rad + pos: 16.5,6.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17065 components: - type: Transform - pos: -25.532013,29.75965 - parent: 89 - - uid: 18123 + rot: 1.5707963267948966 rad + pos: -113.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17066 components: - type: Transform - pos: 1.5285358,-48.382328 - parent: 89 -- proto: PlushieLamp - entities: - - uid: 939 + rot: 1.5707963267948966 rad + pos: -113.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17067 components: - type: Transform - pos: 24.491402,43.610085 - parent: 89 - - uid: 6903 + rot: 1.5707963267948966 rad + pos: -45.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17068 components: - type: Transform - pos: -105.51431,9.84532 - parent: 89 -- proto: PlushieLizard - entities: - - uid: 5467 + rot: -1.5707963267948966 rad + pos: -5.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17069 components: - type: Transform - pos: 47.51918,-4.518338 - parent: 89 - - uid: 8372 + pos: -15.5,-15.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17070 components: - type: Transform - pos: -89.61875,29.811512 - parent: 89 -- proto: PlushieNar - entities: - - uid: 15907 + pos: 27.5,20.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17071 components: - type: Transform - pos: 3.4692783,30.507156 - parent: 89 -- proto: PlushieNuke - entities: - - uid: 8121 + rot: 1.5707963267948966 rad + pos: 13.5,19.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17072 components: - - type: MetaData - name: плюшевая коммандер аврора - type: Transform - pos: 0.49973202,32.523396 - parent: 89 - - uid: 16986 + rot: -1.5707963267948966 rad + pos: 14.5,25.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17073 components: - - type: MetaData - name: плюшевая коммандер аврора - type: Transform - pos: 59.524296,6.726757 - parent: 89 -- proto: PlushieSharkPink - entities: - - uid: 8122 + rot: -1.5707963267948966 rad + pos: 14.5,28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17074 components: - type: Transform - pos: 3.484107,32.50777 - parent: 89 -- proto: PlushieSlime - entities: - - uid: 20790 + pos: 20.5,12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17075 components: - - type: MetaData - desc: Добрый и маленький слаймик нурка - name: слаймик Нурану - type: Transform - pos: 1.4425585,-31.546919 - parent: 89 -- proto: PlushieSpaceLizard - entities: - - uid: 15697 + rot: 3.141592653589793 rad + pos: 10.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17076 components: - type: Transform - pos: 59.412067,2.6890216 - parent: 89 - - uid: 18249 + rot: 3.141592653589793 rad + pos: 22.5,0.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17077 components: - type: Transform - pos: 19.486435,38.771248 - parent: 89 -- proto: PonderingOrb - entities: - - uid: 18027 + rot: 3.141592653589793 rad + pos: 50.5,-25.5 + parent: 2 + - uid: 17078 components: - type: Transform - pos: 11.506685,-21.496483 - parent: 89 -- proto: PortableFlasher - entities: - - uid: 2243 + pos: 50.5,-27.5 + parent: 2 + - uid: 17079 components: - type: Transform - pos: 45.5,-4.5 - parent: 89 - - uid: 3394 + rot: 1.5707963267948966 rad + pos: 40.5,-31.5 + parent: 2 + - uid: 17080 components: - type: Transform - pos: 44.5,-3.5 - parent: 89 - - uid: 7470 + rot: -1.5707963267948966 rad + pos: 53.5,-31.5 + parent: 2 + - uid: 17081 components: - type: Transform - pos: 45.5,-3.5 - parent: 89 - - uid: 9789 + rot: 3.141592653589793 rad + pos: 46.5,-31.5 + parent: 2 + - uid: 17082 components: - type: Transform - pos: -53.5,36.5 - parent: 89 - - uid: 9872 + rot: 3.141592653589793 rad + pos: -31.5,35.5 + parent: 2 + - type: Timer + - uid: 17083 components: - type: Transform - pos: -53.5,34.5 - parent: 89 -- proto: PortableGeneratorJrPacman - entities: - - uid: 15341 + rot: 3.141592653589793 rad + pos: -28.5,35.5 + parent: 2 + - uid: 17084 components: - type: Transform - pos: 4.5,-0.5 - parent: 89 -- proto: PortableGeneratorPacman - entities: - - uid: 4931 + rot: 3.141592653589793 rad + pos: 43.5,-33.5 + parent: 2 + - uid: 17085 components: - type: Transform - pos: -129.5,11.5 - parent: 89 - - uid: 4935 + pos: -50.5,48.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17086 components: - type: Transform - pos: -130.5,11.5 - parent: 89 -- proto: PortableGeneratorSuperPacman - entities: - - uid: 4890 + pos: 1.5,13.5 + parent: 2 + - uid: 17087 components: - type: Transform - pos: -132.5,11.5 - parent: 89 - - uid: 5460 + rot: -1.5707963267948966 rad + pos: 0.5,8.5 + parent: 2 + - uid: 17088 components: - type: Transform - pos: -131.5,11.5 - parent: 89 -- proto: PortableScrubber - entities: - - uid: 980 + rot: 3.141592653589793 rad + pos: -2.5,5.5 + parent: 2 + - uid: 17089 components: - type: Transform - pos: -90.5,-5.5 - parent: 89 - - uid: 982 + rot: -1.5707963267948966 rad + pos: 46.5,-19.5 + parent: 2 + - uid: 17090 components: - type: Transform - pos: -91.5,-5.5 - parent: 89 - - uid: 2561 + rot: -1.5707963267948966 rad + pos: 49.5,-26.5 + parent: 2 + - uid: 17091 components: - type: Transform - pos: -96.5,-15.5 - parent: 89 - - uid: 2562 + pos: 44.5,-27.5 + parent: 2 + - uid: 17092 components: - type: Transform - pos: -97.5,-15.5 - parent: 89 - - uid: 2563 + rot: -1.5707963267948966 rad + pos: 43.5,-26.5 + parent: 2 + - uid: 17093 components: - type: Transform - pos: -98.5,-15.5 - parent: 89 - - uid: 7091 + pos: 41.5,-28.5 + parent: 2 + - uid: 17094 components: - type: Transform - pos: -91.5,15.5 - parent: 89 - - uid: 8203 + rot: 3.141592653589793 rad + pos: 44.5,-25.5 + parent: 2 + - uid: 17095 components: - type: Transform - pos: 0.5,25.5 - parent: 89 - - uid: 9614 + rot: 1.5707963267948966 rad + pos: 45.5,-26.5 + parent: 2 + - uid: 17096 components: - type: Transform - pos: -92.5,19.5 - parent: 89 -- proto: PortableScrubberMachineCircuitBoard - entities: - - uid: 7073 + rot: 1.5707963267948966 rad + pos: 48.5,-19.5 + parent: 2 + - uid: 17097 components: - type: Transform - pos: -105.3799,-10.45957 - parent: 89 - - uid: 9690 + rot: 3.141592653589793 rad + pos: 60.5,-4.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17098 components: - type: Transform - pos: -105.61427,-10.20957 - parent: 89 -- proto: PosterBroken - entities: - - uid: 14873 + rot: -1.5707963267948966 rad + pos: 59.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17099 components: - type: Transform - pos: -35.5,22.5 - parent: 89 -- proto: PosterContrabandAmbrosiaVulgaris - entities: - - uid: 4875 + pos: 64.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17100 components: - type: Transform - pos: -10.5,-5.5 - parent: 89 -- proto: PosterContrabandAtmosiaDeclarationIndependence - entities: - - uid: 2588 + rot: 1.5707963267948966 rad + pos: 52.5,-5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-23.5 - parent: 89 - - uid: 7418 + rot: 3.141592653589793 rad + pos: -0.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17102 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-12.5 - parent: 89 -- proto: PosterContrabandCC64KAd - entities: - - uid: 17229 + rot: 3.141592653589793 rad + pos: -2.5,-31.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17103 components: - type: Transform - pos: -3.5,4.5 - parent: 89 -- proto: PosterContrabandCommunistState - entities: - - uid: 7286 + pos: 37.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17104 components: - type: Transform - pos: -94.5,18.5 - parent: 89 -- proto: PosterContrabandEAT - entities: - - uid: 4381 + rot: 1.5707963267948966 rad + pos: -31.5,-1.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17105 components: - type: Transform - pos: -16.5,-0.5 - parent: 89 -- proto: PosterContrabandFreeDrone - entities: - - uid: 3999 + rot: -1.5707963267948966 rad + pos: -28.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17106 components: - type: Transform - pos: 17.5,0.5 - parent: 89 -- proto: PosterContrabandFunPolice - entities: - - uid: 14103 + rot: 1.5707963267948966 rad + pos: -56.5,-16.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17107 components: - type: Transform - pos: -73.5,-7.5 - parent: 89 -- proto: PosterContrabandGreyTide - entities: - - uid: 15773 + rot: -1.5707963267948966 rad + pos: -54.5,-12.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17108 components: - type: Transform - pos: -1.5,33.5 - parent: 89 -- proto: PosterContrabandHackingGuide - entities: - - uid: 15780 + pos: -114.5,-10.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17109 components: - type: Transform - pos: 2.5,33.5 - parent: 89 -- proto: PosterContrabandHaveaPuff - entities: - - uid: 15586 + rot: 3.141592653589793 rad + pos: -110.5,-2.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17110 components: - type: Transform - pos: -6.5,34.5 - parent: 89 -- proto: PosterContrabandKosmicheskayaStantsiya - entities: - - uid: 15774 + rot: 1.5707963267948966 rad + pos: -109.5,-8.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17111 components: - type: Transform - pos: -9.5,32.5 - parent: 89 -- proto: PosterContrabandMissingGloves - entities: - - uid: 7234 + pos: -5.5,-34.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17112 components: - type: Transform - pos: -89.5,13.5 - parent: 89 -- proto: PosterContrabandRebelsUnite - entities: - - uid: 15776 + rot: -1.5707963267948966 rad + pos: 7.5,-28.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17113 components: - type: Transform - pos: 0.5,38.5 - parent: 89 -- proto: PosterContrabandRevolver - entities: - - uid: 16871 + pos: -6.5,21.5 + parent: 2 + - uid: 17114 components: - type: Transform - pos: 17.5,10.5 - parent: 89 -- proto: PosterContrabandRise - entities: - - uid: 15771 + pos: 43.5,-11.5 + parent: 2 + - uid: 17115 components: - type: Transform - pos: -1.5,37.5 - parent: 89 -- proto: PosterContrabandSpaceCola - entities: - - uid: 7976 + rot: 3.141592653589793 rad + pos: 43.5,-16.5 + parent: 2 + - uid: 17116 components: - type: Transform - pos: -5.5,47.5 - parent: 89 -- proto: PosterContrabandSunkist - entities: - - uid: 15770 + rot: 3.141592653589793 rad + pos: 51.5,-16.5 + parent: 2 + - uid: 17117 components: - type: Transform - pos: -1.5,47.5 - parent: 89 -- proto: PosterContrabandSyndicatePistol - entities: - - uid: 15777 + pos: 51.5,-11.5 + parent: 2 + - uid: 17118 components: - type: Transform - pos: 1.5,38.5 - parent: 89 -- proto: PosterContrabandSyndicateRecruitment - entities: - - uid: 9238 + rot: 1.5707963267948966 rad + pos: 38.5,-25.5 + parent: 2 + - uid: 17119 components: - type: Transform - pos: -88.5,30.5 - parent: 89 - - uid: 15584 + rot: 1.5707963267948966 rad + pos: -2.5,17.5 + parent: 2 + - uid: 17120 components: - type: Transform - pos: -6.5,38.5 - parent: 89 -- proto: PosterContrabandTools - entities: - - uid: 7233 + rot: 1.5707963267948966 rad + pos: 40.5,16.5 + parent: 2 + - type: Timer + - uid: 17121 components: - type: Transform - pos: -94.5,11.5 - parent: 89 -- proto: PosterLegitAnatomyPoster - entities: - - uid: 21556 + rot: -1.5707963267948966 rad + pos: 48.5,19.5 + parent: 2 + - uid: 17122 components: - type: Transform - pos: -13.5,20.5 - parent: 89 - - uid: 21573 + rot: 1.5707963267948966 rad + pos: 46.5,18.5 + parent: 2 + - uid: 17123 components: - type: Transform - pos: -3.5,17.5 - parent: 89 -- proto: PosterLegitBlessThisSpess - entities: - - uid: 5510 + rot: 1.5707963267948966 rad + pos: 45.5,22.5 + parent: 2 + - type: Timer + - uid: 17124 components: - type: Transform - pos: -46.5,-1.5 - parent: 89 -- proto: PosterLegitDickGumshue - entities: - - uid: 6132 + rot: 1.5707963267948966 rad + pos: 44.5,19.5 + parent: 2 + - uid: 17125 components: - type: Transform - pos: -45.5,12.5 - parent: 89 -- proto: PosterLegitDoNotQuestion - entities: - - uid: 5479 + rot: 3.141592653589793 rad + pos: -4.5,11.5 + parent: 2 + - uid: 17126 components: - type: Transform - pos: -53.5,-2.5 - parent: 89 -- proto: PosterLegitHereForYourSafety - entities: - - uid: 14113 + pos: -8.5,21.5 + parent: 2 + - uid: 17127 components: - type: Transform - pos: 2.5,-5.5 - parent: 89 -- proto: PosterLegitLoveIan - entities: - - uid: 10220 + rot: 3.141592653589793 rad + pos: -8.5,17.5 + parent: 2 + - uid: 17128 components: - type: Transform - pos: -35.5,28.5 - parent: 89 - - uid: 10257 + rot: -1.5707963267948966 rad + pos: 40.5,-25.5 + parent: 2 + - uid: 17129 components: - type: Transform - pos: -35.5,29.5 - parent: 89 - - uid: 10258 + rot: -1.5707963267948966 rad + pos: 40.5,-15.5 + parent: 2 + - uid: 17130 components: - type: Transform - pos: -35.5,27.5 - parent: 89 -- proto: PosterLegitNoERP - entities: - - uid: 25640 + rot: 1.5707963267948966 rad + pos: 38.5,-19.5 + parent: 2 + - uid: 17131 components: - type: Transform - pos: -26.5,19.5 - parent: 89 -- proto: PosterLegitPeriodicTable - entities: - - uid: 2281 + rot: 1.5707963267948966 rad + pos: 38.5,-23.5 + parent: 2 + - uid: 17132 components: - type: Transform - pos: -0.5,10.5 - parent: 89 -- proto: PosterLegitReportCrimes - entities: - - uid: 16869 + rot: -1.5707963267948966 rad + pos: 40.5,-23.5 + parent: 2 + - uid: 17133 components: - type: Transform - pos: 2.5,-6.5 - parent: 89 -- proto: PosterLegitSafetyInternals - entities: - - uid: 15782 + pos: 42.5,-18.5 + parent: 2 + - uid: 17134 components: - type: Transform - pos: -89.5,-4.5 - parent: 89 -- proto: PosterLegitSecWatch - entities: - - uid: 15779 + rot: 3.141592653589793 rad + pos: 55.5,-33.5 + parent: 2 + - uid: 17135 components: - type: Transform - pos: 1.5,33.5 - parent: 89 -- proto: PotatoAIChip - entities: - - uid: 5243 + rot: 1.5707963267948966 rad + pos: 56.5,-22.5 + parent: 2 + - uid: 17136 components: - type: Transform - pos: -15.97848,-15.454903 - parent: 89 -- proto: PottedPlant11 - entities: - - uid: 12753 + rot: -1.5707963267948966 rad + pos: 36.5,-23.5 + parent: 2 + - uid: 17137 components: - type: Transform - pos: 14.5,5.5 - parent: 89 -- proto: PottedPlant15 - entities: - - uid: 7423 + rot: -1.5707963267948966 rad + pos: 36.5,-25.5 + parent: 2 + - uid: 17138 components: - type: Transform - pos: -33.5,-5.5 - parent: 89 - - uid: 10460 + rot: 3.141592653589793 rad + pos: 35.5,-27.5 + parent: 2 + - uid: 17139 components: - type: Transform - pos: 22.5,8.5 - parent: 89 - - uid: 12748 + pos: -26.5,18.5 + parent: 2 + - uid: 17140 components: - type: Transform - pos: 5.5,5.5 - parent: 89 - - uid: 15757 + rot: 1.5707963267948966 rad + pos: 52.5,-1.5 + parent: 2 + - uid: 17141 components: - type: Transform - pos: 16.5,11.5 - parent: 89 - - uid: 16944 + rot: -1.5707963267948966 rad + pos: 46.5,-3.5 + parent: 2 + - uid: 17142 components: - type: Transform - pos: -12.5,-19.5 - parent: 89 - - uid: 16945 + pos: 44.5,-2.5 + parent: 2 + - uid: 17143 components: - type: Transform - pos: 1.5,-30.5 - parent: 89 - - uid: 16966 + pos: 40.5,-2.5 + parent: 2 + - uid: 17144 components: - type: Transform - pos: -14.5,-21.5 - parent: 89 - - uid: 19817 + rot: 3.141592653589793 rad + pos: 39.5,-6.5 + parent: 2 + - uid: 17145 components: - type: Transform - pos: 28.5,13.5 - parent: 89 - - uid: 19818 + rot: 3.141592653589793 rad + pos: 44.5,0.5 + parent: 2 + - uid: 17146 components: - type: Transform - pos: 24.5,13.5 - parent: 89 - - uid: 19896 + pos: 48.5,8.5 + parent: 2 + - uid: 17147 components: - type: Transform - pos: 26.5,36.5 - parent: 89 -- proto: PottedPlant2 - entities: - - uid: 5823 + rot: 3.141592653589793 rad + pos: 2.5,-45.5 + parent: 2 + - uid: 17148 components: - type: Transform - pos: -69.5,-15.5 - parent: 89 -- proto: PottedPlant20 - entities: - - uid: 5301 + rot: 3.141592653589793 rad + pos: -5.5,-45.5 + parent: 2 + - uid: 17149 components: - type: Transform - pos: 25.5,-0.5 - parent: 89 -- proto: PottedPlant21 - entities: - - uid: 1992 + rot: 3.141592653589793 rad + pos: -7.5,-13.5 + parent: 2 + - uid: 17150 components: - type: Transform - pos: 42.5,5.5 - parent: 89 -- proto: PottedPlant22 - entities: - - uid: 6100 + pos: -2.5,-11.5 + parent: 2 + - uid: 17151 components: - type: Transform - pos: -64.5,1.5 - parent: 89 - - uid: 6102 + rot: 3.141592653589793 rad + pos: -20.5,-20.5 + parent: 2 + - uid: 17152 components: - type: Transform - pos: -61.5,1.5 - parent: 89 -- proto: PottedPlant26 - entities: - - uid: 16178 + pos: -11.5,-21.5 + parent: 2 + - uid: 17153 components: - type: Transform - pos: 13.5,37.5 - parent: 89 -- proto: PottedPlant27 - entities: - - uid: 16133 + pos: -110.5,-23.5 + parent: 2 + - uid: 17154 components: - type: Transform - pos: 5.5,34.5 - parent: 89 -- proto: PottedPlant29 - entities: - - uid: 16177 + pos: -23.5,18.5 + parent: 2 + - uid: 17155 components: - type: Transform - pos: 6.5,37.5 - parent: 89 -- proto: PottedPlant3 - entities: - - uid: 6697 + rot: -1.5707963267948966 rad + pos: -90.5,-6.5 + parent: 2 + - uid: 17156 components: - type: Transform - pos: -105.5,7.5 - parent: 89 -- proto: PottedPlantBioluminscent - entities: - - uid: 17296 + rot: 1.5707963267948966 rad + pos: -96.5,-6.5 + parent: 2 + - uid: 17157 components: - type: Transform - pos: 36.5,4.5 - parent: 89 -- proto: PottedPlantRandom - entities: - - uid: 205 + rot: 1.5707963267948966 rad + pos: -96.5,-2.5 + parent: 2 + - uid: 17158 components: - type: Transform - pos: -4.5,-23.5 - parent: 89 - - uid: 341 + rot: -1.5707963267948966 rad + pos: -58.5,8.5 + parent: 2 + - uid: 17159 components: - type: Transform - pos: 0.5,0.5 - parent: 89 - - uid: 1256 + rot: -1.5707963267948966 rad + pos: -87.5,44.5 + parent: 2 + - uid: 17160 components: - type: Transform - pos: -14.5,4.5 - parent: 89 - - uid: 3021 + rot: -1.5707963267948966 rad + pos: -87.5,41.5 + parent: 2 + - uid: 17161 components: - type: Transform - pos: -3.5,0.5 - parent: 89 - - uid: 3100 + rot: -1.5707963267948966 rad + pos: -88.5,35.5 + parent: 2 + - uid: 17162 components: - type: Transform - pos: 34.5,16.5 - parent: 89 - - uid: 3380 + rot: -1.5707963267948966 rad + pos: -88.5,32.5 + parent: 2 + - uid: 23848 components: - type: Transform - pos: 38.5,14.5 - parent: 89 - - uid: 3411 + rot: 3.141592653589793 rad + pos: 1.5,-9.5 + parent: 23711 + - uid: 23849 components: - type: Transform - pos: 30.5,13.5 - parent: 89 - - uid: 3423 + rot: 3.141592653589793 rad + pos: 4.5,-2.5 + parent: 23711 + - uid: 23850 components: - type: Transform - pos: 41.5,3.5 - parent: 89 - - uid: 6321 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 23711 + - uid: 23851 components: - type: Transform - pos: -1.5,13.5 - parent: 89 - - uid: 8926 + pos: 1.5,-4.5 + parent: 23711 + - uid: 23852 components: - type: Transform - pos: -6.5,21.5 - parent: 89 - - uid: 9082 + rot: 1.5707963267948966 rad + pos: 4.5,-9.5 + parent: 23711 + - uid: 23853 components: - type: Transform - pos: -73.5,0.5 - parent: 89 - - uid: 9780 + rot: 1.5707963267948966 rad + pos: 4.5,-4.5 + parent: 23711 + - uid: 23854 components: - type: Transform - pos: -58.5,38.5 - parent: 89 - - uid: 9877 + rot: 3.141592653589793 rad + pos: 3.5,-11.5 + parent: 23711 + - uid: 24192 components: - type: Transform - pos: -31.5,-9.5 - parent: 89 - - uid: 9970 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 23919 + - uid: 24193 components: - type: Transform - pos: -67.5,32.5 - parent: 89 - - uid: 9971 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 23919 + - uid: 24194 components: - type: Transform - pos: -67.5,36.5 - parent: 89 - - uid: 9990 + pos: 3.5,-7.5 + parent: 23919 + - uid: 24195 components: - type: Transform - pos: -64.5,28.5 - parent: 89 - - uid: 9991 + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 23919 + - uid: 24196 components: - type: Transform - pos: -59.5,45.5 - parent: 89 - - uid: 9992 + rot: 1.5707963267948966 rad + pos: 1.5,3.5 + parent: 23919 + - uid: 24197 components: - type: Transform - pos: -55.5,30.5 - parent: 89 - - uid: 10103 + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 23919 + - uid: 24198 components: - type: Transform - pos: -79.5,0.5 - parent: 89 - - uid: 10470 + rot: 1.5707963267948966 rad + pos: 1.5,1.5 + parent: 23919 + - uid: 24199 components: - type: Transform - pos: 19.5,10.5 - parent: 89 - - uid: 10472 + pos: 4.5,6.5 + parent: 23919 + - uid: 24200 components: - type: Transform - pos: 16.5,5.5 - parent: 89 - - uid: 10628 + rot: 3.141592653589793 rad + pos: 7.5,3.5 + parent: 23919 + - uid: 24414 components: - type: Transform - pos: 13.5,9.5 - parent: 89 - - uid: 10883 + rot: 3.141592653589793 rad + pos: -0.5,-2.5 + parent: 24340 + - uid: 24415 components: - type: Transform - pos: -9.5,4.5 - parent: 89 - - uid: 11025 + rot: 3.141592653589793 rad + pos: 1.5,-2.5 + parent: 24340 + - uid: 24416 components: - type: Transform - pos: -67.5,5.5 - parent: 89 - - uid: 11026 + rot: -1.5707963267948966 rad + pos: 0.5,-4.5 + parent: 24340 + - uid: 26569 components: - type: Transform - pos: -64.5,5.5 - parent: 89 - - uid: 11067 + rot: 3.141592653589793 rad + pos: -10.5,-26.5 + parent: 24450 + - uid: 26570 components: - type: Transform - pos: -14.5,6.5 - parent: 89 - - uid: 11074 + rot: 3.141592653589793 rad + pos: -16.5,-26.5 + parent: 24450 + - uid: 26571 components: - type: Transform - pos: -9.5,6.5 - parent: 89 - - uid: 11083 + pos: 10.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26730 + - uid: 26572 components: - type: Transform - pos: -9.5,9.5 - parent: 89 - - uid: 12003 + pos: -34.5,12.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26729 + - uid: 26573 components: - type: Transform - pos: -5.5,5.5 - parent: 89 - - uid: 12021 + pos: -34.5,6.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26728 + - uid: 26574 components: - type: Transform - pos: -5.5,10.5 - parent: 89 - - uid: 12862 + rot: -1.5707963267948966 rad + pos: -30.5,10.5 + parent: 24450 + - uid: 26575 components: - type: Transform - pos: 15.5,15.5 - parent: 89 - - uid: 14786 + rot: -1.5707963267948966 rad + pos: -29.5,6.5 + parent: 24450 + - uid: 26576 components: - type: Transform - pos: 24.5,11.5 - parent: 89 - - uid: 15152 + rot: 1.5707963267948966 rad + pos: -27.5,0.5 + parent: 24450 + - uid: 26577 components: - type: Transform - pos: -4.5,15.5 - parent: 89 - - uid: 15314 + rot: 3.141592653589793 rad + pos: -22.5,-0.5 + parent: 24450 + - uid: 26578 components: - type: Transform - pos: 25.5,20.5 - parent: 89 - - uid: 15492 + rot: -1.5707963267948966 rad + pos: -16.5,0.5 + parent: 24450 + - uid: 26579 components: - type: Transform - pos: -84.5,3.5 - parent: 89 - - uid: 15506 + rot: -1.5707963267948966 rad + pos: -16.5,8.5 + parent: 24450 + - uid: 26580 components: - type: Transform - pos: -80.5,7.5 - parent: 89 - - uid: 15579 + pos: -13.5,10.5 + parent: 24450 + - uid: 26581 components: - type: Transform - pos: 12.5,34.5 - parent: 89 - - uid: 16138 + rot: -1.5707963267948966 rad + pos: -9.5,7.5 + parent: 24450 + - uid: 26582 components: - type: Transform - pos: 7.5,34.5 - parent: 89 - - uid: 16467 + rot: 1.5707963267948966 rad + pos: -14.5,4.5 + parent: 24450 + - uid: 26583 components: - type: Transform - pos: -102.5,2.5 - parent: 89 - - uid: 16907 + rot: -1.5707963267948966 rad + pos: -9.5,4.5 + parent: 24450 + - uid: 26584 components: - type: Transform - pos: -13.5,-19.5 - parent: 89 - - uid: 16909 + rot: 3.141592653589793 rad + pos: -12.5,1.5 + parent: 24450 + - uid: 26585 components: - type: Transform - pos: -7.5,-18.5 - parent: 89 - - uid: 16910 + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 24450 + - uid: 26586 components: - type: Transform - pos: -9.5,-18.5 - parent: 89 - - uid: 16928 + pos: 10.5,6.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26724 + - uid: 26587 components: - type: Transform - pos: -2.5,-31.5 - parent: 89 - - uid: 16929 + rot: 3.141592653589793 rad + pos: -1.5,-0.5 + parent: 24450 + - uid: 26588 components: - type: Transform - pos: -0.5,-31.5 - parent: 89 - - uid: 16965 + rot: -1.5707963267948966 rad + pos: -0.5,18.5 + parent: 24450 + - uid: 26589 components: - type: Transform - pos: -16.5,-21.5 - parent: 89 - - uid: 16968 + rot: -1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 24450 + - uid: 26590 components: - type: Transform - pos: -18.5,-18.5 - parent: 89 - - uid: 16969 + rot: 1.5707963267948966 rad + pos: -13.5,-1.5 + parent: 24450 + - uid: 26591 components: - type: Transform - pos: 3.5,-22.5 - parent: 89 - - uid: 16989 + pos: 2.5,6.5 + parent: 24450 + - uid: 26592 components: - type: Transform - pos: 2.5,-13.5 - parent: 89 - - uid: 16990 + pos: 10.5,12.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26731 + - uid: 26593 components: - type: Transform - pos: 5.5,-13.5 - parent: 89 - - uid: 16998 + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 24450 + - uid: 26594 components: - type: Transform - pos: 3.5,-4.5 - parent: 89 - - uid: 16999 + rot: 1.5707963267948966 rad + pos: 5.5,7.5 + parent: 24450 + - uid: 26595 components: - type: Transform - pos: 4.5,-8.5 - parent: 89 - - uid: 17003 + rot: -1.5707963267948966 rad + pos: 3.5,0.5 + parent: 24450 + - uid: 26596 components: - type: Transform - pos: 38.5,-8.5 - parent: 89 - - uid: 17114 + pos: -4.5,10.5 + parent: 24450 + - uid: 26597 components: - type: Transform - pos: -65.5,-2.5 - parent: 89 - - uid: 17141 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 24450 + - uid: 26598 components: - type: Transform - pos: -60.5,-2.5 - parent: 89 - - uid: 17142 + rot: -1.5707963267948966 rad + pos: -20.5,13.5 + parent: 24450 + - uid: 26599 components: - type: Transform - pos: -58.5,-17.5 - parent: 89 - - uid: 17143 + rot: 1.5707963267948966 rad + pos: -3.5,22.5 + parent: 24450 + - uid: 26600 components: - type: Transform - pos: -67.5,-17.5 - parent: 89 - - uid: 17621 + rot: 1.5707963267948966 rad + pos: -3.5,14.5 + parent: 24450 + - uid: 26601 components: - type: Transform - pos: 16.5,17.5 - parent: 89 - - uid: 17622 + rot: -1.5707963267948966 rad + pos: -20.5,24.5 + parent: 24450 + - uid: 26602 components: - type: Transform - pos: 22.5,17.5 - parent: 89 - - uid: 17713 + rot: 1.5707963267948966 rad + pos: -7.5,3.5 + parent: 24450 + - uid: 26603 components: - type: Transform - pos: 10.5,11.5 - parent: 89 - - uid: 19810 + rot: -1.5707963267948966 rad + pos: -16.5,3.5 + parent: 24450 + - uid: 26604 components: - type: Transform - pos: 28.5,14.5 - parent: 89 - - uid: 19893 + pos: -25.5,8.5 + parent: 24450 + - uid: 26605 components: - type: Transform - pos: 26.5,34.5 - parent: 89 - - uid: 19904 + rot: 1.5707963267948966 rad + pos: -7.5,8.5 + parent: 24450 + - uid: 26606 components: - type: Transform - pos: 25.5,32.5 - parent: 89 - - uid: 19905 + pos: -19.5,10.5 + parent: 24450 + - uid: 26607 components: - type: Transform - pos: 23.5,32.5 - parent: 89 - - uid: 19964 + rot: -1.5707963267948966 rad + pos: -0.5,25.5 + parent: 24450 + - uid: 26608 components: - type: Transform - pos: 23.5,39.5 - parent: 89 - - uid: 24597 + rot: 1.5707963267948966 rad + pos: -23.5,25.5 + parent: 24450 + - uid: 26609 components: - type: Transform - pos: 7.5,6.5 - parent: 22565 - - uid: 24598 + rot: 1.5707963267948966 rad + pos: -23.5,18.5 + parent: 24450 + - uid: 26610 components: - type: Transform - pos: -29.5,7.5 - parent: 22565 - - uid: 25395 + pos: -34.5,9.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26727 + - uid: 26611 components: - type: Transform - pos: 35.5,-27.5 - parent: 89 - - uid: 25396 + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 24450 + - uid: 27818 components: - type: Transform - pos: 34.5,-22.5 - parent: 89 -- proto: PottedPlantRandomPlastic - entities: - - uid: 3382 + rot: -1.5707963267948966 rad + pos: 3.5,-1.5 + parent: 27260 + - uid: 27819 components: - type: Transform - pos: -17.5,-23.5 - parent: 89 - - uid: 3383 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 27260 + - uid: 27820 components: - type: Transform - pos: -14.5,-23.5 - parent: 89 - - uid: 4865 + pos: 0.5,-4.5 + parent: 27260 + - uid: 27821 components: - type: Transform - pos: 37.5,-3.5 - parent: 89 - - uid: 6490 + rot: 1.5707963267948966 rad + pos: -1.5,-8.5 + parent: 27260 + - uid: 27822 components: - type: Transform - pos: -27.5,-10.5 - parent: 89 - - uid: 9878 + rot: 3.141592653589793 rad + pos: 2.5,-9.5 + parent: 27260 + - uid: 27823 components: - type: Transform - pos: -17.5,-10.5 - parent: 89 - - uid: 24599 + pos: -4.5,-8.5 + parent: 27260 + - uid: 27824 components: - type: Transform - pos: -17.5,7.5 - parent: 22565 - - uid: 24600 + rot: 1.5707963267948966 rad + pos: -5.5,-12.5 + parent: 27260 + - uid: 27825 components: - type: Transform - pos: -2.5,7.5 - parent: 22565 -- proto: PottedPlantRD - entities: - - uid: 203 + rot: -1.5707963267948966 rad + pos: 6.5,-12.5 + parent: 27260 + - uid: 27826 components: - type: Transform - pos: 4.5,-30.5 - parent: 89 -- proto: PowerCellMicroreactor + rot: 1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 27260 +- proto: PoweredlightBlue entities: - - uid: 5726 + - uid: 17163 components: - type: Transform - pos: -22.450647,-22.528088 - parent: 89 -- proto: PowerCellPotato - entities: - - uid: 17893 + rot: 3.141592653589793 rad + pos: -112.5,23.5 + parent: 2 + - uid: 17164 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.590219,-8.506684 - parent: 89 -- proto: PowerCellRecharger - entities: - - uid: 6932 + pos: -117.5,23.5 + parent: 2 + - uid: 17165 components: - type: Transform - pos: -96.5,-2.5 - parent: 89 - - uid: 7075 + rot: -1.5707963267948966 rad + pos: -114.5,23.5 + parent: 2 + - uid: 17166 components: - type: Transform - pos: -94.5,17.5 - parent: 89 - - uid: 10158 + rot: -1.5707963267948966 rad + pos: -102.5,23.5 + parent: 2 + - uid: 17167 components: - type: Transform - pos: -31.5,21.5 - parent: 89 - - uid: 16942 + pos: -104.5,27.5 + parent: 2 + - uid: 17168 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 19519 + pos: -110.5,27.5 + parent: 2 + - uid: 17169 components: - type: Transform - pos: -15.5,-23.5 - parent: 89 - - uid: 19520 + pos: 48.5,-5.5 + parent: 2 + - uid: 17170 components: - type: Transform - pos: -50.5,-16.5 - parent: 89 - - uid: 19521 + pos: 46.5,-5.5 + parent: 2 + - uid: 24201 components: - type: Transform - pos: -71.5,-12.5 - parent: 89 - - uid: 24601 + rot: -1.5707963267948966 rad + pos: 1.5,-11.5 + parent: 23919 + - uid: 24202 components: - type: Transform - pos: -9.5,7.5 - parent: 22565 - - uid: 24602 + rot: 1.5707963267948966 rad + pos: 7.5,-11.5 + parent: 23919 + - uid: 24203 components: - type: Transform - pos: 5.5,2.5 - parent: 22565 - - uid: 24603 + pos: 8.5,-5.5 + parent: 23919 + - uid: 24204 components: - type: Transform - pos: -29.5,2.5 - parent: 22565 -- proto: PowerComputerCircuitboard - entities: - - uid: 7064 + rot: 3.141592653589793 rad + pos: 8.5,-2.5 + parent: 23919 + - uid: 24205 components: - type: Transform - pos: -103.65402,-10.274773 - parent: 89 -- proto: PowerDrill - entities: - - uid: 157 + rot: 3.141592653589793 rad + pos: 0.5,-2.5 + parent: 23919 + - uid: 24206 components: - type: Transform - pos: 3.5,-27.5 - parent: 89 -- proto: Poweredlight - entities: - - uid: 739 + pos: 0.5,-5.5 + parent: 23919 + - uid: 27827 components: - type: Transform rot: 1.5707963267948966 rad - pos: -109.5,-5.5 - parent: 89 - - uid: 1511 + pos: -5.5,-5.5 + parent: 27260 +- proto: PoweredlightExterior + entities: + - uid: 17171 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,-18.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -15.5,-9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1516 + - uid: 17172 components: - type: Transform - pos: 47.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1519 + rot: -1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18418 +- proto: PoweredlightPink + entities: + - uid: 17173 components: - type: Transform rot: -1.5707963267948966 rad - pos: 4.5,-22.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1565 + pos: -3.5,-5.5 + parent: 2 + - uid: 17174 components: - type: Transform - pos: -21.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1567 + rot: 1.5707963267948966 rad + pos: -9.5,-5.5 + parent: 2 + - uid: 17175 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1568 + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 2 + - uid: 17176 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 60.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 1569 + pos: -9.5,-0.5 + parent: 2 +- proto: PoweredLightPostSmall + entities: + - uid: 17177 components: - type: Transform rot: 3.141592653589793 rad - pos: -0.5,-41.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1571 + pos: -31.5,39.5 + parent: 2 + - type: Timer + - uid: 17178 components: - type: Transform - pos: -22.5,-22.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1572 + rot: 3.141592653589793 rad + pos: -28.5,39.5 + parent: 2 + - type: Timer +- proto: PoweredlightRed + entities: + - uid: 17179 components: - type: Transform - pos: -15.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1575 + rot: 3.141592653589793 rad + pos: 43.5,-9.5 + parent: 2 + - uid: 17180 components: - type: Transform rot: 3.141592653589793 rad - pos: -15.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1580 + pos: 46.5,-9.5 + parent: 2 + - uid: 17181 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1581 + pos: 49.5,-9.5 + parent: 2 + - uid: 27828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1582 + rot: -1.5707963267948966 rad + pos: 6.5,-5.5 + parent: 27260 +- proto: PoweredlightSodium + entities: + - uid: 17182 components: - type: Transform - pos: -3.5,-38.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1583 + rot: 1.5707963267948966 rad + pos: -88.5,-10.5 + parent: 2 + - uid: 17183 components: - type: Transform - pos: -7.5,-20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1584 + pos: -106.5,-14.5 + parent: 2 + - uid: 17184 components: - type: Transform - pos: -3.5,-24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1585 + pos: -98.5,-12.5 + parent: 2 + - uid: 17185 components: - type: Transform rot: -1.5707963267948966 rad - pos: -4.5,-32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1586 + pos: -78.5,-18.5 + parent: 2 + - uid: 17186 components: - type: Transform - pos: 0.5,-24.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -101.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1587 + - uid: 17187 components: - type: Transform - pos: -5.5,-27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -97.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1588 + - uid: 17188 components: - type: Transform - pos: -8.5,-27.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -93.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1589 + - uid: 17189 components: - type: Transform - pos: 0.5,-38.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -89.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1595 + - uid: 17190 components: - type: Transform - pos: 51.5,11.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -85.5,-21.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1599 + - uid: 17191 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1600 + pos: -79.5,-11.5 + parent: 2 + - uid: 26612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1602 + pos: -16.5,-21.5 + parent: 24450 + - uid: 26613 components: - type: Transform - pos: 3.5,-18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1605 + pos: -10.5,-21.5 + parent: 24450 +- proto: PoweredSmallLight + entities: + - uid: 17192 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1609 + rot: 1.5707963267948966 rad + pos: -150.5,-13.5 + parent: 2 + - uid: 17193 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1611 + pos: -122.5,-12.5 + parent: 2 + - uid: 17194 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1612 + pos: -86.5,-4.5 + parent: 2 + - uid: 17195 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,-32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1613 + pos: -129.5,-15.5 + parent: 2 + - uid: 17196 components: - type: Transform rot: -1.5707963267948966 rad - pos: 59.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1614 + pos: -128.5,-13.5 + parent: 2 + - uid: 17197 components: - type: Transform - pos: 60.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1615 + rot: 1.5707963267948966 rad + pos: 36.5,-14.5 + parent: 2 + - uid: 17198 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1616 + pos: 29.5,6.5 + parent: 2 + - uid: 17199 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-45.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 47.5,4.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1617 + - uid: 17200 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-45.5 - parent: 89 + pos: 50.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1618 + - type: Timer + - uid: 17201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-41.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 48.5,12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1620 + - type: Timer + - uid: 17202 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 62.5,4.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 54.5,4.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1621 + - uid: 17203 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1623 + rot: -1.5707963267948966 rad + pos: -87.5,26.5 + parent: 2 + - uid: 17204 components: - type: Transform - pos: 55.5,0.5 - parent: 89 + pos: -1.5,-19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1625 + - uid: 17205 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,8.5 - parent: 89 + pos: -1.5,-22.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1629 + - uid: 17206 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-34.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 57.5,2.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 1631 + - uid: 17207 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,-34.5 - parent: 89 + pos: 57.5,6.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2020 + - type: Timer + - uid: 17208 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,9.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 41.5,12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2021 + - type: Timer + - uid: 17209 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2022 + pos: 32.5,7.5 + parent: 2 + - uid: 17210 components: - type: Transform rot: 1.5707963267948966 rad - pos: 42.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2507 + pos: 37.5,20.5 + parent: 2 + - uid: 17211 components: - type: Transform - pos: 31.5,16.5 - parent: 89 + pos: 3.5,-0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2509 + - type: DeviceLinkSink + links: + - 18448 + - uid: 17212 components: - type: Transform - pos: 37.5,16.5 - parent: 89 + pos: -73.5,-12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: Timer - - uid: 2510 + - uid: 17213 components: - type: Transform rot: 3.141592653589793 rad - pos: 31.5,11.5 - parent: 89 + pos: -73.5,-17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2511 + - uid: 17214 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,11.5 - parent: 89 + pos: -70.5,-17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2512 + - uid: 17215 components: - type: Transform - pos: 39.5,9.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -71.5,-12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2513 + - uid: 17216 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,0.5 - parent: 89 + pos: -70.5,-9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2514 + - uid: 17217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2515 + pos: 7.5,27.5 + parent: 2 + - uid: 17218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 34.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 2527 + pos: 19.5,26.5 + parent: 2 + - uid: 17219 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -100.5,26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2571 + - uid: 17220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-9.5 - parent: 89 + pos: -96.5,29.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 2867 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 31.5,-14.5 - parent: 89 - - uid: 2906 + - uid: 17221 components: - type: Transform rot: -1.5707963267948966 rad - pos: -58.5,-10.5 - parent: 89 + pos: -95.5,26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 3119 + - uid: 17222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 3304 + rot: -1.5707963267948966 rad + pos: 11.5,30.5 + parent: 2 + - uid: 17223 components: - type: Transform rot: 1.5707963267948966 rad - pos: 36.5,-12.5 - parent: 89 + pos: 5.5,17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4670 + - uid: 17224 components: - type: Transform - rot: 3.141592653589793 rad - pos: -55.5,7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 11.5,17.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 4706 + - uid: 17225 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-17.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -33.5,0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5041 + - uid: 17226 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,-14.5 - parent: 89 + pos: -37.5,0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5357 + - uid: 17227 components: - type: Transform rot: -1.5707963267948966 rad - pos: 19.5,-1.5 - parent: 89 + pos: -37.5,-6.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5361 + - uid: 17228 components: - type: Transform - pos: 27.5,-0.5 - parent: 89 + pos: 15.5,15.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5375 + - uid: 17229 components: - type: Transform - pos: 22.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5379 + rot: -1.5707963267948966 rad + pos: 3.5,16.5 + parent: 2 + - uid: 17230 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 23.5,32.5 + parent: 2 + - uid: 17231 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.5,-11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5384 + pos: 25.5,27.5 + parent: 2 + - uid: 17232 components: - type: Transform - pos: 18.5,-4.5 - parent: 89 + pos: -116.5,-0.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5407 + - uid: 17233 components: - type: Transform rot: 3.141592653589793 rad - pos: 27.5,-14.5 - parent: 89 + pos: -116.5,8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5409 + - uid: 17234 components: - type: Transform - rot: 3.141592653589793 rad - pos: 24.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -115.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5410 + - uid: 17235 components: - type: Transform - rot: 3.141592653589793 rad - pos: 21.5,-14.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -128.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5411 + - uid: 17236 components: - type: Transform - rot: 3.141592653589793 rad - pos: 18.5,-14.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -132.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5423 + - uid: 17237 components: - type: Transform - pos: 15.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -90.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5429 + - uid: 17238 components: - type: Transform rot: -1.5707963267948966 rad - pos: 23.5,-5.5 - parent: 89 + pos: -92.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 5433 + - uid: 17239 components: - type: Transform - pos: 31.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 5734 + pos: -76.5,13.5 + parent: 2 + - uid: 17240 components: - type: Transform - pos: -60.5,-4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -87.5,37.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6004 + - uid: 17241 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-16.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6016 + - uid: 17242 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6018 + - uid: 17243 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,-15.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6019 + - uid: 17244 components: - type: Transform - pos: -65.5,-4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6033 + - uid: 17245 components: - type: Transform rot: 1.5707963267948966 rad - pos: -52.5,-11.5 - parent: 89 + pos: 24.5,8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6034 + - uid: 17246 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-11.5 - parent: 89 + pos: 27.5,9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6082 + - uid: 17247 components: - type: Transform - pos: -67.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 28.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 6083 + - uid: 17248 components: - type: Transform - pos: -58.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6527 + rot: -1.5707963267948966 rad + pos: 31.5,30.5 + parent: 2 + - uid: 17249 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6647 + pos: 23.5,32.5 + parent: 2 + - uid: 17250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6920 + rot: 1.5707963267948966 rad + pos: 17.5,30.5 + parent: 2 + - uid: 17251 components: - type: Transform rot: -1.5707963267948966 rad - pos: -35.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6921 + pos: 3.5,20.5 + parent: 2 + - uid: 17252 components: - type: Transform - pos: -40.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 25.5,24.5 + parent: 2 + - uid: 17253 + components: + - type: Transform + pos: 17.5,19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7071 + - uid: 17254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -60.5,42.5 - parent: 89 + pos: 21.5,19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7167 + - uid: 17255 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,13.5 - parent: 89 - - uid: 7398 - components: - - type: Transform - pos: -81.5,-11.5 - parent: 89 - - uid: 7399 + pos: 30.5,26.5 + parent: 2 + - uid: 17256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-11.5 - parent: 89 - - uid: 7415 + rot: -1.5707963267948966 rad + pos: -51.5,32.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-9.5 - parent: 89 - - uid: 7563 + rot: 3.141592653589793 rad + pos: -21.5,27.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,8.5 - parent: 89 + pos: -20.5,32.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7564 + - uid: 17259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-7.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -22.5,32.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7565 + - uid: 17260 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,0.5 - parent: 89 + pos: -36.5,32.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 7566 + - uid: 17261 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -38.5,27.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8707 + - uid: 17262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,-2.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -36.5,23.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 8909 + - uid: 17263 components: - type: Transform - pos: -101.5,5.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -45.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9691 + - uid: 17264 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,38.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -53.5,23.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 9692 + - uid: 17265 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,42.5 - parent: 89 + pos: -20.5,24.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10022 + - uid: 17266 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,-8.5 - parent: 89 + pos: -18.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10024 + - uid: 17267 components: - type: Transform rot: -1.5707963267948966 rad - pos: -43.5,8.5 - parent: 89 + pos: -1.5,25.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10025 + - uid: 17268 components: - type: Transform - pos: -45.5,11.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -6.5,27.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10026 + - uid: 17269 components: - type: Transform - pos: -50.5,11.5 - parent: 89 + pos: 2.5,26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10027 + - uid: 17270 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,-3.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -5.5,37.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10028 + - uid: 17271 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,-3.5 - parent: 89 + pos: 1.5,30.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10029 + - uid: 17272 components: - type: Transform rot: 3.141592653589793 rad - pos: -47.5,-7.5 - parent: 89 + pos: -8.5,30.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10030 + - uid: 17273 components: - type: Transform - pos: -33.5,-3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -3.5,33.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10031 + - uid: 17274 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,-9.5 - parent: 89 + pos: -0.5,39.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10032 + - uid: 17275 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,-5.5 - parent: 89 + pos: 2.5,42.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10036 + - uid: 17276 components: - type: Transform - pos: -30.5,-4.5 - parent: 89 + pos: -1.5,46.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10037 + - uid: 17277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,-9.5 - parent: 89 + pos: -5.5,46.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10038 + - uid: 17278 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-8.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: 3.5,45.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10039 + - uid: 17279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-6.5 - parent: 89 + pos: 15.5,-12.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10040 + - uid: 17280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -17.5,-0.5 - parent: 89 + pos: 7.5,-19.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10041 + - uid: 17281 components: - type: Transform - pos: -21.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 6.5,-26.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10042 + - uid: 17282 components: - type: Transform - pos: -25.5,-0.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -10.5,-36.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10043 + - uid: 17283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -17.5,-27.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10044 + - uid: 17284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -26.5,-24.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10046 + - uid: 17285 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-5.5 - parent: 89 + pos: -30.5,-15.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10047 + - uid: 17286 components: - type: Transform - pos: -9.5,-0.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -45.5,-14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10049 + - uid: 17287 components: - type: Transform rot: 1.5707963267948966 rad - pos: -6.5,-7.5 - parent: 89 + pos: -43.5,-5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 10050 + - uid: 17288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-9.5 - parent: 89 + pos: -76.5,-8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11065 + - uid: 17289 components: - type: Transform - pos: -37.5,5.5 - parent: 89 + pos: -81.5,-5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 11089 + - uid: 17290 components: - type: Transform - pos: -1.5,21.5 - parent: 89 - - uid: 11384 + pos: -80.5,5.5 + parent: 2 + - type: ApcPowerReceiver + powerLoad: 0 + - uid: 17291 components: - type: Transform rot: -1.5707963267948966 rad - pos: 21.5,29.5 - parent: 89 - - uid: 12588 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,29.5 - parent: 89 - - uid: 12864 + pos: -128.5,21.5 + parent: 2 + - uid: 17292 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,2.5 - parent: 89 + pos: -122.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12865 + - uid: 17293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,8.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: -111.5,15.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12866 + - uid: 17294 components: - type: Transform rot: 1.5707963267948966 rad - pos: -33.5,15.5 - parent: 89 + pos: -78.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12867 + - uid: 17295 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,8.5 - parent: 89 + pos: -65.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12868 + - uid: 17296 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,-30.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12870 + - uid: 17297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -6.5,5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12871 + - uid: 17298 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,1.5 - parent: 89 + pos: -13.5,9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12872 + - uid: 17299 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,1.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12873 + - uid: 17300 components: - type: Transform - pos: -1.5,3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 25.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - type: Timer - - uid: 12874 + - uid: 17301 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-3.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 32.5,18.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12875 + - uid: 17302 components: - type: Transform rot: -1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 89 + pos: 14.5,8.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12876 + - uid: 17303 components: - type: Transform rot: 3.141592653589793 rad - pos: -1.5,-17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12877 + pos: 47.5,-33.5 + parent: 2 + - uid: 17304 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12878 + pos: 53.5,-33.5 + parent: 2 + - uid: 17305 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-13.5 - parent: 89 + pos: 49.5,-33.5 + parent: 2 + - uid: 17306 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 51.5,-33.5 + parent: 2 + - uid: 17307 + components: + - type: Transform + pos: 8.5,9.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12879 + - uid: 17308 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,-13.5 - parent: 89 + pos: 8.5,11.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12880 + - uid: 17309 components: - type: Transform - pos: -36.5,-11.5 - parent: 89 + pos: 25.5,20.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12881 + - uid: 17310 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,7.5 + parent: 2 + - uid: 17311 components: - type: Transform rot: 1.5707963267948966 rad - pos: -41.5,-8.5 - parent: 89 + pos: 47.5,5.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12882 + - uid: 17312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -41.5,1.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 32.5,26.5 + parent: 2 + - uid: 17313 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -43.5,13.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12883 + - uid: 17314 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,3.5 - parent: 89 + pos: -36.5,13.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12884 + - uid: 17315 components: - type: Transform rot: 3.141592653589793 rad - pos: -53.5,3.5 - parent: 89 + pos: -22.5,16.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12885 + - uid: 17316 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,3.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -17.5,23.5 + parent: 2 + - type: Timer + - uid: 17317 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 25.5,42.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12886 + - uid: 17318 components: - type: Transform rot: 3.141592653589793 rad - pos: -68.5,3.5 - parent: 89 + pos: 20.5,14.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12887 + - uid: 17319 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,3.5 - parent: 89 + pos: 23.5,37.5 + parent: 2 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12888 + - uid: 17320 components: - type: Transform rot: 1.5707963267948966 rad - pos: -79.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12889 + pos: 27.5,-12.5 + parent: 2 + - uid: 17321 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 17322 components: - type: Transform rot: -1.5707963267948966 rad - pos: -73.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12890 + pos: 13.5,-13.5 + parent: 2 + - uid: 17323 components: - type: Transform - pos: -75.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12891 + pos: 14.5,-15.5 + parent: 2 + - uid: 17324 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12892 + pos: 36.5,27.5 + parent: 2 + - uid: 17325 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12893 + rot: 1.5707963267948966 rad + pos: 24.5,-12.5 + parent: 2 + - uid: 17326 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12894 + rot: 1.5707963267948966 rad + pos: 21.5,-12.5 + parent: 2 + - uid: 17327 components: - type: Transform - pos: -66.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12895 + rot: 1.5707963267948966 rad + pos: 18.5,-12.5 + parent: 2 + - uid: 17328 components: - type: Transform - pos: -56.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12896 + rot: -1.5707963267948966 rad + pos: 42.5,19.5 + parent: 2 + - uid: 17329 components: - type: Transform rot: -1.5707963267948966 rad - pos: -47.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12897 + pos: 54.5,-23.5 + parent: 2 + - uid: 17330 components: - type: Transform - pos: -53.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12898 + rot: -1.5707963267948966 rad + pos: 54.5,-26.5 + parent: 2 + - uid: 17331 components: - type: Transform - pos: -61.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12899 + rot: -1.5707963267948966 rad + pos: 54.5,-20.5 + parent: 2 + - uid: 17332 components: - type: Transform - pos: -68.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12900 + pos: -10.5,24.5 + parent: 2 + - uid: 17333 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 36.5,-19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18449 + - uid: 17334 + components: + - type: Transform + pos: -46.5,-19.5 + parent: 2 + - uid: 17335 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -59.5,-20.5 + parent: 2 + - uid: 17336 + components: + - type: Transform + pos: -123.5,5.5 + parent: 2 + - uid: 17337 components: - type: Transform rot: 1.5707963267948966 rad - pos: -73.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12901 + pos: -63.5,-20.5 + parent: 2 + - uid: 17338 components: - type: Transform rot: 3.141592653589793 rad - pos: -79.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12902 + pos: -123.5,2.5 + parent: 2 + - uid: 17339 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12903 + rot: -1.5707963267948966 rad + pos: 17.5,-17.5 + parent: 2 + - uid: 17340 components: - type: Transform rot: 1.5707963267948966 rad - pos: -82.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12904 + pos: 21.5,-17.5 + parent: 2 + - uid: 17341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12905 + rot: 1.5707963267948966 rad + pos: 10.5,-19.5 + parent: 2 + - uid: 17342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12906 + rot: 1.5707963267948966 rad + pos: 35.5,-17.5 + parent: 2 + - uid: 17343 + components: + - type: Transform + pos: 8.5,-14.5 + parent: 2 + - uid: 17344 + components: + - type: Transform + pos: -11.5,-25.5 + parent: 2 + - uid: 17345 components: - type: Transform rot: 1.5707963267948966 rad - pos: -88.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12907 + pos: 24.5,5.5 + parent: 2 + - uid: 17346 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-9.5 + parent: 2 + - uid: 17347 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -3.5,-9.5 + parent: 2 + - uid: 17348 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -117.5,-14.5 + parent: 2 + - uid: 17349 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -112.5,-20.5 + parent: 2 + - uid: 17350 + components: + - type: Transform + pos: -111.5,-13.5 + parent: 2 + - uid: 17351 + components: + - type: Transform + pos: -115.5,-5.5 + parent: 2 + - uid: 17352 + components: + - type: Transform + pos: -120.5,-5.5 + parent: 2 + - uid: 17353 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12908 + pos: -150.5,-1.5 + parent: 2 + - uid: 17354 + components: + - type: Transform + pos: -142.5,-0.5 + parent: 2 + - uid: 17355 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -142.5,-14.5 + parent: 2 + - uid: 17356 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12909 + pos: -150.5,-7.5 + parent: 2 + - uid: 17357 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12910 + pos: -133.5,-14.5 + parent: 2 + - uid: 17358 components: - type: Transform rot: -1.5707963267948966 rad - pos: -84.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12911 + pos: -76.5,-18.5 + parent: 2 + - uid: 24207 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12912 + pos: 7.5,0.5 + parent: 23919 + - uid: 24208 + components: + - type: Transform + pos: 5.5,-3.5 + parent: 23919 + - uid: 24209 + components: + - type: Transform + pos: 4.5,-11.5 + parent: 23919 + - uid: 26614 + components: + - type: Transform + pos: -13.5,-19.5 + parent: 24450 + - uid: 26615 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12913 + pos: -15.5,-19.5 + parent: 24450 + - uid: 26616 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-19.5 + parent: 24450 + - uid: 26617 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -16.5,-17.5 + parent: 24450 + - uid: 26618 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -10.5,-17.5 + parent: 24450 + - uid: 26619 components: - type: Transform rot: -1.5707963267948966 rad - pos: -91.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12914 + pos: -2.5,-16.5 + parent: 24450 + - uid: 26620 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12915 + pos: -7.5,-16.5 + parent: 24450 + - uid: 26621 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -14.5,-12.5 + parent: 24450 + - uid: 26622 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -17.5,-11.5 + parent: 24450 + - uid: 26623 + components: + - type: Transform + pos: -13.5,-5.5 + parent: 24450 + - uid: 26624 components: - type: Transform rot: 1.5707963267948966 rad - pos: -95.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12916 + pos: -11.5,-11.5 + parent: 24450 + - uid: 26625 components: - type: Transform - pos: -92.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12917 + rot: -1.5707963267948966 rad + pos: -17.5,-7.5 + parent: 24450 + - uid: 26626 + components: + - type: Transform + pos: -10.5,-5.5 + parent: 24450 + - uid: 26627 + components: + - type: Transform + pos: -35.5,3.5 + parent: 24450 + - uid: 26628 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12918 + pos: -4.5,-14.5 + parent: 24450 + - uid: 26629 components: - type: Transform - pos: -93.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12919 + rot: 3.141592653589793 rad + pos: 11.5,3.5 + parent: 24450 + - uid: 26630 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12920 + pos: -27.5,11.5 + parent: 24450 + - uid: 27829 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12921 + pos: 0.5,-12.5 + parent: 27260 +- proto: PoweredSmallLightEmpty + entities: + - uid: 17359 components: - type: Transform rot: 3.141592653589793 rad - pos: -106.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12922 + pos: 30.5,22.5 + parent: 2 +- proto: PoweredStrobeLightEmpty + entities: + - uid: 15972 components: - type: Transform rot: -1.5707963267948966 rad - pos: -101.5,8.5 - parent: 89 + pos: 48.5,15.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 10 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15973 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12923 + - type: DeviceLinkSink + links: + - 15995 + - uid: 15974 components: - type: Transform - pos: -104.5,11.5 - parent: 89 + pos: 19.5,-8.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 10 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15975 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12924 + - type: DeviceLinkSink + links: + - 15996 + - uid: 15976 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,-0.5 - parent: 89 + pos: 44.5,10.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 5 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15977 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12925 + - type: DeviceLinkSink + links: + - 15995 + - uid: 15978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-18.5 - parent: 89 + pos: 57.5,6.5 + parent: 2 + - type: AmbientSound + volume: 0 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15979 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12926 + - type: DeviceLinkSink + links: + - 15995 + - uid: 15980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,-8.5 - parent: 89 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 10 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15981 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12927 + - type: DeviceLinkSink + links: + - 15996 + - uid: 15982 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,0.5 - parent: 89 + rot: -1.5707963267948966 rad + pos: 37.5,-3.5 + parent: 2 + - type: AmbientSound + volume: 0 + range: 5 + sound: !type:SoundPathSpecifier + params: + variation: null + playOffsetSeconds: 0 + loop: False + referenceDistance: 1 + rolloffFactor: 1 + maxDistance: 15 + pitch: 1 + volume: 0 + path: /Audio/Misc/delta_alt.ogg + - type: PointLight + color: '#DA70D6FF' + - type: ContainerContainer + containers: + light_bulb: !type:ContainerSlot + showEnts: False + occludes: True + ent: 15983 - type: ApcPowerReceiver powerLoad: 0 - - uid: 12928 + - type: DeviceLinkSink + links: + - 15996 +- proto: PresentRandom + entities: + - uid: 17360 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12929 + pos: -131.59901,21.381063 + parent: 2 +- proto: PrinterDoc + entities: + - uid: 17361 components: - type: Transform - pos: -113.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12930 + pos: -49.5,11.5 + parent: 2 + - uid: 17362 + components: + - type: Transform + pos: 44.5,7.5 + parent: 2 + - uid: 17363 components: - type: Transform rot: 3.141592653589793 rad - pos: -113.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12931 + pos: -76.5,-6.5 + parent: 2 +- proto: Protolathe + entities: + - uid: 17364 components: - type: Transform - pos: -117.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12932 + pos: -16.5,-19.5 + parent: 2 + - uid: 17365 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12933 + pos: -100.5,-5.5 + parent: 2 + - uid: 26631 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -107.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12934 + pos: 3.5,1.5 + parent: 24450 + - uid: 26632 + components: + - type: Transform + pos: -27.5,1.5 + parent: 24450 +- proto: PuddleEgg + entities: + - uid: 17366 + components: + - type: Transform + pos: -23.5,32.5 + parent: 2 +- proto: PuddleSmear + entities: + - uid: 17367 + components: + - type: Transform + pos: -40.5,27.5 + parent: 2 +- proto: Rack + entities: + - uid: 17368 components: - type: Transform rot: -1.5707963267948966 rad - pos: -107.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12935 + pos: 32.5,7.5 + parent: 2 + - uid: 17369 components: - type: Transform - pos: -105.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12936 + rot: -1.5707963267948966 rad + pos: 31.5,7.5 + parent: 2 + - uid: 17370 components: - type: Transform - pos: -107.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12937 + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - uid: 17371 components: - type: Transform rot: 3.141592653589793 rad - pos: -111.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12938 + pos: 32.5,6.5 + parent: 2 + - uid: 17372 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12939 + pos: 32.5,5.5 + parent: 2 + - uid: 17373 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12940 + pos: -24.5,-15.5 + parent: 2 + - uid: 17374 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12941 + pos: -43.5,-3.5 + parent: 2 + - uid: 17375 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12942 + pos: 3.5,-27.5 + parent: 2 + - uid: 17377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12943 + pos: 49.5,-6.5 + parent: 2 + - uid: 17378 components: - type: Transform - pos: -107.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12962 + pos: 48.5,-6.5 + parent: 2 + - uid: 17379 components: - type: Transform rot: -1.5707963267948966 rad - pos: -119.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12963 + pos: 44.5,-6.5 + parent: 2 + - uid: 17380 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12964 + pos: -46.5,-10.5 + parent: 2 + - uid: 17381 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -121.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12965 + pos: 47.5,-6.5 + parent: 2 + - uid: 17382 components: - type: Transform - pos: -117.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12968 + pos: -33.5,-1.5 + parent: 2 + - uid: 17383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12969 + pos: -105.5,-7.5 + parent: 2 + - uid: 17384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12970 + pos: -104.5,-7.5 + parent: 2 + - uid: 17385 components: - type: Transform - pos: -129.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12971 + pos: -103.5,-7.5 + parent: 2 + - uid: 17386 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -131.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12973 + pos: -105.5,-10.5 + parent: 2 + - uid: 17387 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12974 + pos: -104.5,-10.5 + parent: 2 + - uid: 17388 components: - type: Transform - pos: -129.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12975 + pos: -103.5,-10.5 + parent: 2 + - uid: 17389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12976 + pos: -102.5,-7.5 + parent: 2 + - uid: 17390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12977 + pos: -102.5,-10.5 + parent: 2 + - uid: 17391 components: - type: Transform - pos: -130.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12978 + pos: -29.5,-15.5 + parent: 2 + - uid: 17392 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13106 + pos: -30.5,-15.5 + parent: 2 + - uid: 17393 components: - type: Transform - pos: -82.5,21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13107 + pos: 17.5,25.5 + parent: 2 + - uid: 17394 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,23.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13108 + pos: 16.5,25.5 + parent: 2 + - uid: 17395 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13109 + pos: -41.5,10.5 + parent: 2 + - uid: 17396 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13110 + pos: 45.5,-6.5 + parent: 2 + - uid: 17397 + components: + - type: Transform + pos: 46.5,-6.5 + parent: 2 + - uid: 17398 + components: + - type: Transform + pos: 22.5,11.5 + parent: 2 + - uid: 17399 + components: + - type: Transform + pos: -98.5,20.5 + parent: 2 + - uid: 17400 + components: + - type: Transform + pos: -97.5,20.5 + parent: 2 + - uid: 17401 + components: + - type: Transform + pos: -82.5,5.5 + parent: 2 + - uid: 17402 + components: + - type: Transform + pos: -81.5,5.5 + parent: 2 + - uid: 17403 + components: + - type: Transform + pos: -80.5,5.5 + parent: 2 + - uid: 17404 + components: + - type: Transform + pos: -78.5,-6.5 + parent: 2 + - uid: 17405 + components: + - type: Transform + pos: 8.5,-21.5 + parent: 2 + - uid: 17406 + components: + - type: Transform + pos: -68.5,21.5 + parent: 2 + - uid: 17407 + components: + - type: Transform + pos: -69.5,21.5 + parent: 2 + - uid: 17408 + components: + - type: Transform + pos: -72.5,21.5 + parent: 2 + - uid: 17409 + components: + - type: Transform + pos: -73.5,21.5 + parent: 2 + - uid: 17410 + components: + - type: Transform + pos: -51.5,32.5 + parent: 2 + - uid: 17411 + components: + - type: Transform + pos: -44.5,14.5 + parent: 2 + - uid: 17412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13111 + pos: -44.5,13.5 + parent: 2 + - uid: 17413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,40.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13112 + pos: -38.5,24.5 + parent: 2 + - uid: 17414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13113 + pos: -38.5,23.5 + parent: 2 + - uid: 17415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -85.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13370 + pos: -18.5,12.5 + parent: 2 + - uid: 17416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13371 + pos: -16.5,19.5 + parent: 2 + - uid: 17417 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13372 + rot: -1.5707963267948966 rad + pos: 7.5,27.5 + parent: 2 + - uid: 17418 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13373 + pos: 6.5,27.5 + parent: 2 + - uid: 17419 components: - type: Transform rot: -1.5707963267948966 rad - pos: -98.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13374 + pos: 8.5,27.5 + parent: 2 + - uid: 17420 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13375 + pos: 16.5,23.5 + parent: 2 + - uid: 17421 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13584 + pos: -20.5,-27.5 + parent: 2 + - uid: 17422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -59.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13585 + pos: 40.5,-9.5 + parent: 2 + - uid: 17423 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13586 + pos: -26.5,-25.5 + parent: 2 + - uid: 17424 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13587 + pos: -26.5,-24.5 + parent: 2 + - uid: 17425 components: - type: Transform - rot: 3.141592653589793 rad - pos: -63.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13588 + pos: -26.5,-23.5 + parent: 2 + - uid: 17426 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13589 + pos: 48.5,17.5 + parent: 2 + - uid: 17427 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13590 + pos: 50.5,-18.5 + parent: 2 + - uid: 17428 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13591 + pos: 51.5,-18.5 + parent: 2 + - uid: 17429 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -67.5,41.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13592 + pos: 35.5,-0.5 + parent: 2 + - uid: 17430 components: - type: Transform - pos: -63.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13593 + pos: -46.5,-9.5 + parent: 2 + - uid: 27830 components: - type: Transform - pos: -59.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13595 + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 27260 + - uid: 27831 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13596 + pos: -1.5,-8.5 + parent: 27260 +- proto: RadAutoInjector + entities: + - uid: 601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13597 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13598 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24542 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13599 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: RadiationCollector + entities: + - uid: 17431 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13600 + pos: -116.5,-5.5 + parent: 2 + - uid: 17432 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -55.5,36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13601 + pos: -116.5,-6.5 + parent: 2 + - uid: 17433 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.5,38.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13602 + pos: -135.5,-3.5 + parent: 2 + - uid: 17434 components: - type: Transform - pos: -54.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13604 + pos: -115.5,-6.5 + parent: 2 + - uid: 17435 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -58.5,47.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13605 + pos: -115.5,-5.5 + parent: 2 + - uid: 17436 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -64.5,47.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13606 + pos: -127.5,1.5 + parent: 2 + - uid: 17437 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,47.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13607 + pos: -126.5,1.5 + parent: 2 + - uid: 17438 components: - type: Transform - pos: -51.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13608 + pos: -125.5,6.5 + parent: 2 + - uid: 17439 components: - type: Transform - pos: -51.5,41.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13610 + pos: -135.5,-11.5 + parent: 2 +- proto: RadiationCollectorNoTank + entities: + - uid: 17440 components: - type: Transform - pos: -52.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13611 + pos: -126.5,6.5 + parent: 2 + - uid: 17441 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,34.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13617 + pos: -125.5,1.5 + parent: 2 + - uid: 17442 components: - type: Transform - pos: 46.5,15.5 - parent: 89 - - uid: 13693 + pos: -127.5,6.5 + parent: 2 +- proto: RadioHandheld + entities: + - uid: 17443 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,36.5 - parent: 89 - - uid: 13715 + pos: 48.5,17.5 + parent: 2 +- proto: RadioJammer + entities: + - uid: 17444 components: - type: Transform rot: -1.5707963267948966 rad - pos: -115.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 13716 + pos: 31.591637,39.734406 + parent: 2 +- proto: Railing + entities: + - uid: 17445 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13722 + pos: -43.5,-21.5 + parent: 2 + - uid: 17446 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13723 + rot: -1.5707963267948966 rad + pos: -8.5,-6.5 + parent: 2 + - uid: 17447 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13829 + rot: -1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 17448 components: - type: Transform rot: 3.141592653589793 rad - pos: -56.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13830 + pos: -10.5,-8.5 + parent: 2 + - uid: 17449 components: - type: Transform rot: 3.141592653589793 rad - pos: -69.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13831 - components: - - type: Transform - pos: -71.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13902 + pos: -9.5,-8.5 + parent: 2 + - uid: 17450 components: - type: Transform - pos: -44.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13903 + rot: 1.5707963267948966 rad + pos: -27.5,-8.5 + parent: 2 + - uid: 17451 components: - type: Transform - pos: -37.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13955 + rot: 1.5707963267948966 rad + pos: -27.5,-6.5 + parent: 2 + - uid: 17452 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13974 + pos: -27.5,-4.5 + parent: 2 + - uid: 17453 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13975 + pos: -20.5,-18.5 + parent: 2 + - uid: 17454 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13976 + pos: -18.5,-18.5 + parent: 2 + - uid: 17455 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13977 + pos: -21.5,-17.5 + parent: 2 + - uid: 17456 components: - type: Transform rot: 1.5707963267948966 rad - pos: -30.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13978 - components: - - type: Transform - pos: -33.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13979 + pos: -21.5,-16.5 + parent: 2 + - uid: 17457 components: - type: Transform - pos: -33.5,29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13980 + rot: 1.5707963267948966 rad + pos: -21.5,-15.5 + parent: 2 + - uid: 17458 components: - type: Transform - pos: -33.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13981 + rot: 1.5707963267948966 rad + pos: 39.5,8.5 + parent: 2 + - uid: 17459 components: - type: Transform - pos: -26.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13982 + rot: 1.5707963267948966 rad + pos: 39.5,7.5 + parent: 2 + - uid: 17460 components: - type: Transform - pos: -26.5,29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13983 + rot: 1.5707963267948966 rad + pos: 39.5,6.5 + parent: 2 + - uid: 17461 components: - type: Transform - pos: -26.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13985 + rot: 1.5707963267948966 rad + pos: 39.5,5.5 + parent: 2 + - uid: 17462 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13986 + pos: 40.5,3.5 + parent: 2 + - uid: 17463 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14065 + pos: 41.5,3.5 + parent: 2 + - uid: 17464 components: - type: Transform - pos: 11.5,24.5 - parent: 89 - - uid: 14070 + rot: 1.5707963267948966 rad + pos: -27.5,-5.5 + parent: 2 + - uid: 17465 components: - type: Transform - pos: 6.5,24.5 - parent: 89 - - uid: 14256 + pos: -48.5,-20.5 + parent: 2 + - uid: 17466 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14257 + pos: -49.5,-20.5 + parent: 2 + - uid: 17467 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14258 + pos: -50.5,-19.5 + parent: 2 + - uid: 17468 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14259 + pos: -42.5,-19.5 + parent: 2 + - uid: 17469 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -15.5,-8.5 + parent: 2 + - uid: 17470 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14261 + pos: -42.5,-20.5 + parent: 2 + - uid: 17471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 15.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 14519 + pos: -44.5,-21.5 + parent: 2 + - uid: 17472 components: - type: Transform - rot: 3.141592653589793 rad - pos: -79.5,-3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14522 + rot: -1.5707963267948966 rad + pos: 1.5,42.5 + parent: 2 + - uid: 17473 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,-6.5 - parent: 89 - - uid: 14968 + rot: -1.5707963267948966 rad + pos: 1.5,41.5 + parent: 2 + - uid: 17474 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15065 + rot: -1.5707963267948966 rad + pos: 1.5,40.5 + parent: 2 + - uid: 17475 components: - type: Transform - pos: 10.5,42.5 - parent: 89 - - uid: 15262 + pos: -19.5,22.5 + parent: 2 + - uid: 17476 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,35.5 - parent: 89 - - type: Timer - - uid: 15320 + pos: -20.5,22.5 + parent: 2 + - uid: 17477 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,49.5 - parent: 89 - - uid: 15322 + pos: -21.5,23.5 + parent: 2 + - uid: 17478 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,49.5 - parent: 89 - - uid: 15323 + rot: 3.141592653589793 rad + pos: 46.5,23.5 + parent: 2 + - uid: 17479 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,47.5 - parent: 89 - - uid: 15324 + pos: 48.5,23.5 + parent: 2 + - uid: 17480 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,47.5 - parent: 89 - - uid: 15386 + pos: 47.5,23.5 + parent: 2 + - uid: 17481 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,30.5 - parent: 89 - - uid: 15427 + rot: 3.141592653589793 rad + pos: 45.5,23.5 + parent: 2 + - uid: 17482 components: - type: Transform - rot: 3.141592653589793 rad - pos: 14.5,36.5 - parent: 89 - - uid: 15449 + rot: 1.5707963267948966 rad + pos: 49.5,22.5 + parent: 2 + - uid: 17483 components: - type: Transform - pos: 5.5,30.5 - parent: 89 - - uid: 15542 + pos: -10.5,-8.5 + parent: 2 + - uid: 17484 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,33.5 - parent: 89 - - uid: 15702 + pos: -8.5,-6.5 + parent: 2 + - uid: 17485 components: - type: Transform - pos: -110.5,10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15732 + pos: -9.5,-8.5 + parent: 2 + - uid: 17486 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15734 + rot: 1.5707963267948966 rad + pos: -8.5,-7.5 + parent: 2 + - uid: 17487 components: - type: Transform - pos: -95.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15738 + pos: -7.5,-5.5 + parent: 2 + - uid: 17488 components: - type: Transform - pos: -89.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15739 + pos: -6.5,-5.5 + parent: 2 + - uid: 17489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -105.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15740 + pos: -5.5,-5.5 + parent: 2 + - uid: 17490 components: - type: Transform - pos: -98.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15747 + pos: -3.5,-5.5 + parent: 2 + - uid: 17491 components: - type: Transform rot: 1.5707963267948966 rad - pos: -105.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15749 + pos: -6.5,-6.5 + parent: 2 + - uid: 17492 components: - type: Transform - pos: -84.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15751 + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 17493 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15752 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 17494 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15753 + pos: -6.5,-8.5 + parent: 2 + - uid: 17495 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15765 + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 + - uid: 17496 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 14.5,33.5 - parent: 89 - - uid: 15912 + pos: -9.5,-5.5 + parent: 2 + - uid: 17497 components: - type: Transform - pos: 18.5,23.5 - parent: 89 - - uid: 16048 + pos: -46.5,-21.5 + parent: 2 + - uid: 24210 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,27.5 - parent: 89 - - uid: 16240 - components: - - type: Transform - pos: 6.5,3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16241 + pos: 4.5,-11.5 + parent: 23919 + - uid: 24211 components: - type: Transform - pos: 16.5,3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16242 + rot: 1.5707963267948966 rad + pos: 4.5,-11.5 + parent: 23919 + - uid: 27832 components: - type: Transform - pos: 27.5,3.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16243 + rot: -1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 27260 + - uid: 27833 components: - type: Transform - pos: 19.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16244 + rot: -1.5707963267948966 rad + pos: 0.5,-1.5 + parent: 27260 + - uid: 27834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16245 + pos: 0.5,-2.5 + parent: 27260 + - uid: 27835 components: - type: Transform rot: 1.5707963267948966 rad - pos: 16.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16434 + pos: 0.5,-0.5 + parent: 27260 + - uid: 27836 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16435 + pos: 0.5,-1.5 + parent: 27260 + - uid: 27837 components: - type: Transform rot: 1.5707963267948966 rad - pos: -113.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16437 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16451 + pos: 0.5,-2.5 + parent: 27260 +- proto: RailingCorner + entities: + - uid: 17498 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16452 + pos: -47.5,-21.5 + parent: 2 + - uid: 17499 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-7.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16453 + pos: -50.5,-20.5 + parent: 2 + - uid: 17500 components: - type: Transform rot: 1.5707963267948966 rad - pos: -45.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16500 + pos: -14.5,-8.5 + parent: 2 + - uid: 17501 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16505 + pos: -21.5,22.5 + parent: 2 + - uid: 17502 components: - type: Transform - pos: -15.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16507 + rot: 1.5707963267948966 rad + pos: 49.5,23.5 + parent: 2 + - uid: 17503 components: - type: Transform - pos: 27.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16518 + pos: -8.5,-8.5 + parent: 2 + - uid: 17504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 13.5,19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16519 + pos: -42.5,-21.5 + parent: 2 +- proto: RailingCornerSmall + entities: + - uid: 17505 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16520 + pos: -21.5,-18.5 + parent: 2 + - uid: 17506 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16529 + pos: 39.5,3.5 + parent: 2 + - uid: 17507 components: - type: Transform - pos: 20.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16530 + rot: 1.5707963267948966 rad + pos: -47.5,-20.5 + parent: 2 + - uid: 17508 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16578 + pos: -8.5,-8.5 + parent: 2 + - uid: 17509 components: - type: Transform rot: 3.141592653589793 rad - pos: 22.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17062 + pos: -7.5,-8.5 + parent: 2 +- proto: RandomArtifactSpawner + entities: + - uid: 17510 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-25.5 - parent: 89 - - uid: 17063 + pos: -5.5,-44.5 + parent: 2 + - uid: 17511 components: - type: Transform - pos: 50.5,-27.5 - parent: 89 - - uid: 17064 + pos: -55.5,-15.5 + parent: 2 +- proto: RandomBoard + entities: + - uid: 17512 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,-31.5 - parent: 89 - - uid: 17065 + pos: -51.5,21.5 + parent: 2 + - uid: 17513 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-31.5 - parent: 89 - - uid: 17077 + pos: -49.5,21.5 + parent: 2 +- proto: RandomDrinkBottle + entities: + - uid: 17514 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-31.5 - parent: 89 - - uid: 17130 + pos: -52.5,9.5 + parent: 2 +- proto: RandomDrinkGlass + entities: + - uid: 17515 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,35.5 - parent: 89 - - type: Timer - - uid: 17132 + pos: -61.5,5.5 + parent: 2 + - uid: 17516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,35.5 - parent: 89 - - uid: 17170 + pos: -89.5,6.5 + parent: 2 + - uid: 17517 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-33.5 - parent: 89 - - uid: 17294 + pos: -25.5,-3.5 + parent: 2 + - uid: 17518 components: - type: Transform - pos: -50.5,48.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17626 + pos: -24.5,-3.5 + parent: 2 + - uid: 17519 components: - type: Transform - pos: 1.5,13.5 - parent: 89 - - uid: 17627 + pos: -22.5,-2.5 + parent: 2 +- proto: RandomDrinkSoda + entities: + - uid: 17520 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,8.5 - parent: 89 - - uid: 17686 + pos: -23.5,-3.5 + parent: 2 + - uid: 17521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,5.5 - parent: 89 - - uid: 17875 + pos: -26.5,-3.5 + parent: 2 +- proto: RandomFoodMeal + entities: + - uid: 17522 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-19.5 - parent: 89 - - uid: 17878 + pos: 18.5,21.5 + parent: 2 + - uid: 17523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-26.5 - parent: 89 - - uid: 17918 + pos: -19.5,-5.5 + parent: 2 + - uid: 17524 components: - type: Transform - pos: 44.5,-27.5 - parent: 89 - - uid: 17922 + pos: -22.5,-6.5 + parent: 2 + - uid: 17525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-26.5 - parent: 89 - - uid: 17929 + pos: -16.5,-2.5 + parent: 2 + - uid: 17526 components: - type: Transform - pos: 41.5,-28.5 - parent: 89 - - uid: 18172 + pos: -23.5,-6.5 + parent: 2 + - uid: 17527 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-25.5 - parent: 89 - - uid: 18173 + pos: -16.5,-3.5 + parent: 2 + - uid: 17528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,-26.5 - parent: 89 - - uid: 18174 + pos: -16.5,-5.5 + parent: 2 + - uid: 17529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,-19.5 - parent: 89 - - uid: 18311 + pos: -16.5,-2.5 + parent: 2 + - uid: 17530 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,-6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18312 + pos: -16.5,-1.5 + parent: 2 + - uid: 17531 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18313 + pos: -16.5,-4.5 + parent: 2 +- proto: RandomFoodSingle + entities: + - uid: 17532 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18321 + pos: -43.5,-17.5 + parent: 2 + - uid: 17533 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18322 + pos: -44.5,21.5 + parent: 2 + - uid: 17534 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18323 + pos: -19.5,-2.5 + parent: 2 + - uid: 17535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18324 + pos: -16.5,-4.5 + parent: 2 + - uid: 17536 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18326 + pos: -16.5,-1.5 + parent: 2 +- proto: RandomInstruments + entities: + - uid: 17537 components: - type: Transform - pos: 64.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18328 + pos: -37.5,-17.5 + parent: 2 + - uid: 17538 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 52.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18359 + pos: -31.5,-5.5 + parent: 2 + - uid: 17539 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19399 + pos: -31.5,-6.5 + parent: 2 + - uid: 17540 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-31.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19401 + pos: -82.5,2.5 + parent: 2 + - uid: 17541 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-31.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19537 + pos: -44.5,13.5 + parent: 2 + - uid: 17542 components: - type: Transform - pos: 37.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19547 + pos: -16.5,19.5 + parent: 2 + - uid: 17543 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -122.5,-13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19559 + pos: -52.5,8.5 + parent: 2 + - uid: 17544 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -31.5,-1.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19560 + pos: 21.5,-3.5 + parent: 2 + - uid: 26633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19561 + pos: -29.5,3.5 + parent: 24450 +- proto: RandomPainting + entities: + - uid: 17545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19562 + pos: 18.5,9.5 + parent: 2 + - uid: 17546 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19563 + pos: 34.5,17.5 + parent: 2 + - uid: 17547 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -56.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19564 + pos: 30.5,21.5 + parent: 2 + - uid: 17548 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19566 + pos: 23.5,38.5 + parent: 2 + - uid: 17549 components: - type: Transform - pos: -114.5,-10.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19573 + pos: 26.5,10.5 + parent: 2 + - uid: 17550 components: - type: Transform rot: 3.141592653589793 rad - pos: -110.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19574 + pos: 19.5,20.5 + parent: 2 + - uid: 26634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19575 + rot: 3.141592653589793 rad + pos: -32.5,6.5 + parent: 24450 + - uid: 26635 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -109.5,-16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19582 + rot: 3.141592653589793 rad + pos: -33.5,13.5 + parent: 24450 + - uid: 26636 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,7.5 + parent: 24450 + - uid: 26637 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 11.5,13.5 + parent: 24450 +- proto: RandomPosterAny + entities: + - uid: 17551 components: - type: Transform - pos: -5.5,-34.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19583 + pos: -29.5,-18.5 + parent: 2 + - uid: 17552 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-28.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20015 + pos: -52.5,28.5 + parent: 2 + - uid: 17553 components: - type: Transform - pos: -6.5,21.5 - parent: 89 - - uid: 20095 + pos: -38.5,25.5 + parent: 2 + - uid: 17554 components: - type: Transform - pos: 43.5,-11.5 - parent: 89 - - uid: 20096 + pos: 28.5,-15.5 + parent: 2 +- proto: RandomPosterContraband + entities: + - uid: 17555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 43.5,-16.5 - parent: 89 - - uid: 20097 + pos: -45.5,-11.5 + parent: 2 + - uid: 17556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-16.5 - parent: 89 - - uid: 20098 + pos: -36.5,-2.5 + parent: 2 + - uid: 17557 components: - type: Transform - pos: 51.5,-11.5 - parent: 89 - - uid: 20359 + pos: -47.5,22.5 + parent: 2 + - uid: 17558 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-25.5 - parent: 89 - - uid: 20828 + pos: 58.5,-20.5 + parent: 2 + - uid: 17559 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,17.5 - parent: 89 - - uid: 20958 + pos: 58.5,-22.5 + parent: 2 + - uid: 17560 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,16.5 - parent: 89 - - type: Timer - - uid: 21078 + pos: 25.5,-15.5 + parent: 2 + - uid: 26638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,19.5 - parent: 89 - - uid: 21079 + pos: 2.5,10.5 + parent: 24450 + - uid: 26639 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,18.5 - parent: 89 - - uid: 21080 + pos: 2.5,11.5 + parent: 24450 + - uid: 26640 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,22.5 - parent: 89 - - type: Timer - - uid: 21081 + pos: 3.5,9.5 + parent: 24450 +- proto: RandomPosterLegit + entities: + - uid: 17561 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,19.5 - parent: 89 - - uid: 21267 + pos: 54.5,-18.5 + parent: 2 + - uid: 17562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,11.5 - parent: 89 - - uid: 21309 + rot: 1.5707963267948966 rad + pos: 55.5,-19.5 + parent: 2 + - uid: 17563 components: - type: Transform - pos: -8.5,21.5 - parent: 89 - - uid: 21574 + pos: 22.5,-15.5 + parent: 2 + - uid: 17564 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,17.5 - parent: 89 - - uid: 21749 + pos: 11.5,-14.5 + parent: 2 + - uid: 17565 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-25.5 - parent: 89 - - uid: 21793 + pos: 19.5,-15.5 + parent: 2 + - uid: 17566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-15.5 - parent: 89 - - uid: 21794 + pos: -42.5,-6.5 + parent: 2 + - uid: 17567 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-19.5 - parent: 89 - - uid: 21795 + pos: 11.5,0.5 + parent: 2 + - uid: 17568 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 38.5,-23.5 - parent: 89 - - uid: 21796 + pos: -7.5,0.5 + parent: 2 + - uid: 17569 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,-23.5 - parent: 89 - - uid: 21810 + pos: 29.5,-2.5 + parent: 2 + - uid: 17570 components: - type: Transform - pos: 42.5,-18.5 - parent: 89 - - uid: 21840 + pos: 10.5,-10.5 + parent: 2 + - uid: 17571 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-33.5 - parent: 89 - - uid: 21841 + pos: 21.5,-7.5 + parent: 2 + - uid: 17572 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 56.5,-22.5 - parent: 89 - - uid: 22070 + pos: 30.5,-4.5 + parent: 2 + - uid: 17573 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-12.5 - parent: 89 - - uid: 22071 + pos: -97.5,-3.5 + parent: 2 + - uid: 17574 components: - type: Transform - pos: -134.5,-2.5 - parent: 89 - - uid: 23645 + pos: -82.5,22.5 + parent: 2 + - uid: 17575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-23.5 - parent: 89 - - uid: 24604 + pos: -86.5,31.5 + parent: 2 + - uid: 17576 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-26.5 - parent: 22565 - - uid: 24605 + pos: 45.5,-10.5 + parent: 2 + - uid: 17577 components: - type: Transform rot: 3.141592653589793 rad - pos: -16.5,-26.5 - parent: 22565 - - uid: 24606 + pos: 4.5,4.5 + parent: 2 + - uid: 17578 components: - type: Transform - pos: 10.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24821 - - uid: 24607 + pos: 47.5,-21.5 + parent: 2 + - uid: 17579 components: - type: Transform - pos: -34.5,12.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24820 - - uid: 24608 + pos: 47.5,-18.5 + parent: 2 + - uid: 17580 components: - type: Transform - pos: -34.5,6.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24819 - - uid: 24609 + pos: 42.5,-34.5 + parent: 2 + - uid: 17581 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,10.5 - parent: 22565 - - uid: 24610 + pos: 54.5,-28.5 + parent: 2 + - uid: 17582 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,6.5 - parent: 22565 - - uid: 24611 + pos: 52.5,-24.5 + parent: 2 + - uid: 17583 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,0.5 - parent: 22565 - - uid: 24612 + pos: 41.5,-24.5 + parent: 2 + - uid: 17584 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-0.5 - parent: 22565 - - uid: 24613 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,0.5 - parent: 22565 - - uid: 24614 + pos: -2.5,-2.5 + parent: 2 + - uid: 17585 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,8.5 - parent: 22565 - - uid: 24615 + pos: 18.5,-3.5 + parent: 2 + - uid: 17586 components: - type: Transform - pos: -13.5,10.5 - parent: 22565 - - uid: 24616 + pos: 22.5,-0.5 + parent: 2 + - uid: 17587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,7.5 - parent: 22565 - - uid: 24617 + pos: 24.5,-4.5 + parent: 2 + - uid: 17588 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,4.5 - parent: 22565 - - uid: 24618 + pos: 9.5,-1.5 + parent: 2 + - uid: 17589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,4.5 - parent: 22565 - - uid: 24619 + pos: 1.5,-2.5 + parent: 2 + - uid: 17590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,1.5 - parent: 22565 - - uid: 24620 + pos: 6.5,-8.5 + parent: 2 + - uid: 17591 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 22565 - - uid: 24621 + pos: 14.5,-13.5 + parent: 2 + - uid: 17592 components: - type: Transform - pos: 10.5,6.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24815 - - uid: 24622 + pos: 35.5,-14.5 + parent: 2 + - uid: 17593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-0.5 - parent: 22565 - - uid: 24623 + pos: 32.5,-15.5 + parent: 2 + - uid: 17594 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,18.5 - parent: 22565 - - uid: 24624 + pos: 41.5,-17.5 + parent: 2 + - uid: 17595 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-1.5 - parent: 22565 - - uid: 24625 + pos: 40.5,-1.5 + parent: 2 + - uid: 17596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,-1.5 - parent: 22565 - - uid: 24626 + pos: 44.5,-4.5 + parent: 2 + - uid: 17597 components: - type: Transform - pos: 2.5,6.5 - parent: 22565 - - uid: 24627 + pos: 40.5,-21.5 + parent: 2 + - uid: 17598 components: - type: Transform - pos: 10.5,12.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24822 - - uid: 24628 + pos: 37.5,-25.5 + parent: 2 + - uid: 23855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,11.5 - parent: 22565 - - uid: 24629 + pos: 6.5,-9.5 + parent: 23711 + - uid: 23856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,7.5 - parent: 22565 - - uid: 24630 + pos: 0.5,-9.5 + parent: 23711 + - uid: 24212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,0.5 - parent: 22565 - - uid: 24631 + pos: 1.5,2.5 + parent: 23919 + - uid: 24213 components: - type: Transform - pos: -4.5,10.5 - parent: 22565 - - uid: 24632 + pos: 1.5,-0.5 + parent: 23919 + - uid: 24214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,0.5 - parent: 22565 - - uid: 24633 + pos: 1.5,-7.5 + parent: 23919 + - uid: 24215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,13.5 - parent: 22565 - - uid: 24634 + pos: 3.5,-5.5 + parent: 23919 + - uid: 24216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,22.5 - parent: 22565 - - uid: 24635 + pos: 6.5,-10.5 + parent: 23919 + - uid: 26641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,14.5 - parent: 22565 - - uid: 24636 + pos: -21.5,-1.5 + parent: 24450 + - uid: 26642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,24.5 - parent: 22565 - - uid: 24637 + pos: -16.5,-4.5 + parent: 24450 + - uid: 26643 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,3.5 - parent: 22565 - - uid: 24638 + pos: -7.5,-4.5 + parent: 24450 + - uid: 26644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,3.5 - parent: 22565 - - uid: 24639 + pos: -2.5,-1.5 + parent: 24450 + - uid: 26645 components: - type: Transform - pos: -25.5,8.5 - parent: 22565 - - uid: 24640 + pos: -26.5,-1.5 + parent: 24450 + - uid: 26646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,8.5 - parent: 22565 - - uid: 24641 + pos: 2.5,-1.5 + parent: 24450 + - uid: 26647 components: - type: Transform - pos: -19.5,10.5 - parent: 22565 - - uid: 24642 + pos: -24.5,22.5 + parent: 24450 + - uid: 26648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,25.5 - parent: 22565 - - uid: 24643 + pos: -19.5,22.5 + parent: 24450 + - uid: 26649 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,25.5 - parent: 22565 - - uid: 24644 + pos: 8.5,4.5 + parent: 24450 + - uid: 26650 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,18.5 - parent: 22565 - - uid: 24645 + pos: 8.5,8.5 + parent: 24450 + - uid: 26651 components: - type: Transform - pos: -34.5,9.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24818 - - uid: 24646 + pos: -32.5,4.5 + parent: 24450 + - uid: 26652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,1.5 - parent: 22565 - - uid: 25550 + pos: -32.5,8.5 + parent: 24450 + - uid: 26653 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-9.5 - parent: 18153 - - uid: 25551 + pos: -32.5,12.5 + parent: 24450 + - uid: 26654 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-2.5 - parent: 18153 - - uid: 25552 + pos: 8.5,12.5 + parent: 24450 + - uid: 26655 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 18153 - - uid: 25553 + pos: -4.5,22.5 + parent: 24450 + - uid: 26656 components: - type: Transform - pos: 1.5,-4.5 - parent: 18153 - - uid: 25554 + pos: 0.5,22.5 + parent: 24450 + - uid: 26657 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-9.5 - parent: 18153 - - uid: 25555 + pos: 0.5,16.5 + parent: 24450 + - uid: 26658 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,-4.5 - parent: 18153 - - uid: 25556 + pos: -4.5,16.5 + parent: 24450 + - uid: 26659 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-11.5 - parent: 18153 - - uid: 25619 + pos: -19.5,16.5 + parent: 24450 + - uid: 26660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-25.5 - parent: 89 - - uid: 25620 + pos: -24.5,16.5 + parent: 24450 + - uid: 27838 components: - type: Transform rot: 3.141592653589793 rad - pos: 35.5,-27.5 - parent: 89 - - uid: 25847 + pos: -4.5,-7.5 + parent: 27260 + - uid: 27839 components: - type: Transform - pos: -26.5,18.5 - parent: 89 -- proto: PoweredlightExterior - entities: - - uid: 10045 + rot: 3.141592653589793 rad + pos: -6.5,-9.5 + parent: 27260 + - uid: 27840 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 21610 + rot: 3.141592653589793 rad + pos: 3.5,-13.5 + parent: 27260 + - uid: 27841 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6243 -- proto: PoweredLightPostSmall - entities: - - uid: 15031 + rot: 3.141592653589793 rad + pos: 7.5,-9.5 + parent: 27260 + - uid: 27842 components: - type: Transform - pos: -28.5,45.5 - parent: 89 - - uid: 17005 + rot: 3.141592653589793 rad + pos: 3.5,-4.5 + parent: 27260 + - uid: 27843 components: - type: Transform - pos: -31.5,45.5 - parent: 89 - - uid: 17133 + rot: 3.141592653589793 rad + pos: -1.5,-3.5 + parent: 27260 + - uid: 27844 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,39.5 - parent: 89 - - type: Timer - - uid: 17134 + pos: 1.5,-10.5 + parent: 27260 + - uid: 27845 components: - type: Transform rot: 3.141592653589793 rad - pos: -28.5,39.5 - parent: 89 - - type: Timer - - uid: 20524 + pos: -1.5,-12.5 + parent: 27260 +- proto: RandomSnacks + entities: + - uid: 17599 components: - type: Transform - pos: -131.5,-15.5 - parent: 89 - - uid: 20527 + pos: -70.5,5.5 + parent: 2 + - uid: 17600 components: - type: Transform - pos: -126.5,-15.5 - parent: 89 -- proto: PoweredlightSodium + pos: -84.5,4.5 + parent: 2 +- proto: RandomSoap entities: - - uid: 10054 + - uid: 17601 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,-2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18288 + pos: -38.5,-15.5 + parent: 2 + - uid: 17602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18289 + pos: -37.5,33.5 + parent: 2 + - uid: 17603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18290 + pos: -22.5,33.5 + parent: 2 + - uid: 17604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18291 + pos: 40.5,17.5 + parent: 2 + - uid: 17605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 18292 + pos: -38.5,8.5 + parent: 2 + - uid: 17606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-21.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 24647 + pos: 47.5,-33.5 + parent: 2 + - uid: 17607 components: - type: Transform - pos: -16.5,-21.5 - parent: 22565 - - uid: 24648 + pos: -96.5,7.5 + parent: 2 + - uid: 17608 components: - type: Transform - pos: -10.5,-21.5 - parent: 22565 -- proto: PoweredSmallLight + pos: -96.5,8.5 + parent: 2 +- proto: RandomSpawner entities: - - uid: 624 + - uid: 17609 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 798 + pos: 47.5,19.5 + parent: 2 + - uid: 17610 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 799 + pos: 45.5,23.5 + parent: 2 + - uid: 17611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 973 + pos: 45.5,22.5 + parent: 2 + - uid: 17612 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 54.5,4.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1064 + pos: 46.5,23.5 + parent: 2 + - uid: 17613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,26.5 - parent: 89 - - uid: 1606 + pos: 46.5,19.5 + parent: 2 + - uid: 17614 components: - type: Transform - pos: -1.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1610 + pos: 48.5,19.5 + parent: 2 + - uid: 17615 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-22.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1632 + pos: 48.5,20.5 + parent: 2 + - uid: 17616 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,2.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 1633 + pos: 47.5,20.5 + parent: 2 + - uid: 17617 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 57.5,6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 2394 + pos: 48.5,23.5 + parent: 2 + - uid: 17618 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 2481 + pos: 49.5,22.5 + parent: 2 + - uid: 17619 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 30.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 2505 + pos: -61.5,14.5 + parent: 2 + - uid: 17620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: Timer - - uid: 3263 + pos: -37.5,3.5 + parent: 2 + - uid: 17621 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,20.5 - parent: 89 - - uid: 5119 + pos: -89.5,27.5 + parent: 2 + - uid: 17622 components: - type: Transform - pos: 3.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - type: DeviceLinkSink - links: - - 21626 - - uid: 6005 + pos: -88.5,26.5 + parent: 2 + - uid: 17623 components: - type: Transform - pos: -73.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6006 + pos: -67.5,9.5 + parent: 2 + - uid: 17624 components: - type: Transform - rot: 3.141592653589793 rad - pos: -73.5,-17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6007 + pos: -63.5,7.5 + parent: 2 + - uid: 17625 components: - type: Transform - rot: 3.141592653589793 rad - pos: -70.5,-17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6009 + pos: -31.5,3.5 + parent: 2 + - uid: 17626 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -71.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 6010 + pos: -29.5,17.5 + parent: 2 + - uid: 17627 components: - type: Transform - pos: -70.5,-9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7097 + pos: -65.5,10.5 + parent: 2 + - uid: 17628 components: - type: Transform - pos: 7.5,27.5 - parent: 89 - - uid: 7140 + pos: -67.5,14.5 + parent: 2 + - uid: 17629 components: - type: Transform - pos: 19.5,26.5 - parent: 89 - - uid: 7705 + pos: -58.5,13.5 + parent: 2 + - uid: 17630 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -100.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7706 + pos: -53.5,14.5 + parent: 2 + - uid: 17631 components: - type: Transform - pos: -96.5,29.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 7707 + pos: -52.5,13.5 + parent: 2 + - uid: 17632 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -95.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 8205 + pos: -70.5,3.5 + parent: 2 + - uid: 17633 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,30.5 - parent: 89 - - uid: 9800 + pos: -77.5,3.5 + parent: 2 + - uid: 17634 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 5.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 9811 + pos: -64.5,-0.5 + parent: 2 + - uid: 17635 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,17.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10033 + pos: -56.5,4.5 + parent: 2 + - uid: 17636 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -33.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10034 + pos: -54.5,-0.5 + parent: 2 + - uid: 17637 components: - type: Transform - pos: -37.5,0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10035 + pos: -70.5,-1.5 + parent: 2 + - uid: 17638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -37.5,-6.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10424 + pos: -23.5,1.5 + parent: 2 + - uid: 17639 components: - type: Transform - pos: 15.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 10782 + pos: -26.5,2.5 + parent: 2 + - uid: 17640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,16.5 - parent: 89 - - uid: 11052 + pos: -30.5,10.5 + parent: 2 + - uid: 17641 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,32.5 - parent: 89 - - uid: 11059 + pos: 4.5,26.5 + parent: 2 + - uid: 17642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,27.5 - parent: 89 - - uid: 12957 + pos: -85.5,29.5 + parent: 2 + - uid: 17643 components: - type: Transform - pos: -116.5,-0.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12958 + pos: -16.5,15.5 + parent: 2 + - uid: 17644 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12959 + pos: -21.5,21.5 + parent: 2 + - uid: 17645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -115.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12960 + pos: -80.5,9.5 + parent: 2 + - uid: 17646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12961 + pos: -87.5,9.5 + parent: 2 + - uid: 17647 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -132.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12981 + pos: -72.5,17.5 + parent: 2 + - uid: 17648 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -90.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12982 + pos: -72.5,13.5 + parent: 2 + - uid: 17649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 12986 + pos: -64.5,18.5 + parent: 2 + - uid: 17650 components: - type: Transform - pos: -76.5,13.5 - parent: 89 - - uid: 13114 + pos: -57.5,16.5 + parent: 2 + - uid: 17651 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13987 + pos: -47.5,15.5 + parent: 2 + - uid: 17652 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13988 + pos: -43.5,18.5 + parent: 2 + - uid: 17653 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13989 + pos: -36.5,16.5 + parent: 2 + - uid: 17654 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 13990 + pos: -86.5,3.5 + parent: 2 + - uid: 17655 components: - type: Transform rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14015 + pos: 9.5,36.5 + parent: 2 + - uid: 17656 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14016 + pos: -83.5,24.5 + parent: 2 + - uid: 17657 components: - type: Transform - pos: 27.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14017 + pos: -61.5,33.5 + parent: 2 + - uid: 17658 components: - type: Transform - rot: 3.141592653589793 rad - pos: 27.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 14843 + pos: -65.5,41.5 + parent: 2 + - uid: 17659 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 15093 + pos: -60.5,24.5 + parent: 2 + - uid: 17660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,30.5 - parent: 89 - - uid: 15245 + pos: -85.5,42.5 + parent: 2 + - uid: 17661 components: - type: Transform - pos: 23.5,32.5 - parent: 89 - - uid: 15247 + pos: -88.5,16.5 + parent: 2 + - uid: 17662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,30.5 - parent: 89 - - uid: 15254 + pos: -97.5,21.5 + parent: 2 + - uid: 17663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,20.5 - parent: 89 - - uid: 15482 + pos: -102.5,13.5 + parent: 2 + - uid: 17664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,24.5 - parent: 89 - - uid: 16492 + pos: -120.5,-22.5 + parent: 2 + - uid: 17665 components: - type: Transform - pos: 17.5,19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16497 + pos: 48.5,18.5 + parent: 2 + - uid: 17666 components: - type: Transform - pos: 21.5,19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16506 + pos: 14.5,26.5 + parent: 2 + - uid: 17667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,26.5 - parent: 89 - - uid: 16568 + pos: 25.5,23.5 + parent: 2 + - uid: 17668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -51.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16583 + pos: 7.5,36.5 + parent: 2 + - uid: 17669 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16584 + pos: -40.5,0.5 + parent: 2 + - uid: 17670 components: - type: Transform - pos: -20.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16585 + pos: -51.5,4.5 + parent: 2 + - uid: 17671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16594 + pos: -39.5,-7.5 + parent: 2 + - uid: 17672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16595 + pos: -30.5,-13.5 + parent: 2 + - uid: 17673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16597 + pos: -20.5,-10.5 + parent: 2 + - uid: 17674 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -36.5,23.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16599 + pos: -15.5,-12.5 + parent: 2 + - uid: 17675 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16600 + pos: -6.5,-11.5 + parent: 2 + - uid: 17676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,23.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16601 + pos: -1.5,-16.5 + parent: 2 + - uid: 17677 components: - type: Transform - pos: -20.5,24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16603 + pos: 0.5,-1.5 + parent: 2 + - uid: 17678 components: - type: Transform - pos: -18.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16605 + pos: -9.5,2.5 + parent: 2 + - uid: 17679 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,25.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16606 + pos: -55.5,20.5 + parent: 2 + - uid: 17680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16607 + pos: -64.5,26.5 + parent: 2 + - uid: 17681 components: - type: Transform - pos: 2.5,26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16608 + pos: -67.5,29.5 + parent: 2 + - uid: 17682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -5.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16610 + pos: -62.5,39.5 + parent: 2 + - uid: 17683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,30.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16611 + pos: 18.5,1.5 + parent: 2 + - uid: 17684 components: - type: Transform - rot: 3.141592653589793 rad - pos: -8.5,30.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16612 + pos: -17.5,1.5 + parent: 2 + - uid: 17685 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,33.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16614 + pos: 9.5,3.5 + parent: 2 + - uid: 17686 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,39.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16615 + pos: 4.5,2.5 + parent: 2 + - uid: 17687 components: - type: Transform - pos: 2.5,42.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16616 + pos: 25.5,2.5 + parent: 2 + - uid: 17688 components: - type: Transform - pos: -1.5,46.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16617 + pos: 26.5,3.5 + parent: 2 + - uid: 17689 components: - type: Transform - pos: -5.5,46.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16618 + pos: 32.5,1.5 + parent: 2 + - uid: 17690 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,45.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16624 + pos: 35.5,5.5 + parent: 2 + - uid: 17691 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16625 + pos: 38.5,8.5 + parent: 2 + - uid: 17692 components: - type: Transform - pos: 10.5,-14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16626 + pos: 40.5,1.5 + parent: 2 + - uid: 17693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-19.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16627 + pos: -74.5,10.5 + parent: 2 + - uid: 17694 + components: + - type: Transform + pos: -72.5,8.5 + parent: 2 + - uid: 17695 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-26.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16628 + pos: -82.5,16.5 + parent: 2 + - uid: 17696 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-36.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16630 + pos: -80.5,20.5 + parent: 2 + - uid: 17697 components: - type: Transform - rot: 3.141592653589793 rad - pos: -17.5,-27.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16631 + pos: -84.5,23.5 + parent: 2 + - uid: 17698 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -26.5,-24.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16632 + pos: -84.5,36.5 + parent: 2 + - uid: 17699 components: - type: Transform - pos: -30.5,-15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16633 + pos: -24.5,-5.5 + parent: 2 + - uid: 17700 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -45.5,-14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16634 + pos: -20.5,-8.5 + parent: 2 + - uid: 17701 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -43.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16635 + pos: -18.5,-2.5 + parent: 2 + - uid: 17702 components: - type: Transform - pos: -76.5,-8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16636 + pos: 46.5,20.5 + parent: 2 + - uid: 17703 components: - type: Transform - pos: -81.5,-5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16638 + pos: 46.5,22.5 + parent: 2 + - uid: 17704 components: - type: Transform - pos: -80.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16639 + pos: 49.5,23.5 + parent: 2 + - uid: 17705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -128.5,21.5 - parent: 89 - - uid: 16641 + pos: 47.5,23.5 + parent: 2 + - uid: 17706 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16642 + pos: -17.5,17.5 + parent: 2 + - uid: 26661 components: - type: Transform rot: -1.5707963267948966 rad - pos: -111.5,15.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16648 + pos: -22.5,22.5 + parent: 24450 + - uid: 26662 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16649 + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 24450 + - uid: 26663 components: - type: Transform rot: -1.5707963267948966 rad - pos: -65.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 16719 + pos: -20.5,20.5 + parent: 24450 +- proto: RandomSpawner100 + entities: + - uid: 17707 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-30.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17030 + pos: -92.5,26.5 + parent: 2 + - uid: 26664 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17032 + rot: -1.5707963267948966 rad + pos: -19.5,0.5 + parent: 24450 + - uid: 26665 components: - type: Transform - pos: -13.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17033 + rot: -1.5707963267948966 rad + pos: 7.5,3.5 + parent: 24450 + - uid: 26666 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17036 + rot: -1.5707963267948966 rad + pos: -24.5,2.5 + parent: 24450 + - uid: 26667 components: - type: Transform - rot: 3.141592653589793 rad - pos: 25.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17041 + rot: -1.5707963267948966 rad + pos: -21.5,7.5 + parent: 24450 + - uid: 26668 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,18.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17043 + rot: -1.5707963267948966 rad + pos: -29.5,5.5 + parent: 24450 + - uid: 26669 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,8.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17105 + pos: -31.5,11.5 + parent: 24450 + - uid: 26670 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-33.5 - parent: 89 - - uid: 17106 + rot: -1.5707963267948966 rad + pos: -12.5,6.5 + parent: 24450 + - uid: 26671 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-33.5 - parent: 89 - - uid: 17107 + rot: -1.5707963267948966 rad + pos: -10.5,10.5 + parent: 24450 + - uid: 26672 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-33.5 - parent: 89 - - uid: 17213 + rot: -1.5707963267948966 rad + pos: -0.5,8.5 + parent: 24450 + - uid: 26673 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-33.5 - parent: 89 - - uid: 17240 + rot: -1.5707963267948966 rad + pos: -6.5,5.5 + parent: 24450 + - uid: 26674 components: - type: Transform - pos: 8.5,9.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17241 + rot: -1.5707963267948966 rad + pos: -2.5,0.5 + parent: 24450 + - uid: 26675 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,11.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17617 + rot: -1.5707963267948966 rad + pos: 7.5,9.5 + parent: 24450 + - uid: 26676 components: - type: Transform - pos: 25.5,20.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 17628 + rot: -1.5707963267948966 rad + pos: -1.5,19.5 + parent: 24450 + - uid: 26677 components: - type: Transform rot: -1.5707963267948966 rad - pos: 3.5,7.5 - parent: 89 - - uid: 18365 + pos: -23.5,22.5 + parent: 24450 + - uid: 26678 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,5.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19334 + rot: -1.5707963267948966 rad + pos: -22.5,21.5 + parent: 24450 + - uid: 26679 components: - type: Transform rot: -1.5707963267948966 rad - pos: 32.5,26.5 - parent: 89 - - uid: 19548 + pos: -20.5,23.5 + parent: 24450 + - uid: 26680 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19549 + rot: -1.5707963267948966 rad + pos: -22.5,20.5 + parent: 24450 +- proto: RandomVending + entities: + - uid: 17708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,13.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19551 + pos: -24.5,-17.5 + parent: 2 + - uid: 17709 components: - type: Transform - rot: 3.141592653589793 rad - pos: -22.5,16.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19782 + pos: -67.5,23.5 + parent: 2 + - uid: 17710 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-12.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19841 + pos: -33.5,12.5 + parent: 2 + - uid: 17711 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,23.5 - parent: 89 - - type: Timer - - uid: 19962 + pos: -33.5,13.5 + parent: 2 + - uid: 17712 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,42.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 19977 + pos: -41.5,-9.5 + parent: 2 + - uid: 17713 components: - type: Transform - rot: 3.141592653589793 rad - pos: 20.5,14.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20030 + pos: -24.5,-10.5 + parent: 2 + - uid: 17714 components: - type: Transform - pos: 23.5,37.5 - parent: 89 - - type: ApcPowerReceiver - powerLoad: 0 - - uid: 20741 + pos: -27.5,5.5 + parent: 2 + - uid: 17715 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 27.5,-12.5 - parent: 89 - - uid: 20876 + pos: -23.5,5.5 + parent: 2 +- proto: RandomVendingDrinks + entities: + - uid: 17716 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-15.5 - parent: 89 - - uid: 20877 + pos: -5.5,-20.5 + parent: 2 + - uid: 17717 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,-15.5 - parent: 89 - - uid: 20878 + pos: -86.5,34.5 + parent: 2 + - uid: 17718 components: - type: Transform - pos: 14.5,-15.5 - parent: 89 - - uid: 20931 + pos: -72.5,18.5 + parent: 2 + - uid: 17719 components: - type: Transform - pos: 36.5,27.5 - parent: 89 - - uid: 21014 + pos: -84.5,2.5 + parent: 2 + - uid: 17720 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 24.5,-12.5 - parent: 89 - - uid: 21015 + pos: 1.5,-8.5 + parent: 2 + - uid: 17721 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-12.5 - parent: 89 - - uid: 21016 + pos: 52.5,-28.5 + parent: 2 + - uid: 17722 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,-12.5 - parent: 89 - - uid: 21093 + pos: -85.5,19.5 + parent: 2 + - uid: 17723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,19.5 - parent: 89 - - uid: 21359 + rot: 3.141592653589793 rad + pos: 21.5,0.5 + parent: 2 + - uid: 17724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-23.5 - parent: 89 - - uid: 21371 + pos: -112.5,5.5 + parent: 2 + - uid: 17725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-26.5 - parent: 89 - - uid: 21379 + pos: -67.5,35.5 + parent: 2 + - uid: 17726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-20.5 - parent: 89 - - uid: 21571 + pos: -67.5,45.5 + parent: 2 + - uid: 17727 components: - type: Transform - pos: -10.5,24.5 - parent: 89 - - uid: 21733 + pos: -62.5,28.5 + parent: 2 + - uid: 17728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-1.5 - parent: 21627 - - uid: 21734 + pos: -62.5,36.5 + parent: 2 + - uid: 17729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 21627 - - uid: 21735 + pos: -57.5,5.5 + parent: 2 + - uid: 17730 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 21627 - - uid: 21787 + pos: -4.5,14.5 + parent: 2 + - uid: 17731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 36.5,-19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 25393 - - uid: 24649 + pos: -98.5,2.5 + parent: 2 + - uid: 17732 components: - type: Transform - pos: -13.5,-19.5 - parent: 22565 - - uid: 24650 + pos: -60.5,26.5 + parent: 2 + - uid: 17733 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,-19.5 - parent: 22565 - - uid: 24651 + pos: -76.5,5.5 + parent: 2 + - uid: 17734 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-19.5 - parent: 22565 - - uid: 24652 + pos: -75.5,5.5 + parent: 2 + - uid: 17735 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-17.5 - parent: 22565 - - uid: 24653 + pos: 29.5,-6.5 + parent: 2 + - uid: 17736 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,-17.5 - parent: 22565 - - uid: 24654 + pos: -37.5,5.5 + parent: 2 + - uid: 17737 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-16.5 - parent: 22565 - - uid: 24655 + pos: 37.5,5.5 + parent: 2 + - uid: 17738 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-16.5 - parent: 22565 - - uid: 24656 + pos: -53.5,12.5 + parent: 2 + - uid: 17739 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-12.5 - parent: 22565 - - uid: 24657 + pos: -120.5,-15.5 + parent: 2 + - uid: 17740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-11.5 - parent: 22565 - - uid: 24658 + pos: -26.5,-10.5 + parent: 2 + - uid: 17741 components: - type: Transform - pos: -13.5,-5.5 - parent: 22565 - - uid: 24659 + pos: -27.5,1.5 + parent: 2 + - uid: 17742 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,-11.5 - parent: 22565 - - uid: 24660 + pos: 52.5,-4.5 + parent: 2 + - uid: 17743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -17.5,-7.5 - parent: 22565 - - uid: 24661 + pos: 60.5,-4.5 + parent: 2 + - uid: 17744 components: - type: Transform - pos: -10.5,-5.5 - parent: 22565 - - uid: 24662 + pos: 50.5,9.5 + parent: 2 + - uid: 17745 components: - type: Transform - pos: -35.5,3.5 - parent: 22565 - - uid: 24663 + pos: 25.5,24.5 + parent: 2 + - uid: 17746 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-14.5 - parent: 22565 - - uid: 24664 + pos: -54.5,-5.5 + parent: 2 + - uid: 26681 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,3.5 - parent: 22565 - - uid: 24665 + pos: -9.5,-21.5 + parent: 24450 + - uid: 27846 components: - type: Transform - pos: -27.5,11.5 - parent: 22565 - - uid: 25633 + pos: -1.5,-4.5 + parent: 27260 +- proto: RandomVendingSnacks + entities: + - uid: 17747 components: - type: Transform - pos: -46.5,-19.5 - parent: 89 - - uid: 25634 + pos: -6.5,-20.5 + parent: 2 + - uid: 17748 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-16.5 - parent: 89 - - uid: 25635 + pos: -73.5,18.5 + parent: 2 + - uid: 17749 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -112.5,-16.5 - parent: 89 - - uid: 25637 + pos: 1.5,-7.5 + parent: 2 + - uid: 17750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,-20.5 - parent: 89 - - uid: 25638 + pos: -84.5,3.5 + parent: 2 + - uid: 17751 components: - type: Transform - pos: -123.5,5.5 - parent: 89 - - uid: 25639 + pos: -86.5,35.5 + parent: 2 + - uid: 17752 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,-20.5 - parent: 89 - - uid: 25641 + pos: -84.5,19.5 + parent: 2 + - uid: 17753 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,2.5 - parent: 89 - - uid: 25642 + pos: 53.5,-28.5 + parent: 2 + - uid: 17754 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-4.5 - parent: 89 - - uid: 25668 + rot: 3.141592653589793 rad + pos: 23.5,0.5 + parent: 2 + - uid: 17755 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-17.5 - parent: 89 - - uid: 25669 + pos: -54.5,5.5 + parent: 2 + - uid: 17756 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 89 - - uid: 25670 + pos: -55.5,12.5 + parent: 2 + - uid: 17757 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,-19.5 - parent: 89 - - uid: 25671 + pos: -61.5,41.5 + parent: 2 + - uid: 17758 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-17.5 - parent: 89 -- proto: PoweredSmallLightEmpty - entities: - - uid: 14144 + pos: -62.5,41.5 + parent: 2 + - uid: 17759 components: - type: Transform - rot: 3.141592653589793 rad - pos: 30.5,22.5 - parent: 89 -- proto: PrinterDoc - entities: - - uid: 720 + pos: -56.5,28.5 + parent: 2 + - uid: 17760 components: - type: Transform - pos: -49.5,11.5 - parent: 89 - - uid: 10223 + pos: -71.5,5.5 + parent: 2 + - uid: 17761 components: - type: Transform - pos: 44.5,7.5 - parent: 89 - - uid: 14530 + pos: -72.5,5.5 + parent: 2 + - uid: 17762 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-6.5 - parent: 89 -- proto: Protolathe - entities: - - uid: 38 + pos: -6.5,5.5 + parent: 2 + - uid: 17763 components: - type: Transform - pos: -16.5,-19.5 - parent: 89 - - uid: 6908 + pos: -111.5,5.5 + parent: 2 + - uid: 17764 components: - type: Transform - pos: -100.5,-5.5 - parent: 89 - - uid: 24666 + pos: -120.5,-12.5 + parent: 2 + - uid: 17765 components: - type: Transform - pos: 3.5,1.5 - parent: 22565 - - uid: 24667 + pos: -97.5,2.5 + parent: 2 + - uid: 17766 components: - type: Transform - pos: -27.5,1.5 - parent: 22565 -- proto: PuddleEgg - entities: - - uid: 14766 + pos: -59.5,26.5 + parent: 2 + - uid: 17767 components: - type: Transform - pos: -23.5,32.5 - parent: 89 -- proto: PuddleSmear - entities: - - uid: 10320 + pos: -36.5,5.5 + parent: 2 + - uid: 17768 components: - type: Transform - pos: -40.5,27.5 - parent: 89 -- proto: Rack - entities: - - uid: 73 + pos: 29.5,-5.5 + parent: 2 + - uid: 17769 components: - type: Transform - pos: -24.5,-15.5 - parent: 89 - - uid: 101 + pos: 37.5,6.5 + parent: 2 + - uid: 17770 components: - type: Transform - pos: -43.5,-3.5 - parent: 89 - - uid: 162 + pos: -25.5,-10.5 + parent: 2 + - uid: 17771 components: - type: Transform - pos: 3.5,-27.5 - parent: 89 - - uid: 163 + pos: -27.5,2.5 + parent: 2 + - uid: 17772 components: - type: Transform - pos: 4.5,-27.5 - parent: 89 - - uid: 1047 + pos: 52.5,-2.5 + parent: 2 + - uid: 17773 components: - type: Transform - pos: 44.5,-7.5 - parent: 89 - - uid: 1054 + pos: 61.5,-4.5 + parent: 2 + - uid: 17774 components: - type: Transform - pos: 44.5,-8.5 - parent: 89 - - uid: 1055 + pos: 50.5,10.5 + parent: 2 + - uid: 17775 components: - type: Transform - pos: 44.5,-5.5 - parent: 89 - - uid: 1062 + pos: 23.5,24.5 + parent: 2 + - uid: 17776 components: - type: Transform - pos: 42.5,-4.5 - parent: 89 - - uid: 1117 + pos: -56.5,-5.5 + parent: 2 + - uid: 26682 components: - type: Transform - pos: 44.5,-6.5 - parent: 89 - - uid: 5247 + pos: -17.5,-21.5 + parent: 24450 + - uid: 26683 components: - type: Transform - pos: 40.5,-2.5 - parent: 89 - - uid: 5305 + rot: 3.141592653589793 rad + pos: -12.5,4.5 + parent: 24450 + - uid: 27847 components: - type: Transform - pos: -46.5,-10.5 - parent: 89 - - uid: 6543 + pos: 2.5,-4.5 + parent: 27260 +- proto: RCD + entities: + - uid: 17777 components: - type: Transform - pos: -33.5,-1.5 - parent: 89 - - uid: 6988 + rot: 3.141592653589793 rad + pos: -89.64105,-11.3105755 + parent: 2 + - uid: 17778 components: - type: Transform - pos: -105.5,-7.5 - parent: 89 - - uid: 6989 + pos: -103.46396,11.808571 + parent: 2 +- proto: RCDAmmo + entities: + - uid: 17779 components: - type: Transform - pos: -104.5,-7.5 - parent: 89 - - uid: 6990 + rot: 3.141592653589793 rad + pos: -89.75043,-11.5918255 + parent: 2 + - uid: 17780 components: - type: Transform - pos: -103.5,-7.5 - parent: 89 - - uid: 6991 + rot: 3.141592653589793 rad + pos: -89.34418,-11.7324505 + parent: 2 + - uid: 17781 components: - type: Transform - pos: -105.5,-10.5 - parent: 89 - - uid: 6992 + pos: -103.72958,11.464821 + parent: 2 + - uid: 17782 components: - type: Transform - pos: -104.5,-10.5 - parent: 89 - - uid: 6993 + pos: -103.24521,11.464821 + parent: 2 +- proto: RCDEmpty + entities: + - uid: 17783 components: + - type: MetaData + name: плазменный резак - type: Transform - pos: -103.5,-10.5 - parent: 89 - - uid: 6994 + pos: -130.23235,21.319153 + parent: 2 +- proto: Recycler + entities: + - uid: 17784 components: - type: Transform - pos: -102.5,-7.5 - parent: 89 - - uid: 6995 + rot: 1.5707963267948966 rad + pos: -96.5,27.5 + parent: 2 + - type: DeviceLinkSink + links: + - 19864 + - uid: 26684 components: - type: Transform - pos: -102.5,-10.5 - parent: 89 - - uid: 6998 + pos: -25.5,1.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26846 +- proto: ReinforcedPlasmaWindow + entities: + - uid: 17785 components: - type: Transform - pos: -29.5,-15.5 - parent: 89 - - uid: 6999 + pos: -120.5,-19.5 + parent: 2 + - uid: 17786 components: - type: Transform - pos: -30.5,-15.5 - parent: 89 - - uid: 7467 + pos: -110.5,-18.5 + parent: 2 + - uid: 17787 components: - type: Transform - pos: 41.5,-4.5 - parent: 89 - - uid: 8192 + pos: -120.5,-17.5 + parent: 2 + - uid: 17788 components: - type: Transform - pos: 17.5,25.5 - parent: 89 - - uid: 8196 + pos: -110.5,-17.5 + parent: 2 + - uid: 17789 components: - type: Transform - pos: 16.5,25.5 - parent: 89 - - uid: 8394 + pos: -110.5,-16.5 + parent: 2 + - uid: 17790 components: - type: Transform - pos: -41.5,10.5 - parent: 89 - - uid: 9259 + pos: 12.5,35.5 + parent: 2 + - uid: 17791 components: - type: Transform - pos: 28.5,7.5 - parent: 89 - - uid: 9260 + rot: 3.141592653589793 rad + pos: -90.5,-22.5 + parent: 2 + - uid: 17792 components: - type: Transform - pos: 27.5,7.5 - parent: 89 - - uid: 9261 + rot: 3.141592653589793 rad + pos: -100.5,-22.5 + parent: 2 + - uid: 17793 components: - type: Transform - pos: 26.5,7.5 - parent: 89 - - uid: 9262 + rot: 3.141592653589793 rad + pos: -98.5,-22.5 + parent: 2 + - uid: 17794 components: - type: Transform - pos: 28.5,9.5 - parent: 89 - - uid: 9263 + rot: 3.141592653589793 rad + pos: -96.5,-22.5 + parent: 2 + - uid: 17795 components: - type: Transform - pos: 27.5,9.5 - parent: 89 - - uid: 9264 + rot: 3.141592653589793 rad + pos: -94.5,-22.5 + parent: 2 + - uid: 17796 components: - type: Transform - pos: 26.5,9.5 - parent: 89 - - uid: 9265 + rot: 3.141592653589793 rad + pos: -92.5,-22.5 + parent: 2 + - uid: 17797 components: - type: Transform - pos: 28.5,5.5 - parent: 89 - - uid: 9266 + rot: 3.141592653589793 rad + pos: -88.5,-22.5 + parent: 2 + - uid: 17798 components: - type: Transform - pos: 27.5,5.5 - parent: 89 - - uid: 9267 + rot: 3.141592653589793 rad + pos: -86.5,-22.5 + parent: 2 + - uid: 17799 components: - type: Transform - pos: 26.5,5.5 - parent: 89 - - uid: 9287 + rot: -1.5707963267948966 rad + pos: -81.5,-22.5 + parent: 2 + - uid: 17800 components: - type: Transform - pos: 25.5,7.5 - parent: 89 - - uid: 9288 + rot: -1.5707963267948966 rad + pos: -80.5,-22.5 + parent: 2 + - uid: 17801 components: - type: Transform - pos: 25.5,9.5 - parent: 89 - - uid: 10458 + rot: -1.5707963267948966 rad + pos: -79.5,-22.5 + parent: 2 + - uid: 17802 components: - type: Transform - pos: 22.5,11.5 - parent: 89 - - uid: 14605 + rot: -1.5707963267948966 rad + pos: -78.5,-23.5 + parent: 2 + - uid: 17803 components: - type: Transform - pos: -98.5,20.5 - parent: 89 - - uid: 14606 + rot: -1.5707963267948966 rad + pos: -78.5,-24.5 + parent: 2 + - uid: 17804 components: - type: Transform - pos: -97.5,20.5 - parent: 89 - - uid: 14693 + rot: -1.5707963267948966 rad + pos: -78.5,-25.5 + parent: 2 + - uid: 17805 components: - type: Transform - pos: -82.5,5.5 - parent: 89 - - uid: 14694 + rot: -1.5707963267948966 rad + pos: -79.5,-26.5 + parent: 2 + - uid: 17806 components: - type: Transform - pos: -81.5,5.5 - parent: 89 - - uid: 14695 + rot: -1.5707963267948966 rad + pos: -80.5,-26.5 + parent: 2 + - uid: 17807 components: - type: Transform - pos: -80.5,5.5 - parent: 89 - - uid: 14704 + rot: -1.5707963267948966 rad + pos: -81.5,-26.5 + parent: 2 + - uid: 17808 components: - type: Transform - pos: -78.5,-6.5 - parent: 89 - - uid: 14724 + pos: -128.5,3.5 + parent: 2 + - uid: 17809 components: - type: Transform - pos: 8.5,-21.5 - parent: 89 - - uid: 14771 + pos: -128.5,4.5 + parent: 2 + - uid: 17810 components: - type: Transform - pos: -68.5,21.5 - parent: 89 - - uid: 14772 + pos: 12.5,41.5 + parent: 2 + - uid: 17811 components: - type: Transform - pos: -69.5,21.5 - parent: 89 - - uid: 14773 + pos: 7.5,41.5 + parent: 2 + - uid: 17812 components: - type: Transform - pos: -72.5,21.5 - parent: 89 - - uid: 14774 + pos: 7.5,42.5 + parent: 2 + - uid: 17813 components: - type: Transform - pos: -73.5,21.5 - parent: 89 - - uid: 14781 + pos: 12.5,42.5 + parent: 2 + - uid: 17814 components: - type: Transform - pos: -51.5,32.5 - parent: 89 - - uid: 14803 + pos: 11.5,43.5 + parent: 2 + - uid: 17815 components: - type: Transform - pos: -44.5,14.5 - parent: 89 - - uid: 14804 + pos: 11.5,36.5 + parent: 2 + - uid: 17816 components: - type: Transform - pos: -44.5,13.5 - parent: 89 - - uid: 14819 + pos: 12.5,38.5 + parent: 2 + - uid: 17817 components: - type: Transform - pos: -38.5,24.5 - parent: 89 - - uid: 14820 + pos: 8.5,43.5 + parent: 2 + - uid: 17818 components: - type: Transform - pos: -38.5,23.5 - parent: 89 - - uid: 15053 + pos: 13.5,38.5 + parent: 2 + - uid: 17819 components: - type: Transform - pos: -18.5,12.5 - parent: 89 - - uid: 15055 + pos: 7.5,35.5 + parent: 2 + - uid: 17820 components: - type: Transform - pos: -16.5,19.5 - parent: 89 - - uid: 15481 + pos: 6.5,38.5 + parent: 2 + - uid: 17821 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,27.5 - parent: 89 - - uid: 15550 + pos: 11.5,37.5 + parent: 2 + - uid: 17822 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,27.5 - parent: 89 - - uid: 15568 + pos: 8.5,36.5 + parent: 2 + - uid: 17823 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,27.5 - parent: 89 - - uid: 15913 + pos: 8.5,37.5 + parent: 2 + - uid: 17824 components: - type: Transform - pos: 16.5,23.5 - parent: 89 - - uid: 16977 + pos: 7.5,38.5 + parent: 2 + - uid: 17825 components: - type: Transform - pos: -20.5,-27.5 - parent: 89 - - uid: 17828 + pos: 6.5,31.5 + parent: 2 + - uid: 17826 components: - type: Transform - pos: -109.5,-19.5 - parent: 89 - - uid: 19603 + pos: -120.5,-18.5 + parent: 2 + - uid: 17827 components: - type: Transform - pos: -26.5,-25.5 - parent: 89 - - uid: 19604 + pos: -116.5,-19.5 + parent: 2 + - uid: 17828 components: - type: Transform - pos: -26.5,-24.5 - parent: 89 - - uid: 19605 + pos: -116.5,-18.5 + parent: 2 + - uid: 17829 components: - type: Transform - pos: -26.5,-23.5 - parent: 89 - - uid: 20363 + pos: -116.5,-17.5 + parent: 2 + - uid: 17830 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -129.5,-11.5 - parent: 89 - - uid: 21117 + pos: -113.5,-11.5 + parent: 2 + - uid: 17831 components: - type: Transform - pos: 48.5,17.5 - parent: 89 - - uid: 21811 + pos: -135.5,-6.5 + parent: 2 + - uid: 17832 components: - type: Transform - pos: 50.5,-18.5 - parent: 89 - - uid: 21821 + pos: -135.5,-8.5 + parent: 2 + - uid: 17833 components: - type: Transform - pos: 51.5,-18.5 - parent: 89 -- proto: RadAutoInjector - entities: - - uid: 22657 + pos: -135.5,-7.5 + parent: 2 + - uid: 17834 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RadiationCollector - entities: - - uid: 6941 + rot: -1.5707963267948966 rad + pos: -116.5,-13.5 + parent: 2 + - uid: 17835 components: - type: Transform - pos: -135.5,-12.5 - parent: 89 - - uid: 8473 + pos: -116.5,-12.5 + parent: 2 + - uid: 17836 components: - type: Transform - pos: -127.5,1.5 - parent: 89 - - uid: 8474 + pos: -114.5,-11.5 + parent: 2 + - uid: 17837 components: - type: Transform - pos: -126.5,1.5 - parent: 89 - - uid: 8476 + rot: -1.5707963267948966 rad + pos: -135.5,-0.5 + parent: 2 + - uid: 17838 components: - type: Transform - pos: -125.5,6.5 - parent: 89 - - uid: 21884 + pos: -135.5,-1.5 + parent: 2 + - uid: 26685 components: - type: Transform - pos: -135.5,-2.5 - parent: 89 - - uid: 21918 + pos: -8.5,-23.5 + parent: 24450 + - uid: 26686 components: - type: Transform - pos: -135.5,-3.5 - parent: 89 - - uid: 21963 + pos: -8.5,-24.5 + parent: 24450 + - uid: 26687 components: - type: Transform - pos: -135.5,-4.5 - parent: 89 - - uid: 21988 + pos: -18.5,-23.5 + parent: 24450 + - uid: 26688 components: - type: Transform - pos: -135.5,-11.5 - parent: 89 - - uid: 21990 + pos: -18.5,-24.5 + parent: 24450 + - uid: 26689 components: - type: Transform - pos: -135.5,-10.5 - parent: 89 -- proto: RadiationCollectorNoTank - entities: - - uid: 14148 + rot: 1.5707963267948966 rad + pos: -18.5,-12.5 + parent: 24450 + - uid: 26690 components: - type: Transform - pos: -126.5,6.5 - parent: 89 - - uid: 14225 + rot: 1.5707963267948966 rad + pos: -20.5,-11.5 + parent: 24450 + - uid: 26691 components: - type: Transform - pos: -125.5,1.5 - parent: 89 - - uid: 14269 + rot: 1.5707963267948966 rad + pos: -19.5,-11.5 + parent: 24450 + - uid: 26692 components: - type: Transform - pos: -127.5,6.5 - parent: 89 -- proto: RadioHandheld - entities: - - uid: 5353 + rot: 1.5707963267948966 rad + pos: -18.5,-11.5 + parent: 24450 + - uid: 26693 components: - type: Transform - pos: 25.533394,-3.3927932 - parent: 89 - - uid: 21156 + rot: 1.5707963267948966 rad + pos: -18.5,-10.5 + parent: 24450 +- proto: ReinforcedWindow + entities: + - uid: 17839 components: - type: Transform - pos: 48.5,17.5 - parent: 89 -- proto: RadioJammer - entities: - - uid: 21092 + pos: -126.5,12.5 + parent: 2 + - uid: 17840 components: - type: Transform rot: -1.5707963267948966 rad - pos: 31.591637,39.734406 - parent: 89 -- proto: Railing - entities: - - uid: 41 + pos: -59.5,6.5 + parent: 2 + - uid: 17841 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-8.5 - parent: 89 - - uid: 42 + rot: 3.141592653589793 rad + pos: -89.5,-7.5 + parent: 2 + - uid: 17842 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-6.5 - parent: 89 - - uid: 44 + pos: -91.5,-10.5 + parent: 2 + - uid: 17843 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-4.5 - parent: 89 - - uid: 179 + pos: 42.5,-19.5 + parent: 2 + - uid: 17844 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.5,-18.5 - parent: 89 - - uid: 180 + pos: 6.5,-12.5 + parent: 2 + - uid: 17845 components: - type: Transform - rot: 3.141592653589793 rad - pos: -18.5,-18.5 - parent: 89 - - uid: 182 + pos: 7.5,-7.5 + parent: 2 + - uid: 17846 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-17.5 - parent: 89 - - uid: 183 + pos: 18.5,-11.5 + parent: 2 + - uid: 17847 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-16.5 - parent: 89 - - uid: 184 + pos: 11.5,-11.5 + parent: 2 + - uid: 17848 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-15.5 - parent: 89 - - uid: 1133 + pos: 35.5,-4.5 + parent: 2 + - uid: 17849 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-21.5 - parent: 89 - - uid: 2037 + pos: 32.5,-4.5 + parent: 2 + - uid: 17850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-21.5 - parent: 89 - - uid: 2363 + pos: 41.5,-14.5 + parent: 2 + - uid: 17851 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-23.5 - parent: 89 - - uid: 2364 + pos: 25.5,-7.5 + parent: 2 + - uid: 17852 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-22.5 - parent: 89 - - uid: 2365 + pos: 24.5,-11.5 + parent: 2 + - uid: 17853 components: - type: Transform - pos: -77.5,-21.5 - parent: 89 - - uid: 2366 + pos: -10.5,-15.5 + parent: 2 + - uid: 17854 components: - type: Transform - pos: -76.5,-21.5 - parent: 89 - - uid: 2835 + pos: -100.5,-6.5 + parent: 2 + - uid: 17855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,8.5 - parent: 89 - - uid: 2836 + pos: -101.5,-6.5 + parent: 2 + - uid: 17856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,7.5 - parent: 89 - - uid: 2837 + pos: -102.5,-6.5 + parent: 2 + - uid: 17857 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,6.5 - parent: 89 - - uid: 2838 + pos: -103.5,-6.5 + parent: 2 + - uid: 17858 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 39.5,5.5 - parent: 89 - - uid: 2846 + pos: -103.5,6.5 + parent: 2 + - uid: 17859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,3.5 - parent: 89 - - uid: 3063 + pos: -104.5,6.5 + parent: 2 + - uid: 17860 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,3.5 - parent: 89 - - uid: 4295 + pos: -105.5,6.5 + parent: 2 + - uid: 17861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,-5.5 - parent: 89 - - uid: 4343 + pos: -106.5,7.5 + parent: 2 + - uid: 17862 components: - type: Transform - pos: -48.5,-20.5 - parent: 89 - - uid: 4344 + pos: -106.5,8.5 + parent: 2 + - uid: 17863 components: - type: Transform - pos: -49.5,-20.5 - parent: 89 - - uid: 4345 + pos: -106.5,9.5 + parent: 2 + - uid: 17864 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-19.5 - parent: 89 - - uid: 4346 + rot: 1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - uid: 17865 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-19.5 - parent: 89 - - uid: 4846 + pos: -9.5,-15.5 + parent: 2 + - uid: 17866 components: - type: Transform - rot: 3.141592653589793 rad - pos: -15.5,-8.5 - parent: 89 - - uid: 6156 + pos: 3.5,-26.5 + parent: 2 + - uid: 17867 components: - type: Transform - pos: -10.5,-13.5 - parent: 89 - - uid: 6157 + pos: 3.5,-23.5 + parent: 2 + - uid: 17868 components: - type: Transform - pos: -9.5,-13.5 - parent: 89 - - uid: 7136 + pos: 1.5,-23.5 + parent: 2 + - uid: 17869 components: - type: Transform rot: 1.5707963267948966 rad - pos: -42.5,-20.5 - parent: 89 - - uid: 7333 + pos: 41.5,8.5 + parent: 2 + - uid: 17870 components: - type: Transform - pos: -44.5,-21.5 - parent: 89 - - uid: 8005 + rot: 1.5707963267948966 rad + pos: 43.5,3.5 + parent: 2 + - uid: 17871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,42.5 - parent: 89 - - uid: 8006 + rot: 1.5707963267948966 rad + pos: 44.5,3.5 + parent: 2 + - uid: 17872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,41.5 - parent: 89 - - uid: 8007 + pos: 1.5,-26.5 + parent: 2 + - uid: 17873 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,40.5 - parent: 89 - - uid: 14954 + pos: 34.5,9.5 + parent: 2 + - uid: 17874 components: - type: Transform - pos: -19.5,22.5 - parent: 89 - - uid: 14955 + pos: 36.5,9.5 + parent: 2 + - uid: 17875 components: - type: Transform - pos: -20.5,22.5 - parent: 89 - - uid: 14958 + pos: 13.5,-11.5 + parent: 2 + - uid: 17876 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,23.5 - parent: 89 - - uid: 18201 + pos: -98.5,28.5 + parent: 2 + - uid: 17877 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,23.5 - parent: 89 - - uid: 18232 + pos: 1.5,-11.5 + parent: 2 + - uid: 17878 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-6.5 - parent: 89 - - uid: 18233 + pos: -97.5,28.5 + parent: 2 + - uid: 17879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-6.5 - parent: 89 - - uid: 18234 + pos: -96.5,28.5 + parent: 2 + - uid: 17880 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-7.5 - parent: 89 - - uid: 18236 + pos: 4.5,-9.5 + parent: 2 + - uid: 17881 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-4.5 - parent: 89 - - uid: 18239 + pos: 6.5,-10.5 + parent: 2 + - uid: 17882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 89 - - uid: 18242 + pos: 8.5,-7.5 + parent: 2 + - uid: 17883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 89 - - uid: 18243 + pos: 15.5,-4.5 + parent: 2 + - uid: 17884 components: - type: Transform - pos: -1.5,-3.5 - parent: 89 - - uid: 18423 + pos: 14.5,-4.5 + parent: 2 + - uid: 17885 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,23.5 - parent: 89 - - uid: 19076 + pos: 13.5,-4.5 + parent: 2 + - uid: 17886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-5.5 - parent: 89 - - uid: 20249 + pos: 12.5,-4.5 + parent: 2 + - uid: 17887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,23.5 - parent: 89 - - uid: 20330 + pos: 41.5,-12.5 + parent: 2 + - uid: 17888 components: - type: Transform - rot: 3.141592653589793 rad - pos: 45.5,23.5 - parent: 89 - - uid: 20977 + pos: 34.5,-4.5 + parent: 2 + - uid: 17889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,22.5 - parent: 89 -- proto: RailingCorner - entities: - - uid: 2362 + pos: 28.5,-7.5 + parent: 2 + - uid: 17890 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-24.5 - parent: 89 - - uid: 4334 + pos: 21.5,-11.5 + parent: 2 + - uid: 17891 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -47.5,-21.5 - parent: 89 - - uid: 4337 + pos: -49.5,-16.5 + parent: 2 + - uid: 17892 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,-20.5 - parent: 89 - - uid: 4847 + pos: -48.5,-14.5 + parent: 2 + - uid: 17893 components: - type: Transform rot: 1.5707963267948966 rad - pos: -14.5,-8.5 - parent: 89 - - uid: 14957 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,22.5 - parent: 89 - - uid: 20978 + pos: -19.5,4.5 + parent: 2 + - uid: 17894 components: - type: Transform rot: 1.5707963267948966 rad - pos: 49.5,23.5 - parent: 89 -- proto: RailingCornerSmall - entities: - - uid: 181 + pos: -17.5,4.5 + parent: 2 + - uid: 17895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-18.5 - parent: 89 - - uid: 2367 + rot: 1.5707963267948966 rad + pos: -15.5,6.5 + parent: 2 + - uid: 17896 components: - type: Transform - rot: 3.141592653589793 rad - pos: -78.5,-21.5 - parent: 89 - - uid: 2848 + rot: 1.5707963267948966 rad + pos: -15.5,8.5 + parent: 2 + - uid: 17897 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,3.5 - parent: 89 - - uid: 4339 + rot: 1.5707963267948966 rad + pos: 20.5,4.5 + parent: 2 + - uid: 17898 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -47.5,-20.5 - parent: 89 - - uid: 7338 + pos: -42.5,0.5 + parent: 2 + - uid: 17899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -46.5,-21.5 - parent: 89 - - uid: 7371 + pos: -43.5,2.5 + parent: 2 + - uid: 17900 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-21.5 - parent: 89 - - uid: 16921 + pos: -45.5,2.5 + parent: 2 + - uid: 17901 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-13.5 - parent: 89 - - uid: 16983 + pos: -42.5,-1.5 + parent: 2 + - uid: 17902 components: - type: Transform rot: 1.5707963267948966 rad - pos: -7.5,-13.5 - parent: 89 - - uid: 18237 + pos: -96.5,4.5 + parent: 2 + - uid: 17903 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 89 - - uid: 18240 + pos: -61.5,-3.5 + parent: 2 + - uid: 17904 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,-7.5 - parent: 89 - - uid: 18241 + pos: -64.5,-3.5 + parent: 2 + - uid: 17905 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-3.5 - parent: 89 - - uid: 18245 + pos: -83.5,14.5 + parent: 2 + - uid: 17906 components: - type: Transform - pos: -0.5,-7.5 - parent: 89 -- proto: RandomArtifactSpawner - entities: - - uid: 7613 + rot: 3.141592653589793 rad + pos: -119.5,3.5 + parent: 2 + - uid: 17907 components: - type: Transform - pos: -5.5,-44.5 - parent: 89 -- proto: RandomDrinkBottle - entities: - - uid: 15649 + rot: 3.141592653589793 rad + pos: -119.5,4.5 + parent: 2 + - uid: 17908 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 -- proto: RandomDrinkGlass - entities: - - uid: 11034 + rot: 3.141592653589793 rad + pos: -119.5,2.5 + parent: 2 + - uid: 17909 components: - type: Transform - pos: -61.5,5.5 - parent: 89 - - uid: 15498 + pos: -61.5,7.5 + parent: 2 + - uid: 17910 components: - type: Transform - pos: -89.5,6.5 - parent: 89 - - uid: 17228 + pos: -61.5,9.5 + parent: 2 + - uid: 17911 components: - type: Transform - pos: -25.5,-3.5 - parent: 89 - - uid: 17230 + pos: -1.5,36.5 + parent: 2 + - uid: 17912 components: - type: Transform - pos: -24.5,-3.5 - parent: 89 - - uid: 17231 + rot: 3.141592653589793 rad + pos: -87.5,11.5 + parent: 2 + - uid: 17913 components: - type: Transform - pos: -22.5,-2.5 - parent: 89 -- proto: RandomFoodMeal - entities: - - uid: 16524 + pos: -58.5,20.5 + parent: 2 + - uid: 17914 components: - type: Transform - pos: 18.5,21.5 - parent: 89 - - uid: 17232 + pos: -58.5,22.5 + parent: 2 + - uid: 17915 components: - type: Transform - pos: -19.5,-5.5 - parent: 89 - - uid: 17234 + pos: -59.5,23.5 + parent: 2 + - uid: 17916 components: - type: Transform - pos: -22.5,-6.5 - parent: 89 - - uid: 17236 + pos: -60.5,23.5 + parent: 2 + - uid: 17917 components: - type: Transform - pos: -16.5,-2.5 - parent: 89 - - uid: 21083 + pos: -61.5,23.5 + parent: 2 + - uid: 17918 components: - type: Transform - pos: -23.5,-6.5 - parent: 89 -- proto: RandomFoodSingle - entities: - - uid: 123 + pos: -119.5,6.5 + parent: 2 + - uid: 17919 components: - type: Transform - pos: -43.5,-17.5 - parent: 89 - - uid: 14869 + pos: -11.5,-15.5 + parent: 2 + - uid: 17920 components: - type: Transform - pos: -44.5,21.5 - parent: 89 - - uid: 17235 + rot: 3.141592653589793 rad + pos: -119.5,5.5 + parent: 2 + - uid: 17921 components: - type: Transform - pos: -19.5,-2.5 - parent: 89 - - uid: 17237 + pos: -119.5,1.5 + parent: 2 + - uid: 17922 components: - type: Transform - pos: -16.5,-4.5 - parent: 89 - - uid: 17238 + pos: -114.5,2.5 + parent: 2 + - uid: 17923 components: - type: Transform - pos: -16.5,-1.5 - parent: 89 -- proto: RandomInstruments - entities: - - uid: 142 + pos: -114.5,5.5 + parent: 2 + - uid: 17924 components: - type: Transform - pos: -37.5,-17.5 - parent: 89 - - uid: 4283 + pos: -57.5,31.5 + parent: 2 + - uid: 17925 components: - type: Transform - pos: -31.5,-5.5 - parent: 89 - - uid: 4284 + pos: -56.5,31.5 + parent: 2 + - uid: 17926 components: - type: Transform - pos: -31.5,-6.5 - parent: 89 - - uid: 7429 + pos: -58.5,34.5 + parent: 2 + - uid: 17927 components: - type: Transform - pos: -82.5,2.5 - parent: 89 - - uid: 14847 + rot: 1.5707963267948966 rad + pos: 17.5,4.5 + parent: 2 + - uid: 17928 components: - type: Transform - pos: -44.5,13.5 - parent: 89 - - uid: 15068 + rot: 1.5707963267948966 rad + pos: 18.5,4.5 + parent: 2 + - uid: 17929 components: - type: Transform - pos: -16.5,19.5 - parent: 89 - - uid: 24668 + rot: -1.5707963267948966 rad + pos: -84.5,18.5 + parent: 2 + - uid: 17930 components: - type: Transform - pos: -29.5,3.5 - parent: 22565 -- proto: RandomPainting - entities: - - uid: 15561 + rot: -1.5707963267948966 rad + pos: -85.5,18.5 + parent: 2 + - uid: 17931 components: - type: Transform - pos: 18.5,9.5 - parent: 89 - - uid: 15567 + pos: -21.5,5.5 + parent: 2 + - uid: 17932 components: - type: Transform - pos: 34.5,17.5 - parent: 89 - - uid: 15784 + pos: 1.5,19.5 + parent: 2 + - uid: 17933 components: - type: Transform - pos: 30.5,21.5 - parent: 89 - - uid: 16494 + pos: 1.5,15.5 + parent: 2 + - uid: 17934 components: - type: Transform - pos: 23.5,38.5 - parent: 89 - - uid: 19821 + pos: 1.5,21.5 + parent: 2 + - uid: 17935 components: - type: Transform - pos: 26.5,10.5 - parent: 89 - - uid: 21572 + pos: 1.5,17.5 + parent: 2 + - uid: 17936 components: - type: Transform - rot: 3.141592653589793 rad - pos: 19.5,20.5 - parent: 89 - - uid: 24669 + rot: 1.5707963267948966 rad + pos: -57.5,43.5 + parent: 2 + - uid: 17937 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,6.5 - parent: 22565 - - uid: 24670 + rot: 1.5707963267948966 rad + pos: -57.5,42.5 + parent: 2 + - uid: 17938 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,13.5 - parent: 22565 - - uid: 24671 + rot: 1.5707963267948966 rad + pos: -57.5,41.5 + parent: 2 + - uid: 17939 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,7.5 - parent: 22565 - - uid: 24672 + pos: 43.5,-19.5 + parent: 2 + - uid: 17940 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,13.5 - parent: 22565 -- proto: RandomPosterAny - entities: - - uid: 139 + pos: 41.5,-19.5 + parent: 2 + - uid: 17941 components: - type: Transform - pos: -29.5,-18.5 - parent: 89 - - uid: 14870 + pos: 25.5,33.5 + parent: 2 + - uid: 17942 components: - type: Transform - pos: -52.5,28.5 - parent: 89 - - uid: 14871 + pos: 23.5,33.5 + parent: 2 + - uid: 17943 components: - type: Transform - pos: -38.5,25.5 - parent: 89 -- proto: RandomPosterContraband - entities: - - uid: 143 + pos: 27.5,-11.5 + parent: 2 + - uid: 17944 components: - type: Transform - pos: -45.5,-11.5 - parent: 89 - - uid: 3269 + pos: -90.5,-10.5 + parent: 2 + - uid: 17945 components: - type: Transform - pos: 35.5,-14.5 - parent: 89 - - uid: 3402 + pos: -95.5,-11.5 + parent: 2 + - uid: 17946 components: - type: Transform - pos: -36.5,-2.5 - parent: 89 - - uid: 14817 + pos: -96.5,-11.5 + parent: 2 + - uid: 17947 components: - type: Transform - pos: -47.5,22.5 - parent: 89 - - uid: 24673 + rot: 3.141592653589793 rad + pos: -89.5,-8.5 + parent: 2 + - uid: 17948 components: - type: Transform - pos: 2.5,10.5 - parent: 22565 - - uid: 24674 + rot: 3.141592653589793 rad + pos: -89.5,-9.5 + parent: 2 + - uid: 17949 components: - type: Transform - pos: 2.5,11.5 - parent: 22565 - - uid: 24675 + pos: -90.5,4.5 + parent: 2 + - uid: 17950 components: - type: Transform - pos: 3.5,9.5 - parent: 22565 - - uid: 25372 + pos: -90.5,3.5 + parent: 2 + - uid: 17951 components: - type: Transform - pos: 58.5,-20.5 - parent: 89 - - uid: 25373 + pos: -90.5,2.5 + parent: 2 + - uid: 17952 components: - type: Transform - pos: 58.5,-22.5 - parent: 89 -- proto: RandomPosterLegit - entities: - - uid: 144 + pos: -90.5,1.5 + parent: 2 + - uid: 17953 components: - type: Transform - pos: -42.5,-6.5 - parent: 89 - - uid: 3995 + pos: -120.5,16.5 + parent: 2 + - uid: 26694 components: - type: Transform - pos: 11.5,0.5 - parent: 89 - - uid: 4376 + pos: -12.5,-27.5 + parent: 24450 + - uid: 26695 components: - type: Transform - pos: -4.5,-2.5 - parent: 89 - - uid: 4379 + pos: -14.5,-27.5 + parent: 24450 + - uid: 27848 components: - type: Transform - pos: -7.5,0.5 - parent: 89 - - uid: 6020 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 27260 + - uid: 27849 components: - type: Transform - pos: 29.5,-2.5 - parent: 89 - - uid: 6024 + pos: -1.5,-1.5 + parent: 27260 +- proto: ResearchAndDevelopmentServer + entities: + - uid: 17954 components: - type: Transform - pos: 10.5,-10.5 - parent: 89 - - uid: 6029 + pos: -7.5,-36.5 + parent: 2 +- proto: Retractor + entities: + - uid: 17955 components: - type: Transform - pos: 21.5,-7.5 - parent: 89 - - uid: 6480 + pos: -11.510057,21.659258 + parent: 2 +- proto: RevolverCapGun + entities: + - uid: 17956 components: - type: Transform - pos: 30.5,-4.5 - parent: 89 - - uid: 9319 + pos: -34.502335,32.664577 + parent: 2 + - uid: 17957 components: - type: Transform - pos: -97.5,-3.5 - parent: 89 - - uid: 14104 + pos: -50.51814,24.483156 + parent: 2 +- proto: RiotBulletShield + entities: + - uid: 27850 components: - type: Transform - pos: 46.5,-1.5 - parent: 89 - - uid: 16562 + pos: 6.4677124,-10.531189 + parent: 27260 +- proto: RiotLaserShield + entities: + - uid: 27851 components: - type: Transform - pos: -82.5,22.5 - parent: 89 - - uid: 16563 + pos: 6.314926,-10.406189 + parent: 27260 +- proto: RiotShield + entities: + - uid: 24543 components: - type: Transform - pos: -86.5,31.5 - parent: 89 - - uid: 18235 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27852 components: - type: Transform - pos: 45.5,-10.5 - parent: 89 - - uid: 21621 + pos: 6.731598,-10.350647 + parent: 27260 +- proto: RipleyLArm + entities: + - uid: 26696 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,4.5 - parent: 89 - - uid: 24676 + pos: -5.619814,7.5630064 + parent: 24450 +- proto: RockGuitarInstrument + entities: + - uid: 17958 components: - type: Transform - pos: -21.5,-1.5 - parent: 22565 - - uid: 24677 + pos: -35.669586,-7.3551264 + parent: 2 +- proto: RollerBed + entities: + - uid: 17959 components: - type: Transform - pos: -16.5,-4.5 - parent: 22565 - - uid: 24678 + pos: 15.437534,-2.3403144 + parent: 2 + - uid: 17960 components: - type: Transform - pos: -7.5,-4.5 - parent: 22565 - - uid: 24679 + pos: 27.46604,20.420237 + parent: 2 + - uid: 17961 components: - type: Transform - pos: -2.5,-1.5 - parent: 22565 - - uid: 24680 + pos: 27.46604,20.873362 + parent: 2 + - uid: 17962 components: - type: Transform - pos: -26.5,-1.5 - parent: 22565 - - uid: 24681 + pos: -9.512561,17.593462 + parent: 2 + - uid: 27853 components: - type: Transform - pos: 2.5,-1.5 - parent: 22565 - - uid: 24682 + pos: -4.511612,-10.278687 + parent: 27260 +- proto: RubberStampApproved + entities: + - uid: 17963 components: - type: Transform - pos: -24.5,22.5 - parent: 22565 - - uid: 24683 + pos: 44.726154,4.9360046 + parent: 2 + - uid: 17964 components: - type: Transform - pos: -19.5,22.5 - parent: 22565 - - uid: 24684 + pos: -61.259422,-4.204013 + parent: 2 + - uid: 17965 components: - type: Transform - pos: 8.5,4.5 - parent: 22565 - - uid: 24685 + pos: -75.95376,-5.1340904 + parent: 2 +- proto: RubberStampDenied + entities: + - uid: 17966 components: - type: Transform - pos: 8.5,8.5 - parent: 22565 - - uid: 24686 + pos: 44.726154,4.7328796 + parent: 2 + - uid: 17967 components: - type: Transform - pos: -32.5,4.5 - parent: 22565 - - uid: 24687 + pos: -75.96599,-5.4276247 + parent: 2 + - uid: 17968 components: - type: Transform - pos: -32.5,8.5 - parent: 22565 - - uid: 24688 + pos: -61.259422,-4.500888 + parent: 2 +- proto: SadTromboneImplanter + entities: + - uid: 603 components: - type: Transform - pos: -32.5,12.5 - parent: 22565 - - uid: 24689 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SalvageCanisterSpawner + entities: + - uid: 17969 components: - type: Transform - pos: 8.5,12.5 - parent: 22565 - - uid: 24690 + pos: -80.5,-24.5 + parent: 2 + - uid: 26697 components: - type: Transform - pos: -4.5,22.5 - parent: 22565 - - uid: 24691 + pos: -19.5,-7.5 + parent: 24450 + - uid: 26698 components: - type: Transform - pos: 0.5,22.5 - parent: 22565 - - uid: 24692 + pos: -6.5,-10.5 + parent: 24450 +- proto: SalvageHumanCorpseSpawner + entities: + - uid: 17970 components: - type: Transform - pos: 0.5,16.5 - parent: 22565 - - uid: 24693 + pos: -55.5,-16.5 + parent: 2 + - uid: 26699 components: - type: Transform - pos: -4.5,16.5 - parent: 22565 - - uid: 24694 + pos: 3.5,-4.5 + parent: 24450 +- proto: SalvageMagnet + entities: + - uid: 17971 components: - type: Transform - pos: -19.5,16.5 - parent: 22565 - - uid: 24695 + pos: -45.5,-19.5 + parent: 2 +- proto: Saw + entities: + - uid: 17972 components: - type: Transform - pos: -24.5,16.5 - parent: 22565 - - uid: 25368 + pos: -12.387761,21.596758 + parent: 2 +- proto: SawElectric + entities: + - uid: 17973 components: - type: Transform - pos: 47.5,-21.5 - parent: 89 - - uid: 25369 + pos: 0.31544685,37.508827 + parent: 2 + - uid: 17974 components: - type: Transform - pos: 47.5,-18.5 - parent: 89 - - uid: 25370 + pos: 8.521248,-22.418674 + parent: 2 + - uid: 17975 components: - type: Transform - pos: 42.5,-34.5 - parent: 89 - - uid: 25371 + pos: -10.669011,21.674883 + parent: 2 +- proto: SaxophoneInstrument + entities: + - uid: 17976 components: - type: Transform - pos: 54.5,-28.5 - parent: 89 - - uid: 25374 + pos: 1.6962042,42.518917 + parent: 2 +- proto: Scalpel + entities: + - uid: 17977 components: - type: Transform - pos: 52.5,-21.5 - parent: 89 - - uid: 25375 + pos: 3.0810719,34.555702 + parent: 2 + - uid: 17978 components: - type: Transform - pos: 52.5,-18.5 - parent: 89 - - uid: 25376 + rot: -1.5707963267948966 rad + pos: 9.443718,8.545023 + parent: 2 + - uid: 17979 components: - type: Transform - pos: 41.5,-24.5 - parent: 89 -- proto: RandomSnacks + pos: -10.645547,21.456133 + parent: 2 +- proto: ScalpelShiv entities: - - uid: 10901 + - uid: 17980 components: - type: Transform - pos: -70.5,5.5 - parent: 89 - - uid: 15499 + pos: 49.471436,-33.456047 + parent: 2 + - uid: 25099 components: - type: Transform - pos: -84.5,4.5 - parent: 89 -- proto: RandomSoap + parent: 25092 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Screen entities: - - uid: 141 + - uid: 17981 components: - type: Transform - pos: -38.5,-15.5 - parent: 89 - - uid: 10298 + pos: 59.5,1.5 + parent: 2 + - uid: 17982 components: - type: Transform - pos: -37.5,33.5 - parent: 89 - - uid: 10352 + pos: 59.5,7.5 + parent: 2 + - uid: 17983 components: - type: Transform - pos: -22.5,33.5 - parent: 89 - - uid: 20980 + pos: -63.5,32.5 + parent: 2 + - uid: 17984 components: - type: Transform - pos: 40.5,17.5 - parent: 89 - - uid: 21139 + pos: 26.5,0.5 + parent: 2 + - uid: 17985 components: - type: Transform - pos: -38.5,8.5 - parent: 89 - - uid: 21861 + pos: -54.5,21.5 + parent: 2 + - uid: 17986 components: - type: Transform - pos: 47.5,-33.5 - parent: 89 -- proto: RandomSpawner - entities: - - uid: 1671 + pos: -63.5,42.5 + parent: 2 + - uid: 17987 components: - type: Transform - pos: -61.5,14.5 - parent: 89 - - uid: 1751 + pos: 41.5,5.5 + parent: 2 + - uid: 17988 components: - type: Transform - pos: -37.5,3.5 - parent: 89 - - uid: 7299 + pos: -27.5,-3.5 + parent: 2 + - uid: 17989 components: - type: Transform - pos: -89.5,27.5 - parent: 89 - - uid: 9645 + pos: 16.5,-7.5 + parent: 2 + - uid: 17990 components: - type: Transform - pos: -88.5,26.5 - parent: 89 - - uid: 10673 + pos: 3.5,0.5 + parent: 2 + - uid: 17991 components: - type: Transform - pos: -67.5,9.5 - parent: 89 - - uid: 10676 + pos: 15.5,18.5 + parent: 2 + - uid: 17992 components: - type: Transform - pos: -63.5,7.5 - parent: 89 - - uid: 10802 + pos: -12.5,0.5 + parent: 2 + - uid: 17993 components: - type: Transform - pos: -31.5,3.5 - parent: 89 - - uid: 10823 + pos: 9.5,10.5 + parent: 2 + - uid: 17994 components: - type: Transform - pos: -29.5,17.5 - parent: 89 - - uid: 10837 + pos: 33.5,17.5 + parent: 2 + - uid: 17995 components: - type: Transform - pos: -65.5,10.5 - parent: 89 - - uid: 10868 + pos: -3.5,10.5 + parent: 2 + - uid: 17996 components: - type: Transform - pos: -67.5,14.5 - parent: 89 - - uid: 10869 + pos: 9.5,31.5 + parent: 2 + - uid: 17997 components: - type: Transform - pos: -58.5,13.5 - parent: 89 - - uid: 10870 + pos: 25.5,26.5 + parent: 2 + - uid: 17998 components: - type: Transform - pos: -53.5,14.5 - parent: 89 - - uid: 10871 + pos: 0.5,-23.5 + parent: 2 + - uid: 17999 components: - type: Transform - pos: -52.5,13.5 - parent: 89 - - uid: 10902 + pos: -2.5,-42.5 + parent: 2 + - uid: 18000 components: - type: Transform - pos: -70.5,3.5 - parent: 89 - - uid: 10976 + pos: -15.5,-20.5 + parent: 2 + - uid: 18001 components: - type: Transform - pos: -77.5,3.5 - parent: 89 - - uid: 10980 + pos: -34.5,-15.5 + parent: 2 + - uid: 18002 components: - type: Transform - pos: -64.5,-0.5 - parent: 89 - - uid: 10992 + pos: -25.5,6.5 + parent: 2 + - uid: 18003 components: - type: Transform - pos: -56.5,4.5 - parent: 89 - - uid: 11001 + pos: -42.5,6.5 + parent: 2 + - uid: 18004 components: - type: Transform - pos: -54.5,-0.5 - parent: 89 - - uid: 11032 + pos: -48.5,12.5 + parent: 2 + - uid: 18005 components: - type: Transform - pos: -70.5,-1.5 - parent: 89 - - uid: 11040 + pos: -57.5,-10.5 + parent: 2 + - uid: 18006 components: - type: Transform - pos: -23.5,1.5 - parent: 89 - - uid: 11041 + pos: -68.5,-7.5 + parent: 2 + - uid: 18007 components: - type: Transform - pos: -26.5,2.5 - parent: 89 - - uid: 11043 + pos: -75.5,-4.5 + parent: 2 + - uid: 18008 components: - type: Transform - pos: -30.5,10.5 - parent: 89 - - uid: 14067 + pos: -68.5,6.5 + parent: 2 + - uid: 18009 components: - type: Transform - pos: 4.5,26.5 - parent: 89 - - uid: 14145 + pos: -118.5,-9.5 + parent: 2 + - uid: 18010 components: - type: Transform - pos: -85.5,29.5 - parent: 89 - - uid: 15145 + pos: -60.5,15.5 + parent: 2 + - uid: 18011 components: - type: Transform - pos: -16.5,15.5 - parent: 89 - - uid: 15155 + pos: -102.5,-11.5 + parent: 2 + - uid: 18012 components: - type: Transform - pos: -21.5,21.5 - parent: 89 - - uid: 15454 + pos: -118.5,11.5 + parent: 2 + - uid: 18013 components: - type: Transform - pos: -80.5,9.5 - parent: 89 - - uid: 15468 + pos: -109.5,22.5 + parent: 2 + - uid: 18014 components: - type: Transform - pos: -87.5,9.5 - parent: 89 - - uid: 15515 + pos: -104.5,-6.5 + parent: 2 + - uid: 18015 components: - type: Transform - pos: -72.5,17.5 - parent: 89 - - uid: 15516 + pos: -96.5,9.5 + parent: 2 + - uid: 18016 components: - type: Transform - pos: -72.5,13.5 - parent: 89 - - uid: 15517 + pos: -93.5,18.5 + parent: 2 + - uid: 18017 components: - type: Transform - pos: -64.5,18.5 - parent: 89 - - uid: 15518 + pos: -81.5,6.5 + parent: 2 + - uid: 18018 components: - type: Transform - pos: -57.5,16.5 - parent: 89 - - uid: 15519 + pos: -28.5,14.5 + parent: 2 + - uid: 18019 components: - type: Transform - pos: -47.5,15.5 - parent: 89 - - uid: 15522 + pos: -86.5,29.5 + parent: 2 + - uid: 18020 components: - type: Transform - pos: -43.5,18.5 - parent: 89 - - uid: 15523 + pos: -32.5,26.5 + parent: 2 + - uid: 18021 components: - type: Transform - pos: -36.5,16.5 - parent: 89 - - uid: 15524 + pos: -27.5,26.5 + parent: 2 +- proto: Screwdriver + entities: + - uid: 18022 components: - type: Transform - pos: -86.5,3.5 - parent: 89 - - uid: 16358 + pos: -131.62726,-2.1679683 + parent: 2 + - uid: 18023 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,36.5 - parent: 89 - - uid: 16554 + pos: -10.698816,-35.129005 + parent: 2 +- proto: SecurityTechFab + entities: + - uid: 18024 components: - type: Transform - pos: -83.5,24.5 - parent: 89 - - uid: 16564 + pos: 40.5,-8.5 + parent: 2 +- proto: SeedExtractor + entities: + - uid: 18025 components: - type: Transform - pos: -61.5,33.5 - parent: 89 - - uid: 16565 + pos: -3.5,-0.5 + parent: 2 +- proto: ShardGlass + entities: + - uid: 18026 components: - type: Transform - pos: -65.5,41.5 - parent: 89 - - uid: 16566 + pos: 2.9583473,36.756752 + parent: 2 +- proto: ShardGlassReinforced + entities: + - uid: 18027 components: - type: Transform - pos: -60.5,24.5 - parent: 89 - - uid: 16567 + pos: -20.636162,23.31307 + parent: 2 + - uid: 18028 components: - type: Transform - pos: -85.5,42.5 - parent: 89 - - uid: 16573 + pos: -20.292412,23.484945 + parent: 2 + - uid: 18029 components: - type: Transform - pos: -88.5,16.5 - parent: 89 - - uid: 16574 + pos: -20.418125,23.417818 + parent: 2 +- proto: SheetGlass + entities: + - uid: 8772 components: - type: Transform - pos: -97.5,21.5 - parent: 89 - - uid: 16575 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8779 components: - type: Transform - pos: -102.5,13.5 - parent: 89 - - uid: 16576 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8786 components: - type: Transform - pos: -109.5,20.5 - parent: 89 - - uid: 20373 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.5,-13.5 - parent: 89 - - uid: 20641 + parent: 9253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18030 components: - type: Transform - pos: -135.5,-20.5 - parent: 89 - - uid: 20645 + pos: -102.0251,-5.4257817 + parent: 2 + - uid: 18031 components: - type: Transform - pos: -120.5,-22.5 - parent: 89 - - uid: 20650 + pos: -5.4908185,-17.232418 + parent: 2 + - uid: 18032 components: - type: Transform - pos: -120.5,-29.5 - parent: 89 - - uid: 21119 + pos: -126.70906,-9.586103 + parent: 2 + - uid: 18033 components: - type: Transform - pos: 48.5,18.5 - parent: 89 - - uid: 21549 + pos: -26.45643,-21.482687 + parent: 2 + - uid: 18034 components: - type: Transform - pos: 14.5,26.5 - parent: 89 - - uid: 21554 + pos: -26.484663,-21.39527 + parent: 2 + - uid: 18035 components: - type: Transform - pos: 25.5,23.5 - parent: 89 - - uid: 21555 + pos: 19.237337,-0.9680009 + parent: 2 + - uid: 18036 components: - type: Transform - pos: 7.5,36.5 - parent: 89 - - uid: 24696 + pos: 19.346712,-0.9680009 + parent: 2 + - uid: 18037 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,22.5 - parent: 22565 - - uid: 24697 + pos: 19.487337,-0.9680009 + parent: 2 + - uid: 18038 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 22565 - - uid: 24698 + pos: 19.565462,-0.9680009 + parent: 2 + - uid: 18039 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,20.5 - parent: 22565 - - uid: 25705 + pos: 19.643587,-0.9680009 + parent: 2 + - uid: 18040 components: - type: Transform - pos: -40.5,0.5 - parent: 89 - - uid: 25706 + pos: 19.393587,-0.9680009 + parent: 2 + - uid: 18041 components: - type: Transform - pos: -51.5,4.5 - parent: 89 - - uid: 25707 + pos: 15.506557,-16.651836 + parent: 2 + - uid: 18042 components: - type: Transform - pos: -39.5,-7.5 - parent: 89 - - uid: 25708 + pos: 32.602047,7.415881 + parent: 2 + - uid: 24217 components: - type: Transform - pos: -30.5,-13.5 - parent: 89 - - uid: 25709 + pos: 4.429199,-7.3639374 + parent: 23919 + - uid: 25748 components: - type: Transform - pos: -20.5,-10.5 - parent: 89 - - uid: 25710 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetGlass10 + entities: + - uid: 18043 components: - type: Transform - pos: -15.5,-12.5 - parent: 89 - - uid: 25711 + pos: -65.438156,-17.318188 + parent: 2 +- proto: SheetPlasma + entities: + - uid: 18044 components: - type: Transform - pos: -6.5,-11.5 - parent: 89 - - uid: 25712 + pos: -132.69885,13.859987 + parent: 2 + - uid: 18045 components: - type: Transform - pos: -1.5,-16.5 - parent: 89 - - uid: 25713 + pos: -98.495865,-8.155361 + parent: 2 + - uid: 18046 components: - type: Transform - pos: -3.5,-5.5 - parent: 89 - - uid: 25714 + pos: -3.4340763,5.7090874 + parent: 2 + - uid: 18047 components: - type: Transform - pos: 0.5,-1.5 - parent: 89 - - uid: 25715 + pos: -132.62073,14.532562 + parent: 2 + - uid: 18048 components: - type: Transform - pos: -9.5,2.5 - parent: 89 - - uid: 25716 + pos: -5.412913,-27.433874 + parent: 2 + - uid: 24218 components: - type: Transform - pos: -55.5,20.5 - parent: 89 - - uid: 25717 + pos: 4.385498,-7.4337616 + parent: 23919 + - uid: 25749 components: - type: Transform - pos: -64.5,26.5 - parent: 89 - - uid: 25718 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasma1 + entities: + - uid: 27296 components: - type: Transform - pos: -67.5,29.5 - parent: 89 - - uid: 25719 + parent: 27293 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlasteel + entities: + - uid: 18049 components: - type: Transform - pos: -62.5,39.5 - parent: 89 - - uid: 25721 + pos: 32.508297,7.447131 + parent: 2 + - uid: 18050 components: - type: Transform - pos: 18.5,1.5 - parent: 89 - - uid: 25722 + pos: -5.567326,-34.428066 + parent: 2 + - uid: 18051 components: - type: Transform - pos: -17.5,1.5 - parent: 89 - - uid: 25723 + pos: -99.255066,9.607468 + parent: 2 + - uid: 18052 components: - type: Transform - pos: 9.5,3.5 - parent: 89 - - uid: 25724 + pos: -99.255066,9.607468 + parent: 2 + - uid: 18053 components: - type: Transform - pos: 4.5,2.5 - parent: 89 - - uid: 25725 + pos: -99.255066,9.607468 + parent: 2 + - uid: 18054 components: - type: Transform - pos: 25.5,2.5 - parent: 89 - - uid: 25726 + pos: -6.523316,27.486149 + parent: 2 + - uid: 18055 components: - type: Transform - pos: 26.5,3.5 - parent: 89 - - uid: 25727 + pos: 17.446835,-0.2770384 + parent: 2 + - uid: 18056 components: - type: Transform - pos: 32.5,1.5 - parent: 89 - - uid: 25728 + pos: 17.55621,-0.2770384 + parent: 2 + - uid: 18057 components: - type: Transform - pos: 35.5,5.5 - parent: 89 - - uid: 25729 + pos: 17.290585,-0.2770384 + parent: 2 + - uid: 18058 components: - type: Transform - pos: 38.5,8.5 - parent: 89 - - uid: 25730 + pos: 17.196835,-0.2770384 + parent: 2 + - uid: 18059 components: - type: Transform - pos: 40.5,1.5 - parent: 89 - - uid: 25731 + pos: -126.426926,-10.4049835 + parent: 2 + - uid: 27854 + components: + - type: Transform + pos: -1.3938599,-8.498901 + parent: 27260 +- proto: SheetPlasteel10 + entities: + - uid: 18060 components: - type: Transform - pos: -74.5,10.5 - parent: 89 - - uid: 25732 + rot: 1.5707963267948966 rad + pos: -114.39805,-12.529028 + parent: 2 +- proto: SheetPlastic + entities: + - uid: 9255 components: - type: Transform - pos: -72.5,8.5 - parent: 89 - - uid: 25733 + parent: 9253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18061 components: - type: Transform - pos: -82.5,16.5 - parent: 89 - - uid: 25734 + pos: 32.539547,7.306506 + parent: 2 + - uid: 18062 components: - type: Transform - pos: -80.5,20.5 - parent: 89 - - uid: 25735 + pos: -5.504826,-36.41244 + parent: 2 + - uid: 18063 components: - type: Transform - pos: -84.5,23.5 - parent: 89 - - uid: 25736 + pos: -102.634476,-5.4101567 + parent: 2 + - uid: 18064 components: - type: Transform - pos: -84.5,36.5 - parent: 89 - - uid: 25737 + pos: 17.381163,-0.86558884 + parent: 2 + - uid: 18065 components: - type: Transform - pos: -24.5,-5.5 - parent: 89 - - uid: 25738 + pos: 17.714497,-0.87600553 + parent: 2 + - uid: 18066 components: - type: Transform - pos: -20.5,-8.5 - parent: 89 - - uid: 25739 + pos: 17.141579,-0.84475553 + parent: 2 + - uid: 18067 components: - type: Transform - pos: -18.5,-2.5 - parent: 89 -- proto: RandomSpawner100 - entities: - - uid: 24699 + pos: -5.5064435,-17.873043 + parent: 2 + - uid: 18068 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,0.5 - parent: 22565 - - uid: 24700 + pos: -20.26341,-27.459917 + parent: 2 + - uid: 24219 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,3.5 - parent: 22565 - - uid: 24701 + pos: 4.418701,-7.4264374 + parent: 23919 + - uid: 24220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -24.5,2.5 - parent: 22565 - - uid: 24702 + pos: 4.376953,-7.3951874 + parent: 23919 + - uid: 25750 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,7.5 - parent: 22565 - - uid: 24703 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SheetPlastic10 + entities: + - uid: 18069 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.5,5.5 - parent: 22565 - - uid: 24704 + pos: -65.719406,-17.505688 + parent: 2 +- proto: SheetPrinter1 + entities: + - uid: 8850 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,11.5 - parent: 22565 - - uid: 24705 + pos: -72.457275,-17.441816 + parent: 2 + - uid: 8900 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,6.5 - parent: 22565 - - uid: 24706 + pos: -72.5979,-17.410566 + parent: 2 + - uid: 8901 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,10.5 - parent: 22565 - - uid: 24707 + pos: -72.19165,-17.457441 + parent: 2 + - uid: 23697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,8.5 - parent: 22565 - - uid: 24708 + pos: -72.12915,-17.394941 + parent: 2 + - uid: 23698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -6.5,5.5 - parent: 22565 - - uid: 24709 + pos: -72.644775,-17.316816 + parent: 2 + - uid: 23699 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,0.5 - parent: 22565 - - uid: 24710 + pos: -72.676025,-17.379316 + parent: 2 + - uid: 23700 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,9.5 - parent: 22565 - - uid: 24711 + pos: -72.5354,-17.441816 + parent: 2 + - uid: 23701 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,19.5 - parent: 22565 - - uid: 24712 + pos: -72.332275,-17.363691 + parent: 2 + - uid: 23702 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,22.5 - parent: 22565 - - uid: 24713 + pos: -72.37915,-17.441816 + parent: 2 + - uid: 23703 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,21.5 - parent: 22565 - - uid: 24714 + pos: -72.4104,-17.363691 + parent: 2 + - uid: 23704 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -20.5,23.5 - parent: 22565 - - uid: 24715 + pos: -72.551025,-17.426191 + parent: 2 + - uid: 23705 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,20.5 - parent: 22565 -- proto: RandomVending + pos: -72.551025,-17.457441 + parent: 2 +- proto: SheetRGlass entities: - - uid: 145 + - uid: 18070 components: - type: Transform - pos: -24.5,-17.5 - parent: 89 - - uid: 6526 + pos: 32.445797,7.431506 + parent: 2 + - uid: 18071 components: - type: Transform - pos: -57.5,5.5 - parent: 89 - - uid: 7206 + pos: -99.723816,9.591843 + parent: 2 + - uid: 18072 components: - type: Transform - pos: -91.5,4.5 - parent: 89 - - uid: 9733 + pos: -99.70819,9.591843 + parent: 2 + - uid: 18073 components: - type: Transform - pos: -67.5,45.5 - parent: 89 - - uid: 9929 + pos: -99.70819,9.591843 + parent: 2 + - uid: 18074 components: - type: Transform - pos: -67.5,35.5 - parent: 89 - - uid: 9956 + pos: -114.52647,-12.4739895 + parent: 2 + - uid: 27855 components: - type: Transform - pos: -62.5,41.5 - parent: 89 - - uid: 9957 + pos: -1.4216461,-8.443329 + parent: 27260 +- proto: SheetRUGlass1 + entities: + - uid: 18075 components: - type: Transform - pos: -61.5,41.5 - parent: 89 - - uid: 9959 + rot: 3.141592653589793 rad + pos: 1.4767406,30.443174 + parent: 2 + - uid: 18076 components: - type: Transform - pos: -64.5,40.5 - parent: 89 - - uid: 9960 + pos: -7.5583944,33.217613 + parent: 2 +- proto: SheetSteel + entities: + - uid: 8773 components: - type: Transform - pos: -67.5,23.5 - parent: 89 - - uid: 10007 + parent: 8767 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8780 components: - type: Transform - pos: -62.5,28.5 - parent: 89 - - uid: 10008 + parent: 8774 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8787 components: - type: Transform - pos: -56.5,28.5 - parent: 89 - - uid: 10009 + parent: 8781 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 9256 components: - type: Transform - pos: -62.5,36.5 - parent: 89 - - uid: 10841 + parent: 9253 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18077 components: - type: Transform - pos: 1.5,-6.5 - parent: 89 - - uid: 10880 + pos: -101.448105,-5.5596366 + parent: 2 + - uid: 18078 components: - type: Transform - pos: -33.5,12.5 - parent: 89 - - uid: 10881 + pos: -29.384861,-15.327836 + parent: 2 + - uid: 18079 components: - type: Transform - pos: -33.5,13.5 - parent: 89 - - uid: 10886 + pos: -91.53964,25.270058 + parent: 2 + - uid: 18080 components: - type: Transform - pos: 1.5,-8.5 - parent: 89 - - uid: 10888 + pos: 15.55621,-16.404793 + parent: 2 + - uid: 18081 components: - type: Transform - pos: 1.5,-7.5 - parent: 89 - - uid: 10940 + pos: -5.5376935,-16.576168 + parent: 2 + - uid: 18082 components: - type: Transform - pos: -53.5,12.5 - parent: 89 - - uid: 10942 + pos: -29.384861,-15.536169 + parent: 2 + - uid: 18083 components: - type: Transform - pos: -84.5,1.5 - parent: 89 - - uid: 10943 + pos: -44.54738,-16.571465 + parent: 2 + - uid: 18084 components: - type: Transform - pos: -76.5,5.5 - parent: 89 - - uid: 10944 + pos: -26.429432,-19.339746 + parent: 2 + - uid: 18085 components: - type: Transform - pos: -55.5,12.5 - parent: 89 - - uid: 10997 + pos: -26.45727,-19.41212 + parent: 2 + - uid: 18086 components: - type: Transform - pos: -75.5,5.5 - parent: 89 - - uid: 11010 + pos: 19.299837,-0.3586259 + parent: 2 + - uid: 18087 components: - type: Transform - pos: -54.5,5.5 - parent: 89 - - uid: 11876 + pos: 19.424837,-0.3586259 + parent: 2 + - uid: 18088 components: - type: Transform - pos: -3.5,13.5 - parent: 89 - - uid: 12012 + pos: 19.565462,-0.3586259 + parent: 2 + - uid: 18089 components: - type: Transform - pos: -6.5,5.5 - parent: 89 - - uid: 14850 + pos: 19.643587,-0.3586259 + parent: 2 + - uid: 18090 components: - type: Transform - pos: -35.5,14.5 - parent: 89 - - uid: 15493 + pos: 19.377962,-0.3742509 + parent: 2 + - uid: 18091 components: - type: Transform - pos: -91.5,7.5 - parent: 89 - - uid: 16411 + pos: 19.581087,-0.3742509 + parent: 2 + - uid: 18092 components: - type: Transform - pos: -120.5,-15.5 - parent: 89 - - uid: 16465 + pos: -126.426926,-8.5456085 + parent: 2 + - uid: 18093 components: - type: Transform - pos: -98.5,2.5 - parent: 89 - - uid: 16466 + pos: -126.426926,-8.5456085 + parent: 2 + - uid: 18094 components: - type: Transform - pos: -97.5,2.5 - parent: 89 - - uid: 16571 + pos: 32.602047,7.478381 + parent: 2 + - uid: 24221 components: - type: Transform - pos: -85.5,25.5 - parent: 89 - - uid: 16572 + pos: 4.3100586,-7.44532 + parent: 23919 + - uid: 24222 components: - type: Transform - pos: -85.5,26.5 - parent: 89 - - uid: 17175 + pos: 4.3100586,-7.4557343 + parent: 23919 + - uid: 24223 components: - type: Transform - pos: -41.5,-9.5 - parent: 89 - - uid: 17177 + pos: 4.2995605,-7.44532 + parent: 23919 + - uid: 25751 components: - type: Transform - pos: 52.5,-28.5 - parent: 89 - - uid: 19061 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 25752 components: - type: Transform - pos: -86.5,35.5 - parent: 89 - - uid: 19486 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27856 components: - type: Transform - pos: -60.5,26.5 - parent: 89 - - uid: 19487 + pos: -1.5466461,-8.3461 + parent: 27260 +- proto: SheetSteel10 + entities: + - uid: 18095 components: - type: Transform - pos: -59.5,26.5 - parent: 89 - - uid: 19525 + pos: -65.344406,-17.552563 + parent: 2 + - uid: 18096 components: - type: Transform - pos: -23.5,6.5 - parent: 89 - - uid: 19552 + pos: 6.5544925,-21.70108 + parent: 2 + - uid: 18097 components: - type: Transform - pos: -36.5,5.5 - parent: 89 - - uid: 19553 + rot: 1.5707963267948966 rad + pos: -112.50842,-13.464668 + parent: 2 + - uid: 18098 components: - type: Transform - pos: -37.5,5.5 - parent: 89 - - uid: 19554 + rot: 1.5707963267948966 rad + pos: -112.28827,-13.483014 + parent: 2 +- proto: SheetUGlass1 + entities: + - uid: 18099 components: - type: Transform - pos: -72.5,5.5 - parent: 89 - - uid: 19555 + rot: 3.141592653589793 rad + pos: -26.489836,-22.380846 + parent: 2 + - uid: 18100 components: - type: Transform - pos: -71.5,5.5 - parent: 89 - - uid: 19556 + rot: 3.141592653589793 rad + pos: 6.3812647,-26.421057 + parent: 2 +- proto: SheetUranium + entities: + - uid: 18101 components: - type: Transform - pos: -85.5,19.5 - parent: 89 - - uid: 19557 + rot: 3.141592653589793 rad + pos: -132.65198,13.390748 + parent: 2 + - uid: 18102 components: - type: Transform - pos: -84.5,19.5 - parent: 89 - - uid: 21791 + rot: 3.141592653589793 rad + pos: -132.6051,12.671249 + parent: 2 + - uid: 18103 components: - type: Transform - pos: 53.5,-28.5 - parent: 89 -- proto: RandomVendingDrinks - entities: - - uid: 24716 + rot: 3.141592653589793 rad + pos: 16.451817,-13.43622 + parent: 2 + - uid: 18104 components: - type: Transform - pos: -9.5,-21.5 - parent: 22565 -- proto: RandomVendingSnacks - entities: - - uid: 24717 + pos: -10.534918,-25.547523 + parent: 2 + - uid: 25753 components: - type: Transform - pos: -17.5,-21.5 - parent: 22565 - - uid: 24718 + parent: 25745 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: ShellShotgunImprovised + entities: + - uid: 26700 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,4.5 - parent: 22565 -- proto: RCD - entities: - - uid: 2565 + pos: 3.2740273,11.768624 + parent: 24450 + - uid: 26701 components: - type: Transform - rot: 43.98229715025713 rad - pos: -87.43318,-13.07812 - parent: 89 - - uid: 6898 + pos: 3.9615273,11.752999 + parent: 24450 + - uid: 26702 components: - type: Transform - pos: -103.46396,11.808571 - parent: 89 - - uid: 9301 + pos: 4.6334023,11.752999 + parent: 24450 + - uid: 26703 components: - type: Transform - pos: 28.536625,7.580703 - parent: 89 -- proto: RCDAmmo - entities: - - uid: 2679 + pos: 4.4771523,11.752999 + parent: 24450 + - uid: 26704 components: - type: Transform - pos: -87.223404,-13.554229 - parent: 89 - - uid: 6899 + pos: 4.3052773,11.799874 + parent: 24450 + - uid: 26705 components: - type: Transform - pos: -103.72958,11.464821 - parent: 89 - - uid: 6901 + pos: 4.6959023,11.659249 + parent: 24450 +- proto: ShippingContainerConarex + entities: + - uid: 18105 components: - type: Transform - pos: -103.24521,11.464821 - parent: 89 - - uid: 9302 + pos: -65.5,-9.5 + parent: 2 +- proto: ShippingContainerCybersun + entities: + - uid: 18106 components: - type: Transform - pos: 27.536625,7.611953 - parent: 89 - - uid: 9303 + pos: -65.5,-11.5 + parent: 2 +- proto: ShippingContainerInterdyne + entities: + - uid: 18107 components: - type: Transform - pos: 27.536625,7.611953 - parent: 89 - - uid: 9304 + pos: -60.5,-9.5 + parent: 2 + - uid: 18108 components: - type: Transform - pos: 27.536625,7.611953 - parent: 89 -- proto: RCDEmpty + pos: -65.5,-10.5 + parent: 2 +- proto: ShippingContainerNanotrasen entities: - - uid: 14645 + - uid: 18109 components: - - type: MetaData - name: плазменный резак - type: Transform - pos: -130.23235,21.319153 - parent: 89 -- proto: Recycler + pos: -65.5,-12.5 + parent: 2 +- proto: ShotGunCabinetFilled entities: - - uid: 7674 + - uid: 18110 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 2 + - uid: 27857 components: - type: Transform rot: 1.5707963267948966 rad - pos: -96.5,27.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7667 - - uid: 24719 + pos: 3.5,-10.5 + parent: 27260 +- proto: ShuttersNormal + entities: + - uid: 18111 components: - type: Transform - pos: -25.5,1.5 - parent: 22565 + pos: -99.5,29.5 + parent: 2 - type: DeviceLinkSink links: - - 24937 -- proto: RegenerativeMesh - entities: - - uid: 10116 + - 18422 + - uid: 18112 components: - type: Transform - parent: 17129 + rot: -1.5707963267948966 rad + pos: 41.5,8.5 + parent: 2 + - type: Occluder + enabled: False - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 10172 + - type: Door + state: Open + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 16000 + - uid: 18113 components: - type: Transform - parent: 17129 + rot: -1.5707963267948966 rad + pos: 41.5,6.5 + parent: 2 + - type: Occluder + enabled: False - type: Physics canCollide: False - - type: InsideEntityStorage - - uid: 11594 + - type: Door + state: Open + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 16000 + - uid: 18114 components: - type: Transform - parent: 17129 + rot: -1.5707963267948966 rad + pos: 41.5,9.5 + parent: 2 + - type: Occluder + enabled: False - type: Physics canCollide: False - - type: InsideEntityStorage -- proto: ReinforcedGirder - entities: - - uid: 672 + - type: Door + state: Open + - type: Airtight + airBlocked: False + - type: DeviceLinkSink + links: + - 16000 + - uid: 18115 components: - type: Transform - pos: 50.5,-7.5 - parent: 89 - - uid: 9342 + pos: -101.5,29.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18421 + - uid: 18116 components: - type: Transform - pos: -26.5,43.5 - parent: 89 - - uid: 10795 + pos: -20.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16002 + - 16001 + - uid: 18117 components: - type: Transform - pos: -28.5,43.5 - parent: 89 - - uid: 10796 + pos: -19.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16002 + - 16001 + - uid: 18118 components: - type: Transform - pos: -24.5,43.5 - parent: 89 - - uid: 10889 + pos: -18.5,-14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 16002 + - 16001 + - uid: 26706 components: - type: Transform - pos: -24.5,45.5 - parent: 89 - - uid: 11037 + rot: 1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26718 + - uid: 26707 components: - type: Transform - pos: -24.5,47.5 - parent: 89 - - uid: 11045 + rot: 1.5707963267948966 rad + pos: -8.5,-23.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26718 + - uid: 26708 components: - type: Transform - pos: -24.5,49.5 - parent: 89 - - uid: 11046 + rot: -1.5707963267948966 rad + pos: -18.5,-24.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26719 + - uid: 26709 components: - type: Transform - pos: -24.5,51.5 - parent: 89 - - uid: 11210 + rot: -1.5707963267948966 rad + pos: -18.5,-23.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26719 + - uid: 26710 components: - type: Transform - pos: -25.5,53.5 - parent: 89 - - uid: 12700 + pos: -14.5,-27.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26716 + - uid: 26711 components: - type: Transform - pos: -27.5,53.5 - parent: 89 - - uid: 12826 + pos: -13.5,-27.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26716 + - uid: 26712 components: - type: Transform - pos: -29.5,53.5 - parent: 89 - - uid: 12983 + pos: -12.5,-27.5 + parent: 24450 + - type: DeviceLinkSink + links: + - 26716 +- proto: ShuttersNormalOpen + entities: + - uid: 18119 components: + - type: MetaData + name: ставни 1 - type: Transform - pos: -31.5,53.5 - parent: 89 - - uid: 12984 + pos: -56.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18409 + - uid: 18120 components: + - type: MetaData + name: ставни 1 - type: Transform - pos: -33.5,53.5 - parent: 89 - - uid: 12985 + pos: -57.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18409 + - uid: 18121 components: + - type: MetaData + name: ставни 2 - type: Transform - pos: -35.5,53.5 - parent: 89 - - uid: 12987 + pos: -56.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 18122 components: + - type: MetaData + name: ставни 2 - type: Transform - pos: -35.5,51.5 - parent: 89 - - uid: 12988 + pos: -57.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 18123 components: + - type: MetaData + name: ставни 1 - type: Transform - pos: -35.5,49.5 - parent: 89 - - uid: 13011 + pos: -55.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18409 + - uid: 18124 components: - type: Transform - pos: -35.5,47.5 - parent: 89 - - uid: 13018 + rot: -1.5707963267948966 rad + pos: -3.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18439 + - uid: 18125 components: - type: Transform - pos: -35.5,45.5 - parent: 89 - - uid: 13115 + rot: -1.5707963267948966 rad + pos: -16.5,-4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18126 components: - type: Transform - pos: -35.5,43.5 - parent: 89 - - uid: 13116 + rot: -1.5707963267948966 rad + pos: -16.5,-2.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18127 components: - type: Transform - pos: -33.5,43.5 - parent: 89 - - uid: 14035 + pos: -46.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18128 components: - type: Transform - pos: -31.5,43.5 - parent: 89 - - uid: 20922 + pos: -45.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18129 components: - type: Transform - pos: 49.5,-7.5 - parent: 89 - - uid: 21107 + pos: -44.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18130 components: - type: Transform - pos: 36.5,37.5 - parent: 89 - - uid: 21108 + pos: -43.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18417 + - uid: 18131 components: + - type: MetaData + name: ставни 2 - type: Transform - pos: 36.5,39.5 - parent: 89 - - uid: 21109 + pos: -55.5,23.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18408 + - uid: 18132 components: - type: Transform - pos: 41.5,39.5 - parent: 89 - - uid: 21110 + pos: -105.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18133 components: - type: Transform - pos: 41.5,37.5 - parent: 89 -- proto: ReinforcedPlasmaWindow - entities: - - uid: 722 + pos: -104.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18134 components: - type: Transform - pos: 12.5,35.5 - parent: 89 - - uid: 970 + pos: -103.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18135 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-22.5 - parent: 89 - - uid: 1322 + pos: -106.5,7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-22.5 - parent: 89 - - uid: 1323 + pos: -106.5,8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-22.5 - parent: 89 - - uid: 1324 + pos: -106.5,9.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18423 + - uid: 18138 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-22.5 - parent: 89 - - uid: 1325 + pos: -14.5,13.5 + parent: 2 + - uid: 18139 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-22.5 - parent: 89 - - uid: 1326 + pos: -82.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18441 + - uid: 18140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-22.5 - parent: 89 - - uid: 2032 + pos: -81.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18441 + - uid: 18141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-22.5 - parent: 89 - - uid: 2033 + pos: -80.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18441 + - uid: 18142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-22.5 - parent: 89 - - uid: 2286 + pos: -80.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 18143 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-22.5 - parent: 89 - - uid: 2287 + pos: -82.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 18144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-22.5 - parent: 89 - - uid: 2288 + pos: 4.5,-32.5 + parent: 2 + - uid: 18145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-22.5 - parent: 89 - - uid: 2289 + pos: -10.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18146 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-23.5 - parent: 89 - - uid: 2290 + pos: -11.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18147 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-24.5 - parent: 89 - - uid: 2291 + pos: -9.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18148 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-25.5 - parent: 89 - - uid: 2292 + pos: -8.5,-15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18425 + - uid: 18149 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -79.5,-26.5 - parent: 89 - - uid: 2293 + pos: 1.5,-32.5 + parent: 2 + - uid: 18150 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-26.5 - parent: 89 - - uid: 2294 + pos: 11.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 18151 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-26.5 - parent: 89 - - uid: 7451 + pos: 10.5,15.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18419 + - uid: 18152 components: - type: Transform - pos: -88.5,-6.5 - parent: 89 - - uid: 7452 + pos: 3.5,-32.5 + parent: 2 + - uid: 18153 components: - type: Transform - pos: -87.5,-6.5 - parent: 89 - - uid: 8515 + pos: 18.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 18154 components: - type: Transform - pos: -126.5,12.5 - parent: 89 - - uid: 8518 + pos: 2.5,-32.5 + parent: 2 + - uid: 18155 components: - type: Transform - pos: -128.5,3.5 - parent: 89 - - uid: 8527 + pos: 12.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18438 + - uid: 18156 components: - type: Transform - pos: -128.5,4.5 - parent: 89 - - uid: 10810 + pos: 12.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18438 + - uid: 18157 components: - type: Transform - pos: 12.5,41.5 - parent: 89 - - uid: 10811 + rot: -1.5707963267948966 rad + pos: -3.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18439 + - uid: 18158 components: - type: Transform - pos: 7.5,41.5 - parent: 89 - - uid: 10828 + pos: 20.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 18159 components: - type: Transform - pos: 7.5,42.5 - parent: 89 - - uid: 10836 + pos: 17.5,4.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18431 + - uid: 18160 components: - type: Transform - pos: 12.5,42.5 - parent: 89 - - uid: 10925 + pos: 20.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18161 components: - type: Transform - pos: 11.5,43.5 - parent: 89 - - uid: 11042 + pos: 21.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18162 components: - type: Transform - pos: 11.5,36.5 - parent: 89 - - uid: 11091 + pos: 22.5,16.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18163 components: - type: Transform - pos: 12.5,38.5 - parent: 89 - - uid: 12601 + pos: 23.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18164 components: - type: Transform - pos: 8.5,43.5 - parent: 89 - - uid: 12702 + pos: 23.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18165 components: - type: Transform - pos: 13.5,38.5 - parent: 89 - - uid: 14023 + pos: 23.5,19.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18437 + - uid: 18166 components: - type: Transform - pos: 7.5,35.5 - parent: 89 - - uid: 14024 + rot: -1.5707963267948966 rad + pos: -3.5,20.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18439 + - uid: 18167 components: - type: Transform - pos: 6.5,38.5 - parent: 89 - - uid: 14997 + pos: 48.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 + - uid: 18168 components: - type: Transform - pos: 11.5,37.5 - parent: 89 - - uid: 15187 + pos: 47.5,21.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 + - uid: 18169 components: - type: Transform - pos: 8.5,36.5 - parent: 89 - - uid: 15189 + rot: -1.5707963267948966 rad + pos: 49.5,17.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 + - uid: 18170 components: - type: Transform - pos: 8.5,37.5 - parent: 89 - - uid: 15191 + rot: -1.5707963267948966 rad + pos: 49.5,18.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18440 +- proto: ShuttersRadiationOpen + entities: + - uid: 18171 components: - type: Transform - pos: 7.5,38.5 - parent: 89 - - uid: 15403 + rot: 3.141592653589793 rad + pos: -135.5,-8.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15997 + - uid: 18172 components: - type: Transform - pos: 6.5,31.5 - parent: 89 - - uid: 24720 + rot: 3.141592653589793 rad + pos: -135.5,-7.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15997 + - uid: 18173 components: - type: Transform - pos: -8.5,-23.5 - parent: 22565 - - uid: 24721 + rot: 3.141592653589793 rad + pos: -135.5,-6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 15997 +- proto: ShuttersWindow + entities: + - uid: 18174 components: - type: Transform - pos: -8.5,-24.5 - parent: 22565 - - uid: 24722 + rot: -1.5707963267948966 rad + pos: 26.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18433 + - uid: 18175 components: - type: Transform - pos: -18.5,-23.5 - parent: 22565 - - uid: 24723 + rot: 1.5707963267948966 rad + pos: 22.5,30.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18407 +- proto: ShuttersWindowOpen + entities: + - uid: 18176 components: - type: Transform - pos: -18.5,-24.5 - parent: 22565 - - uid: 24724 + rot: -1.5707963267948966 rad + pos: -16.5,-1.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18177 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-12.5 - parent: 22565 - - uid: 24725 + rot: -1.5707963267948966 rad + pos: -16.5,-3.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18178 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-11.5 - parent: 22565 - - uid: 24726 + rot: -1.5707963267948966 rad + pos: -16.5,-5.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18414 + - uid: 18179 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-11.5 - parent: 22565 - - uid: 24727 + pos: -81.5,14.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18428 + - uid: 18180 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-11.5 - parent: 22565 - - uid: 24728 + pos: -23.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18451 + - uid: 18181 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-10.5 - parent: 22565 -- proto: ReinforcedPlasmaWindowDiagonal + pos: -22.5,6.5 + parent: 2 + - type: DeviceLinkSink + links: + - 18451 +- proto: ShuttleConsoleCircuitboard entities: - - uid: 17886 + - uid: 26713 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,43.5 - parent: 89 - - uid: 20905 + pos: -11.394216,7.7100387 + parent: 24450 + - uid: 26714 components: - type: Transform - pos: 7.5,43.5 - parent: 89 -- proto: ReinforcedUraniumWindow - entities: - - uid: 10790 + pos: -11.394216,7.5537887 + parent: 24450 + - uid: 26715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,48.5 - parent: 89 - - uid: 10791 + pos: -11.394216,7.4131637 + parent: 24450 +- proto: ShuttleGunDuster + entities: + - uid: 24224 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,48.5 - parent: 89 -- proto: ReinforcedWindow + pos: 1.5,4.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24236 +- proto: ShuttleGunPerforator entities: - - uid: 227 - components: - - type: Transform - pos: 2.5,-42.5 - parent: 89 - - uid: 250 + - uid: 24225 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,-42.5 - parent: 89 - - uid: 266 - components: - - type: Transform - pos: -105.5,22.5 - parent: 89 - - uid: 267 + pos: 7.5,4.5 + parent: 23919 + - type: DeviceLinkSink + links: + - 24237 +- proto: ShuttleWindow + entities: + - uid: 18182 components: - type: Transform - pos: -103.5,22.5 - parent: 89 - - uid: 277 + pos: 27.5,35.5 + parent: 2 + - uid: 18183 components: - type: Transform - pos: -10.5,-15.5 - parent: 89 - - uid: 284 + pos: 21.5,35.5 + parent: 2 + - uid: 18184 components: - type: Transform - pos: -104.5,22.5 - parent: 89 - - uid: 668 + pos: 27.5,36.5 + parent: 2 + - uid: 18185 components: - type: Transform - pos: -106.5,-14.5 - parent: 89 - - uid: 669 + pos: 25.5,44.5 + parent: 2 + - uid: 18186 components: - type: Transform - pos: -106.5,-15.5 - parent: 89 - - uid: 676 + pos: 24.5,44.5 + parent: 2 + - uid: 18187 components: - type: Transform - pos: 52.5,16.5 - parent: 89 - - uid: 677 + pos: 23.5,44.5 + parent: 2 + - uid: 18188 components: - type: Transform - pos: 53.5,16.5 - parent: 89 - - uid: 678 + pos: 25.5,41.5 + parent: 2 + - uid: 18189 components: - type: Transform - pos: 54.5,16.5 - parent: 89 - - uid: 679 + pos: 24.5,41.5 + parent: 2 + - uid: 18190 components: - type: Transform - pos: 55.5,16.5 - parent: 89 - - uid: 680 + pos: 21.5,36.5 + parent: 2 + - uid: 18191 components: - type: Transform - pos: 56.5,16.5 - parent: 89 - - uid: 681 + pos: -49.5,22.5 + parent: 2 + - uid: 18192 components: - type: Transform - pos: 57.5,16.5 - parent: 89 - - uid: 682 + rot: -1.5707963267948966 rad + pos: -87.5,46.5 + parent: 2 + - uid: 18193 components: - type: Transform - pos: 58.5,16.5 - parent: 89 - - uid: 683 + rot: -1.5707963267948966 rad + pos: -89.5,45.5 + parent: 2 + - uid: 18194 components: - type: Transform - pos: 59.5,16.5 - parent: 89 - - uid: 684 + rot: -1.5707963267948966 rad + pos: -89.5,40.5 + parent: 2 + - uid: 18195 components: - type: Transform - pos: 62.5,14.5 - parent: 89 - - uid: 685 + rot: -1.5707963267948966 rad + pos: -89.5,37.5 + parent: 2 + - uid: 18196 components: - type: Transform - pos: 63.5,14.5 - parent: 89 - - uid: 686 + rot: -1.5707963267948966 rad + pos: -89.5,34.5 + parent: 2 + - uid: 18197 components: - type: Transform - pos: 64.5,14.5 - parent: 89 - - uid: 687 + pos: -86.5,-20.5 + parent: 2 + - uid: 18198 components: - type: Transform - pos: 65.5,14.5 - parent: 89 - - uid: 688 + rot: 3.141592653589793 rad + pos: -101.5,-20.5 + parent: 2 + - uid: 18199 components: - type: Transform - pos: 66.5,13.5 - parent: 89 - - uid: 689 + rot: 3.141592653589793 rad + pos: -102.5,-20.5 + parent: 2 + - uid: 18200 components: - type: Transform - pos: 66.5,12.5 - parent: 89 - - uid: 690 + pos: -85.5,-20.5 + parent: 2 + - uid: 18201 components: - type: Transform - pos: 66.5,11.5 - parent: 89 - - uid: 691 + pos: -122.5,22.5 + parent: 2 + - uid: 18202 components: - type: Transform - pos: 66.5,10.5 - parent: 89 - - uid: 692 + rot: -1.5707963267948966 rad + pos: -134.5,0.5 + parent: 2 + - uid: 18203 components: - type: Transform - pos: 64.5,8.5 - parent: 89 - - uid: 693 + pos: -84.5,-20.5 + parent: 2 + - uid: 18204 components: - type: Transform - pos: 64.5,7.5 - parent: 89 - - uid: 694 + rot: 1.5707963267948966 rad + pos: -87.5,-20.5 + parent: 2 + - uid: 18205 components: - type: Transform - pos: 64.5,6.5 - parent: 89 - - uid: 695 + rot: 1.5707963267948966 rad + pos: -88.5,-20.5 + parent: 2 + - uid: 18206 components: - type: Transform - pos: 64.5,5.5 - parent: 89 - - uid: 696 + rot: 1.5707963267948966 rad + pos: -94.5,-20.5 + parent: 2 + - uid: 18207 components: - type: Transform - pos: 64.5,3.5 - parent: 89 - - uid: 697 + rot: 1.5707963267948966 rad + pos: -89.5,-20.5 + parent: 2 + - uid: 18208 components: - type: Transform - pos: 64.5,2.5 - parent: 89 - - uid: 698 + rot: 1.5707963267948966 rad + pos: -90.5,-20.5 + parent: 2 + - uid: 18209 components: - type: Transform - pos: 64.5,1.5 - parent: 89 - - uid: 699 + rot: 1.5707963267948966 rad + pos: -91.5,-20.5 + parent: 2 + - uid: 18210 components: - type: Transform - pos: 64.5,0.5 - parent: 89 - - uid: 852 + rot: 1.5707963267948966 rad + pos: -92.5,-20.5 + parent: 2 + - uid: 18211 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-19.5 - parent: 89 - - uid: 857 + rot: 1.5707963267948966 rad + pos: -93.5,-20.5 + parent: 2 + - uid: 18212 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-14.5 - parent: 89 - - uid: 858 + rot: 1.5707963267948966 rad + pos: -79.5,-20.5 + parent: 2 + - uid: 18213 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-16.5 - parent: 89 - - uid: 859 + rot: 1.5707963267948966 rad + pos: -80.5,-20.5 + parent: 2 + - uid: 18214 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-15.5 - parent: 89 - - uid: 860 + rot: 1.5707963267948966 rad + pos: -81.5,-20.5 + parent: 2 + - uid: 18215 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-17.5 - parent: 89 - - uid: 866 + rot: 1.5707963267948966 rad + pos: -77.5,-11.5 + parent: 2 + - uid: 18216 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-18.5 - parent: 89 - - uid: 870 + rot: 1.5707963267948966 rad + pos: -95.5,-20.5 + parent: 2 + - uid: 18217 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-22.5 - parent: 89 - - uid: 875 + rot: 1.5707963267948966 rad + pos: -96.5,-20.5 + parent: 2 + - uid: 18218 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-22.5 - parent: 89 - - uid: 877 + rot: 1.5707963267948966 rad + pos: -98.5,-20.5 + parent: 2 + - uid: 18219 components: - type: Transform - pos: -106.5,22.5 - parent: 89 - - uid: 915 + rot: 1.5707963267948966 rad + pos: -97.5,-20.5 + parent: 2 + - uid: 18220 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-8.5 - parent: 89 - - uid: 916 + rot: 1.5707963267948966 rad + pos: -99.5,-20.5 + parent: 2 + - uid: 18221 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-9.5 - parent: 89 - - uid: 917 + rot: 1.5707963267948966 rad + pos: -100.5,-20.5 + parent: 2 + - uid: 18222 components: - type: Transform - pos: -100.5,-6.5 - parent: 89 - - uid: 918 + rot: 1.5707963267948966 rad + pos: -67.5,-18.5 + parent: 2 + - uid: 18223 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-10.5 - parent: 89 - - uid: 946 + rot: 1.5707963267948966 rad + pos: -66.5,-18.5 + parent: 2 + - uid: 18224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-12.5 - parent: 89 - - uid: 947 + rot: 1.5707963267948966 rad + pos: -71.5,-18.5 + parent: 2 + - uid: 18225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-12.5 - parent: 89 - - uid: 948 + rot: 1.5707963267948966 rad + pos: -72.5,-18.5 + parent: 2 + - uid: 18226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-12.5 - parent: 89 - - uid: 949 + pos: -51.5,-18.5 + parent: 2 + - uid: 18227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-12.5 - parent: 89 - - uid: 951 + rot: 1.5707963267948966 rad + pos: -68.5,-16.5 + parent: 2 + - uid: 18228 components: - type: Transform - pos: -101.5,-6.5 - parent: 89 - - uid: 952 + pos: -68.5,33.5 + parent: 2 + - uid: 18229 components: - type: Transform - pos: -102.5,-6.5 - parent: 89 - - uid: 953 + pos: -81.5,36.5 + parent: 2 + - uid: 18230 components: - type: Transform - pos: -103.5,-6.5 - parent: 89 - - uid: 954 + pos: -69.5,31.5 + parent: 2 + - uid: 18231 components: - type: Transform - pos: -103.5,6.5 - parent: 89 - - uid: 955 + rot: 1.5707963267948966 rad + pos: -77.5,-13.5 + parent: 2 + - uid: 18232 components: - type: Transform - pos: -104.5,6.5 - parent: 89 - - uid: 956 + rot: 1.5707963267948966 rad + pos: -77.5,-14.5 + parent: 2 + - uid: 18233 components: - type: Transform - pos: -105.5,6.5 - parent: 89 - - uid: 957 + rot: 1.5707963267948966 rad + pos: -77.5,-16.5 + parent: 2 + - uid: 18234 components: - type: Transform - pos: -106.5,7.5 - parent: 89 - - uid: 958 + rot: 1.5707963267948966 rad + pos: -77.5,-12.5 + parent: 2 + - uid: 18235 components: - type: Transform - pos: -106.5,8.5 - parent: 89 - - uid: 959 + pos: -4.5,47.5 + parent: 2 + - uid: 18236 components: - type: Transform - pos: -106.5,9.5 - parent: 89 - - uid: 967 + pos: -3.5,47.5 + parent: 2 + - uid: 18237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,-6.5 - parent: 89 - - uid: 971 + pos: -2.5,47.5 + parent: 2 + - uid: 18238 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,6.5 - parent: 89 - - uid: 1050 + pos: -0.5,47.5 + parent: 2 + - uid: 18239 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-5.5 - parent: 89 - - uid: 1052 + pos: 0.5,47.5 + parent: 2 + - uid: 18240 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-5.5 - parent: 89 - - uid: 1060 + pos: -7.5,47.5 + parent: 2 + - uid: 18241 components: - type: Transform - rot: 3.141592653589793 rad - pos: 53.5,-7.5 - parent: 89 - - uid: 1065 + pos: -6.5,47.5 + parent: 2 + - uid: 18242 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-7.5 - parent: 89 - - uid: 1071 + pos: -9.5,36.5 + parent: 2 + - uid: 18243 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-7.5 - parent: 89 - - uid: 1072 + pos: -131.5,8.5 + parent: 2 + - uid: 18244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 54.5,-7.5 - parent: 89 - - uid: 1140 + pos: -131.5,7.5 + parent: 2 + - uid: 18245 components: - type: Transform - pos: -9.5,-15.5 - parent: 89 - - uid: 1247 + pos: -131.5,6.5 + parent: 2 + - uid: 18246 components: - type: Transform - pos: -110.5,22.5 - parent: 89 - - uid: 1327 + pos: -131.5,5.5 + parent: 2 + - uid: 18247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-20.5 - parent: 89 - - uid: 1328 + pos: -131.5,4.5 + parent: 2 + - uid: 18248 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-20.5 - parent: 89 - - uid: 1329 + pos: -131.5,3.5 + parent: 2 + - uid: 18249 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-20.5 - parent: 89 - - uid: 1330 + pos: -131.5,2.5 + parent: 2 + - uid: 18250 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-20.5 - parent: 89 - - uid: 1331 + pos: -52.5,49.5 + parent: 2 + - uid: 18251 components: - type: Transform - rot: 3.141592653589793 rad - pos: -92.5,-20.5 - parent: 89 - - uid: 1332 + pos: -68.5,34.5 + parent: 2 + - uid: 18252 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-20.5 - parent: 89 - - uid: 1333 + pos: -69.5,38.5 + parent: 2 + - uid: 18253 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-20.5 - parent: 89 - - uid: 1334 + pos: -68.5,35.5 + parent: 2 + - uid: 18254 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-20.5 - parent: 89 - - uid: 1335 + pos: -69.5,29.5 + parent: 2 + - uid: 18255 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-20.5 - parent: 89 - - uid: 1336 + pos: -60.5,46.5 + parent: 2 + - uid: 18256 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-20.5 - parent: 89 - - uid: 1608 + pos: -61.5,46.5 + parent: 2 + - uid: 18257 components: - type: Transform - pos: -8.5,-39.5 - parent: 89 - - uid: 1666 + pos: -68.5,44.5 + parent: 2 + - uid: 18258 components: - type: Transform - pos: 3.5,-32.5 - parent: 89 - - uid: 1668 + pos: -68.5,43.5 + parent: 2 + - uid: 18259 components: - type: Transform - pos: 3.5,-26.5 - parent: 89 - - uid: 1674 + pos: -68.5,42.5 + parent: 2 + - uid: 18260 components: - type: Transform - pos: 3.5,-23.5 - parent: 89 - - uid: 1675 + pos: -65.5,48.5 + parent: 2 + - uid: 18261 components: - type: Transform - pos: 1.5,-23.5 - parent: 89 - - uid: 1714 + pos: -65.5,47.5 + parent: 2 + - uid: 18262 components: - type: Transform - pos: -9.5,10.5 - parent: 89 - - uid: 1722 + pos: -67.5,48.5 + parent: 2 + - uid: 18263 components: - type: Transform - pos: -69.5,29.5 - parent: 89 - - uid: 1746 + pos: -49.5,47.5 + parent: 2 + - uid: 18264 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,8.5 - parent: 89 - - uid: 1748 + pos: -49.5,45.5 + parent: 2 + - uid: 18265 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,3.5 - parent: 89 - - uid: 1749 + pos: -49.5,48.5 + parent: 2 + - uid: 18266 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 44.5,3.5 - parent: 89 - - uid: 1750 + pos: -41.5,30.5 + parent: 2 + - uid: 18267 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,3.5 - parent: 89 - - uid: 1898 + pos: -41.5,32.5 + parent: 2 + - uid: 18268 components: - type: Transform - pos: 1.5,-26.5 - parent: 89 - - uid: 1900 + pos: -41.5,31.5 + parent: 2 + - uid: 18269 components: - type: Transform - pos: 2.5,-32.5 - parent: 89 - - uid: 1901 + pos: -124.5,-12.5 + parent: 2 + - uid: 18270 components: - type: Transform - pos: 4.5,-32.5 - parent: 89 - - uid: 1903 + pos: -124.5,-13.5 + parent: 2 + - uid: 18271 components: - type: Transform - pos: 1.5,-32.5 - parent: 89 - - uid: 1913 + pos: -121.5,-14.5 + parent: 2 + - uid: 18272 components: - type: Transform - pos: -8.5,-40.5 - parent: 89 - - uid: 2198 + pos: -122.5,-14.5 + parent: 2 + - uid: 18273 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,4.5 - parent: 89 - - uid: 2202 + pos: -27.5,37.5 + parent: 2 + - uid: 18274 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,6.5 - parent: 89 - - uid: 2203 + pos: -27.5,36.5 + parent: 2 + - uid: 18275 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,7.5 - parent: 89 - - uid: 2322 + pos: -81.5,38.5 + parent: 2 + - uid: 18276 components: - type: Transform - pos: 34.5,9.5 - parent: 89 - - uid: 2323 + pos: -32.5,36.5 + parent: 2 + - uid: 18277 components: - type: Transform - pos: 36.5,9.5 - parent: 89 - - uid: 2339 + pos: -81.5,29.5 + parent: 2 + - uid: 18278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,-20.5 - parent: 89 - - uid: 2340 + pos: -81.5,31.5 + parent: 2 + - uid: 18279 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-20.5 - parent: 89 - - uid: 2341 + pos: -32.5,37.5 + parent: 2 + - uid: 18280 components: - type: Transform rot: -1.5707963267948966 rad - pos: -79.5,-20.5 - parent: 89 - - uid: 2373 + pos: -89.5,36.5 + parent: 2 + - uid: 18281 components: - type: Transform - pos: 21.5,-11.5 - parent: 89 - - uid: 2393 + pos: -83.5,48.5 + parent: 2 + - uid: 18282 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-16.5 - parent: 89 - - uid: 2548 + pos: -85.5,48.5 + parent: 2 + - uid: 18283 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-20.5 - parent: 89 - - uid: 2549 + pos: -82.5,42.5 + parent: 2 + - uid: 18284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-20.5 - parent: 89 - - uid: 2550 + pos: -82.5,43.5 + parent: 2 + - uid: 18285 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-20.5 - parent: 89 - - uid: 2551 + pos: -85.5,46.5 + parent: 2 + - uid: 18286 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-20.5 - parent: 89 - - uid: 2552 + pos: -83.5,46.5 + parent: 2 + - uid: 18287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,-20.5 - parent: 89 - - uid: 2553 + pos: -82.5,44.5 + parent: 2 + - uid: 18288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-20.5 - parent: 89 - - uid: 2554 + pos: -15.5,25.5 + parent: 2 + - uid: 18289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-20.5 - parent: 89 - - uid: 2628 + pos: -120.5,22.5 + parent: 2 + - uid: 18290 components: - type: Transform - pos: 1.5,-11.5 - parent: 89 - - uid: 2849 + pos: -123.5,22.5 + parent: 2 + - uid: 18291 components: - type: Transform - pos: 4.5,-9.5 - parent: 89 - - uid: 2850 + pos: -121.5,22.5 + parent: 2 + - uid: 18292 components: - type: Transform - pos: 6.5,-10.5 - parent: 89 - - uid: 2851 + pos: -13.5,25.5 + parent: 2 + - uid: 18293 components: - type: Transform - pos: 6.5,-12.5 - parent: 89 - - uid: 2852 + pos: -12.5,25.5 + parent: 2 + - uid: 18294 components: - type: Transform - pos: 8.5,-7.5 - parent: 89 - - uid: 2853 + pos: -14.5,25.5 + parent: 2 + - uid: 18295 components: - type: Transform - pos: 7.5,-7.5 - parent: 89 - - uid: 2854 + pos: -53.5,49.5 + parent: 2 + - uid: 18296 components: - type: Transform - pos: 12.5,-4.5 - parent: 89 - - uid: 2855 + pos: -100.5,28.5 + parent: 2 + - uid: 18297 components: - type: Transform - pos: 13.5,-4.5 - parent: 89 - - uid: 2856 + pos: -49.5,41.5 + parent: 2 + - uid: 18298 components: - type: Transform - pos: 14.5,-4.5 - parent: 89 - - uid: 2857 + pos: -51.5,49.5 + parent: 2 + - uid: 18299 components: - type: Transform - pos: 15.5,-4.5 - parent: 89 - - uid: 2858 + pos: 38.5,27.5 + parent: 2 + - uid: 18300 components: - type: Transform - pos: 28.5,-7.5 - parent: 89 - - uid: 2859 + pos: -76.5,22.5 + parent: 2 + - uid: 18301 components: - type: Transform - pos: 29.5,-6.5 - parent: 89 - - uid: 2860 + pos: -75.5,22.5 + parent: 2 + - uid: 18302 components: - type: Transform - pos: 29.5,-5.5 - parent: 89 - - uid: 2861 + pos: -74.5,22.5 + parent: 2 + - uid: 18303 components: - type: Transform - pos: 25.5,-7.5 - parent: 89 - - uid: 2862 + pos: -123.5,-14.5 + parent: 2 + - uid: 18304 components: - type: Transform - pos: 32.5,-4.5 - parent: 89 - - uid: 2863 + pos: -118.5,25.5 + parent: 2 + - uid: 18305 components: - type: Transform - pos: 33.5,-4.5 - parent: 89 - - uid: 2864 + pos: -117.5,26.5 + parent: 2 + - uid: 18306 components: - type: Transform - pos: 34.5,-4.5 - parent: 89 - - uid: 2865 + pos: -114.5,26.5 + parent: 2 + - uid: 18307 components: - type: Transform - pos: 35.5,-4.5 - parent: 89 - - uid: 2869 + rot: 3.141592653589793 rad + pos: 56.5,-34.5 + parent: 2 + - uid: 18308 components: - type: Transform - pos: 27.5,-11.5 - parent: 89 - - uid: 2870 + pos: 9.5,-22.5 + parent: 2 + - uid: 18309 components: - type: Transform - pos: 24.5,-11.5 - parent: 89 - - uid: 2871 + pos: 39.5,-32.5 + parent: 2 + - uid: 18310 components: - type: Transform - pos: 18.5,-11.5 - parent: 89 - - uid: 3132 + pos: 39.5,-31.5 + parent: 2 + - uid: 18311 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-1.5 - parent: 89 - - uid: 3135 + pos: 59.5,-31.5 + parent: 2 + - uid: 18312 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-2.5 - parent: 89 - - uid: 3150 + pos: 33.5,-27.5 + parent: 2 + - uid: 18313 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-3.5 - parent: 89 - - uid: 3151 + pos: 33.5,-26.5 + parent: 2 + - uid: 18314 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,-4.5 - parent: 89 - - uid: 3160 + pos: 57.5,-34.5 + parent: 2 + - uid: 18315 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-7.5 - parent: 89 - - uid: 3161 + pos: 59.5,-33.5 + parent: 2 + - uid: 18316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-7.5 - parent: 89 - - uid: 4848 + rot: 1.5707963267948966 rad + pos: 39.5,-33.5 + parent: 2 + - uid: 18317 components: - type: Transform - pos: -71.5,-18.5 - parent: 89 - - uid: 4850 + rot: 3.141592653589793 rad + pos: 4.5,-32.5 + parent: 2 + - uid: 18318 components: - type: Transform - pos: -72.5,-18.5 - parent: 89 - - uid: 4851 + rot: 3.141592653589793 rad + pos: 3.5,-32.5 + parent: 2 + - uid: 18319 components: - type: Transform - pos: -67.5,-18.5 - parent: 89 - - uid: 4853 + pos: 34.5,-19.5 + parent: 2 + - uid: 18320 components: - type: Transform - pos: -66.5,-18.5 - parent: 89 - - uid: 4862 + rot: 3.141592653589793 rad + pos: -13.5,-35.5 + parent: 2 + - uid: 18321 components: - type: Transform - pos: -49.5,-16.5 - parent: 89 - - uid: 4863 + rot: 3.141592653589793 rad + pos: -13.5,-34.5 + parent: 2 + - uid: 18322 components: - type: Transform - pos: -48.5,-18.5 - parent: 89 - - uid: 4871 + rot: 3.141592653589793 rad + pos: 3.5,-39.5 + parent: 2 + - uid: 18323 components: - type: Transform - pos: -48.5,-14.5 - parent: 89 - - uid: 4901 + rot: 3.141592653589793 rad + pos: -8.5,-40.5 + parent: 2 + - uid: 18324 components: - type: Transform - pos: -68.5,-16.5 - parent: 89 - - uid: 5422 + rot: 3.141592653589793 rad + pos: -8.5,-39.5 + parent: 2 + - uid: 18325 components: - type: Transform - pos: -7.5,-42.5 - parent: 89 - - uid: 6183 + rot: 3.141592653589793 rad + pos: -13.5,-36.5 + parent: 2 + - uid: 18326 components: - type: Transform - pos: -18.5,4.5 - parent: 89 - - uid: 6211 + pos: 39.5,-30.5 + parent: 2 + - uid: 18327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,4.5 - parent: 89 - - uid: 6213 + pos: 39.5,-29.5 + parent: 2 + - uid: 18328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,4.5 - parent: 89 - - uid: 6214 + rot: 3.141592653589793 rad + pos: 55.5,-34.5 + parent: 2 + - uid: 18329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,4.5 - parent: 89 - - uid: 6215 + rot: 3.141592653589793 rad + pos: 58.5,-34.5 + parent: 2 + - uid: 18330 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,6.5 - parent: 89 - - uid: 6216 + pos: 29.5,-17.5 + parent: 2 + - uid: 18331 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 89 - - uid: 6217 + pos: 39.5,-28.5 + parent: 2 + - uid: 18332 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,9.5 - parent: 89 - - uid: 6299 + pos: 28.5,-17.5 + parent: 2 + - uid: 18333 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,5.5 - parent: 89 - - uid: 6300 + rot: 3.141592653589793 rad + pos: 59.5,16.5 + parent: 2 + - uid: 18334 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,4.5 - parent: 89 - - uid: 6448 + rot: 3.141592653589793 rad + pos: 58.5,16.5 + parent: 2 + - uid: 18335 components: - type: Transform - pos: -69.5,31.5 - parent: 89 - - uid: 6471 + rot: 3.141592653589793 rad + pos: 57.5,16.5 + parent: 2 + - uid: 18336 components: - type: Transform - pos: -81.5,29.5 - parent: 89 - - uid: 6473 + rot: 3.141592653589793 rad + pos: 56.5,16.5 + parent: 2 + - uid: 18337 components: - type: Transform - pos: -81.5,31.5 - parent: 89 - - uid: 6479 + rot: 3.141592653589793 rad + pos: 55.5,16.5 + parent: 2 + - uid: 18338 components: - type: Transform - pos: -81.5,36.5 - parent: 89 - - uid: 6509 + rot: 3.141592653589793 rad + pos: 54.5,16.5 + parent: 2 + - uid: 18339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-11.5 - parent: 89 - - uid: 6548 + rot: 3.141592653589793 rad + pos: 53.5,16.5 + parent: 2 + - uid: 18340 components: - type: Transform - pos: -69.5,36.5 - parent: 89 - - uid: 6791 + rot: 3.141592653589793 rad + pos: 52.5,16.5 + parent: 2 + - uid: 18341 components: - type: Transform - pos: -42.5,0.5 - parent: 89 - - uid: 6792 + rot: -1.5707963267948966 rad + pos: 62.5,14.5 + parent: 2 + - uid: 18342 components: - type: Transform - pos: -43.5,2.5 - parent: 89 - - uid: 6793 + rot: -1.5707963267948966 rad + pos: 63.5,14.5 + parent: 2 + - uid: 18343 components: - type: Transform - pos: -45.5,2.5 - parent: 89 - - uid: 6797 + rot: -1.5707963267948966 rad + pos: 64.5,14.5 + parent: 2 + - uid: 18344 components: - type: Transform - pos: -42.5,-1.5 - parent: 89 - - uid: 6893 + rot: -1.5707963267948966 rad + pos: 65.5,14.5 + parent: 2 + - uid: 18345 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,4.5 - parent: 89 - - uid: 6924 + rot: -1.5707963267948966 rad + pos: 66.5,13.5 + parent: 2 + - uid: 18346 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-12.5 - parent: 89 - - uid: 7094 + pos: 66.5,12.5 + parent: 2 + - uid: 18347 components: - type: Transform - pos: -61.5,-3.5 - parent: 89 - - uid: 7095 + rot: -1.5707963267948966 rad + pos: 66.5,11.5 + parent: 2 + - uid: 18348 components: - type: Transform - pos: -64.5,-3.5 - parent: 89 - - uid: 7104 + rot: -1.5707963267948966 rad + pos: 66.5,10.5 + parent: 2 + - uid: 18349 components: - type: Transform - pos: -83.5,14.5 - parent: 89 - - uid: 7268 + rot: 3.141592653589793 rad + pos: 64.5,8.5 + parent: 2 + - uid: 18350 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,3.5 - parent: 89 - - uid: 7280 + pos: 64.5,7.5 + parent: 2 + - uid: 18351 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-13.5 - parent: 89 - - uid: 7282 + rot: 3.141592653589793 rad + pos: 64.5,6.5 + parent: 2 + - uid: 18352 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-12.5 - parent: 89 - - uid: 7283 + rot: 3.141592653589793 rad + pos: 64.5,5.5 + parent: 2 + - uid: 18353 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-11.5 - parent: 89 - - uid: 7365 + rot: 3.141592653589793 rad + pos: 64.5,1.5 + parent: 2 + - uid: 18354 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,4.5 - parent: 89 - - uid: 7437 + pos: 63.5,-5.5 + parent: 2 + - uid: 18355 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,-14.5 - parent: 89 - - uid: 7628 + rot: 3.141592653589793 rad + pos: 64.5,-5.5 + parent: 2 + - uid: 18356 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,2.5 - parent: 89 - - uid: 7782 + pos: 57.5,-7.5 + parent: 2 + - uid: 18357 components: - type: Transform - pos: -4.5,47.5 - parent: 89 - - uid: 7783 + pos: 55.5,-7.5 + parent: 2 + - uid: 18358 components: - type: Transform - pos: -3.5,47.5 - parent: 89 - - uid: 7784 + pos: 54.5,-7.5 + parent: 2 + - uid: 18359 components: - type: Transform - pos: -2.5,47.5 - parent: 89 - - uid: 7785 + rot: 3.141592653589793 rad + pos: 64.5,0.5 + parent: 2 + - uid: 18360 components: - type: Transform - pos: -0.5,47.5 - parent: 89 - - uid: 7786 + rot: 3.141592653589793 rad + pos: 66.5,-1.5 + parent: 2 + - uid: 18361 components: - type: Transform - pos: 0.5,47.5 - parent: 89 - - uid: 7787 + rot: 3.141592653589793 rad + pos: 66.5,-2.5 + parent: 2 + - uid: 18362 components: - type: Transform - pos: -7.5,47.5 - parent: 89 - - uid: 7788 + rot: 3.141592653589793 rad + pos: 66.5,-3.5 + parent: 2 + - uid: 18363 components: - type: Transform - pos: -6.5,47.5 - parent: 89 - - uid: 7795 + pos: 59.5,-7.5 + parent: 2 + - uid: 18364 components: - type: Transform - pos: 41.5,-14.5 - parent: 89 - - uid: 7935 + pos: 56.5,-7.5 + parent: 2 + - uid: 18365 components: - type: Transform - pos: -9.5,36.5 - parent: 89 - - uid: 7938 + pos: 58.5,-7.5 + parent: 2 + - uid: 18366 components: - type: Transform - pos: -61.5,7.5 - parent: 89 - - uid: 7939 + rot: 3.141592653589793 rad + pos: 62.5,-5.5 + parent: 2 + - uid: 18367 components: - type: Transform - pos: -61.5,9.5 - parent: 89 - - uid: 7940 + rot: 3.141592653589793 rad + pos: 48.5,21.5 + parent: 2 + - uid: 18368 components: - type: Transform - pos: -61.5,10.5 - parent: 89 - - uid: 8031 + rot: 3.141592653589793 rad + pos: 49.5,18.5 + parent: 2 + - uid: 18369 components: - type: Transform - pos: -1.5,36.5 - parent: 89 - - uid: 8081 + rot: 3.141592653589793 rad + pos: 47.5,21.5 + parent: 2 + - uid: 18370 components: - type: Transform rot: 3.141592653589793 rad - pos: -87.5,11.5 - parent: 89 - - uid: 8341 + pos: 49.5,17.5 + parent: 2 + - uid: 18371 components: - type: Transform - pos: -58.5,20.5 - parent: 89 - - uid: 8342 + rot: 3.141592653589793 rad + pos: 65.5,-5.5 + parent: 2 + - uid: 18372 components: - type: Transform - pos: -58.5,22.5 - parent: 89 - - uid: 8343 + pos: 64.5,2.5 + parent: 2 + - uid: 18373 components: - type: Transform - pos: -59.5,23.5 - parent: 89 - - uid: 8344 + pos: 64.5,3.5 + parent: 2 + - uid: 18374 components: - type: Transform - pos: -60.5,23.5 - parent: 89 - - uid: 8345 + pos: 66.5,-4.5 + parent: 2 + - uid: 18375 components: - type: Transform - pos: -61.5,23.5 - parent: 89 - - uid: 8352 + rot: 3.141592653589793 rad + pos: 3.5,-40.5 + parent: 2 + - uid: 18376 components: - type: Transform - pos: -119.5,6.5 - parent: 89 - - uid: 8383 + rot: 3.141592653589793 rad + pos: 2.5,-32.5 + parent: 2 + - uid: 18377 components: - type: Transform - pos: -11.5,-15.5 - parent: 89 - - uid: 8459 + rot: 3.141592653589793 rad + pos: 1.5,-32.5 + parent: 2 + - uid: 18378 components: - type: Transform rot: 3.141592653589793 rad - pos: -119.5,5.5 - parent: 89 - - uid: 8586 + pos: -116.5,26.5 + parent: 2 + - uid: 18379 components: - type: Transform - pos: -119.5,1.5 - parent: 89 - - uid: 8694 + pos: -118.5,24.5 + parent: 2 + - uid: 18380 components: - type: Transform - pos: -114.5,2.5 - parent: 89 - - uid: 8695 + rot: 3.141592653589793 rad + pos: -115.5,26.5 + parent: 2 + - uid: 18381 components: - type: Transform - pos: -114.5,5.5 - parent: 89 - - uid: 8733 + pos: -111.5,28.5 + parent: 2 + - uid: 18382 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,8.5 - parent: 89 - - uid: 8734 + pos: -109.5,28.5 + parent: 2 + - uid: 18383 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,7.5 - parent: 89 - - uid: 8735 + pos: -107.5,28.5 + parent: 2 + - uid: 18384 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,6.5 - parent: 89 - - uid: 8736 + pos: -105.5,28.5 + parent: 2 + - uid: 18385 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,5.5 - parent: 89 - - uid: 8737 + pos: -103.5,28.5 + parent: 2 + - uid: 18386 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,4.5 - parent: 89 - - uid: 8738 + pos: -114.5,-21.5 + parent: 2 + - uid: 18387 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,3.5 - parent: 89 - - uid: 8739 + pos: -61.5,-20.5 + parent: 2 + - uid: 18388 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,2.5 - parent: 89 - - uid: 8740 + pos: -61.5,-19.5 + parent: 2 + - uid: 18389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,1.5 - parent: 89 - - uid: 8741 + pos: -48.5,-18.5 + parent: 2 + - uid: 18390 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,0.5 - parent: 89 - - uid: 8742 + pos: -62.5,46.5 + parent: 2 + - uid: 18391 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -131.5,-0.5 - parent: 89 - - uid: 8844 + pos: -63.5,48.5 + parent: 2 + - uid: 18392 components: - type: Transform - pos: 41.5,-12.5 - parent: 89 - - uid: 8937 + pos: -121.5,-15.5 + parent: 2 + - uid: 18393 components: - type: Transform - pos: -136.5,-8.5 - parent: 89 - - uid: 9012 + pos: -82.5,35.5 + parent: 2 + - uid: 18394 components: - type: Transform - pos: -111.5,22.5 - parent: 89 - - uid: 9243 + pos: -82.5,33.5 + parent: 2 + - uid: 18395 components: - type: Transform - pos: -136.5,-9.5 - parent: 89 - - uid: 9258 + pos: -82.5,34.5 + parent: 2 + - uid: 18396 components: - type: Transform - pos: 29.5,9.5 - parent: 89 - - uid: 9674 + rot: -1.5707963267948966 rad + pos: -133.5,0.5 + parent: 2 + - uid: 18397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,45.5 - parent: 89 - - uid: 9697 + pos: -69.5,36.5 + parent: 2 + - uid: 18398 components: - type: Transform - pos: -57.5,31.5 - parent: 89 - - uid: 9698 + rot: -1.5707963267948966 rad + pos: -131.5,1.5 + parent: 2 + - uid: 18399 components: - type: Transform - pos: -56.5,31.5 - parent: 89 - - uid: 9812 + rot: -1.5707963267948966 rad + pos: -89.5,42.5 + parent: 2 + - uid: 18400 components: - type: Transform - pos: -58.5,34.5 - parent: 89 - - uid: 9813 + rot: -1.5707963267948966 rad + pos: -89.5,33.5 + parent: 2 + - uid: 18401 components: - type: Transform - pos: -68.5,33.5 - parent: 89 - - uid: 9814 + rot: -1.5707963267948966 rad + pos: -89.5,39.5 + parent: 2 + - uid: 18402 components: - type: Transform - pos: -68.5,34.5 - parent: 89 - - uid: 9815 + rot: -1.5707963267948966 rad + pos: -89.5,43.5 + parent: 2 + - uid: 18403 components: - type: Transform - pos: -68.5,35.5 - parent: 89 - - uid: 9820 + pos: -51.5,24.5 + parent: 2 + - uid: 23857 components: - type: Transform - pos: -69.5,38.5 - parent: 89 - - uid: 9823 + rot: -1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 23711 + - uid: 23858 components: - type: Transform - pos: -65.5,47.5 - parent: 89 - - uid: 9824 + rot: -1.5707963267948966 rad + pos: 2.5,-0.5 + parent: 23711 + - uid: 23859 components: - type: Transform - pos: -65.5,48.5 - parent: 89 - - uid: 9825 + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 23711 + - uid: 23860 components: - type: Transform - pos: -68.5,44.5 - parent: 89 - - uid: 9826 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 23711 + - uid: 23861 components: - type: Transform - pos: -68.5,43.5 - parent: 89 - - uid: 9827 + rot: -1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 23711 + - uid: 23862 components: - type: Transform - pos: -68.5,42.5 - parent: 89 - - uid: 9828 + rot: -1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 23711 + - uid: 23863 components: - type: Transform - pos: -62.5,46.5 - parent: 89 - - uid: 9829 + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 23711 + - uid: 23864 components: - type: Transform - pos: -61.5,46.5 - parent: 89 - - uid: 9830 + rot: 1.5707963267948966 rad + pos: 0.5,-6.5 + parent: 23711 + - uid: 23865 components: - type: Transform - pos: -60.5,46.5 - parent: 89 - - uid: 9880 + pos: 3.5,-4.5 + parent: 23711 + - uid: 23866 components: - type: Transform - pos: -52.5,49.5 - parent: 89 - - uid: 9882 + pos: 3.5,-6.5 + parent: 23711 + - uid: 23867 components: - type: Transform - pos: -51.5,49.5 - parent: 89 - - uid: 9902 + rot: 1.5707963267948966 rad + pos: 6.5,-8.5 + parent: 23711 + - uid: 23868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -65.5,49.5 - parent: 89 - - uid: 9909 + pos: 3.5,-7.5 + parent: 23711 + - uid: 23869 components: - type: Transform - pos: -53.5,49.5 - parent: 89 - - uid: 10052 + rot: 1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 23711 + - uid: 23870 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-5.5 - parent: 89 - - uid: 10266 + pos: 3.5,-9.5 + parent: 23711 + - uid: 23871 components: - type: Transform - pos: -41.5,30.5 - parent: 89 - - uid: 10267 + rot: 1.5707963267948966 rad + pos: 0.5,-7.5 + parent: 23711 + - uid: 23872 components: - type: Transform - pos: -41.5,32.5 - parent: 89 - - uid: 10284 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 23711 + - uid: 23873 components: - type: Transform - pos: -41.5,31.5 - parent: 89 - - uid: 10285 + rot: 3.141592653589793 rad + pos: 6.5,-5.5 + parent: 23711 + - uid: 23874 components: - type: Transform - pos: -41.5,27.5 - parent: 89 - - uid: 10391 + rot: 3.141592653589793 rad + pos: 5.5,-1.5 + parent: 23711 + - uid: 24226 components: - type: Transform - pos: -124.5,-12.5 - parent: 89 - - uid: 10392 + rot: 3.141592653589793 rad + pos: 6.5,6.5 + parent: 23919 + - uid: 24227 components: - type: Transform - pos: -124.5,-13.5 - parent: 89 - - uid: 10395 + pos: 4.5,7.5 + parent: 23919 + - uid: 24228 components: - type: Transform - pos: -123.5,-14.5 - parent: 89 - - uid: 10397 + pos: 3.5,7.5 + parent: 23919 + - uid: 24229 components: - type: Transform - pos: -122.5,-14.5 - parent: 89 - - uid: 10417 + pos: 5.5,7.5 + parent: 23919 + - uid: 24230 components: - type: Transform - pos: -115.5,21.5 - parent: 89 - - uid: 10422 + rot: 3.141592653589793 rad + pos: 2.5,6.5 + parent: 23919 + - uid: 24231 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,4.5 - parent: 89 - - uid: 10423 + pos: 7.5,5.5 + parent: 23919 + - uid: 24417 components: - type: Transform rot: 1.5707963267948966 rad - pos: 18.5,4.5 - parent: 89 - - uid: 10546 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,18.5 - parent: 89 - - uid: 10547 + pos: -1.5,-2.5 + parent: 24340 + - uid: 24418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,18.5 - parent: 89 - - uid: 10598 + rot: 1.5707963267948966 rad + pos: 2.5,-2.5 + parent: 24340 + - uid: 24419 components: - type: Transform - pos: -86.5,38.5 - parent: 89 - - uid: 10601 + pos: 0.5,1.5 + parent: 24340 + - uid: 27858 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,36.5 - parent: 89 - - uid: 10602 + pos: 5.5,-0.5 + parent: 27260 + - uid: 27859 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,37.5 - parent: 89 - - uid: 10603 + rot: -1.5707963267948966 rad + pos: 5.5,-1.5 + parent: 27260 + - uid: 27860 components: - type: Transform - pos: -81.5,38.5 - parent: 89 - - uid: 10604 + pos: 5.5,-2.5 + parent: 27260 + - uid: 27861 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,37.5 - parent: 89 - - uid: 10605 + pos: -4.5,-0.5 + parent: 27260 + - uid: 27862 components: - type: Transform - pos: -87.5,38.5 - parent: 89 - - uid: 10606 + pos: -4.5,-1.5 + parent: 27260 + - uid: 27863 components: - type: Transform - pos: -88.5,38.5 - parent: 89 - - uid: 10607 + pos: -4.5,-2.5 + parent: 27260 +- proto: ShuttleWindowDiagonal + entities: + - uid: 18404 components: - type: Transform - pos: -89.5,38.5 - parent: 89 - - uid: 10608 + rot: 1.5707963267948966 rad + pos: -121.5,-16.5 + parent: 2 + - uid: 18405 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,36.5 - parent: 89 - - uid: 10611 + rot: 1.5707963267948966 rad + pos: -124.5,-14.5 + parent: 2 + - uid: 23875 components: - type: Transform - pos: -82.5,33.5 - parent: 89 - - uid: 10612 + pos: 1.5,-0.5 + parent: 23711 + - uid: 23876 components: - type: Transform - pos: -82.5,34.5 - parent: 89 - - uid: 10613 + rot: -1.5707963267948966 rad + pos: 5.5,-0.5 + parent: 23711 + - uid: 24232 components: - type: Transform - pos: -82.5,35.5 - parent: 89 - - uid: 10614 + pos: 2.5,7.5 + parent: 23919 + - uid: 24233 components: - type: Transform - pos: -82.5,42.5 - parent: 89 - - uid: 10615 + rot: -1.5707963267948966 rad + pos: 7.5,6.5 + parent: 23919 + - uid: 24234 components: - type: Transform - pos: -82.5,43.5 - parent: 89 - - uid: 10616 + rot: -1.5707963267948966 rad + pos: 8.5,5.5 + parent: 23919 + - uid: 24235 components: - type: Transform - pos: -82.5,44.5 - parent: 89 - - uid: 10618 + rot: -1.5707963267948966 rad + pos: 6.5,7.5 + parent: 23919 + - uid: 24420 components: - type: Transform - pos: -83.5,46.5 - parent: 89 - - uid: 10619 + pos: -0.5,1.5 + parent: 24340 + - uid: 24421 components: - type: Transform - pos: -83.5,48.5 - parent: 89 - - uid: 10620 + rot: -1.5707963267948966 rad + pos: 1.5,1.5 + parent: 24340 +- proto: SignAi + entities: + - uid: 18406 components: - type: Transform - pos: -85.5,48.5 - parent: 89 - - uid: 10621 + pos: 56.5,5.5 + parent: 2 +- proto: SignalButton + entities: + - uid: 18407 components: - type: Transform - pos: -85.5,46.5 - parent: 89 - - uid: 10622 + rot: 1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18175: + - Pressed: Toggle + - uid: 18408 components: + - type: MetaData + name: кнопка ставней 2 - type: Transform - pos: -86.5,44.5 - parent: 89 - - uid: 10623 + rot: -1.5707963267948966 rad + pos: -60.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18131: + - Pressed: Toggle + 18121: + - Pressed: Toggle + 18122: + - Pressed: Toggle + - uid: 18409 components: + - type: MetaData + name: кнопка ставней 1 - type: Transform - pos: -86.5,43.5 - parent: 89 - - uid: 10624 + rot: 1.5707963267948966 rad + pos: -60.5,22.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18120: + - Pressed: Toggle + 18119: + - Pressed: Toggle + 18123: + - Pressed: Toggle + - uid: 18410 components: + - type: MetaData + desc: Эта кнопка активирует внешний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: -86.5,42.5 - parent: 89 - - uid: 10666 + rot: 3.141592653589793 rad + pos: -0.696833,-42.499794 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1035: + - Pressed: Toggle + - uid: 18411 components: + - type: MetaData + desc: Эта кнопка активирует внешний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: 3.5,-40.5 - parent: 89 - - uid: 10674 + rot: 3.141592653589793 rad + pos: -4.298002,-42.499794 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1034: + - Pressed: Toggle + - uid: 18412 components: - type: Transform - pos: 3.5,-39.5 - parent: 89 - - uid: 10820 + rot: 3.141592653589793 rad + pos: -83.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1037: + - Pressed: Toggle + - uid: 18413 components: - type: Transform rot: -1.5707963267948966 rad - pos: -21.5,6.5 - parent: 89 - - uid: 10979 + pos: -82.5,-23.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1037: + - Pressed: Toggle + - uid: 18414 components: - type: Transform - pos: -21.5,5.5 - parent: 89 - - uid: 11008 + rot: 3.141592653589793 rad + pos: -14.5,-6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18178: + - Pressed: Toggle + 18125: + - Pressed: Toggle + 18177: + - Pressed: Toggle + 18126: + - Pressed: Toggle + 18176: + - Pressed: Toggle + - uid: 18415 components: - type: Transform - pos: -12.5,10.5 - parent: 89 - - uid: 11061 + rot: 3.141592653589793 rad + pos: -58.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1043: + - Pressed: Toggle + 1042: + - Pressed: Toggle + - uid: 18416 components: + - type: MetaData + desc: Эта кнопка активирует внутренний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: 1.5,19.5 - parent: 89 - - uid: 11156 + rot: 3.141592653589793 rad + pos: -0.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1033: + - Pressed: Toggle + - uid: 18417 components: - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-42.5 - parent: 89 - - uid: 11388 + pos: -43.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18130: + - Pressed: Toggle + 18129: + - Pressed: Toggle + 18128: + - Pressed: Toggle + 18127: + - Pressed: Toggle + - uid: 18418 components: - type: Transform - pos: 1.5,15.5 - parent: 89 - - uid: 11390 + rot: -1.5707963267948966 rad + pos: -10.476543,19.732094 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17172: + - Pressed: Toggle + - uid: 18419 components: - type: Transform - pos: 1.5,21.5 - parent: 89 - - uid: 11843 + pos: 7.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18151: + - Pressed: Toggle + 18150: + - Pressed: Toggle + - uid: 18420 components: - type: Transform - pos: -108.5,-20.5 - parent: 89 - - uid: 11859 + rot: 1.5707963267948966 rad + pos: 23.5,6.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1036: + - Pressed: Toggle + - uid: 18421 components: - type: Transform - pos: -107.5,-20.5 - parent: 89 - - uid: 12856 + pos: -99.74609,28.376194 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18115: + - Pressed: Toggle + - uid: 18422 components: - type: Transform - pos: -15.5,25.5 - parent: 89 - - uid: 14108 + pos: -99.43359,28.376194 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18111: + - Pressed: Toggle + - uid: 18423 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-7.5 - parent: 89 - - uid: 14111 + pos: -101.5,11.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18134: + - Pressed: Toggle + 18133: + - Pressed: Toggle + 18132: + - Pressed: Toggle + 18135: + - Pressed: Toggle + 18136: + - Pressed: Toggle + 18137: + - Pressed: Toggle + - uid: 18424 components: - type: Transform rot: 3.141592653589793 rad - pos: 62.5,-5.5 - parent: 89 - - uid: 14666 + pos: -64.5,-18.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1041: + - Pressed: Toggle + 1038: + - Pressed: Toggle + - uid: 18425 components: - type: Transform - pos: -123.5,22.5 - parent: 89 - - uid: 14667 + pos: -7.5,-15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18148: + - Pressed: Toggle + 18147: + - Pressed: Toggle + 18145: + - Pressed: Toggle + 18146: + - Pressed: Toggle + - uid: 18426 components: - type: Transform - pos: -122.5,22.5 - parent: 89 - - uid: 14668 + rot: 3.141592653589793 rad + pos: -116.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1060: + - Pressed: Toggle + 1059: + - Pressed: Toggle + 1063: + - Pressed: Toggle + 1062: + - Pressed: Toggle + 1061: + - Pressed: Toggle + 1058: + - Pressed: Toggle + - uid: 18427 components: - type: Transform - pos: -121.5,22.5 - parent: 89 - - uid: 14669 + rot: 3.141592653589793 rad + pos: -86.5,11.5 + parent: 2 + - uid: 18428 components: - type: Transform - pos: -120.5,22.5 - parent: 89 - - uid: 14732 + rot: -1.5707963267948966 rad + pos: -83.5,15.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18142: + - Pressed: Toggle + 18179: + - Pressed: Toggle + 18143: + - Pressed: Toggle + - uid: 18429 components: - type: Transform - pos: 9.5,-22.5 - parent: 89 - - uid: 14884 + pos: 0.7500007,-28.502241 + parent: 2 + - uid: 18430 components: - type: Transform - pos: -13.5,-34.5 - parent: 89 - - uid: 14885 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 + - uid: 18431 components: - type: Transform - pos: -13.5,-35.5 - parent: 89 - - uid: 14886 + pos: 22.036852,7.3139024 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18158: + - Pressed: Toggle + 18153: + - Pressed: Toggle + 18159: + - Pressed: Toggle + - uid: 18432 components: - type: Transform - pos: -13.5,-36.5 - parent: 89 - - uid: 15013 + pos: 17.5,12.5 + parent: 2 + - uid: 18433 components: - type: Transform - pos: 1.5,17.5 - parent: 89 - - uid: 15240 + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18174: + - Pressed: Toggle + - uid: 18434 components: - type: Transform - pos: -13.5,25.5 - parent: 89 - - uid: 15242 + pos: 32.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 120: + - Pressed: DoorBolt + - uid: 18435 components: - type: Transform - pos: -12.5,25.5 - parent: 89 - - uid: 15243 + pos: 30.5,27.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 121: + - Pressed: DoorBolt + - uid: 18436 components: + - type: MetaData + desc: Эта кнопка активирует внутренний гермозатвор. + name: кнопка переключения гермозатвора - type: Transform - pos: -14.5,25.5 - parent: 89 - - uid: 15623 + rot: 3.141592653589793 rad + pos: -4.5,-42.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1045: + - Pressed: Toggle + - uid: 18437 components: - type: Transform - pos: -112.5,-15.5 - parent: 89 - - uid: 15624 + pos: 20.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18160: + - Pressed: Toggle + 18161: + - Pressed: Toggle + 18162: + - Pressed: Toggle + 18163: + - Pressed: Toggle + 18164: + - Pressed: Toggle + 18165: + - Pressed: Toggle + - uid: 18438 components: - type: Transform - pos: -114.5,-15.5 - parent: 89 - - uid: 15873 + rot: 3.141592653589793 rad + pos: 11.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18156: + - Pressed: Toggle + 18155: + - Pressed: Toggle + - uid: 18439 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,6.5 - parent: 89 - - uid: 16410 + rot: 3.141592653589793 rad + pos: -1.5,19.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18166: + - Pressed: Toggle + 18157: + - Pressed: Toggle + 18124: + - Pressed: Toggle + - uid: 18440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -4.5,9.5 - parent: 89 - - uid: 16454 + pos: 45.5,20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18168: + - Pressed: Toggle + 18167: + - Pressed: Toggle + 18170: + - Pressed: Toggle + 18169: + - Pressed: Toggle + - uid: 18441 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,43.5 - parent: 89 - - uid: 16456 + rot: -1.5707963267948966 rad + pos: -83.5,17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18139: + - Pressed: Toggle + 18140: + - Pressed: Toggle + 18141: + - Pressed: Toggle + - uid: 18442 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,42.5 - parent: 89 - - uid: 16457 + pos: -33.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 113: + - Pressed: DoorBolt + - uid: 18443 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,41.5 - parent: 89 - - uid: 16460 + pos: -26.5,34.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 478: + - Pressed: DoorBolt + - uid: 18444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -49.5,41.5 - parent: 89 - - uid: 17047 + pos: -26.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 112: + - Pressed: DoorBolt + - uid: 18445 components: - type: Transform - pos: 41.5,-19.5 - parent: 89 - - uid: 17048 + pos: -33.5,30.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 111: + - Pressed: DoorBolt + - uid: 18446 components: - type: Transform - pos: 43.5,-19.5 - parent: 89 - - uid: 17049 + pos: -33.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 110: + - Pressed: DoorBolt + - uid: 18447 components: - type: Transform - pos: 39.5,-30.5 - parent: 89 - - uid: 17050 + pos: -26.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 109: + - Pressed: DoorBolt + - uid: 18448 components: - type: Transform - pos: 39.5,-28.5 - parent: 89 - - uid: 17053 + pos: 5.5,0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17211: + - Pressed: Toggle + - uid: 18449 components: - type: Transform - pos: 39.5,-29.5 - parent: 89 - - uid: 17212 + rot: 1.5707963267948966 rad + pos: 37.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17333: + - Pressed: Toggle + - uid: 26716 components: - type: Transform - pos: 39.5,-31.5 - parent: 89 - - uid: 17248 + rot: -1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26710: + - Pressed: Toggle + 26711: + - Pressed: Toggle + 26712: + - Pressed: Toggle + - uid: 26717 components: - type: Transform - pos: -49.5,48.5 - parent: 89 - - uid: 17253 + pos: -35.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 24462: + - Pressed: DoorBolt + - uid: 26718 components: - type: Transform - pos: -49.5,47.5 - parent: 89 - - uid: 17419 + rot: -1.5707963267948966 rad + pos: -8.5,-22.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26707: + - Pressed: Toggle + 26706: + - Pressed: Toggle + - uid: 26719 components: - type: Transform rot: 1.5707963267948966 rad - pos: 38.5,27.5 - parent: 89 - - uid: 18424 + pos: -18.5,-22.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26709: + - Pressed: Toggle + 26708: + - Pressed: Toggle + - uid: 26720 components: - type: Transform - pos: 48.5,21.5 - parent: 89 - - uid: 19726 + rot: 3.141592653589793 rad + pos: -9.5,3.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25057: + - Pressed: Toggle + 25060: + - Pressed: Toggle + - uid: 26721 components: - type: Transform - pos: -109.5,-20.5 - parent: 89 - - uid: 19772 + rot: 3.141592653589793 rad + pos: -14.5,3.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25059: + - Pressed: Toggle + 25058: + - Pressed: Toggle + - uid: 26722 components: - type: Transform - pos: -136.5,-7.5 - parent: 89 - - uid: 19773 + pos: -14.5,8.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25056: + - Pressed: Toggle + 25054: + - Pressed: Toggle + - uid: 26723 components: - type: Transform - pos: -136.5,-6.5 - parent: 89 - - uid: 19774 + pos: -9.5,8.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25053: + - Pressed: Toggle + 25055: + - Pressed: Toggle + - uid: 26724 components: - type: Transform - pos: -136.5,-5.5 - parent: 89 - - uid: 19863 + rot: 3.141592653589793 rad + pos: 9.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26586: + - Pressed: Toggle + - uid: 26725 components: - type: Transform - pos: 21.5,35.5 - parent: 89 - - uid: 19866 + rot: 1.5707963267948966 rad + pos: -4.5,11.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25049: + - Pressed: Toggle + 25050: + - Pressed: Toggle + 25051: + - Pressed: Toggle + 25052: + - Pressed: Toggle + - uid: 26726 components: - type: Transform - pos: 27.5,36.5 - parent: 89 - - uid: 19870 + rot: -1.5707963267948966 rad + pos: -19.5,11.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25046: + - Pressed: Toggle + 25047: + - Pressed: Toggle + 25045: + - Pressed: Toggle + 25048: + - Pressed: Toggle + - uid: 26727 components: - type: Transform - pos: 21.5,36.5 - parent: 89 - - uid: 19871 + rot: 3.141592653589793 rad + pos: -33.5,7.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26610: + - Pressed: Toggle + - uid: 26728 components: - type: Transform - pos: 23.5,44.5 - parent: 89 - - uid: 19872 + rot: 3.141592653589793 rad + pos: -33.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26573: + - Pressed: Toggle + - uid: 26729 components: - type: Transform - pos: 24.5,44.5 - parent: 89 - - uid: 19873 + rot: 3.141592653589793 rad + pos: -33.5,10.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26572: + - Pressed: Toggle + - uid: 26730 components: - type: Transform - pos: 25.5,44.5 - parent: 89 - - uid: 19874 + rot: 3.141592653589793 rad + pos: 9.5,7.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26571: + - Pressed: Toggle + - uid: 26731 components: - type: Transform - pos: 25.5,41.5 - parent: 89 - - uid: 19875 + rot: 3.141592653589793 rad + pos: 9.5,10.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 26592: + - Pressed: Toggle + - uid: 26732 components: - type: Transform - pos: 24.5,41.5 - parent: 89 - - uid: 19882 + pos: 11.5,4.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 24463: + - Pressed: DoorBolt +- proto: SignalButtonBridge + entities: + - uid: 18450 components: + - type: MetaData + name: кнопка гермодверей мостика - type: Transform - pos: 27.5,35.5 - parent: 89 - - uid: 19883 + rot: 1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1056: + - Pressed: Toggle + 1057: + - Pressed: Toggle + 1054: + - Pressed: Toggle + 1055: + - Pressed: Toggle +- proto: SignalButtonDirectional + entities: + - uid: 18451 components: - type: Transform - pos: 25.5,33.5 - parent: 89 - - uid: 19884 + pos: -22.5,10.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 18181: + - Pressed: Toggle + 18180: + - Pressed: Toggle + - uid: 18452 components: - type: Transform - pos: 23.5,33.5 - parent: 89 - - uid: 20245 + rot: 3.141592653589793 rad + pos: -128.5,8.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1061: + - Pressed: Toggle + 1062: + - Pressed: Toggle + 1063: + - Pressed: Toggle + - uid: 18453 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,27.5 - parent: 89 - - uid: 20321 + pos: -128.5,-0.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1058: + - Pressed: Toggle + 1059: + - Pressed: Toggle + 1060: + - Pressed: Toggle + - uid: 18454 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 89 - - uid: 21030 + rot: 1.5707963267948966 rad + pos: -116.5,-16.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1051: + - Pressed: Toggle + 1046: + - Pressed: Toggle + - uid: 18455 components: - type: Transform - pos: 47.5,21.5 - parent: 89 - - uid: 21143 + pos: -119.5,-20.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 1046: + - Pressed: Toggle + 1051: + - Pressed: Toggle + - uid: 24236 components: - type: Transform - pos: 49.5,17.5 - parent: 89 - - uid: 21957 + rot: 1.5707963267948966 rad + pos: 0.5,3.5 + parent: 23919 + - type: DeviceLinkSource + linkedPorts: + 24224: + - Pressed: Toggle + - uid: 24237 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-4.5 - parent: 89 - - uid: 21958 + pos: 8.5,3.5 + parent: 23919 + - type: DeviceLinkSource + linkedPorts: + 24225: + - Pressed: Toggle +- proto: SignalTimer + entities: + - uid: 27864 components: - type: Transform rot: -1.5707963267948966 rad - pos: -136.5,-3.5 - parent: 89 - - uid: 21959 + pos: 5.5,-1.5 + parent: 27260 + - type: SignalTimer + delay: 2100 + - type: DeviceLinkSource + linkedPorts: + 27285: + - Timer: Toggle + 27286: + - Timer: Toggle + 27288: + - Timer: Toggle + 27287: + - Timer: Toggle + 27608: + - Timer: Trigger + 27610: + - Timer: Trigger + 27611: + - Timer: Trigger + 27612: + - Timer: Trigger + 27613: + - Timer: Trigger + 27609: + - Timer: Trigger + 27290: + - Timer: Toggle + 27289: + - Timer: Toggle + 27283: + - Timer: Open + 27284: + - Timer: Open + - type: DeviceLinkSink + invokeCounter: 1 + links: + - 27803 +- proto: SignAnomaly + entities: + - uid: 18456 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-2.5 - parent: 89 - - uid: 21978 + pos: -0.5,-37.5 + parent: 2 +- proto: SignAnomaly2 + entities: + - uid: 18457 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-10.5 - parent: 89 - - uid: 21984 + rot: 3.141592653589793 rad + pos: -3.5,-29.5 + parent: 2 +- proto: SignArmory + entities: + - uid: 18458 components: - type: Transform - pos: 39.5,-32.5 - parent: 89 - - uid: 22022 + rot: 3.141592653589793 rad + pos: 38.5,-7.5 + parent: 2 + - uid: 27865 components: - type: Transform - pos: 39.5,-33.5 - parent: 89 - - uid: 22024 + pos: 3.5,-8.5 + parent: 27260 +- proto: SignAtmos + entities: + - uid: 18459 components: - type: Transform - pos: 55.5,-34.5 - parent: 89 - - uid: 22025 + pos: -96.5,-3.5 + parent: 2 +- proto: SignAtmosMinsky + entities: + - uid: 18460 components: - type: Transform - pos: 56.5,-34.5 - parent: 89 - - uid: 22026 + pos: -108.5,-8.5 + parent: 2 + - uid: 18461 components: - type: Transform - pos: 59.5,-31.5 - parent: 89 - - uid: 24730 + pos: -108.5,-13.5 + parent: 2 + - uid: 18462 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,3.5 - parent: 22565 - - uid: 24732 + pos: -91.5,-3.5 + parent: 2 +- proto: SignBar + entities: + - uid: 18463 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,1.5 - parent: 22565 - - uid: 24733 + pos: -20.5,0.5 + parent: 2 + - uid: 18464 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,2.5 - parent: 22565 - - uid: 24749 + pos: -19.5,-9.5 + parent: 2 +- proto: SignBiohazardMed + entities: + - uid: 18465 components: - type: Transform - pos: -12.5,-27.5 - parent: 22565 - - uid: 24750 + pos: -85.5,-22.5 + parent: 2 + - uid: 18466 components: - type: Transform - pos: -14.5,-27.5 - parent: 22565 - - uid: 24761 + pos: 12.5,23.5 + parent: 2 + - uid: 18467 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,-17.5 - parent: 89 - - uid: 25363 + pos: 15.5,23.5 + parent: 2 +- proto: SignBridge + entities: + - uid: 18468 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-26.5 - parent: 89 - - uid: 25364 + pos: 57.5,1.5 + parent: 2 + - uid: 18469 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-27.5 - parent: 89 - - uid: 25673 + pos: 42.5,2.5 + parent: 2 + - uid: 18470 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,-17.5 - parent: 89 -- proto: ReinforcedWindowDiagonal + pos: 57.5,7.5 + parent: 2 +- proto: SignCanisters entities: - - uid: 14807 + - uid: 18471 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,27.5 - parent: 89 - - uid: 20910 + pos: -83.5,-5.5 + parent: 2 +- proto: SignCargo + entities: + - uid: 18472 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-33.5 - parent: 89 - - uid: 20913 + pos: -65.5,-3.5 + parent: 2 + - uid: 18473 components: - type: Transform - rot: 3.141592653589793 rad - pos: 57.5,-34.5 - parent: 89 - - uid: 20925 + pos: -60.5,-3.5 + parent: 2 +- proto: SignCargoDock + entities: + - uid: 18474 components: - type: Transform - pos: 58.5,-32.5 - parent: 89 - - uid: 21040 + pos: -61.5,-18.5 + parent: 2 + - uid: 18475 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 66.5,14.5 - parent: 89 - - uid: 21101 + pos: -61.5,-21.5 + parent: 2 +- proto: SignChapel + entities: + - uid: 18476 components: - type: Transform - rot: 3.141592653589793 rad - pos: 66.5,-5.5 - parent: 89 - - uid: 21102 + pos: -46.5,2.5 + parent: 2 +- proto: SignChem + entities: + - uid: 18477 components: - type: Transform - pos: 57.5,-33.5 - parent: 89 - - uid: 21274 + pos: -8.5,10.5 + parent: 2 + - uid: 27866 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-14.5 - parent: 89 -- proto: ResearchAndDevelopmentServer + pos: -2.5,-8.5 + parent: 27260 +- proto: SignChemistry2 entities: - - uid: 270 + - uid: 18478 components: - type: Transform - pos: -7.5,-36.5 - parent: 89 -- proto: Retractor + pos: -4.5,5.5 + parent: 2 +- proto: SignCloning entities: - - uid: 17742 + - uid: 18479 components: - type: Transform - pos: -11.510057,21.659258 - parent: 89 -- proto: RevolverCapGun - entities: - - uid: 10200 + pos: 8.5,15.5 + parent: 2 + - uid: 18480 components: - type: Transform - pos: -34.502335,32.664577 - parent: 89 - - uid: 18230 + pos: 17.5,13.5 + parent: 2 +- proto: SignCorrosives + entities: + - uid: 18481 components: - type: Transform - pos: -50.51814,24.483156 - parent: 89 -- proto: RiotShield + rot: 3.141592653589793 rad + pos: 1.5,-37.5 + parent: 2 +- proto: SignCourt entities: - - uid: 22658 + - uid: 18482 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: RipleyLArm + pos: -72.5,1.5 + parent: 2 +- proto: SignCryogenicsMed entities: - - uid: 24787 + - uid: 18483 components: - type: Transform - pos: -5.619814,7.5630064 - parent: 22565 -- proto: RockGuitarInstrument + pos: -23.5,19.5 + parent: 2 +- proto: SignDirectionalBar entities: - - uid: 7450 + - uid: 18484 components: - type: Transform - pos: -35.669586,-7.3551264 - parent: 89 -- proto: RollerBed - entities: - - uid: 12655 + pos: -20.448164,4.3709 + parent: 2 + - uid: 18485 components: - type: Transform - pos: 27.46604,20.420237 - parent: 89 - - uid: 14036 + rot: 3.141592653589793 rad + pos: -24.19584,-14.422298 + parent: 2 +- proto: SignDirectionalBridge + entities: + - uid: 18486 components: - type: Transform - pos: 27.46604,20.873362 - parent: 89 - - uid: 20007 + rot: 1.5707963267948966 rad + pos: -10.541182,0.74590015 + parent: 2 + - uid: 18487 components: - type: Transform - pos: -9.512561,17.593462 - parent: 89 -- proto: RubberStampApproved + rot: 1.5707963267948966 rad + pos: 1.5277987,0.82034445 + parent: 2 +- proto: SignDirectionalBrig entities: - - uid: 2010 + - uid: 18488 components: - type: Transform - pos: 44.726154,4.9360046 - parent: 89 - - uid: 5499 + rot: 1.5707963267948966 rad + pos: -38.492928,-10.699898 + parent: 2 + - uid: 18489 components: - type: Transform - pos: -61.259422,-4.204013 - parent: 89 - - uid: 10255 + rot: 1.5707963267948966 rad + pos: -70.469925,7.722947 + parent: 2 + - uid: 18490 components: - type: Transform - pos: -75.95376,-5.1340904 - parent: 89 -- proto: RubberStampDenied - entities: - - uid: 2012 + rot: 1.5707963267948966 rad + pos: -10.541182,0.32402515 + parent: 2 + - uid: 18491 components: - type: Transform - pos: 44.726154,4.7328796 - parent: 89 - - uid: 4286 + rot: 1.5707963267948966 rad + pos: -54.47954,19.72356 + parent: 2 + - uid: 18492 components: - type: Transform - pos: -75.96599,-5.4276247 - parent: 89 - - uid: 5500 + pos: -28.499207,18.123867 + parent: 2 + - uid: 18493 components: - type: Transform - pos: -61.259422,-4.500888 - parent: 89 -- proto: SalvageCanisterSpawner + pos: 1.4937797,0.18840826 + parent: 2 +- proto: SignDirectionalChapel entities: - - uid: 24788 - components: - - type: Transform - pos: -19.5,-7.5 - parent: 22565 - - uid: 24789 + - uid: 18494 components: - type: Transform - pos: -6.5,-10.5 - parent: 22565 -- proto: SalvageHumanCorpseSpawner - entities: - - uid: 24790 + rot: 1.5707963267948966 rad + pos: -53.450565,2.5216875 + parent: 2 + - uid: 18495 components: - type: Transform - pos: 3.5,-4.5 - parent: 22565 -- proto: SalvageMagnet + rot: -1.5707963267948966 rad + pos: -42.49031,2.8029375 + parent: 2 +- proto: SignDirectionalChemistry entities: - - uid: 3431 + - uid: 18496 components: - type: Transform - pos: -45.5,-19.5 - parent: 89 -- proto: Saw + rot: 3.141592653589793 rad + pos: -11.283887,0.70491505 + parent: 2 +- proto: SignDirectionalCryo entities: - - uid: 17724 + - uid: 18497 components: - type: Transform - pos: -12.387761,21.596758 - parent: 89 -- proto: SawElectric - entities: - - uid: 8042 + rot: -1.5707963267948966 rad + pos: -9.5,0.5 + parent: 2 + - uid: 18498 components: - type: Transform - pos: 0.31544685,37.508827 - parent: 89 - - uid: 14731 + rot: -1.5707963267948966 rad + pos: 2.5,0.5 + parent: 2 + - uid: 18499 components: - type: Transform - pos: 8.521248,-22.418674 - parent: 89 - - uid: 17725 + rot: 1.5707963267948966 rad + pos: -28.5,17.5 + parent: 2 + - uid: 18500 components: - type: Transform - pos: -10.669011,21.674883 - parent: 89 -- proto: SaxophoneInstrument - entities: - - uid: 8010 + rot: 1.5707963267948966 rad + pos: -4.5,10.5 + parent: 2 + - uid: 18501 components: - type: Transform - pos: 1.6962042,42.518917 - parent: 89 -- proto: Scalpel - entities: - - uid: 8041 + rot: 3.141592653589793 rad + pos: -28.5,5.5 + parent: 2 + - uid: 18502 components: - type: Transform - pos: 3.0810719,34.555702 - parent: 89 - - uid: 15883 + rot: -1.5707963267948966 rad + pos: 32.5,4.5 + parent: 2 + - uid: 18503 components: - type: Transform rot: -1.5707963267948966 rad - pos: 9.443718,8.545023 - parent: 89 - - uid: 17740 + pos: -3.5,-10.5 + parent: 2 + - uid: 18504 components: - type: Transform - pos: -10.645547,21.456133 - parent: 89 -- proto: ScalpelShiv - entities: - - uid: 21862 + rot: 3.141592653589793 rad + pos: -39.5,-14.5 + parent: 2 + - uid: 18505 components: - type: Transform - pos: 49.471436,-33.456047 - parent: 89 - - uid: 23206 + rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - uid: 18506 components: - type: Transform - parent: 23199 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Screen - entities: - - uid: 5922 + rot: 1.5707963267948966 rad + pos: -45.5,15.5 + parent: 2 + - uid: 18507 components: - type: Transform - pos: 59.5,1.5 - parent: 89 - - uid: 5924 + rot: 1.5707963267948966 rad + pos: -70.5,15.5 + parent: 2 + - uid: 18508 components: - type: Transform - pos: 59.5,7.5 - parent: 89 - - uid: 6372 + rot: 1.5707963267948966 rad + pos: -57.5,2.5 + parent: 2 + - uid: 18509 components: - type: Transform - pos: -63.5,32.5 - parent: 89 - - uid: 6451 + rot: 1.5707963267948966 rad + pos: -78.5,6.5 + parent: 2 + - uid: 18510 components: - type: Transform - pos: 26.5,0.5 - parent: 89 - - uid: 7561 + rot: 1.5707963267948966 rad + pos: -83.5,6.5 + parent: 2 +- proto: SignDirectionalDorms + entities: + - uid: 18511 components: - type: Transform - pos: -54.5,21.5 - parent: 89 - - uid: 9081 + rot: 3.141592653589793 rad + pos: -28.5,18.5 + parent: 2 + - uid: 18512 components: - type: Transform - pos: -63.5,42.5 - parent: 89 - - uid: 14526 + rot: 1.5707963267948966 rad + pos: -83.47457,11.347947 + parent: 2 + - uid: 18513 components: - type: Transform - pos: 41.5,5.5 - parent: 89 - - uid: 14531 + rot: 1.5707963267948966 rad + pos: -54.463917,19.50481 + parent: 2 +- proto: SignDirectionalEng + entities: + - uid: 18514 components: - type: Transform - pos: -27.5,-3.5 - parent: 89 - - uid: 25804 + pos: -87.481995,0.5272808 + parent: 2 + - uid: 18515 components: - type: Transform - pos: 16.5,-7.5 - parent: 89 - - uid: 25806 + rot: -1.5707963267948966 rad + pos: -38.484875,1.9081881 + parent: 2 + - uid: 18516 components: - type: Transform - pos: 3.5,0.5 - parent: 89 - - uid: 25807 + rot: 3.141592653589793 rad + pos: -67.37197,6.6281567 + parent: 2 + - uid: 18517 components: - type: Transform - pos: 15.5,18.5 - parent: 89 - - uid: 25808 + rot: -1.5707963267948966 rad + pos: -70.481346,8.596907 + parent: 2 + - uid: 18518 components: - type: Transform - pos: -12.5,0.5 - parent: 89 - - uid: 25809 + rot: -1.5707963267948966 rad + pos: -54.47954,19.301685 + parent: 2 + - uid: 18519 components: - type: Transform - pos: 9.5,10.5 - parent: 89 - - uid: 25810 + rot: -1.5707963267948966 rad + pos: -28.504496,18.701992 + parent: 2 + - uid: 18520 components: - type: Transform - pos: 33.5,17.5 - parent: 89 - - uid: 25811 + rot: 3.141592653589793 rad + pos: -38.507183,-10.057941 + parent: 2 + - uid: 18521 components: - type: Transform - pos: -3.5,10.5 - parent: 89 - - uid: 25812 + rot: -1.5707963267948966 rad + pos: -53.453323,2.7666566 + parent: 2 + - uid: 18522 components: - type: Transform - pos: 9.5,31.5 - parent: 89 - - uid: 25813 + rot: -1.5707963267948966 rad + pos: -83.53055,6.8082514 + parent: 2 + - uid: 18523 components: - type: Transform - pos: 25.5,26.5 - parent: 89 - - uid: 25814 + pos: -83.47322,11.546508 + parent: 2 +- proto: SignDirectionalEvac + entities: + - uid: 18524 components: - type: Transform - pos: 0.5,-23.5 - parent: 89 - - uid: 25815 + rot: -1.5707963267948966 rad + pos: -11.258215,0.3275411 + parent: 2 + - uid: 18525 components: - type: Transform - pos: -2.5,-42.5 - parent: 89 - - uid: 25816 + rot: -1.5707963267948966 rad + pos: -28.524527,18.912651 + parent: 2 + - uid: 18526 components: - type: Transform - pos: -15.5,-20.5 - parent: 89 - - uid: 25817 + rot: 3.141592653589793 rad + pos: -28.493805,1.4084592 + parent: 2 + - uid: 18527 components: - type: Transform - pos: -34.5,-15.5 - parent: 89 - - uid: 25818 + rot: -1.5707963267948966 rad + pos: 1.4980168,0.37590826 + parent: 2 + - uid: 18528 components: - type: Transform - pos: -25.5,6.5 - parent: 89 - - uid: 25819 + rot: 3.141592653589793 rad + pos: -54.46437,20.100151 + parent: 2 + - uid: 18529 components: - type: Transform - pos: -42.5,6.5 - parent: 89 - - uid: 25820 + rot: 3.141592653589793 rad + pos: -83.47322,11.765258 + parent: 2 +- proto: SignDirectionalFood + entities: + - uid: 18530 components: - type: Transform - pos: -48.5,12.5 - parent: 89 - - uid: 25821 + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 18531 components: - type: Transform - pos: -57.5,-10.5 - parent: 89 - - uid: 25822 + pos: -20.448164,4.792775 + parent: 2 + - uid: 18532 components: - type: Transform - pos: -68.5,-7.5 - parent: 89 - - uid: 25823 + rot: 3.141592653589793 rad + pos: -24.19881,-14.203548 + parent: 2 +- proto: SignDirectionalGravity + entities: + - uid: 18533 components: - type: Transform - pos: -75.5,-4.5 - parent: 89 - - uid: 25824 + rot: 1.5707963267948966 rad + pos: -120.5,-11.5 + parent: 2 + - uid: 18534 components: - type: Transform - pos: -68.5,6.5 - parent: 89 - - uid: 25825 + rot: 3.141592653589793 rad + pos: -106.5,6.5 + parent: 2 + - uid: 18535 components: - type: Transform - pos: -118.5,-9.5 - parent: 89 - - uid: 25826 + rot: 3.141592653589793 rad + pos: -110.5,-10.5 + parent: 2 +- proto: SignDirectionalHydro + entities: + - uid: 18536 components: - type: Transform - pos: -60.5,15.5 - parent: 89 - - uid: 25827 + rot: 3.141592653589793 rad + pos: -7.5,-10.5 + parent: 2 + - uid: 18537 components: - type: Transform - pos: -102.5,-11.5 - parent: 89 - - uid: 25828 + pos: -20.448164,4.58965 + parent: 2 + - uid: 18538 components: - type: Transform - pos: -118.5,11.5 - parent: 89 - - uid: 25829 + rot: 1.5707963267948966 rad + pos: -24.189,-14.640293 + parent: 2 +- proto: SignDirectionalMed + entities: + - uid: 18539 components: - type: Transform - pos: -109.5,22.5 - parent: 89 - - uid: 25830 + rot: 1.5707963267948966 rad + pos: -38.5,1.5 + parent: 2 + - uid: 18540 components: - type: Transform - pos: -104.5,-6.5 - parent: 89 - - uid: 25831 + rot: 1.5707963267948966 rad + pos: -70.47633,8.190959 + parent: 2 + - uid: 18541 components: - type: Transform - pos: -96.5,9.5 - parent: 89 - - uid: 25832 + rot: 3.141592653589793 rad + pos: -10.541182,0.54277515 + parent: 2 + - uid: 18542 components: - type: Transform - pos: -93.5,18.5 - parent: 89 - - uid: 25833 + rot: 1.5707963267948966 rad + pos: -54.480083,19.901142 + parent: 2 + - uid: 18543 components: - type: Transform - pos: -81.5,6.5 - parent: 89 - - uid: 25834 + pos: -28.496002,18.319506 + parent: 2 + - uid: 18544 components: - type: Transform - pos: -28.5,14.5 - parent: 89 - - uid: 25835 + rot: 1.5707963267948966 rad + pos: -28.50203,1.6130815 + parent: 2 + - uid: 18545 components: - type: Transform - pos: -86.5,29.5 - parent: 89 - - uid: 25836 + rot: -1.5707963267948966 rad + pos: 1.5136418,0.59465826 + parent: 2 +- proto: SignDirectionalSci + entities: + - uid: 18546 components: - type: Transform - pos: -32.5,26.5 - parent: 89 - - uid: 25837 + rot: 1.5707963267948966 rad + pos: -38.5,-10.5 + parent: 2 + - uid: 18547 components: - type: Transform - pos: -27.5,26.5 - parent: 89 - - uid: 25838 + pos: -38.505344,1.299536 + parent: 2 + - uid: 18548 components: - type: Transform - pos: -61.5,27.5 - parent: 89 -- proto: Screwdriver - entities: - - uid: 8881 + rot: 1.5707963267948966 rad + pos: -70.47134,7.940959 + parent: 2 + - uid: 18549 components: - type: Transform - pos: -131.62726,-2.1679683 - parent: 89 - - uid: 14929 + pos: -28.501144,17.939337 + parent: 2 + - uid: 18550 components: - type: Transform - pos: -10.698816,-35.129005 - parent: 89 -- proto: SecurityTechFab + rot: -1.5707963267948966 rad + pos: -28.505072,1.8144658 + parent: 2 +- proto: SignDirectionalSec entities: - - uid: 241 + - uid: 18551 components: - type: Transform - pos: 39.5,-4.5 - parent: 89 -- proto: SeedExtractor - entities: - - uid: 9681 + rot: 1.5707963267948966 rad + pos: -24.899324,-14.207903 + parent: 2 + - uid: 18552 components: - type: Transform - pos: -5.5,-2.5 - parent: 89 -- proto: ShardGlass + rot: 1.5707963267948966 rad + pos: -5.3946757,-10.59005 + parent: 2 +- proto: SignDirectionalSolar entities: - - uid: 8038 + - uid: 18553 components: - type: Transform - pos: 2.9583473,36.756752 - parent: 89 -- proto: ShardGlassReinforced + rot: 3.141592653589793 rad + pos: 33.5,24.5 + parent: 2 +- proto: SignDirectionalSupply entities: - - uid: 14973 + - uid: 18554 components: - type: Transform - pos: -20.636162,23.31307 - parent: 89 - - uid: 14974 + rot: 3.141592653589793 rad + pos: -38.492928,-10.293648 + parent: 2 + - uid: 18555 components: - type: Transform - pos: -20.292412,23.484945 - parent: 89 - - uid: 17916 + rot: -1.5707963267948966 rad + pos: -38.48972,1.7086813 + parent: 2 + - uid: 18556 components: - type: Transform - pos: -20.418125,23.417818 - parent: 89 -- proto: SheetGlass + rot: 1.5707963267948966 rad + pos: -70.47308,8.396509 + parent: 2 +- proto: SignDirectionalWash entities: - - uid: 1713 - components: - - type: Transform - pos: -102.02423,-5.5077376 - parent: 89 - - uid: 2261 - components: - - type: Transform - pos: -126.65106,17.60124 - parent: 89 - - uid: 2343 + - uid: 18557 components: - type: Transform - pos: -102.047585,-5.527956 - parent: 89 - - uid: 2651 + rot: -1.5707963267948966 rad + pos: -11.25161,0.7494161 + parent: 2 +- proto: SignDrones + entities: + - uid: 18558 components: - type: Transform - pos: -126.40106,17.429365 - parent: 89 - - uid: 2732 + pos: 19.5,0.5 + parent: 2 +- proto: SignElectricalMed + entities: + - uid: 18559 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.963165,-13.283229 - parent: 89 - - uid: 2733 + pos: -126.5,14.5 + parent: 2 + - uid: 18560 components: - type: Transform - rot: 48.69468613064183 rad - pos: -84.94754,-13.611354 - parent: 89 - - uid: 3137 + pos: -126.5,10.5 + parent: 2 + - uid: 18561 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.942215,-13.517915 - parent: 89 - - uid: 6937 + rot: 1.5707963267948966 rad + pos: -131.5,-13.5 + parent: 2 + - uid: 18562 components: - type: Transform - pos: -102.0251,-5.4257817 - parent: 89 - - uid: 7188 + rot: 1.5707963267948966 rad + pos: -120.5,15.5 + parent: 2 + - uid: 18563 components: - type: Transform - pos: -102.047585,-5.527956 - parent: 89 - - uid: 7479 + rot: 1.5707963267948966 rad + pos: -118.5,13.5 + parent: 2 + - uid: 18564 components: - type: Transform - pos: -113.483765,-13.584684 - parent: 89 - - uid: 9298 + rot: 1.5707963267948966 rad + pos: -89.5,21.5 + parent: 2 + - uid: 18565 components: - type: Transform - pos: 25.49591,9.549452 - parent: 89 - - uid: 9299 + rot: 1.5707963267948966 rad + pos: -111.5,22.5 + parent: 2 + - uid: 18566 components: - type: Transform - pos: 25.49591,9.549452 - parent: 89 - - uid: 9300 + rot: 1.5707963267948966 rad + pos: -81.5,-7.5 + parent: 2 + - uid: 18567 components: - type: Transform - pos: 25.49591,9.549452 - parent: 89 - - uid: 12643 + rot: 1.5707963267948966 rad + pos: -12.5,-26.5 + parent: 2 + - uid: 18568 components: - type: Transform - pos: -102.059074,-5.501619 - parent: 89 - - uid: 14722 + rot: 1.5707963267948966 rad + pos: -36.5,-7.5 + parent: 2 + - uid: 18569 components: - type: Transform - pos: 15.530565,-15.319739 - parent: 89 - - uid: 16972 + rot: 1.5707963267948966 rad + pos: -52.5,30.5 + parent: 2 + - uid: 18570 components: - type: Transform - pos: -5.4908185,-17.232418 - parent: 89 - - uid: 19597 + rot: 1.5707963267948966 rad + pos: -39.5,22.5 + parent: 2 + - uid: 18571 components: - type: Transform - pos: -126.70906,-9.586103 - parent: 89 - - uid: 19608 + rot: 1.5707963267948966 rad + pos: -4.5,25.5 + parent: 2 + - uid: 18572 components: - type: Transform - pos: -26.45643,-21.482687 - parent: 89 - - uid: 19609 + rot: 1.5707963267948966 rad + pos: 35.5,24.5 + parent: 2 + - uid: 18573 components: - type: Transform - pos: -26.484663,-21.39527 - parent: 89 - - uid: 19686 + pos: 46.5,4.5 + parent: 2 + - uid: 18574 components: - type: Transform - pos: 19.237337,-0.9680009 - parent: 89 - - uid: 19687 + pos: 49.5,6.5 + parent: 2 + - uid: 18575 components: - type: Transform - pos: 19.346712,-0.9680009 - parent: 89 - - uid: 19688 + pos: 56.5,-18.5 + parent: 2 + - uid: 18576 components: - type: Transform - pos: 19.487337,-0.9680009 - parent: 89 - - uid: 19689 + pos: 15.5,-11.5 + parent: 2 + - uid: 18577 components: - type: Transform - pos: 19.565462,-0.9680009 - parent: 89 - - uid: 19690 + pos: 16.5,-15.5 + parent: 2 +- proto: SignEngineering + entities: + - uid: 18578 components: + - type: MetaData + desc: Знак, указывающий на верфь инженерного отдела. + name: знак "верфь инженерного отдела" - type: Transform - pos: 19.643587,-0.9680009 - parent: 89 - - uid: 19691 + rot: 1.5707963267948966 rad + pos: -28.5,33.5 + parent: 2 + - uid: 18579 components: + - type: MetaData + desc: Знак, указывающий на верфь инженерного отдела. + name: знак "верфь инженерного отдела" - type: Transform - pos: 19.393587,-0.9680009 - parent: 89 - - uid: 19715 + rot: 1.5707963267948966 rad + pos: -31.5,33.5 + parent: 2 + - uid: 18580 components: - type: Transform - pos: -126.61529,-9.971914 - parent: 89 - - uid: 19716 + pos: -106.5,-5.5 + parent: 2 +- proto: SignExamroom + entities: + - uid: 18581 components: - type: Transform - pos: -126.70904,-9.846914 - parent: 89 -- proto: SheetPlasma + pos: 23.5,26.5 + parent: 2 +- proto: SignFire entities: - - uid: 4887 + - uid: 18582 components: - type: Transform - pos: -132.69885,13.859987 - parent: 89 - - uid: 7236 + pos: -122.5,2.5 + parent: 2 +- proto: SignFlammableMed + entities: + - uid: 18583 components: - type: Transform - pos: -98.495865,-8.155361 - parent: 89 - - uid: 9335 + pos: -82.5,-22.5 + parent: 2 +- proto: SignGravity + entities: + - uid: 18584 components: - type: Transform - pos: -3.4340763,5.7090874 - parent: 89 - - uid: 10457 + pos: -109.5,19.5 + parent: 2 + - uid: 18585 components: - type: Transform - pos: -132.62073,14.532562 - parent: 89 - - uid: 20066 + pos: -109.5,16.5 + parent: 2 + - uid: 18586 components: - type: Transform - pos: -5.412913,-27.433874 - parent: 89 -- proto: SheetPlasteel + rot: 3.141592653589793 rad + pos: -113.5,26.5 + parent: 2 +- proto: SignHead entities: - - uid: 1287 + - uid: 18587 components: - type: Transform - pos: -5.567326,-34.428066 - parent: 89 - - uid: 2264 + pos: 26.5,29.5 + parent: 2 + - uid: 27867 components: - type: Transform - pos: -110.415276,21.569302 - parent: 89 - - uid: 3407 + pos: -2.5,-4.5 + parent: 27260 +- proto: SignHydro2 + entities: + - uid: 18588 components: - type: Transform - pos: -99.255066,9.607468 - parent: 89 - - uid: 7118 + pos: -8.563228,-10.476872 + parent: 2 +- proto: SignInterrogation + entities: + - uid: 18589 components: - type: Transform - pos: -99.255066,9.607468 - parent: 89 - - uid: 7169 + pos: 4.5,-3.5 + parent: 2 +- proto: SignKiddiePlaque + entities: + - uid: 18590 components: - type: Transform - pos: -99.255066,9.607468 - parent: 89 - - uid: 7484 + pos: 4.5,6.5 + parent: 2 + - uid: 18591 components: + - type: MetaData + desc: 'Табличка с недавней реконструкции станции простыми работягами. Тут вы можете найти такие псевдонимы как: Syxapik, SonicDC, Zna1kin. Почему у них такие прозвища видимо секрет фирмы. ©' + name: "доска почёта \U0001F3C6" - type: Transform - pos: -6.523316,27.486149 - parent: 89 - - uid: 9289 + pos: 39.5,10.5 + parent: 2 +- proto: SignLibrary + entities: + - uid: 18592 components: - type: Transform - pos: 28.49591,9.518203 - parent: 89 - - uid: 9290 + pos: -47.5,6.5 + parent: 2 +- proto: SignMedical + entities: + - uid: 18593 components: - type: Transform - pos: 28.49591,9.518203 - parent: 89 - - uid: 9291 + pos: -15.5,4.5 + parent: 2 + - uid: 18594 components: - type: Transform - pos: 28.49591,9.518203 - parent: 89 - - uid: 14619 + pos: -8.5,4.5 + parent: 2 +- proto: SignMorgue + entities: + - uid: 18595 components: - type: Transform - pos: -108.5968,-19.451645 - parent: 89 - - uid: 19676 + pos: 7.5,10.5 + parent: 2 + - uid: 18596 components: - type: Transform - pos: 17.446835,-0.2770384 - parent: 89 - - uid: 19677 + pos: 15.5,5.5 + parent: 2 +- proto: SignNosmoking + entities: + - uid: 18597 components: - type: Transform - pos: 17.55621,-0.2770384 - parent: 89 - - uid: 19678 + rot: 3.141592653589793 rad + pos: -2.5,-37.5 + parent: 2 + - uid: 18598 components: - type: Transform - pos: 17.290585,-0.2770384 - parent: 89 - - uid: 19679 + pos: -78.5,-22.5 + parent: 2 +- proto: SignPlaque + entities: + - uid: 18599 components: - type: Transform - pos: 17.196835,-0.2770384 - parent: 89 - - uid: 19723 + pos: 4.5,0.5 + parent: 2 +- proto: SignPrison + entities: + - uid: 18600 components: - type: Transform - pos: -126.708176,-10.4206085 - parent: 89 - - uid: 19724 + rot: -1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 2 + - uid: 26733 components: - type: Transform - pos: -126.426926,-10.4049835 - parent: 89 - - uid: 19819 + pos: -13.5,-4.5 + parent: 24450 + - uid: 26734 components: - type: Transform - pos: -126.50933,-10.555883 - parent: 89 -- proto: SheetPlastic + pos: -10.5,-4.5 + parent: 24450 +- proto: SignRadiation entities: - - uid: 3138 + - uid: 18601 components: - type: Transform - pos: -102.641335,-5.449831 - parent: 89 - - uid: 3370 + rot: -1.5707963267948966 rad + pos: -127.5,-10.5 + parent: 2 + - uid: 18602 components: - type: Transform - pos: -5.504826,-36.41244 - parent: 89 - - uid: 3396 + rot: -1.5707963267948966 rad + pos: -127.5,-4.5 + parent: 2 + - uid: 18603 components: - type: Transform - pos: -102.641335,-5.449831 - parent: 89 - - uid: 6938 + rot: -1.5707963267948966 rad + pos: -122.5,5.5 + parent: 2 + - uid: 18604 components: - type: Transform - pos: -102.634476,-5.4101567 - parent: 89 - - uid: 12641 + rot: -1.5707963267948966 rad + pos: -128.5,5.5 + parent: 2 +- proto: SignRadiationMed + entities: + - uid: 18605 components: - type: Transform - pos: -102.60074,-5.439119 - parent: 89 - - uid: 16711 + rot: -1.5707963267948966 rad + pos: -127.5,-8.5 + parent: 2 + - uid: 18606 components: - type: Transform - pos: -20.45091,-27.506792 - parent: 89 - - uid: 16716 + pos: -123.5,6.5 + parent: 2 + - uid: 18607 components: - type: Transform - pos: -5.5064435,-17.873043 - parent: 89 - - uid: 19233 + pos: -123.5,1.5 + parent: 2 + - uid: 18608 components: - type: Transform - pos: -20.26341,-27.459917 - parent: 89 - - uid: 19820 + rot: -1.5707963267948966 rad + pos: -127.5,-5.5 + parent: 2 +- proto: SignRND + entities: + - uid: 18609 components: - type: Transform - pos: -102.664856,-5.4139876 - parent: 89 -- proto: SheetRGlass - entities: - - uid: 2665 + pos: -1.5,-18.5 + parent: 2 + - uid: 18610 components: - type: Transform - pos: -99.723816,9.591843 - parent: 89 - - uid: 7123 + pos: -1.5,-23.5 + parent: 2 +- proto: SignRobo + entities: + - uid: 18611 components: - type: Transform - pos: -99.70819,9.591843 - parent: 89 - - uid: 7124 + pos: -10.5,-23.5 + parent: 2 + - uid: 18612 components: - type: Transform - pos: -99.70819,9.591843 - parent: 89 - - uid: 9295 + pos: -23.5,-14.5 + parent: 2 + - uid: 18613 components: - type: Transform - pos: 26.511536,9.518202 - parent: 89 - - uid: 9296 + pos: -17.5,-14.5 + parent: 2 +- proto: SignSecureSmallRed + entities: + - uid: 27868 components: - type: Transform - pos: 26.511536,9.518202 - parent: 89 - - uid: 9297 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 27260 + - uid: 27869 components: - type: Transform - pos: 26.511536,9.518202 - parent: 89 - - uid: 17698 + rot: 1.5707963267948966 rad + pos: -7.5,-8.5 + parent: 27260 + - uid: 27870 components: - type: Transform - pos: -108.08118,-19.40477 - parent: 89 -- proto: SheetRUGlass - entities: - - uid: 2262 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 27260 + - uid: 27871 components: - type: Transform - pos: -126.72919,16.69499 - parent: 89 -- proto: SheetRUGlass1 - entities: - - uid: 20926 + rot: 1.5707963267948966 rad + pos: -7.5,0.5 + parent: 27260 + - uid: 27872 components: - type: Transform - rot: 3.141592653589793 rad - pos: -20.463097,16.426502 - parent: 89 - - uid: 20929 + pos: -6.5,-15.5 + parent: 27260 + - uid: 27873 components: - type: Transform - rot: 3.141592653589793 rad - pos: 1.4767406,30.443174 - parent: 89 -- proto: SheetSteel - entities: - - uid: 2645 + pos: -2.5,-15.5 + parent: 27260 + - uid: 27874 components: - type: Transform - pos: -101.37571,-5.606081 - parent: 89 - - uid: 2730 + pos: 3.5,-15.5 + parent: 27260 + - uid: 27875 components: - type: Transform - rot: 48.69468613064183 rad - pos: -85.493454,-13.302325 - parent: 89 - - uid: 2731 + pos: 7.5,-15.5 + parent: 27260 + - uid: 27876 components: - type: Transform - rot: 48.69468613064183 rad - pos: -85.525665,-13.705105 - parent: 89 - - uid: 3545 + pos: 8.5,-14.5 + parent: 27260 + - uid: 27877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.52034,-13.59604 - parent: 89 - - uid: 6936 + pos: -7.5,-14.5 + parent: 27260 + - uid: 27878 components: - type: Transform - pos: -101.43135,-5.4570317 - parent: 89 - - uid: 7003 + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 27260 + - uid: 27879 components: - type: Transform - pos: -29.384861,-15.327836 - parent: 89 - - uid: 7191 + rot: 1.5707963267948966 rad + pos: 2.5,-1.5 + parent: 27260 +- proto: SignShield + entities: + - uid: 18614 components: - type: Transform - pos: -115.42964,1.6171246 - parent: 89 - - uid: 7194 + pos: 2.5,-7.5 + parent: 2 +- proto: SignShipDock + entities: + - uid: 27880 components: - type: Transform - pos: -110.759026,21.569302 - parent: 89 - - uid: 7225 + pos: 0.5,-3.5 + parent: 27260 +- proto: SignShock + entities: + - uid: 18615 components: - type: Transform - pos: -115.46089,1.8046246 - parent: 89 - - uid: 7237 + pos: 53.5,-11.5 + parent: 2 + - uid: 18616 components: - type: Transform - pos: -113.702515,-13.365934 - parent: 89 - - uid: 7256 + pos: -128.5,2.5 + parent: 2 + - uid: 18617 components: - type: Transform - pos: -108.56562,-19.406977 - parent: 89 - - uid: 7473 + pos: 47.5,-38.5 + parent: 2 + - uid: 18618 components: - type: Transform - pos: -101.37571,-5.606081 - parent: 89 - - uid: 9292 + pos: 63.5,-29.5 + parent: 2 + - uid: 18619 components: - type: Transform - pos: 27.542786,9.565077 - parent: 89 - - uid: 9293 + pos: 37.5,-28.5 + parent: 2 +- proto: SignSmoking + entities: + - uid: 18620 components: - type: Transform - pos: 27.542786,9.565077 - parent: 89 - - uid: 9294 + pos: -128.5,1.5 + parent: 2 + - uid: 18621 components: - type: Transform - pos: 27.542786,9.565077 - parent: 89 - - uid: 14600 + pos: -3.5,14.5 + parent: 2 +- proto: SignSomethingOld + entities: + - uid: 18622 components: + - type: MetaData + desc: Гражданин, сообщай о нарушениях ОЧЗ, будь бдителен враги Земли всюду. + name: старый плакат EarthGov - type: Transform - pos: -91.53964,25.270058 - parent: 89 - - uid: 14721 + pos: -21.5,7.5 + parent: 2 + - uid: 18623 components: + - type: MetaData + desc: Гражданин, вступай в силы обороны Земли! Защитите Землю! + name: старый плакат EarthGov - type: Transform - pos: 15.55621,-16.404793 - parent: 89 - - uid: 15858 + pos: -16.5,-10.5 + parent: 2 + - uid: 18624 components: + - type: MetaData + desc: Звезды наши! + name: старый плакат EarthGov - type: Transform - pos: -101.39241,-5.584952 - parent: 89 - - uid: 16946 + pos: -57.5,6.5 + parent: 2 + - uid: 18625 components: + - type: MetaData + desc: Полный допуск, в публичный сектор! + name: старый плакат EarthGov - type: Transform - pos: -5.5376935,-16.576168 - parent: 89 - - uid: 17023 + pos: -70.5,11.5 + parent: 2 + - uid: 18626 components: + - type: MetaData + desc: Одна цель, одно правительство. + name: старый плакат EarthGov - type: Transform - pos: -101.39923,-5.4921126 - parent: 89 - - uid: 19596 + pos: -89.5,5.5 + parent: 2 + - uid: 18627 components: + - type: MetaData + desc: Правительство Земли, создает рабочие месте! + name: старый плакат EarthGov - type: Transform - pos: -126.4634,-8.753263 - parent: 89 - - uid: 19600 + pos: -64.5,23.5 + parent: 2 + - uid: 18628 components: + - type: MetaData + desc: Ради общего будущего. + name: старый плакат EarthGov - type: Transform - pos: -29.384861,-15.536169 - parent: 89 - - uid: 19602 + pos: -34.5,15.5 + parent: 2 + - uid: 18629 components: + - type: MetaData + desc: Создай завтра, вместе с правительством Земли. + name: старый плакат EarthGov - type: Transform - pos: -44.54738,-16.571465 - parent: 89 - - uid: 19606 + pos: -28.5,-10.5 + parent: 2 + - uid: 18630 components: + - type: MetaData + desc: Добро пожаловать в правительственный сектор! + name: старый плакат EarthGov - type: Transform - pos: -26.429432,-19.339746 - parent: 89 - - uid: 19607 + pos: 33.5,4.5 + parent: 2 + - uid: 26735 components: - type: Transform - pos: -26.45727,-19.41212 - parent: 89 - - uid: 19680 + pos: -8.5,3.5 + parent: 24450 +- proto: SignSomethingOld2 + entities: + - uid: 18631 components: + - type: MetaData + desc: На плакате изображенна работа планетарного потрошителя. Страшновато. + name: старый плакат EarthGov - type: Transform - pos: 19.299837,-0.3586259 - parent: 89 - - uid: 19681 + pos: 2.5,-9.5 + parent: 2 + - uid: 18632 components: + - type: MetaData + desc: На плакате изображена работа планетарного потрошителя. Страшновато. + name: старый плакат EarthGov - type: Transform - pos: 19.424837,-0.3586259 - parent: 89 - - uid: 19682 + pos: -61.5,42.5 + parent: 2 + - uid: 26736 components: - type: Transform - pos: 19.565462,-0.3586259 - parent: 89 - - uid: 19683 + pos: -15.5,3.5 + parent: 24450 +- proto: SignSpace + entities: + - uid: 27881 components: - type: Transform - pos: 19.643587,-0.3586259 - parent: 89 - - uid: 19684 + pos: 0.5,0.5 + parent: 27260 +- proto: SignSurgery + entities: + - uid: 18633 components: - type: Transform - pos: 19.377962,-0.3742509 - parent: 89 - - uid: 19685 + pos: 4.5,14.5 + parent: 2 + - uid: 18634 components: - type: Transform - pos: 19.581087,-0.3742509 - parent: 89 - - uid: 19720 + rot: -1.5707963267948966 rad + pos: -7.5,17.5 + parent: 2 +- proto: SignTelecomms + entities: + - uid: 18635 components: - type: Transform - pos: -126.426926,-8.6081085 - parent: 89 - - uid: 19721 + pos: -107.5,19.5 + parent: 2 + - uid: 18636 components: - type: Transform - pos: -126.426926,-8.5456085 - parent: 89 - - uid: 19722 + pos: -107.5,16.5 + parent: 2 + - uid: 26737 components: - type: Transform - pos: -126.426926,-8.5456085 - parent: 89 - - uid: 20722 + rot: 3.141592653589793 rad + pos: -3.5,-15.5 + parent: 24450 +- proto: SignToolStorage + entities: + - uid: 18637 components: - type: Transform - pos: -108.643745,-19.406977 - parent: 89 - - uid: 20758 + pos: -98.5,-6.5 + parent: 2 + - uid: 18638 components: - type: Transform - pos: -108.59687,-19.453852 - parent: 89 -- proto: SheetSteel10 + pos: -92.5,11.5 + parent: 2 +- proto: SignToxins entities: - - uid: 21271 + - uid: 18639 components: - type: Transform - pos: 6.5544925,-21.70108 - parent: 89 -- proto: SheetUGlass + rot: 3.141592653589793 rad + pos: -7.5,-19.5 + parent: 2 +- proto: SignVirology entities: - - uid: 7255 + - uid: 18640 components: - type: Transform - pos: -126.46356,16.50749 - parent: 89 -- proto: SheetUGlass1 - entities: - - uid: 20919 + pos: 15.5,25.5 + parent: 2 + - uid: 18641 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.489836,-22.380846 - parent: 89 - - uid: 20928 + pos: 12.5,25.5 + parent: 2 + - uid: 18642 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.3812647,-26.421057 - parent: 89 -- proto: SheetUranium + pos: 12.5,15.5 + parent: 2 +- proto: SignXenobio entities: - - uid: 8398 + - uid: 18643 components: - type: Transform rot: 3.141592653589793 rad - pos: -132.65198,13.390748 - parent: 89 - - uid: 8451 + pos: -3.5,-23.5 + parent: 2 +- proto: SignZomlab + entities: + - uid: 18644 components: - type: Transform rot: 3.141592653589793 rad - pos: -132.6051,12.671249 - parent: 89 -- proto: ShellShotgunImprovised + pos: -2.5,-26.5 + parent: 2 +- proto: Sink entities: - - uid: 24791 - components: - - type: Transform - pos: 3.2740273,11.768624 - parent: 22565 - - uid: 24792 - components: - - type: Transform - pos: 3.9615273,11.752999 - parent: 22565 - - uid: 24793 - components: - - type: Transform - pos: 4.6334023,11.752999 - parent: 22565 - - uid: 24794 + - uid: 18645 components: - type: Transform - pos: 4.4771523,11.752999 - parent: 22565 - - uid: 24795 + rot: -1.5707963267948966 rad + pos: 50.5,13.5 + parent: 2 + - uid: 18646 components: - type: Transform - pos: 4.3052773,11.799874 - parent: 22565 - - uid: 24796 + pos: -24.5,14.5 + parent: 2 + - uid: 18647 components: - type: Transform - pos: 4.6959023,11.659249 - parent: 22565 -- proto: ShippingContainerConarex - entities: - - uid: 19846 + pos: -25.5,14.5 + parent: 2 + - uid: 18648 components: - type: Transform - pos: -65.5,-9.5 - parent: 89 -- proto: ShippingContainerInterdyne - entities: - - uid: 6525 + pos: -22.5,14.5 + parent: 2 + - uid: 18649 components: - type: Transform - pos: -60.5,-9.5 - parent: 89 -- proto: ShippingContainerNakamura - entities: - - uid: 19836 + pos: -23.5,14.5 + parent: 2 + - uid: 18650 components: - type: Transform - pos: -65.5,-10.5 - parent: 89 -- proto: ShippingContainerNanotrasen - entities: - - uid: 14887 + pos: -21.5,14.5 + parent: 2 + - uid: 18651 components: - type: Transform - pos: -65.5,-12.5 - parent: 89 -- proto: ShuttersNormal - entities: - - uid: 7175 + pos: 6.5,-28.5 + parent: 2 + - uid: 18652 components: - type: Transform - pos: -99.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7695 - - uid: 7385 + rot: 1.5707963267948966 rad + pos: -26.5,-2.5 + parent: 2 + - uid: 18653 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,8.5 - parent: 89 - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Door - state: Open - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 7394 - - uid: 7386 + pos: -73.5,-13.5 + parent: 2 + - uid: 18654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,6.5 - parent: 89 - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Door - state: Open - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 7394 - - uid: 7387 + pos: 20.5,23.5 + parent: 2 + - uid: 18655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,9.5 - parent: 89 - - type: Occluder - enabled: False - - type: Physics - canCollide: False - - type: Door - state: Open - - type: Airtight - airBlocked: False - - type: DeviceLinkSink - links: - - 7394 - - uid: 7492 + rot: 3.141592653589793 rad + pos: -45.5,23.5 + parent: 2 + - uid: 18656 components: - type: Transform - pos: -101.5,29.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7694 - - uid: 10763 + rot: 3.141592653589793 rad + pos: -46.5,23.5 + parent: 2 + - uid: 18657 components: - type: Transform - pos: -20.5,-14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15027 - - 15006 - - uid: 10764 + rot: 3.141592653589793 rad + pos: 40.5,16.5 + parent: 2 + - uid: 18658 components: - type: Transform - pos: -19.5,-14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15027 - - 15006 - - uid: 10765 + rot: 3.141592653589793 rad + pos: -44.5,23.5 + parent: 2 +- proto: SinkStemlessWater + entities: + - uid: 26738 components: - type: Transform - pos: -18.5,-14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 15027 - - 15006 - - uid: 24797 + rot: -1.5707963267948966 rad + pos: -13.5,-19.5 + parent: 24450 +- proto: SinkWide + entities: + - uid: 18659 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24809 - - uid: 24798 + rot: 3.141592653589793 rad + pos: -14.5,-5.5 + parent: 2 + - uid: 18660 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,-23.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24809 - - uid: 24799 + pos: -7.5,-41.5 + parent: 2 + - uid: 18661 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-24.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24810 - - uid: 24800 + pos: -36.5,32.5 + parent: 2 + - uid: 18662 components: - type: Transform rot: -1.5707963267948966 rad - pos: -18.5,-23.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24810 - - uid: 24801 + pos: -22.5,32.5 + parent: 2 + - uid: 18663 components: - type: Transform - pos: -14.5,-27.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24807 - - uid: 24802 + rot: 1.5707963267948966 rad + pos: 10.5,29.5 + parent: 2 + - uid: 18664 components: - type: Transform - pos: -13.5,-27.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24807 - - uid: 24803 + rot: 3.141592653589793 rad + pos: -39.5,7.5 + parent: 2 + - uid: 18665 components: - type: Transform - pos: -12.5,-27.5 - parent: 22565 - - type: DeviceLinkSink - links: - - 24807 -- proto: ShuttersNormalOpen - entities: - - uid: 2 + rot: -1.5707963267948966 rad + pos: 14.5,36.5 + parent: 2 + - uid: 18666 components: - type: Transform - pos: -56.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2192 - - uid: 5 + rot: 1.5707963267948966 rad + pos: 5.5,36.5 + parent: 2 + - uid: 18667 components: - type: Transform - pos: -57.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2192 - - uid: 275 + pos: 27.5,26.5 + parent: 2 + - uid: 18668 components: - type: Transform - pos: -56.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6145 - - uid: 282 + pos: 28.5,26.5 + parent: 2 + - uid: 18669 components: - type: Transform - pos: -57.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6145 - - uid: 1574 + rot: -1.5707963267948966 rad + pos: -3.5,-4.5 + parent: 2 + - uid: 18670 components: - type: Transform - pos: -55.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 2192 - - uid: 2257 + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 + - uid: 26739 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17689 - - uid: 4449 + pos: -30.5,9.5 + parent: 24450 + - uid: 26740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 4450 + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 24450 +- proto: SmallLight + entities: + - uid: 18671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-2.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 6078 + rot: 1.5707963267948966 rad + pos: -46.5,24.5 + parent: 2 + - uid: 18672 components: - type: Transform - pos: -46.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 6079 + rot: -1.5707963267948966 rad + pos: -44.5,23.5 + parent: 2 +- proto: SmartFridge + entities: + - uid: 18673 components: - type: Transform - pos: -45.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 6080 + pos: -10.5,-1.5 + parent: 2 +- proto: SMESBasic + entities: + - uid: 18674 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -44.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 6081 + pos: -122.5,17.5 + parent: 2 + - uid: 18675 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -43.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6096 - - uid: 8357 + pos: -123.5,17.5 + parent: 2 + - uid: 18676 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -55.5,23.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6145 - - uid: 9372 + pos: -124.5,17.5 + parent: 2 + - uid: 18677 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -105.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9373 + pos: -122.5,16.5 + parent: 2 + - uid: 18678 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -104.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9374 + pos: -125.5,17.5 + parent: 2 + - uid: 18679 components: + - type: MetaData + name: СМЭС мостик - type: Transform - pos: -103.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9376 + pos: 47.5,5.5 + parent: 2 + - uid: 18680 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -106.5,7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9377 + pos: -125.5,16.5 + parent: 2 + - uid: 18681 components: + - type: MetaData + name: СМЭС Двигателя - type: Transform - pos: -106.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9378 + pos: -130.5,-12.5 + parent: 2 + - uid: 18682 components: + - type: MetaData + name: СМЭС подстанция телекоммы и гравген - type: Transform - pos: -106.5,9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9369 - - uid: 9380 + pos: -112.5,20.5 + parent: 2 + - uid: 18683 components: + - type: MetaData + name: СМЭС инженерного отдела - type: Transform - pos: -88.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9381 + pos: -116.5,13.5 + parent: 2 + - uid: 18684 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -87.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9382 + pos: -124.5,16.5 + parent: 2 + - uid: 18685 components: + - type: MetaData + name: СМЭС накопительный - type: Transform - pos: -86.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9383 + pos: -123.5,16.5 + parent: 2 + - uid: 18686 components: - type: Transform - pos: -85.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9384 + pos: 35.5,27.5 + parent: 2 + - uid: 18687 components: + - type: MetaData + name: СМЭС НИО - type: Transform - pos: -83.5,7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9385 + pos: -12.5,-25.5 + parent: 2 + - uid: 18688 components: - type: Transform - pos: -83.5,8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9386 + pos: -113.5,-20.5 + parent: 2 + - uid: 24238 components: - type: Transform - pos: -83.5,9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9387 + pos: 7.5,1.5 + parent: 23919 + - uid: 26741 components: - type: Transform - pos: -83.5,10.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10564 - - uid: 9388 + pos: -5.5,-17.5 + parent: 24450 + - uid: 27882 components: - type: Transform - pos: -70.5,10.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9389 + pos: -0.5,-12.5 + parent: 27260 +- proto: SMESMachineCircuitboard + entities: + - uid: 18689 components: - type: Transform - pos: -70.5,9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9390 + pos: -102.58862,-7.2769136 + parent: 2 + - uid: 18690 components: - type: Transform - pos: -66.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9391 + pos: -102.36987,-7.5269136 + parent: 2 +- proto: SmokingPipeFilledCannabis + entities: + - uid: 10526 components: - type: Transform - pos: -65.5,6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9396 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 10527 components: - type: Transform - pos: -47.5,3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9397 + parent: 10519 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Soap + entities: + - uid: 18691 components: - type: Transform - pos: -47.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9398 + pos: -23.508356,32.71544 + parent: 2 + - uid: 18692 components: - type: Transform - pos: -47.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9399 + rot: 3.141592653589793 rad + pos: -46.271545,25.505068 + parent: 2 + - uid: 18693 components: - type: Transform - pos: -65.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9400 + rot: 3.141592653589793 rad + pos: -45.084045,25.426943 + parent: 2 + - uid: 18694 components: - type: Transform - pos: -65.5,13.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6534 - - uid: 9416 + rot: 3.141592653589793 rad + pos: -43.740295,25.411318 + parent: 2 + - uid: 18695 components: - type: Transform - pos: -42.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9417 + rot: 3.141592653589793 rad + pos: -42.66217,25.395693 + parent: 2 +- proto: SoapDeluxe + entities: + - uid: 18696 components: - type: Transform - pos: -42.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9418 + pos: -73.514084,-12.479306 + parent: 2 + - uid: 18697 components: - type: Transform - pos: -42.5,3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9401 - - uid: 9422 + pos: 33.493954,-2.555304 + parent: 2 +- proto: SoapNT + entities: + - uid: 18698 components: - type: Transform - pos: -21.5,3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 295 - - uid: 9423 + pos: 50.48895,14.475723 + parent: 2 +- proto: soda_dispenser + entities: + - uid: 18699 components: - type: Transform - pos: -21.5,2.5 - parent: 89 - - type: DeviceLinkSink - links: - - 295 - - uid: 9424 + pos: -24.5,-0.5 + parent: 2 + - uid: 18700 components: - type: Transform - pos: -21.5,1.5 - parent: 89 - - type: DeviceLinkSink - links: - - 295 - - uid: 9425 + rot: -1.5707963267948966 rad + pos: 1.5,44.5 + parent: 2 + - uid: 18701 components: - type: Transform - pos: -12.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6554 - - uid: 9426 + rot: 1.5707963267948966 rad + pos: -8.5,44.5 + parent: 2 +- proto: SolarControlComputerCircuitboard + entities: + - uid: 18702 components: - type: Transform - pos: -11.5,5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6554 - - uid: 9427 + pos: -103.27902,-10.571648 + parent: 2 +- proto: SolarPanel + entities: + - uid: 26742 components: - type: Transform - pos: -14.5,13.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6554 - - uid: 10554 + pos: -1.5,-12.5 + parent: 24450 + - uid: 26743 components: - type: Transform - pos: -82.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21529 - - uid: 10555 + pos: -1.5,-11.5 + parent: 24450 + - uid: 26744 components: - type: Transform - pos: -81.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21529 - - uid: 10556 + pos: -0.5,-11.5 + parent: 24450 + - uid: 26745 components: - type: Transform - pos: -80.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21529 - - uid: 10557 + pos: -6.5,-11.5 + parent: 24450 + - uid: 26746 components: - type: Transform - pos: -80.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10934 - - uid: 10558 + pos: -6.5,-13.5 + parent: 24450 + - uid: 26747 components: - type: Transform - pos: -82.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10934 - - uid: 10767 + pos: -5.5,-13.5 + parent: 24450 + - uid: 26748 components: - type: Transform - pos: 4.5,-32.5 - parent: 89 - - uid: 10905 + pos: -4.5,-12.5 + parent: 24450 + - uid: 26749 components: - type: Transform - pos: -10.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 10906 + pos: -5.5,-11.5 + parent: 24450 + - uid: 26750 components: - type: Transform - pos: -11.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 10907 + pos: -6.5,-12.5 + parent: 24450 + - uid: 26751 components: - type: Transform - pos: -9.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 10909 + pos: -0.5,-13.5 + parent: 24450 + - uid: 26752 components: - type: Transform - pos: -8.5,-15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 9421 - - uid: 11070 + pos: -0.5,-12.5 + parent: 24450 + - uid: 26753 components: - type: Transform - pos: 1.5,-32.5 - parent: 89 - - uid: 12630 + pos: -4.5,-13.5 + parent: 24450 +- proto: SolarPanelBroken + entities: + - uid: 26754 components: - type: Transform - pos: 11.5,15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6725 - - uid: 12635 + pos: 0.5,-12.5 + parent: 24450 + - uid: 26755 components: - type: Transform - pos: 10.5,15.5 - parent: 89 - - type: DeviceLinkSink - links: - - 6725 - - uid: 14789 + pos: 0.5,-11.5 + parent: 24450 + - uid: 26756 components: - type: Transform - pos: 3.5,-32.5 - parent: 89 - - uid: 15196 + pos: 0.5,-13.5 + parent: 24450 + - uid: 26757 components: - type: Transform - pos: 18.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14809 - - uid: 15754 + pos: -1.5,-13.5 + parent: 24450 + - uid: 26758 components: - type: Transform - pos: 2.5,-32.5 - parent: 89 - - uid: 16291 + pos: -4.5,-11.5 + parent: 24450 + - uid: 26759 components: - type: Transform - pos: 12.5,21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17619 - - uid: 16292 + pos: -5.5,-12.5 + parent: 24450 +- proto: SolarTracker + entities: + - uid: 26760 components: - type: Transform - pos: 12.5,20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17619 - - uid: 16376 + pos: -5.5,-14.5 + parent: 24450 +- proto: SolidSecretDoor + entities: + - uid: 18703 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17689 - - uid: 16769 + pos: -115.5,21.5 + parent: 2 + - uid: 18704 components: - type: Transform - pos: 20.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14809 - - uid: 17011 + pos: 11.5,-14.5 + parent: 2 + - uid: 18705 components: - type: Transform - pos: 17.5,4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14809 - - uid: 17611 + pos: 19.5,-15.5 + parent: 2 + - uid: 26761 components: - type: Transform - pos: 20.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17612 + pos: 3.5,9.5 + parent: 24450 +- proto: SpaceCash10 + entities: + - uid: 18706 components: - type: Transform - pos: 21.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17613 + pos: -36.419117,-0.2933004 + parent: 2 + - uid: 18707 components: - type: Transform - pos: 22.5,16.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17614 + pos: 5.1794705,-1.1862288 + parent: 2 +- proto: SpaceCash100 + entities: + - uid: 18708 components: - type: Transform - pos: 23.5,17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17615 + rot: 3.141592653589793 rad + pos: 65.45385,4.430016 + parent: 2 +- proto: SpaceHeaterAnchored + entities: + - uid: 18709 components: - type: Transform - pos: 23.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 17618 + pos: -106.5,21.5 + parent: 2 + - uid: 18710 components: - type: Transform - pos: 23.5,19.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17606 - - uid: 20824 + pos: -109.5,21.5 + parent: 2 + - uid: 18711 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,20.5 - parent: 89 - - type: DeviceLinkSink - links: - - 17689 - - uid: 21136 + pos: -91.5,7.5 + parent: 2 + - uid: 18712 components: - type: Transform - pos: 48.5,21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 - - uid: 21140 + pos: -91.5,4.5 + parent: 2 + - uid: 18713 components: - type: Transform - pos: 47.5,21.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 - - uid: 21146 + pos: -107.5,27.5 + parent: 2 + - uid: 18714 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,17.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 - - uid: 21162 + pos: -107.5,21.5 + parent: 2 + - uid: 18715 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,18.5 - parent: 89 - - type: DeviceLinkSink - links: - - 21141 -- proto: ShuttersRadiationOpen - entities: - - uid: 7679 + pos: -88.5,-8.5 + parent: 2 + - uid: 18716 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-11.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22044 + pos: -88.5,-9.5 + parent: 2 + - uid: 18717 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-12.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22215 + pos: -88.5,-10.5 + parent: 2 + - uid: 18718 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-10.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22217 + pos: -88.5,-11.5 + parent: 2 + - uid: 18719 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-9.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22218 + pos: -85.5,-11.5 + parent: 2 + - uid: 18720 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-8.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22219 + pos: -84.5,-11.5 + parent: 2 + - uid: 18721 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-7.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22220 + pos: -113.5,2.5 + parent: 2 + - uid: 18722 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-6.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22221 + pos: -112.5,2.5 + parent: 2 + - uid: 18723 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22222 + pos: -111.5,2.5 + parent: 2 +- proto: Spaceshroom + entities: + - uid: 18724 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-4.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22223 + pos: 7.5,-20.5 + parent: 2 + - uid: 18725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 - - uid: 22224 + pos: -77.5,17.5 + parent: 2 + - uid: 18726 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-2.5 - parent: 89 - - type: DeviceLinkSink - links: - - 22225 -- proto: ShuttersWindow - entities: - - uid: 11062 + pos: 3.5,-16.5 + parent: 2 + - uid: 18727 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,30.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14936 - - uid: 11071 + pos: -33.5,-16.5 + parent: 2 + - uid: 18728 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,30.5 - parent: 89 - - type: DeviceLinkSink - links: - - 14 -- proto: ShuttersWindowOpen - entities: - - uid: 4446 + pos: -67.5,21.5 + parent: 2 + - uid: 18729 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 4447 + pos: -101.5,15.5 + parent: 2 + - uid: 18730 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-3.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 4448 + pos: -102.5,13.5 + parent: 2 + - uid: 18731 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -16.5,-5.5 - parent: 89 - - type: DeviceLinkSink - links: - - 4451 - - uid: 10559 + pos: -103.5,18.5 + parent: 2 + - uid: 18732 components: - type: Transform - pos: -81.5,14.5 - parent: 89 - - type: DeviceLinkSink - links: - - 10934 -- proto: ShuttleConsoleCircuitboard - entities: - - uid: 24804 + pos: -88.5,19.5 + parent: 2 + - uid: 18733 components: - type: Transform - pos: -11.394216,7.7100387 - parent: 22565 - - uid: 24805 + pos: -76.5,21.5 + parent: 2 + - uid: 18734 components: - type: Transform - pos: -11.394216,7.5537887 - parent: 22565 - - uid: 24806 + pos: -53.5,31.5 + parent: 2 + - uid: 18735 components: - type: Transform - pos: -11.394216,7.4131637 - parent: 22565 -- proto: ShuttleWindow - entities: - - uid: 21702 + pos: -49.5,21.5 + parent: 2 + - uid: 18736 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-2.5 - parent: 21627 - - uid: 21703 + pos: -24.5,-20.5 + parent: 2 + - uid: 18737 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-2.5 - parent: 21627 - - uid: 21704 + pos: -18.5,-27.5 + parent: 2 + - uid: 18738 components: - type: Transform - pos: 0.5,0.5 - parent: 21627 - - uid: 25557 + pos: -11.5,-32.5 + parent: 2 + - uid: 18739 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-1.5 - parent: 18153 - - uid: 25558 + pos: -12.5,-34.5 + parent: 2 + - uid: 18740 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-0.5 - parent: 18153 - - uid: 25559 + pos: -15.5,-25.5 + parent: 2 + - uid: 18741 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,-0.5 - parent: 18153 - - uid: 25560 + pos: -41.5,-17.5 + parent: 2 + - uid: 18742 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,-0.5 - parent: 18153 - - uid: 25561 + pos: -44.5,-9.5 + parent: 2 + - uid: 18743 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-2.5 - parent: 18153 - - uid: 25562 + pos: -82.5,3.5 + parent: 2 + - uid: 18744 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-2.5 - parent: 18153 - - uid: 25563 + pos: -84.5,-0.5 + parent: 2 + - uid: 18745 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-5.5 - parent: 18153 - - uid: 25564 + pos: -78.5,-7.5 + parent: 2 + - uid: 18746 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-6.5 - parent: 18153 - - uid: 25565 + pos: -82.5,-4.5 + parent: 2 + - uid: 18747 components: - type: Transform - pos: 3.5,-4.5 - parent: 18153 - - uid: 25566 + pos: -120.5,20.5 + parent: 2 + - uid: 18748 components: - type: Transform - pos: 3.5,-6.5 - parent: 18153 - - uid: 25567 + pos: -124.5,21.5 + parent: 2 + - uid: 18749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-8.5 - parent: 18153 - - uid: 25568 + pos: -113.5,17.5 + parent: 2 + - uid: 18750 components: - type: Transform - pos: 3.5,-7.5 - parent: 18153 - - uid: 25569 + pos: -116.5,18.5 + parent: 2 + - uid: 18751 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-7.5 - parent: 18153 - - uid: 25570 + pos: -97.5,13.5 + parent: 2 + - uid: 18752 components: - type: Transform - pos: 3.5,-9.5 - parent: 18153 - - uid: 25571 + pos: -96.5,20.5 + parent: 2 + - uid: 18753 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-7.5 - parent: 18153 - - uid: 25572 + pos: -100.5,22.5 + parent: 2 + - uid: 18754 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-8.5 - parent: 18153 - - uid: 25573 + pos: -98.5,24.5 + parent: 2 + - uid: 18755 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-5.5 - parent: 18153 - - uid: 25618 + pos: -100.5,26.5 + parent: 2 + - uid: 18756 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-1.5 - parent: 18153 -- proto: ShuttleWindowDiagonal - entities: - - uid: 13936 + pos: -93.5,24.5 + parent: 2 + - uid: 18757 components: - type: Transform - pos: -0.5,0.5 - parent: 21627 - - uid: 13939 + pos: -6.5,37.5 + parent: 2 + - uid: 18758 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,0.5 - parent: 21627 - - uid: 14018 + pos: -35.5,21.5 + parent: 2 + - uid: 18759 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-0.5 - parent: 21627 - - uid: 14019 + pos: -42.5,20.5 + parent: 2 + - uid: 18760 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-0.5 - parent: 21627 - - uid: 25742 + pos: -52.5,23.5 + parent: 2 + - uid: 18761 components: - type: Transform - pos: 1.5,-0.5 - parent: 18153 - - uid: 25743 + pos: -19.5,24.5 + parent: 2 + - uid: 18762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,-0.5 - parent: 18153 -- proto: SignAi - entities: - - uid: 945 + pos: -17.5,12.5 + parent: 2 + - uid: 18763 components: - type: Transform - pos: 56.5,5.5 - parent: 89 -- proto: SignalButton - entities: - - uid: 14 + pos: -0.5,30.5 + parent: 2 + - uid: 18764 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,28.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 11071: - - Pressed: Toggle - - uid: 295 + pos: -3.5,35.5 + parent: 2 + - uid: 18765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,5.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9422: - - Pressed: Toggle - 9423: - - Pressed: Toggle - 9424: - - Pressed: Toggle - - uid: 1283 + pos: 3.5,34.5 + parent: 2 + - uid: 18766 components: - - type: MetaData - desc: Эта кнопка активирует внешний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -0.696833,-42.499794 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 260: - - Pressed: Toggle - - uid: 1284 + pos: -8.5,40.5 + parent: 2 + - uid: 18767 components: - - type: MetaData - desc: Эта кнопка активирует внешний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -4.298002,-42.499794 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 254: - - Pressed: Toggle - - uid: 2192 + pos: -4.5,44.5 + parent: 2 + - uid: 18768 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 5: - - Pressed: Toggle - 2: - - Pressed: Toggle - 1574: - - Pressed: Toggle - - uid: 2626 + pos: 0.5,40.5 + parent: 2 + - uid: 18769 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.5,-20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 2295: - - Pressed: Toggle - - uid: 2627 + pos: 3.5,39.5 + parent: 2 + - uid: 18770 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-23.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 2295: - - Pressed: Toggle - - uid: 4451 + pos: 0.5,46.5 + parent: 2 + - uid: 18771 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-6.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4448: - - Pressed: Toggle - 4449: - - Pressed: Toggle - 4447: - - Pressed: Toggle - 4450: - - Pressed: Toggle - 4446: - - Pressed: Toggle - - uid: 4798 + pos: -4.5,41.5 + parent: 2 + - uid: 18772 components: - type: Transform - rot: 3.141592653589793 rad - pos: -58.5,-18.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4797: - - Pressed: Toggle - 4795: - - Pressed: Toggle - - uid: 4799 + pos: -6.5,32.5 + parent: 2 + - uid: 18773 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,-12.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4856: - - Pressed: Toggle - 4736: - - Pressed: Toggle - 4735: - - Pressed: Toggle - - uid: 5413 + pos: 13.5,-19.5 + parent: 2 +- proto: SpaceVillainArcade + entities: + - uid: 18774 components: - - type: MetaData - desc: Эта кнопка активирует внутренний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 246: - - Pressed: Toggle - - uid: 6096 + pos: -10.5,-34.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18775 components: - type: Transform - pos: -43.5,10.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 6081: - - Pressed: Toggle - 6080: - - Pressed: Toggle - 6079: - - Pressed: Toggle - 6078: - - Pressed: Toggle - - uid: 6145 + pos: -57.5,26.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpaceVillainArcadeFilled + entities: + - uid: 18776 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -58.5,22.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 282: - - Pressed: Toggle - 275: - - Pressed: Toggle - 8357: - - Pressed: Toggle - - uid: 6243 + pos: -5.5,-25.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18777 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.476543,19.732094 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 21610: - - Pressed: Toggle - - uid: 6534 + pos: -9.5,-34.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18778 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -61.5,9.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9391: - - Pressed: Toggle - 9390: - - Pressed: Toggle - 9389: - - Pressed: Toggle - 9388: - - Pressed: Toggle - 9400: - - Pressed: Toggle - 9399: - - Pressed: Toggle - - uid: 6554 + pos: 11.5,-12.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18779 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -15.5,8.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9427: - - Pressed: Toggle - 9425: - - Pressed: Toggle - 9426: - - Pressed: Toggle - - uid: 6725 + pos: 18.5,-13.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18780 components: - type: Transform - pos: 7.5,19.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 12635: - - Pressed: Toggle - 12630: - - Pressed: Toggle - - uid: 7159 + pos: 34.5,-6.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18781 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 23.5,6.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 6306: - - Pressed: Toggle - - uid: 7394 + pos: 50.5,-22.5 + parent: 2 + - type: SpamEmitSound + enabled: False + - uid: 18782 components: - type: Transform - pos: 46.5,9.5 - parent: 89 - - type: SignalSwitch - state: True - - type: DeviceLinkSource - linkedPorts: - 7387: - - Pressed: Toggle - 7385: - - Pressed: Toggle - 7386: - - Pressed: Toggle - - uid: 7694 + pos: 43.5,-22.5 + parent: 2 + - type: SpamEmitSound + enabled: False +- proto: SpawnMobAlexander + entities: + - uid: 18783 components: - type: Transform - pos: -99.74609,28.376194 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 7492: - - Pressed: Toggle - - uid: 7695 + pos: -10.5,-7.5 + parent: 2 +- proto: SpawnMobBandito + entities: + - uid: 18784 components: - type: Transform - pos: -99.43359,28.376194 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 7175: - - Pressed: Toggle - - uid: 8816 + pos: -65.5,-5.5 + parent: 2 +- proto: SpawnMobBoxingKangaroo + entities: + - uid: 18785 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -120.5,-4.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 8825: - - Pressed: Toggle - 8821: - - Pressed: Toggle - 8822: - - Pressed: Toggle - 259: - - Pressed: Toggle - - uid: 9369 + rot: 3.141592653589793 rad + pos: -34.5,0.5 + parent: 2 + - uid: 18786 components: - type: Transform - pos: -101.5,11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9374: - - Pressed: Toggle - 9373: - - Pressed: Toggle - 9372: - - Pressed: Toggle - 9376: - - Pressed: Toggle - 9377: - - Pressed: Toggle - 9378: - - Pressed: Toggle - - uid: 9401 + rot: 3.141592653589793 rad + pos: -40.5,26.5 + parent: 2 + - uid: 18787 components: - type: Transform - pos: -44.991,1.7379127 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9396: - - Pressed: Toggle - 9397: - - Pressed: Toggle - 9398: - - Pressed: Toggle - 9416: - - Pressed: Toggle - 9417: - - Pressed: Toggle - 9418: - - Pressed: Toggle - - uid: 9413 + rot: 3.141592653589793 rad + pos: -19.5,30.5 + parent: 2 + - uid: 18788 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 29.5,7.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 2200: - - Pressed: Toggle - - uid: 9420 + pos: 17.5,31.5 + parent: 2 +- proto: SpawnMobCatBingus + entities: + - uid: 18789 components: - type: Transform - rot: 3.141592653589793 rad - pos: -64.5,-18.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4794: - - Pressed: Toggle - 4720: - - Pressed: Toggle - - uid: 9421 + pos: 0.5,15.5 + parent: 2 +- proto: SpawnMobCatException + entities: + - uid: 18790 components: - type: Transform - pos: -7.5,-15.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10909: - - Pressed: Toggle - 10907: - - Pressed: Toggle - 10905: - - Pressed: Toggle - 10906: - - Pressed: Toggle - - uid: 10560 + pos: 26.5,35.5 + parent: 2 +- proto: SpawnMobCatRuntime + entities: + - uid: 18791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,0.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 8508: - - Pressed: Toggle - 8507: - - Pressed: Toggle - 8540: - - Pressed: Toggle - 8539: - - Pressed: Toggle - 8538: - - Pressed: Toggle - 8506: - - Pressed: Toggle - - uid: 10564 + pos: -10.5,15.5 + parent: 2 +- proto: SpawnMobCleanBot + entities: + - uid: 18792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,11.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 9387: - - Pressed: Toggle - 9386: - - Pressed: Toggle - 9385: - - Pressed: Toggle - 9384: - - Pressed: Toggle - 9383: - - Pressed: Toggle - 9382: - - Pressed: Toggle - 9381: - - Pressed: Toggle - 9380: - - Pressed: Toggle - - uid: 10934 + pos: -40.5,8.5 + parent: 2 + - uid: 18793 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,15.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10557: - - Pressed: Toggle - 10559: - - Pressed: Toggle - 10558: - - Pressed: Toggle - - uid: 11036 + pos: -37.5,14.5 + parent: 2 +- proto: SpawnMobCockroach + entities: + - uid: 18794 components: - type: Transform - pos: 0.7500007,-28.502241 - parent: 89 - - uid: 14728 + pos: -119.5,-12.5 + parent: 2 + - uid: 18795 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 - parent: 89 - - uid: 14809 + pos: -23.5,13.5 + parent: 2 + - uid: 18796 components: - type: Transform - pos: 22.036852,7.3139024 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 16769: - - Pressed: Toggle - 15196: - - Pressed: Toggle - 17011: - - Pressed: Toggle - - uid: 14903 + pos: -59.5,9.5 + parent: 2 + - uid: 18797 components: - type: Transform - pos: 17.5,12.5 - parent: 89 - - uid: 14936 + pos: -66.5,21.5 + parent: 2 + - uid: 18798 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,28.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 11062: - - Pressed: Toggle - - uid: 15218 + pos: 31.5,15.5 + parent: 2 + - uid: 18799 components: - type: Transform - pos: 32.5,27.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 16504: - - Pressed: DoorBolt - - uid: 16167 + pos: -69.5,-16.5 + parent: 2 + - uid: 18800 components: - type: Transform - pos: 30.5,27.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 18753: - - Pressed: DoorBolt - - uid: 16804 + pos: -88.5,21.5 + parent: 2 + - uid: 18801 components: - - type: MetaData - desc: Эта кнопка активирует внутренний гермозатвор. - name: кнопка переключения гермозатвора - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-42.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 5430: - - Pressed: Toggle - - uid: 17606 + pos: -45.5,18.5 + parent: 2 + - uid: 18802 components: - type: Transform - pos: 20.5,20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 17611: - - Pressed: Toggle - 17612: - - Pressed: Toggle - 17613: - - Pressed: Toggle - 17614: - - Pressed: Toggle - 17615: - - Pressed: Toggle - 17618: - - Pressed: Toggle - - uid: 17619 + pos: 38.5,12.5 + parent: 2 + - uid: 18803 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,19.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 16292: - - Pressed: Toggle - 16291: - - Pressed: Toggle - - uid: 17689 + pos: -77.5,12.5 + parent: 2 + - uid: 18804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,19.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 20824: - - Pressed: Toggle - 16376: - - Pressed: Toggle - 2257: - - Pressed: Toggle - - uid: 21141 + pos: -116.5,3.5 + parent: 2 + - uid: 18805 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 21140: - - Pressed: Toggle - 21136: - - Pressed: Toggle - 21162: - - Pressed: Toggle - 21146: - - Pressed: Toggle - - uid: 21529 + pos: -21.5,-7.5 + parent: 2 +- proto: SpawnMobCorgi + entities: + - uid: 18806 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,17.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10554: - - Pressed: Toggle - 10555: - - Pressed: Toggle - 10556: - - Pressed: Toggle - - uid: 21590 + pos: 40.5,12.5 + parent: 2 +- proto: SpawnMobCow + entities: + - uid: 18807 components: - type: Transform - pos: -33.5,34.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10131: - - Pressed: DoorBolt - - uid: 21591 + pos: -8.5,-9.5 + parent: 2 +- proto: SpawnMobCrabAtmos + entities: + - uid: 18808 components: - type: Transform - pos: -26.5,34.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 12617: - - Pressed: DoorBolt - - uid: 21592 + pos: -93.5,-9.5 + parent: 2 +- proto: SpawnMobFoxRenault + entities: + - uid: 18809 components: - type: Transform - pos: -26.5,30.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10130: - - Pressed: DoorBolt - - uid: 21593 + pos: 48.5,12.5 + parent: 2 +- proto: SpawnMobGoat + entities: + - uid: 18810 components: - type: Transform - pos: -33.5,30.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10128: - - Pressed: DoorBolt - - uid: 21594 + rot: 3.141592653589793 rad + pos: -6.5,-7.5 + parent: 2 +- proto: SpawnMobGorillaLargo + entities: + - uid: 18811 components: - type: Transform - pos: -33.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10127: - - Pressed: DoorBolt - - uid: 21595 + pos: -66.5,-15.5 + parent: 2 +- proto: SpawnMobLizard + entities: + - uid: 18812 components: - type: Transform - pos: -26.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 10126: - - Pressed: DoorBolt - - uid: 21626 + pos: -30.5,-7.5 + parent: 2 +- proto: SpawnMobMcGriff + entities: + - uid: 18813 components: - type: Transform - pos: 5.5,0.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 5119: - - Pressed: Toggle - - uid: 24807 + pos: 7.5,-9.5 + parent: 2 +- proto: SpawnMobMedibot + entities: + - uid: 18814 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -12.5,-26.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24801: - - Pressed: Toggle - 24802: - - Pressed: Toggle - 24803: - - Pressed: Toggle - - uid: 24808 + pos: -6.5,13.5 + parent: 2 + - uid: 18815 components: - type: Transform - pos: -35.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 22577: - - Pressed: DoorBolt - - uid: 24809 + pos: -1.5,16.5 + parent: 2 +- proto: SpawnMobMonkeyPunpun + entities: + - uid: 18816 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-22.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24798: - - Pressed: Toggle - 24797: - - Pressed: Toggle - - uid: 24810 + pos: -30.5,-1.5 + parent: 2 +- proto: SpawnMobMouse + entities: + - uid: 18817 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-22.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24800: - - Pressed: Toggle - 24799: - - Pressed: Toggle - - uid: 24811 + pos: -101.5,13.5 + parent: 2 + - uid: 18818 components: - type: Transform - rot: 3.141592653589793 rad - pos: -9.5,3.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23165: - - Pressed: Toggle - 23168: - - Pressed: Toggle - - uid: 24812 + pos: -30.5,32.5 + parent: 2 + - uid: 18819 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,3.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23167: - - Pressed: Toggle - 23166: - - Pressed: Toggle - - uid: 24813 + pos: -57.5,29.5 + parent: 2 + - uid: 18820 components: - type: Transform - pos: -14.5,8.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23164: - - Pressed: Toggle - 23162: - - Pressed: Toggle - - uid: 24814 + pos: -77.5,20.5 + parent: 2 + - uid: 18821 components: - type: Transform - pos: -9.5,8.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23161: - - Pressed: Toggle - 23163: - - Pressed: Toggle - - uid: 24815 + pos: -96.5,24.5 + parent: 2 + - uid: 18822 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24621: - - Pressed: Toggle - - uid: 24816 + pos: -116.5,20.5 + parent: 2 + - uid: 18823 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,11.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23157: - - Pressed: Toggle - 23158: - - Pressed: Toggle - 23159: - - Pressed: Toggle - 23160: - - Pressed: Toggle - - uid: 24817 + pos: -92.5,25.5 + parent: 2 + - uid: 18824 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,11.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23154: - - Pressed: Toggle - 23155: - - Pressed: Toggle - 23153: - - Pressed: Toggle - 23156: - - Pressed: Toggle - - uid: 24818 + pos: -33.5,32.5 + parent: 2 + - uid: 18825 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,7.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24645: - - Pressed: Toggle - - uid: 24819 + pos: -57.5,35.5 + parent: 2 + - uid: 18826 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24608: - - Pressed: Toggle - - uid: 24820 + pos: -69.5,-7.5 + parent: 2 + - uid: 18827 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,10.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24607: - - Pressed: Toggle - - uid: 24821 + pos: -0.5,-11.5 + parent: 2 + - uid: 26762 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,7.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24606: - - Pressed: Toggle - - uid: 24822 + pos: -27.5,10.5 + parent: 24450 + - uid: 26763 components: - type: Transform - rot: 3.141592653589793 rad - pos: 9.5,10.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 24627: - - Pressed: Toggle - - uid: 24823 + pos: -31.5,6.5 + parent: 24450 + - uid: 26764 components: - type: Transform - pos: 11.5,4.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 22578: - - Pressed: DoorBolt - - uid: 25393 + pos: -34.5,11.5 + parent: 24450 + - uid: 26765 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 37.5,-17.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 21787: - - Pressed: Toggle -- proto: SignalButtonDirectional + pos: 5.5,3.5 + parent: 24450 + - uid: 26766 + components: + - type: Transform + pos: 10.5,8.5 + parent: 24450 +- proto: SpawnMobParrot entities: - - uid: 22225 + - uid: 18828 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-10.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 22044: - - Pressed: Toggle - 7679: - - Pressed: Toggle - 22215: - - Pressed: Toggle - 22217: - - Pressed: Toggle - 22218: - - Pressed: Toggle - 22219: - - Pressed: Toggle - 22220: - - Pressed: Toggle - 22221: - - Pressed: Toggle - 22222: - - Pressed: Toggle - 22223: - - Pressed: Toggle - 22224: - - Pressed: Toggle -- proto: SignAnomaly + pos: 0.5,-25.5 + parent: 2 +- proto: SpawnMobPossumMorty entities: - - uid: 8409 + - uid: 18829 components: - type: Transform - pos: -0.5,-37.5 - parent: 89 -- proto: SignArmory + pos: -73.5,-16.5 + parent: 2 +- proto: SpawnMobShark entities: - - uid: 19476 + - uid: 18830 components: - type: Transform - pos: 39.5,-8.5 - parent: 89 -- proto: SignAtmos + pos: -99.5,25.5 + parent: 2 +- proto: SpawnMobShiva entities: - - uid: 6452 + - uid: 18831 components: - type: Transform - pos: -96.5,-6.5 - parent: 89 -- proto: SignAtmosMinsky + rot: -1.5707963267948966 rad + pos: 32.5,-1.5 + parent: 2 +- proto: SpawnMobSlothPaperwork entities: - - uid: 6441 + - uid: 18832 components: - type: Transform - pos: -91.5,-6.5 - parent: 89 - - uid: 7176 + pos: -53.5,10.5 + parent: 2 +- proto: SpawnMobSmile + entities: + - uid: 18833 components: - type: Transform - pos: -106.5,-18.5 - parent: 89 -- proto: SignBar + pos: 2.5,-29.5 + parent: 2 +- proto: SpawnMobSpaceCobra entities: - - uid: 76 + - uid: 18834 components: - type: Transform - pos: -20.5,0.5 - parent: 89 - - uid: 77 + pos: -52.5,21.5 + parent: 2 +- proto: SpawnMobWalter + entities: + - uid: 18835 components: - type: Transform - pos: -19.5,-9.5 - parent: 89 -- proto: SignBiohazardMed + pos: 3.5,6.5 + parent: 2 +- proto: SpawnPointAtmos entities: - - uid: 347 + - uid: 18910 components: - type: Transform - pos: -85.5,-22.5 - parent: 89 - - uid: 15161 + pos: -100.5,-3.5 + parent: 2 + - uid: 18911 components: - type: Transform - pos: 12.5,23.5 - parent: 89 - - uid: 15185 + pos: -101.5,-3.5 + parent: 2 + - uid: 18913 components: - type: Transform - pos: 15.5,23.5 - parent: 89 -- proto: SignBridge + pos: -99.5,-4.5 + parent: 2 +- proto: SpawnPointBartender entities: - - uid: 969 + - uid: 18837 components: - type: Transform - pos: 57.5,1.5 - parent: 89 - - uid: 1933 + pos: -29.5,-1.5 + parent: 2 +- proto: SpawnPointBotanist + entities: + - uid: 18838 components: - type: Transform - pos: 42.5,2.5 - parent: 89 - - uid: 1993 + pos: -4.5,-9.5 + parent: 2 + - uid: 18839 components: - type: Transform - pos: 57.5,7.5 - parent: 89 -- proto: SignCanisters - entities: - - uid: 6944 + pos: -4.5,-8.5 + parent: 2 + - uid: 18840 components: - type: Transform - pos: -89.5,-7.5 - parent: 89 -- proto: SignCargo + pos: -4.5,-7.5 + parent: 2 +- proto: SpawnPointCaptain entities: - - uid: 5847 + - uid: 18841 components: - type: Transform - pos: -65.5,-3.5 - parent: 89 - - uid: 5848 + pos: 47.5,13.5 + parent: 2 +- proto: SpawnPointCargoTechnician + entities: + - uid: 18847 components: - type: Transform - pos: -60.5,-3.5 - parent: 89 -- proto: SignCargoDock - entities: - - uid: 5849 + pos: -64.5,-7.5 + parent: 2 + - uid: 18848 components: - type: Transform - pos: -61.5,-18.5 - parent: 89 - - uid: 5850 + pos: -65.5,-7.5 + parent: 2 + - uid: 23707 components: - type: Transform - pos: -61.5,-21.5 - parent: 89 -- proto: SignChapel + pos: -63.5,-7.5 + parent: 2 +- proto: SpawnPointChaplain entities: - - uid: 5455 + - uid: 18844 components: - type: Transform - pos: -46.5,2.5 - parent: 89 -- proto: SignChem + pos: -46.5,-6.5 + parent: 2 +- proto: SpawnPointChef entities: - - uid: 11246 + - uid: 18845 components: - type: Transform - pos: -8.5,10.5 - parent: 89 -- proto: SignChemistry2 - entities: - - uid: 16418 + pos: -12.5,-1.5 + parent: 2 + - uid: 18846 components: - type: Transform - pos: -4.5,5.5 - parent: 89 -- proto: SignCloning + pos: -12.5,-4.5 + parent: 2 +- proto: SpawnPointChemist entities: - - uid: 14978 + - uid: 18866 components: - type: Transform - pos: 8.5,15.5 - parent: 89 - - uid: 15535 + pos: 6.5,13.5 + parent: 2 + - uid: 18869 components: - type: Transform - pos: 17.5,13.5 - parent: 89 -- proto: SignCourt + pos: 6.5,12.5 + parent: 2 +- proto: SpawnPointChiefEngineer entities: - - uid: 10224 + - uid: 18836 components: - type: Transform - pos: -72.5,1.5 - parent: 89 -- proto: SignDirectionalBar + pos: -99.5,-2.5 + parent: 2 +- proto: SpawnPointChiefMedicalOfficer entities: - - uid: 19433 + - uid: 18849 components: - type: Transform - pos: -20.448164,4.3709 - parent: 89 - - uid: 19459 + pos: 24.5,42.5 + parent: 2 + - uid: 18850 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.19584,-14.422298 - parent: 89 -- proto: SignDirectionalBridge + pos: 11.5,12.5 + parent: 2 +- proto: SpawnPointClown entities: - - uid: 19435 + - uid: 18851 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.541182,0.74590015 - parent: 89 - - uid: 19474 + pos: -34.5,-4.5 + parent: 2 + - uid: 18852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5277987,0.82034445 - parent: 89 -- proto: SignDirectionalBrig + pos: 52.5,-13.5 + parent: 2 +- proto: SpawnPointDetective entities: - - uid: 19426 + - uid: 18853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.492928,-10.699898 - parent: 89 - - uid: 19440 + pos: 21.5,6.5 + parent: 2 +- proto: SpawnPointGhostRatKing + entities: + - uid: 18854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.469925,7.722947 - parent: 89 - - uid: 19444 + pos: -43.5,21.5 + parent: 2 +- proto: SpawnPointHeadOfPersonnel + entities: + - uid: 18855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.541182,0.32402515 - parent: 89 - - uid: 19450 + pos: 41.5,12.5 + parent: 2 +- proto: SpawnPointHeadOfSecurity + entities: + - uid: 18856 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.47954,19.72356 - parent: 89 - - uid: 19458 + pos: 33.5,-2.5 + parent: 2 +- proto: SpawnPointJanitor + entities: + - uid: 18857 components: - type: Transform - pos: -28.499207,18.123867 - parent: 89 - - uid: 19479 + pos: -36.5,8.5 + parent: 2 + - uid: 18858 components: - type: Transform - pos: 1.4937797,0.18840826 - parent: 89 -- proto: SignDirectionalChapel + pos: -39.5,8.5 + parent: 2 +- proto: SpawnPointLawyer entities: - - uid: 19446 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -53.450565,2.5216875 - parent: 89 - - uid: 19447 + - uid: 18859 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -42.49031,2.8029375 - parent: 89 -- proto: SignDirectionalChemistry + pos: -75.5,-6.5 + parent: 2 +- proto: SpawnPointLibrarian entities: - - uid: 19451 + - uid: 18860 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.283887,0.70491505 - parent: 89 -- proto: SignDirectionalCryo + pos: -56.5,9.5 + parent: 2 +- proto: SpawnPointMedicalDoctor entities: - - uid: 12648 + - uid: 18861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,10.5 - parent: 89 -- proto: SignDirectionalDorms - entities: - - uid: 16888 + pos: 7.5,13.5 + parent: 2 + - uid: 18862 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,18.5 - parent: 89 - - uid: 19431 + pos: 8.5,12.5 + parent: 2 + - uid: 18863 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -83.47457,11.347947 - parent: 89 - - uid: 19445 + pos: 10.5,12.5 + parent: 2 + - uid: 18864 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.463917,19.50481 - parent: 89 -- proto: SignDirectionalEng - entities: - - uid: 15609 + pos: -11.5,20.5 + parent: 2 + - uid: 18865 components: - type: Transform - pos: -87.481995,0.5272808 - parent: 89 - - uid: 19434 + pos: 9.5,13.5 + parent: 2 +- proto: SpawnPointMedicalIntern + entities: + - uid: 18867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.484875,1.9081881 - parent: 89 - - uid: 19437 + pos: 7.5,12.5 + parent: 2 + - uid: 18868 components: - type: Transform - rot: 3.141592653589793 rad - pos: -67.37197,6.6281567 - parent: 89 - - uid: 19438 + pos: 8.5,13.5 + parent: 2 + - uid: 18870 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -70.481346,8.596907 - parent: 89 - - uid: 19448 + pos: 9.5,12.5 + parent: 2 + - uid: 18871 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -54.47954,19.301685 - parent: 89 - - uid: 19456 + pos: 10.5,13.5 + parent: 2 +- proto: SpawnPointMime + entities: + - uid: 18872 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.504496,18.701992 - parent: 89 - - uid: 19468 + pos: -34.5,-8.5 + parent: 2 + - uid: 18873 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.507183,-10.057941 - parent: 89 - - uid: 19470 + pos: 25.5,-13.5 + parent: 2 +- proto: SpawnPointMusician + entities: + - uid: 18874 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.453323,2.7666566 - parent: 89 - - uid: 19472 + pos: -34.5,-6.5 + parent: 2 +- proto: SpawnPointObserver + entities: + - uid: 18875 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.53055,6.8082514 - parent: 89 - - uid: 19489 + pos: 13.5,1.5 + parent: 2 +- proto: SpawnPointParamedic + entities: + - uid: 18876 components: - type: Transform - pos: -83.47322,11.546508 - parent: 89 -- proto: SignDirectionalEvac + pos: 11.5,13.5 + parent: 2 +- proto: SpawnPointPassenger entities: - - uid: 19455 + - uid: 18877 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.258215,0.3275411 - parent: 89 - - uid: 19469 + pos: -94.5,15.5 + parent: 2 + - uid: 18878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.524527,18.912651 - parent: 89 - - uid: 19471 + pos: -92.5,16.5 + parent: 2 + - uid: 18879 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.493805,1.4084592 - parent: 89 - - uid: 19477 + pos: -91.5,13.5 + parent: 2 + - uid: 18880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.4980168,0.37590826 - parent: 89 - - uid: 19481 + pos: -93.5,13.5 + parent: 2 +- proto: SpawnPointPilot + entities: + - uid: 18881 components: - type: Transform - rot: 3.141592653589793 rad - pos: -54.46437,20.100151 - parent: 89 - - uid: 19484 + pos: 34.5,-24.5 + parent: 2 +- proto: SpawnPointPsychologist + entities: + - uid: 18882 components: - type: Transform - rot: 3.141592653589793 rad - pos: -83.47322,11.765258 - parent: 89 -- proto: SignDirectionalFood + pos: 20.5,18.5 + parent: 2 +- proto: SpawnPointQuartermaster entities: - - uid: 19441 + - uid: 18842 components: - type: Transform - pos: -20.448164,4.792775 - parent: 89 - - uid: 19457 + pos: -62.5,-5.5 + parent: 2 +- proto: SpawnPointReporter + entities: + - uid: 18884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.19881,-14.203548 - parent: 89 -- proto: SignDirectionalGravity + pos: -26.5,8.5 + parent: 2 +- proto: SpawnPointResearchAssistant entities: - - uid: 15763 + - uid: 18885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,-11.5 - parent: 89 - - uid: 15764 + pos: -6.5,-44.5 + parent: 2 + - uid: 18886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-14.5 - parent: 89 -- proto: SignDirectionalHydro + pos: 1.5,-44.5 + parent: 2 +- proto: SpawnPointResearchDirector entities: - - uid: 19436 + - uid: 18887 components: - type: Transform - pos: -20.448164,4.58965 - parent: 89 - - uid: 19462 + pos: 3.5,-29.5 + parent: 2 +- proto: SpawnPointSalvageSpecialist + entities: + - uid: 23708 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.360103,-10.336247 - parent: 89 - - uid: 19465 + pos: -62.5,-7.5 + parent: 2 + - uid: 23709 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.189,-14.640293 - parent: 89 -- proto: SignDirectionalMed + pos: -61.5,-7.5 + parent: 2 + - uid: 23710 + components: + - type: Transform + pos: -60.5,-7.5 + parent: 2 +- proto: SpawnPointScientist entities: - - uid: 19427 + - uid: 18890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,1.5 - parent: 89 - - uid: 19442 + pos: -15.5,-18.5 + parent: 2 + - uid: 18891 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47633,8.190959 - parent: 89 - - uid: 19443 + pos: -18.5,-19.5 + parent: 2 + - uid: 18892 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.541182,0.54277515 - parent: 89 - - uid: 19453 + pos: -6.5,-22.5 + parent: 2 +- proto: SpawnPointSecurityCadet + entities: + - uid: 18893 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -54.480083,19.901142 - parent: 89 - - uid: 19454 + pos: 48.5,-19.5 + parent: 2 + - uid: 18894 components: - type: Transform - pos: -28.496002,18.319506 - parent: 89 - - uid: 19467 + pos: 48.5,-20.5 + parent: 2 + - uid: 18895 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -28.50203,1.6130815 - parent: 89 - - uid: 19475 + pos: 19.5,-13.5 + parent: 2 + - uid: 18896 + components: + - type: Transform + pos: 22.5,-13.5 + parent: 2 + - uid: 18897 + components: + - type: Transform + pos: 43.5,-4.5 + parent: 2 + - uid: 18898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5136418,0.59465826 - parent: 89 -- proto: SignDirectionalSci + pos: 31.5,-3.5 + parent: 2 +- proto: SpawnPointSecurityOfficer entities: - - uid: 18867 + - uid: 18899 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -38.5,-10.5 - parent: 89 - - uid: 19428 + pos: 20.5,-5.5 + parent: 2 + - uid: 18900 components: - type: Transform - pos: -38.505344,1.299536 - parent: 89 - - uid: 19432 + pos: 17.5,-5.5 + parent: 2 + - uid: 18901 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47134,7.940959 - parent: 89 - - uid: 19463 + pos: 18.5,-5.5 + parent: 2 + - uid: 18902 components: - type: Transform - pos: -28.501144,17.939337 - parent: 89 - - uid: 19466 + pos: 19.5,-5.5 + parent: 2 + - uid: 18903 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.505072,1.8144658 - parent: 89 -- proto: SignDirectionalSec + pos: 31.5,-6.5 + parent: 2 + - uid: 18904 + components: + - type: Transform + pos: 32.5,-6.5 + parent: 2 +- proto: SpawnPointServiceWorker entities: - - uid: 19478 + - uid: 18905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.899324,-14.207903 - parent: 89 - - uid: 19480 + pos: -23.5,-4.5 + parent: 2 + - uid: 18906 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.3946757,-10.59005 - parent: 89 -- proto: SignDirectionalSolar - entities: - - uid: 20357 + pos: -26.5,-4.5 + parent: 2 + - uid: 18907 components: - type: Transform - rot: 3.141592653589793 rad - pos: 33.5,24.5 - parent: 89 -- proto: SignDirectionalSupply + pos: -24.5,-4.5 + parent: 2 + - uid: 18908 + components: + - type: Transform + pos: -25.5,-4.5 + parent: 2 +- proto: SpawnPointStationEngineer entities: - - uid: 19116 + - uid: 18843 components: - type: Transform - rot: 3.141592653589793 rad - pos: -38.492928,-10.293648 - parent: 89 - - uid: 19429 + pos: -102.5,-1.5 + parent: 2 + - uid: 18883 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -38.48972,1.7086813 - parent: 89 - - uid: 19439 + pos: -103.5,-1.5 + parent: 2 + - uid: 18888 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.47308,8.396509 - parent: 89 -- proto: SignDirectionalWash - entities: - - uid: 19452 + pos: -101.5,-1.5 + parent: 2 + - uid: 18889 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.25161,0.7494161 - parent: 89 -- proto: SignDrones + pos: -100.5,-1.5 + parent: 2 +- proto: SpawnPointTechnicalAssistant entities: - - uid: 19671 + - uid: 18909 components: - type: Transform - pos: 19.5,0.5 - parent: 89 -- proto: SignElectricalMed - entities: - - uid: 8492 + pos: -102.5,-3.5 + parent: 2 + - uid: 18912 components: - type: Transform - pos: -126.5,14.5 - parent: 89 - - uid: 8522 + pos: -103.5,-3.5 + parent: 2 + - uid: 18914 components: - type: Transform - pos: -126.5,10.5 - parent: 89 -- proto: SignEngineering + pos: -104.5,-2.5 + parent: 2 +- proto: SpawnPointWarden entities: - - uid: 7190 + - uid: 18915 components: - type: Transform - pos: -106.5,-5.5 - parent: 89 -- proto: SignExamroom + pos: 7.5,-11.5 + parent: 2 +- proto: SpeedLoaderCap entities: - - uid: 12646 + - uid: 18916 components: - type: Transform - pos: 23.5,26.5 - parent: 89 -- proto: SignFire + pos: -34.26588,32.403828 + parent: 2 +- proto: SpeedLoaderMagnum entities: - - uid: 8481 + - uid: 1195 components: - type: Transform - pos: -122.5,2.5 - parent: 89 -- proto: SignFlammableMed - entities: - - uid: 7164 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1196 components: - type: Transform - pos: -82.5,-22.5 - parent: 89 -- proto: SignHead - entities: - - uid: 11100 + parent: 1183 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 18917 components: - type: Transform - pos: 26.5,29.5 - parent: 89 -- proto: SignHydro2 + pos: 35.614456,-0.5068965 + parent: 2 +- proto: SpeedLoaderMagnumAP entities: - - uid: 19464 + - uid: 18918 components: - type: Transform - pos: -8.563228,-10.476872 - parent: 89 -- proto: SignInterrogation + rot: 3.141592653589793 rad + pos: 35.43831,-0.5306393 + parent: 2 +- proto: SpiderWeb entities: - - uid: 15869 + - uid: 18919 components: - type: Transform - pos: 4.5,-3.5 - parent: 89 -- proto: SignKiddiePlaque - entities: - - uid: 11668 + rot: 1.5707963267948966 rad + pos: 40.5,22.5 + parent: 2 + - uid: 18920 components: - type: Transform - pos: 4.5,6.5 - parent: 89 - - uid: 15037 + pos: -92.5,26.5 + parent: 2 + - uid: 18921 components: - - type: MetaData - desc: 'Табличка с недавней реконструкции станции простыми работягами. Тут вы можете найти такие псевдонимы как: Syxapik, SonicDC, Zna1kin. Почему у них такие прозвища видимо секрет фирмы. ©' - name: "доска почёта \U0001F3C6" - type: Transform - pos: 39.5,10.5 - parent: 89 -- proto: SignLibrary - entities: - - uid: 3292 + rot: -1.5707963267948966 rad + pos: -92.5,27.5 + parent: 2 + - uid: 18922 components: - type: Transform - pos: -47.5,6.5 - parent: 89 -- proto: SignMedical - entities: - - uid: 6569 + rot: -1.5707963267948966 rad + pos: -93.5,28.5 + parent: 2 + - uid: 18923 components: - type: Transform - pos: -15.5,4.5 - parent: 89 - - uid: 6570 + rot: -1.5707963267948966 rad + pos: -92.5,29.5 + parent: 2 + - uid: 18924 components: - type: Transform - pos: -8.5,4.5 - parent: 89 -- proto: SignMorgue - entities: - - uid: 10502 + pos: 14.5,-16.5 + parent: 2 + - uid: 18925 components: - type: Transform - pos: 7.5,10.5 - parent: 89 - - uid: 12835 + rot: 1.5707963267948966 rad + pos: 40.5,20.5 + parent: 2 + - uid: 18926 components: - type: Transform - pos: 15.5,5.5 - parent: 89 -- proto: SignNosmoking - entities: - - uid: 7165 + rot: -1.5707963267948966 rad + pos: 39.5,21.5 + parent: 2 + - uid: 18927 components: - type: Transform - pos: -78.5,-22.5 - parent: 89 -- proto: SignPlaque - entities: - - uid: 19461 + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 + parent: 2 + - uid: 18928 components: - type: Transform - pos: 4.5,0.5 - parent: 89 -- proto: SignPrison + rot: -1.5707963267948966 rad + pos: 49.5,-9.5 + parent: 2 + - uid: 26767 + components: + - type: Transform + pos: 3.5,10.5 + parent: 24450 + - uid: 26768 + components: + - type: Transform + pos: 4.5,10.5 + parent: 24450 + - uid: 26769 + components: + - type: Transform + pos: 3.5,11.5 + parent: 24450 +- proto: SprayBottleSpaceCleaner entities: - - uid: 21914 + - uid: 18929 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 89 - - uid: 24824 + pos: -1.4198284,-1.3306422 + parent: 2 + - uid: 18930 + components: + - type: Transform + pos: -41.17559,7.5532546 + parent: 2 + - uid: 18931 + components: + - type: Transform + pos: -41.17559,7.865755 + parent: 2 + - uid: 18932 + components: + - type: Transform + pos: 5.48831,29.827152 + parent: 2 + - uid: 18933 + components: + - type: Transform + pos: 5.33206,29.624027 + parent: 2 + - uid: 18934 + components: + - type: Transform + pos: -34.505363,5.583355 + parent: 2 + - uid: 18935 + components: + - type: Transform + pos: 10.525955,42.67038 + parent: 2 + - uid: 18936 + components: + - type: Transform + pos: 5.309067,16.752579 + parent: 2 + - uid: 18937 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 9.576197,36.253662 + parent: 2 + - uid: 18938 components: - type: Transform - pos: -13.5,-4.5 - parent: 22565 - - uid: 24825 + pos: 5.628935,29.608402 + parent: 2 + - uid: 18939 components: - type: Transform - pos: -10.5,-4.5 - parent: 22565 -- proto: SignRadiationMed - entities: - - uid: 7050 + pos: 5.628935,33.999027 + parent: 2 + - uid: 18940 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-8.5 - parent: 89 - - uid: 13995 + pos: 5.26956,34.077152 + parent: 2 + - uid: 18941 components: - type: Transform - pos: -123.5,6.5 - parent: 89 - - uid: 17087 + pos: 26.439201,13.657077 + parent: 2 + - uid: 18942 components: - type: Transform - pos: -123.5,1.5 - parent: 89 - - uid: 21983 + pos: 9.69931,8.612162 + parent: 2 +- proto: SprayPainter + entities: + - uid: 18943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -127.5,-5.5 - parent: 89 -- proto: SignRND + pos: -56.366257,5.479856 + parent: 2 +- proto: StairStage entities: - - uid: 8294 + - uid: 18944 components: - type: Transform - pos: -1.5,-18.5 - parent: 89 - - uid: 8392 + rot: 3.141592653589793 rad + pos: 32.5,-13.5 + parent: 2 + - uid: 18945 components: - type: Transform - pos: -1.5,-23.5 - parent: 89 -- proto: SignRobo + rot: 3.141592653589793 rad + pos: 32.5,-12.5 + parent: 2 +- proto: StasisBed entities: - - uid: 8410 + - uid: 18946 components: - type: Transform - pos: -10.5,-23.5 - parent: 89 - - uid: 16890 + pos: 14.5,-3.5 + parent: 2 + - uid: 18947 components: - type: Transform - pos: -23.5,-14.5 - parent: 89 - - uid: 16891 + pos: -2.5,15.5 + parent: 2 + - uid: 18948 components: - type: Transform - pos: -17.5,-14.5 - parent: 89 -- proto: SignShield - entities: - - uid: 19460 + pos: -0.5,15.5 + parent: 2 + - uid: 27883 components: - type: Transform - pos: 2.5,-7.5 - parent: 89 -- proto: SignShock + pos: -4.5,-8.5 + parent: 27260 +- proto: StationMap entities: - - uid: 7102 + - uid: 18949 components: - type: Transform - pos: 53.5,-11.5 - parent: 89 - - uid: 8480 + rot: 1.5707963267948966 rad + pos: -42.5,-3.5 + parent: 2 + - uid: 18950 components: - type: Transform - pos: -128.5,2.5 - parent: 89 - - uid: 8847 + rot: -1.5707963267948966 rad + pos: -28.5,12.5 + parent: 2 + - uid: 18951 components: - type: Transform - pos: 47.5,-38.5 - parent: 89 - - uid: 25352 + pos: -62.5,27.5 + parent: 2 + - uid: 18952 components: - type: Transform - pos: 63.5,-29.5 - parent: 89 - - uid: 25356 + pos: -79.5,11.5 + parent: 2 + - uid: 18953 components: - type: Transform - pos: 37.5,-28.5 - parent: 89 -- proto: SignSmoking - entities: - - uid: 8456 + pos: -95.5,11.5 + parent: 2 + - uid: 18954 components: - type: Transform - pos: -128.5,1.5 - parent: 89 - - uid: 21589 + rot: -1.5707963267948966 rad + pos: -53.5,0.5 + parent: 2 + - uid: 18955 components: - type: Transform - pos: -3.5,14.5 - parent: 89 -- proto: SignSomethingOld - entities: - - uid: 3415 + rot: 3.141592653589793 rad + pos: -32.5,1.5 + parent: 2 + - uid: 18956 components: - - type: MetaData - desc: Гражданин, сообщай о нарушениях ОЧЗ, будь бдителен враги Земли всюду. - name: старый плакат EarthGov - type: Transform - pos: -21.5,7.5 - parent: 89 - - uid: 9580 + pos: 11.5,4.5 + parent: 2 + - uid: 18957 components: - - type: MetaData - desc: Гражданин, вступай в силы обороны Земли! Защитите Землю! - name: старый плакат EarthGov - type: Transform - pos: -16.5,-10.5 - parent: 89 - - uid: 9596 + rot: 3.141592653589793 rad + pos: 29.5,0.5 + parent: 2 + - uid: 18958 components: - - type: MetaData - desc: Звезды наши! - name: старый плакат EarthGov - type: Transform - pos: -57.5,6.5 - parent: 89 - - uid: 9598 + rot: 1.5707963267948966 rad + pos: -4.5,-14.5 + parent: 2 + - uid: 18959 components: - - type: MetaData - desc: Полный допуск, в публичный сектор! - name: старый плакат EarthGov - type: Transform - pos: -70.5,11.5 - parent: 89 - - uid: 9599 + rot: -1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - uid: 18960 components: - - type: MetaData - desc: Одна цель, одно правительство. - name: старый плакат EarthGov - type: Transform - pos: -89.5,5.5 - parent: 89 - - uid: 9600 + pos: -53.5,19.5 + parent: 2 + - uid: 18961 components: - - type: MetaData - desc: Правительство Земли, создает рабочие месте! - name: старый плакат EarthGov - type: Transform - pos: -64.5,23.5 - parent: 89 - - uid: 9601 + rot: 1.5707963267948966 rad + pos: -72.5,2.5 + parent: 2 + - uid: 18962 components: - - type: MetaData - desc: Ради общего будущего. - name: старый плакат EarthGov - type: Transform - pos: -34.5,15.5 - parent: 89 - - uid: 9602 + rot: 3.141592653589793 rad + pos: -82.5,6.5 + parent: 2 + - uid: 18963 components: - - type: MetaData - desc: Создай завтра, вместе с правительством Земли. - name: старый плакат EarthGov - type: Transform - pos: -28.5,-10.5 - parent: 89 - - uid: 9603 + pos: -32.5,-10.5 + parent: 2 + - uid: 18964 components: - - type: MetaData - desc: Добро пожаловать в правительственный сектор! - name: старый плакат EarthGov - type: Transform - pos: 33.5,4.5 - parent: 89 - - uid: 24826 + pos: -110.5,22.5 + parent: 2 + - uid: 18965 components: - type: Transform - pos: -8.5,3.5 - parent: 22565 -- proto: SignSomethingOld2 + pos: -100.5,6.5 + parent: 2 +- proto: SteelBench entities: - - uid: 9566 + - uid: 18966 components: - - type: MetaData - desc: На плакате изображенна работа планетарного потрошителя. Страшновато. - name: старый плакат EarthGov - type: Transform - pos: 2.5,-9.5 - parent: 89 - - uid: 10504 + rot: 1.5707963267948966 rad + pos: 11.5,-13.5 + parent: 2 + - uid: 18967 components: - - type: MetaData - desc: На плакате изображена работа планетарного потрошителя. Страшновато. - name: старый плакат EarthGov - type: Transform - pos: -61.5,42.5 - parent: 89 - - uid: 24827 + rot: -1.5707963267948966 rad + pos: 13.5,-12.5 + parent: 2 + - uid: 18968 components: - type: Transform - pos: -15.5,3.5 - parent: 22565 -- proto: SignSurgery - entities: - - uid: 15868 + rot: -1.5707963267948966 rad + pos: 13.5,-13.5 + parent: 2 + - uid: 26770 components: - type: Transform - pos: 4.5,14.5 - parent: 89 - - uid: 20014 + pos: -25.5,-0.5 + parent: 24450 + - uid: 26771 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -7.5,17.5 - parent: 89 -- proto: SignTelecomms - entities: - - uid: 9153 + pos: -24.5,-0.5 + parent: 24450 + - uid: 26772 components: - type: Transform - pos: -109.5,19.5 - parent: 89 - - uid: 9154 + pos: -23.5,-0.5 + parent: 24450 + - uid: 26773 components: - type: Transform - pos: -107.5,19.5 - parent: 89 - - uid: 24828 + pos: -0.5,-0.5 + parent: 24450 + - uid: 26774 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 22565 -- proto: SignToolStorage - entities: - - uid: 7189 + pos: 0.5,-0.5 + parent: 24450 + - uid: 26775 components: - type: Transform - pos: -98.5,-6.5 - parent: 89 - - uid: 7228 + pos: 1.5,-0.5 + parent: 24450 +- proto: SteelOre1 + entities: + - uid: 18969 components: - type: Transform - pos: -92.5,11.5 - parent: 89 -- proto: SignVirology + pos: -27.517975,28.269533 + parent: 2 +- proto: Stool entities: - - uid: 12857 + - uid: 18970 components: - type: Transform - pos: 15.5,25.5 - parent: 89 - - uid: 15034 + rot: 3.141592653589793 rad + pos: -36.5,-1.5 + parent: 2 + - uid: 18971 components: - type: Transform - pos: 12.5,25.5 - parent: 89 - - uid: 15534 + pos: -36.5,0.5 + parent: 2 + - uid: 18972 components: - type: Transform - pos: 12.5,15.5 - parent: 89 -- proto: Sink - entities: - - uid: 719 + pos: -35.5,0.5 + parent: 2 + - uid: 18973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,13.5 - parent: 89 - - uid: 1193 + rot: 3.141592653589793 rad + pos: -35.5,-1.5 + parent: 2 + - uid: 18974 components: - type: Transform - pos: -24.5,14.5 - parent: 89 - - uid: 1708 + rot: 1.5707963267948966 rad + pos: -37.5,-0.5 + parent: 2 + - uid: 18975 components: - type: Transform - pos: -25.5,14.5 - parent: 89 - - uid: 1858 + rot: -1.5707963267948966 rad + pos: -48.5,-3.5 + parent: 2 + - uid: 18976 components: - type: Transform - pos: -22.5,14.5 - parent: 89 - - uid: 1861 + pos: -45.5,-3.5 + parent: 2 + - uid: 18977 components: - type: Transform - pos: -23.5,14.5 - parent: 89 - - uid: 1863 + rot: 3.141592653589793 rad + pos: -45.5,-4.5 + parent: 2 + - uid: 18978 components: - type: Transform - pos: -21.5,14.5 - parent: 89 - - uid: 2071 + rot: 3.141592653589793 rad + pos: -29.5,-6.5 + parent: 2 + - uid: 18979 components: - type: Transform - pos: 6.5,-28.5 - parent: 89 - - uid: 4889 + rot: 3.141592653589793 rad + pos: -36.5,8.5 + parent: 2 + - uid: 18980 components: - type: Transform rot: 1.5707963267948966 rad - pos: -26.5,-2.5 - parent: 89 - - uid: 5828 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -73.5,-13.5 - parent: 89 - - uid: 15188 + pos: -22.5,-4.5 + parent: 2 + - uid: 18981 components: - type: Transform - pos: 20.5,23.5 - parent: 89 - - uid: 16889 + rot: 3.141592653589793 rad + pos: -49.445366,-10.505502 + parent: 2 + - uid: 18982 components: - type: Transform rot: 3.141592653589793 rad - pos: -45.5,23.5 - parent: 89 - - uid: 19133 + pos: -48.46099,-10.474252 + parent: 2 + - uid: 18983 components: - type: Transform rot: 3.141592653589793 rad - pos: -46.5,23.5 - parent: 89 - - uid: 20984 + pos: -47.49224,-10.505502 + parent: 2 +- proto: StoolBar + entities: + - uid: 18984 components: - type: Transform rot: 3.141592653589793 rad - pos: 40.5,16.5 - parent: 89 - - uid: 21492 + pos: -26.5,-4.5 + parent: 2 + - uid: 18985 components: - type: Transform rot: 3.141592653589793 rad - pos: -44.5,23.5 - parent: 89 -- proto: SinkStemlessWater - entities: - - uid: 24829 + pos: -25.5,-4.5 + parent: 2 + - uid: 18986 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -13.5,-19.5 - parent: 22565 -- proto: SinkWide - entities: - - uid: 329 + rot: 3.141592653589793 rad + pos: -24.5,-4.5 + parent: 2 + - uid: 18987 components: - type: Transform rot: 3.141592653589793 rad - pos: -14.5,-5.5 - parent: 89 - - uid: 5482 + pos: -23.5,-4.5 + parent: 2 + - uid: 18988 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-41.5 - parent: 89 - - uid: 10294 + rot: -1.5707963267948966 rad + pos: -21.5,-3.5 + parent: 2 + - uid: 18989 components: - type: Transform rot: -1.5707963267948966 rad - pos: -36.5,32.5 - parent: 89 - - uid: 10354 + pos: -21.5,-2.5 + parent: 2 + - uid: 18990 components: - type: Transform rot: -1.5707963267948966 rad - pos: -22.5,32.5 - parent: 89 - - uid: 10887 + pos: -21.5,-1.5 + parent: 2 + - uid: 18991 components: - type: Transform rot: 1.5707963267948966 rad - pos: 10.5,29.5 - parent: 89 - - uid: 15028 + pos: 3.5,-19.5 + parent: 2 + - uid: 18992 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,7.5 - parent: 89 - - uid: 16175 + rot: 1.5707963267948966 rad + pos: 3.5,-21.5 + parent: 2 + - uid: 18993 components: - type: Transform rot: -1.5707963267948966 rad - pos: 14.5,36.5 - parent: 89 - - uid: 16176 + pos: -4.5,45.5 + parent: 2 + - uid: 18994 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,36.5 - parent: 89 - - uid: 18971 + pos: -2.5,45.5 + parent: 2 + - uid: 18995 components: - type: Transform - pos: 27.5,26.5 - parent: 89 - - uid: 19248 + pos: -119.5,-14.5 + parent: 2 + - uid: 18996 components: - type: Transform - pos: 28.5,26.5 - parent: 89 - - uid: 24830 + pos: -118.5,-14.5 + parent: 2 + - uid: 18997 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -30.5,9.5 - parent: 22565 - - uid: 24831 + rot: 1.5707963267948966 rad + pos: 3.5,-18.5 + parent: 2 + - uid: 18998 components: - type: Transform rot: 1.5707963267948966 rad - pos: 6.5,9.5 - parent: 22565 -- proto: SmallLight - entities: - - uid: 21520 + pos: 3.5,-20.5 + parent: 2 + - uid: 18999 components: - type: Transform rot: 1.5707963267948966 rad - pos: -46.5,24.5 - parent: 89 - - uid: 21521 + pos: -17.5,-3.5 + parent: 2 + - uid: 19000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -44.5,23.5 - parent: 89 -- proto: SmartFridge - entities: - - uid: 4763 + rot: 1.5707963267948966 rad + pos: -17.5,-2.5 + parent: 2 + - uid: 19001 components: - type: Transform - pos: -10.5,-1.5 - parent: 89 -- proto: SMESBasic + rot: 1.5707963267948966 rad + pos: -17.5,-4.5 + parent: 2 +- proto: StorageCanister entities: - - uid: 618 + - uid: 19002 components: - - type: MetaData - name: СМЭС мостик - type: Transform - pos: 47.5,4.5 - parent: 89 - - uid: 1257 + pos: -88.5,-6.5 + parent: 2 + - uid: 19003 components: - type: Transform - pos: -120.5,18.5 - parent: 89 - - uid: 11362 + pos: -88.5,-5.5 + parent: 2 + - uid: 19004 components: - - type: MetaData - name: СМЭС инженерного отдела - type: Transform - pos: -116.5,13.5 - parent: 89 - - uid: 15318 + pos: -96.5,-15.5 + parent: 2 + - uid: 19005 components: - type: Transform - pos: -124.5,18.5 - parent: 89 - - uid: 16763 + pos: -98.5,-15.5 + parent: 2 + - uid: 19006 components: - type: Transform - pos: -121.5,18.5 - parent: 89 - - uid: 17024 + pos: -97.5,-15.5 + parent: 2 + - uid: 19007 components: - type: Transform - pos: -123.5,18.5 - parent: 89 - - uid: 17025 + pos: -87.5,-6.5 + parent: 2 + - uid: 19008 components: - type: Transform - pos: -122.5,18.5 - parent: 89 - - uid: 19806 + pos: -79.5,-11.5 + parent: 2 + - uid: 19009 components: - type: Transform - pos: -125.5,18.5 - parent: 89 - - uid: 20187 + pos: -80.5,-11.5 + parent: 2 + - uid: 19010 components: - type: Transform - pos: 35.5,27.5 - parent: 89 - - uid: 21389 + pos: -93.5,19.5 + parent: 2 + - uid: 19011 components: - type: Transform - pos: -131.5,-4.5 - parent: 89 - - uid: 22091 + pos: -22.5,-27.5 + parent: 2 + - uid: 19012 components: - type: Transform - pos: -131.5,-12.5 - parent: 89 - - uid: 22163 + pos: -105.5,18.5 + parent: 2 + - uid: 19013 components: - type: Transform - pos: -131.5,-11.5 - parent: 89 - - uid: 22207 + pos: -104.5,18.5 + parent: 2 + - uid: 19014 components: - type: Transform - pos: -131.5,-3.5 - parent: 89 - - uid: 24832 + pos: 2.5,25.5 + parent: 2 + - uid: 19015 components: - type: Transform - pos: -5.5,-17.5 - parent: 22565 -- proto: SMESMachineCircuitboard - entities: - - uid: 6894 + pos: 14.5,34.5 + parent: 2 + - uid: 19016 components: - type: Transform - pos: -102.58862,-7.2769136 - parent: 89 - - uid: 7039 + pos: 0.5,-39.5 + parent: 2 + - uid: 19017 components: - type: Transform - pos: -102.36987,-7.5269136 - parent: 89 -- proto: SmokingPipeFilledCannabis + pos: 1.5,-39.5 + parent: 2 + - uid: 26776 + components: + - type: Transform + pos: -14.5,-9.5 + parent: 24450 + - uid: 26777 + components: + - type: Transform + pos: -25.5,-12.5 + parent: 24450 +- proto: Stunbaton entities: - - uid: 12602 + - uid: 15712 components: - type: Transform - parent: 12190 + parent: 15711 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 12610 + - uid: 15713 components: - type: Transform - parent: 12190 + parent: 15711 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: Soap - entities: - - uid: 54 + - uid: 15714 components: - type: Transform - pos: -23.508356,32.71544 - parent: 89 - - uid: 21503 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15715 components: - type: Transform - rot: 3.141592653589793 rad - pos: -46.271545,25.505068 - parent: 89 - - uid: 21504 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15716 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.084045,25.426943 - parent: 89 - - uid: 21505 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15717 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.740295,25.411318 - parent: 89 - - uid: 21506 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15718 components: - type: Transform - rot: 3.141592653589793 rad - pos: -42.66217,25.395693 - parent: 89 -- proto: SoapDeluxe - entities: - - uid: 5827 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 15719 components: - type: Transform - pos: -73.514084,-12.479306 - parent: 89 - - uid: 21287 + parent: 15711 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19018 components: - type: Transform - pos: 33.493954,-2.555304 - parent: 89 -- proto: SoapNT + pos: 21.441029,-2.3814173 + parent: 2 + - uid: 19019 + components: + - type: Transform + pos: 21.644154,-2.5532923 + parent: 2 + - uid: 24544 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24545 + components: + - type: Transform + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Stunprod entities: - - uid: 800 + - uid: 26778 components: - type: Transform - pos: 50.48895,14.475723 - parent: 89 -- proto: soda_dispenser + pos: 3.94458,11.482362 + parent: 24450 + - uid: 26779 + components: + - type: Transform + pos: 3.616455,11.576112 + parent: 24450 +- proto: SubstationBasic entities: - - uid: 61 + - uid: 19020 components: + - type: MetaData + name: подстанция мостик - type: Transform - pos: -24.5,-0.5 - parent: 89 - - uid: 7755 + pos: 48.5,5.5 + parent: 2 + - uid: 19021 components: + - type: MetaData + name: подстанция атмоссии - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,44.5 - parent: 89 - - uid: 7756 + pos: -82.5,-11.5 + parent: 2 + - uid: 19022 components: + - type: MetaData + name: подстанция двигателя - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,44.5 - parent: 89 -- proto: SolarAssembly - entities: - - uid: 20797 + pos: -131.5,-12.5 + parent: 2 + - uid: 19023 components: + - type: MetaData + name: подстанция телекоммы и гравген - type: Transform - pos: -122.5,-28.5 - parent: 89 -- proto: SolarControlComputerCircuitboard - entities: - - uid: 7065 + pos: -111.5,20.5 + parent: 2 + - uid: 19024 components: + - type: MetaData + name: подстанция НИО - type: Transform - pos: -103.27902,-10.571648 - parent: 89 -- proto: SolarPanel - entities: - - uid: 5946 + pos: -9.5,-25.5 + parent: 2 + - uid: 19025 components: + - type: MetaData + name: подстанция мед 1 - type: Transform - pos: -132.5,-18.5 - parent: 89 - - uid: 5971 + pos: -5.5,27.5 + parent: 2 + - uid: 19026 components: + - type: MetaData + name: подстанция карго, суд - type: Transform - pos: -131.5,-18.5 - parent: 89 - - uid: 16609 + pos: -82.5,-9.5 + parent: 2 + - uid: 19027 components: + - type: MetaData + name: подстанция дормы - type: Transform - pos: -133.5,-20.5 - parent: 89 - - uid: 17070 + pos: -40.5,24.5 + parent: 2 + - uid: 19028 components: + - type: MetaData + name: подстанция прибытие - type: Transform - pos: 57.5,35.5 - parent: 89 - - uid: 18870 + pos: -51.5,28.5 + parent: 2 + - uid: 19029 components: + - type: MetaData + name: подстанция коридоров 1 - type: Transform - pos: -130.5,-18.5 - parent: 89 - - uid: 19533 + pos: -90.5,20.5 + parent: 2 + - uid: 19030 components: + - type: MetaData + name: подстанция карго, бар - type: Transform - pos: 61.5,33.5 - parent: 89 - - uid: 19534 + pos: -37.5,-9.5 + parent: 2 + - uid: 19031 components: + - type: MetaData + name: подстанция уборщик - type: Transform - pos: 56.5,29.5 - parent: 89 - - uid: 19535 + pos: -35.5,11.5 + parent: 2 + - uid: 19032 components: + - type: MetaData + name: подстанция инженерного отдела - type: Transform - pos: -126.5,-18.5 - parent: 89 - - uid: 19539 + pos: -117.5,13.5 + parent: 2 + - uid: 19033 components: - type: Transform - pos: -125.5,-18.5 - parent: 89 - - uid: 19770 + pos: 34.5,27.5 + parent: 2 + - uid: 19034 components: - type: Transform - pos: -131.5,-20.5 - parent: 89 - - uid: 20181 + pos: 44.5,20.5 + parent: 2 + - uid: 19035 components: + - type: MetaData + name: подстанция пермабриг внутри - type: Transform - pos: -130.5,-20.5 - parent: 89 - - uid: 20182 + pos: 57.5,-17.5 + parent: 2 + - uid: 19036 components: + - type: MetaData + name: подстанция СБ - type: Transform - pos: 58.5,31.5 - parent: 89 - - uid: 20183 + pos: 15.5,-12.5 + parent: 2 + - uid: 19037 components: - type: Transform - pos: 59.5,33.5 - parent: 89 - - uid: 20186 + pos: -112.5,-20.5 + parent: 2 + - uid: 26780 components: - type: Transform - pos: -124.5,-20.5 - parent: 89 - - uid: 20189 + pos: -7.5,-17.5 + parent: 24450 + - uid: 26781 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-23.5 - parent: 89 - - uid: 20190 + pos: -8.5,-3.5 + parent: 24450 + - uid: 26782 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.5,-23.5 - parent: 89 - - uid: 20192 + pos: -15.5,-3.5 + parent: 24450 + - uid: 27884 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-23.5 - parent: 89 - - uid: 20193 + pos: -0.5,-11.5 + parent: 27260 +- proto: SubstationMachineCircuitboard + entities: + - uid: 19038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-23.5 - parent: 89 - - uid: 20194 + pos: -103.60425,-7.2144136 + parent: 2 + - uid: 19039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,-23.5 - parent: 89 - - uid: 20195 + pos: -103.323,-7.4956636 + parent: 2 +- proto: SubstationWallBasic + entities: + - uid: 23877 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-23.5 - parent: 89 - - uid: 20196 + pos: 3.5,-10.5 + parent: 23711 + - uid: 24239 components: - type: Transform - pos: 60.5,31.5 - parent: 89 - - uid: 20197 + pos: 7.5,1.5 + parent: 23919 + - uid: 24422 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.5,-25.5 - parent: 89 - - uid: 20198 + rot: -1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 24340 +- proto: SuitStorageAtmos + entities: + - uid: 19040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-25.5 - parent: 89 - - uid: 20199 + pos: -90.5,-6.5 + parent: 2 + - uid: 19041 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-25.5 - parent: 89 - - uid: 20200 + pos: -90.5,-4.5 + parent: 2 + - uid: 19042 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-25.5 - parent: 89 - - uid: 20201 + pos: -90.5,-5.5 + parent: 2 +- proto: SuitStorageBase + entities: + - uid: 27553 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,-25.5 - parent: 89 - - uid: 20202 + pos: 3.5,-11.5 + parent: 27260 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27555 + - 27557 + - 27554 + - 27556 + - 27558 + - uid: 27559 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-25.5 - parent: 89 - - uid: 20205 + pos: 4.5,-8.5 + parent: 27260 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27560 + - 27563 + - 27564 + - 27561 + - 27562 + - uid: 27565 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-23.5 - parent: 89 - - uid: 20206 + pos: 5.5,-8.5 + parent: 27260 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27567 + - 27570 + - 27569 + - 27566 + - 27568 + - uid: 27571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-23.5 - parent: 89 - - uid: 20207 + pos: 6.5,-8.5 + parent: 27260 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27575 + - 27576 + - 27574 + - 27573 + - 27572 + - uid: 27577 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-23.5 - parent: 89 - - uid: 20209 + pos: 3.5,-12.5 + parent: 27260 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1465 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27582 + - 27578 + - 27581 + - 27579 + - 27580 + - uid: 27583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-23.5 - parent: 89 - - uid: 20211 + pos: -3.5,-4.5 + parent: 27260 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 27587 + - 27584 + - 27586 + - 27585 +- proto: SuitStorageBasic + entities: + - uid: 19043 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-25.5 - parent: 89 - - uid: 20212 + pos: 25.5,7.5 + parent: 2 + - uid: 19044 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-25.5 - parent: 89 - - uid: 20213 + pos: 49.5,3.5 + parent: 2 +- proto: SuitStorageCaptain + entities: + - uid: 19045 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-25.5 - parent: 89 - - uid: 20214 + pos: 46.5,17.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageCE + entities: + - uid: 19046 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-25.5 - parent: 89 - - uid: 20215 + pos: -101.5,9.5 + parent: 2 +- proto: SuitStorageCMO + entities: + - uid: 19047 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-25.5 - parent: 89 - - uid: 20217 + pos: 22.5,34.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.1496 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 +- proto: SuitStorageEngi + entities: + - uid: 19048 components: - type: Transform - rot: 3.141592653589793 rad - pos: -136.5,-28.5 - parent: 89 - - uid: 20219 + pos: -28.5,36.5 + parent: 2 + - uid: 19049 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-28.5 - parent: 89 - - uid: 20220 + pos: -28.5,37.5 + parent: 2 + - uid: 19050 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-28.5 - parent: 89 - - uid: 20221 + pos: 26.5,7.5 + parent: 2 + - uid: 19051 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-28.5 - parent: 89 - - uid: 20222 + pos: -110.5,-2.5 + parent: 2 + - uid: 19052 components: - type: Transform - rot: 3.141592653589793 rad - pos: -131.5,-28.5 - parent: 89 - - uid: 20223 + pos: -110.5,10.5 + parent: 2 + - uid: 19053 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-28.5 - parent: 89 - - uid: 20224 + pos: -110.5,1.5 + parent: 2 + - uid: 19054 components: - type: Transform - pos: 59.5,29.5 - parent: 89 - - uid: 20225 + pos: -106.5,2.5 + parent: 2 + - uid: 19055 components: - type: Transform - rot: 3.141592653589793 rad - pos: -136.5,-30.5 - parent: 89 - - uid: 20226 + pos: -104.5,2.5 + parent: 2 + - uid: 19056 components: - type: Transform - rot: 3.141592653589793 rad - pos: -135.5,-30.5 - parent: 89 - - uid: 20227 + pos: -103.5,2.5 + parent: 2 + - uid: 19057 components: - type: Transform - rot: 3.141592653589793 rad - pos: -134.5,-30.5 - parent: 89 - - uid: 20228 + pos: -105.5,2.5 + parent: 2 + - uid: 19058 components: - type: Transform - rot: 3.141592653589793 rad - pos: -133.5,-30.5 - parent: 89 - - uid: 20229 + pos: -110.5,6.5 + parent: 2 +- proto: SuitStorageEVA + entities: + - uid: 19059 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,-30.5 - parent: 89 - - uid: 20231 + pos: 30.5,9.5 + parent: 2 + - uid: 19060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-30.5 - parent: 89 - - uid: 20233 + pos: 29.5,9.5 + parent: 2 + - uid: 19061 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-28.5 - parent: 89 - - uid: 20234 + pos: 26.5,5.5 + parent: 2 + - uid: 19062 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-28.5 - parent: 89 - - uid: 20235 + pos: 25.5,5.5 + parent: 2 + - uid: 19063 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-28.5 - parent: 89 - - uid: 20236 + pos: 28.5,5.5 + parent: 2 + - uid: 19064 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-28.5 - parent: 89 - - uid: 20238 + pos: 27.5,9.5 + parent: 2 + - uid: 19065 + components: + - type: Transform + pos: 26.5,9.5 + parent: 2 + - uid: 19066 + components: + - type: Transform + pos: 28.5,9.5 + parent: 2 + - uid: 19067 + components: + - type: Transform + pos: 27.5,5.5 + parent: 2 + - uid: 19068 + components: + - type: Transform + pos: 29.5,5.5 + parent: 2 + - uid: 27885 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 27260 +- proto: SuitStorageEVAEmergency + entities: + - uid: 19069 + components: + - type: Transform + pos: -88.5,23.5 + parent: 2 +- proto: SuitStorageEVAPrisoner + entities: + - uid: 19070 + components: + - type: Transform + pos: 14.5,-16.5 + parent: 2 + - uid: 19071 + components: + - type: Transform + pos: 56.5,-19.5 + parent: 2 + - uid: 19072 + components: + - type: Transform + pos: 56.5,-20.5 + parent: 2 +- proto: SuitStorageHOS + entities: + - uid: 8957 + components: + - type: Transform + pos: 36.5,-0.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 8958 +- proto: SuitStorageNTSRA + entities: + - uid: 19073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-28.5 - parent: 89 - - uid: 20239 + pos: 38.5,25.5 + parent: 2 +- proto: SuitStorageRD + entities: + - uid: 19074 components: - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,-30.5 - parent: 89 - - uid: 20240 + pos: 4.5,-31.5 + parent: 2 +- proto: SuitStorageSalv + entities: + - uid: 19075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-30.5 - parent: 89 - - uid: 20241 + pos: -48.5,-9.5 + parent: 2 + - uid: 19076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-30.5 - parent: 89 - - uid: 20242 + pos: -49.5,-9.5 + parent: 2 + - uid: 19077 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,-30.5 - parent: 89 - - uid: 20243 + pos: -50.5,-9.5 + parent: 2 + - uid: 19078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,-30.5 - parent: 89 - - uid: 20252 + pos: 28.5,7.5 + parent: 2 + - uid: 19079 components: - type: Transform - pos: -133.5,-18.5 - parent: 89 - - uid: 20293 + pos: -47.5,-9.5 + parent: 2 +- proto: SuitStorageSec + entities: + - uid: 19080 components: - type: Transform - pos: -123.5,-20.5 - parent: 89 - - uid: 20378 + pos: 27.5,7.5 + parent: 2 + - uid: 19081 components: - type: Transform - pos: 58.5,35.5 - parent: 89 - - uid: 20379 + pos: 17.5,-4.5 + parent: 2 + - uid: 19082 components: - type: Transform - pos: 59.5,35.5 - parent: 89 - - uid: 20427 + pos: 19.5,-4.5 + parent: 2 + - uid: 19083 components: - type: Transform - pos: 46.5,31.5 - parent: 89 - - uid: 20440 + pos: 20.5,-4.5 + parent: 2 + - uid: 19084 components: - type: Transform - pos: 58.5,29.5 - parent: 89 - - uid: 20444 + pos: 18.5,-4.5 + parent: 2 + - uid: 19085 components: - type: Transform - pos: 60.5,29.5 - parent: 89 - - uid: 20445 + pos: 41.5,-3.5 + parent: 2 + - uid: 19086 components: - type: Transform - pos: 59.5,31.5 - parent: 89 - - uid: 20447 + pos: 41.5,-2.5 + parent: 2 + - uid: 19087 components: - type: Transform - pos: 61.5,35.5 - parent: 89 - - uid: 20448 + pos: 39.5,-2.5 + parent: 2 + - uid: 19088 components: - type: Transform - pos: 60.5,33.5 - parent: 89 - - uid: 20449 + pos: 39.5,-3.5 + parent: 2 +- proto: SuitStorageWarden + entities: + - uid: 19089 components: - type: Transform - pos: 58.5,33.5 - parent: 89 - - uid: 20456 + pos: 7.5,-8.5 + parent: 2 +- proto: SurveillanceCameraAssembly + entities: + - uid: 26783 components: - type: Transform - pos: 57.5,31.5 - parent: 89 - - uid: 20476 + rot: 1.5707963267948966 rad + pos: 7.5,7.5 + parent: 24450 +- proto: SurveillanceCameraCommand + entities: + - uid: 19090 components: - type: Transform - pos: 47.5,31.5 - parent: 89 - - uid: 20487 + rot: 1.5707963267948966 rad + pos: 28.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ЕВА склад + - uid: 19091 components: - type: Transform - pos: 46.5,29.5 - parent: 89 - - uid: 20488 + pos: 56.5,8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик офицерская палуба 2 + - uid: 19092 components: - type: Transform - pos: 48.5,31.5 - parent: 89 - - uid: 20521 + rot: 1.5707963267948966 rad + pos: 62.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик мостика + - uid: 19093 components: - type: Transform - pos: 49.5,31.5 - parent: 89 - - uid: 20522 + rot: -1.5707963267948966 rad + pos: 34.5,4.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Правительственный сектор + - uid: 19094 components: - type: Transform - pos: 50.5,29.5 - parent: 89 - - uid: 20525 + rot: -1.5707963267948966 rad + pos: 30.5,7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: ЕВА склад 2 + - uid: 19095 components: - type: Transform - pos: 48.5,29.5 - parent: 89 - - uid: 20543 + rot: -1.5707963267948966 rad + pos: 51.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик вход + - uid: 19096 components: - type: Transform - pos: 56.5,31.5 - parent: 89 - - uid: 20548 + rot: 3.141592653589793 rad + pos: 35.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Конференц зал + - uid: 19097 components: - type: Transform - pos: 49.5,29.5 - parent: 89 - - uid: 20571 + rot: 3.141592653589793 rad + pos: 56.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Мостик офицерская палуба 1 + - uid: 19098 components: - type: Transform - pos: 56.5,37.5 - parent: 89 - - uid: 20573 + rot: 1.5707963267948966 rad + pos: 45.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Кабинет ГП + - uid: 19099 components: - type: Transform - pos: 58.5,37.5 - parent: 89 - - uid: 20575 + pos: -76.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraCommand + nameSet: True + id: Суд +- proto: SurveillanceCameraEngineering + entities: + - uid: 19100 components: - type: Transform - pos: 60.5,37.5 - parent: 89 - - uid: 20576 + rot: 3.141592653589793 rad + pos: -99.5,-12.5 + parent: 2 + - uid: 19101 components: - type: Transform - pos: 60.5,39.5 - parent: 89 - - uid: 20577 + pos: -107.5,23.5 + parent: 2 + - uid: 19102 components: - type: Transform - pos: 59.5,39.5 - parent: 89 - - uid: 20578 + pos: -116.5,23.5 + parent: 2 + - uid: 19103 components: - type: Transform - pos: 58.5,39.5 - parent: 89 - - uid: 20579 + pos: -106.5,20.5 + parent: 2 + - uid: 19104 components: - type: Transform - pos: 57.5,39.5 - parent: 89 - - uid: 20581 + rot: 1.5707963267948966 rad + pos: -125.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Суперматерия + - uid: 19105 components: - type: Transform - pos: 49.5,37.5 - parent: 89 - - uid: 20582 + pos: -119.5,-8.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Склад техники + - uid: 19106 components: - type: Transform - pos: 48.5,37.5 - parent: 89 - - uid: 20583 + rot: 1.5707963267948966 rad + pos: -98.5,-1.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Центральная комната + - uid: 19107 components: - type: Transform - pos: 47.5,37.5 - parent: 89 - - uid: 20584 + rot: -1.5707963267948966 rad + pos: -105.5,-9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Склад запчастей + - uid: 19108 components: - type: Transform - pos: 46.5,37.5 - parent: 89 - - uid: 20587 + pos: -105.5,2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Центральный коридор + - uid: 19109 components: - type: Transform - pos: 48.5,39.5 - parent: 89 - - uid: 20588 + rot: 3.141592653589793 rad + pos: -116.5,6.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Комната управления + - uid: 19110 components: - type: Transform - pos: 49.5,39.5 - parent: 89 - - uid: 20589 + rot: 3.141592653589793 rad + pos: -129.5,17.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Зал двигателя антиматерии + - uid: 19111 components: - type: Transform - pos: 50.5,39.5 - parent: 89 - - uid: 20590 + rot: -1.5707963267948966 rad + pos: -126.5,16.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Холл СМЭСов + - uid: 19112 components: - type: Transform - pos: 50.5,37.5 - parent: 89 - - uid: 20591 + rot: -1.5707963267948966 rad + pos: -105.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraEngineering + nameSet: True + id: Комната снаряжения атмоса +- proto: SurveillanceCameraGeneral + entities: + - uid: 19113 components: - type: Transform - pos: 49.5,35.5 - parent: 89 - - uid: 20593 + rot: -1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 2 + - uid: 19114 components: - type: Transform - pos: 47.5,35.5 - parent: 89 - - uid: 20594 + rot: 3.141592653589793 rad + pos: 8.5,3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Зал правительственный сектор + - uid: 19115 components: - type: Transform - pos: 46.5,35.5 - parent: 89 - - uid: 20595 + rot: 1.5707963267948966 rad + pos: -39.5,0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 1 + - uid: 19116 components: - type: Transform - pos: 45.5,35.5 - parent: 89 - - uid: 20596 + rot: 1.5707963267948966 rad + pos: -62.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 2 + - uid: 19117 components: - type: Transform - pos: 45.5,33.5 - parent: 89 - - uid: 20598 + rot: 1.5707963267948966 rad + pos: -80.5,13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 3 + - uid: 19118 components: - type: Transform - pos: 47.5,33.5 - parent: 89 - - uid: 20599 + rot: 3.141592653589793 rad + pos: -56.5,26.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: КПП - 4 + - uid: 19119 components: - type: Transform - pos: 48.5,33.5 - parent: 89 - - uid: 20600 + rot: 3.141592653589793 rad + pos: -14.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraGeneral + nameSet: True + id: Коридор РнД +- proto: SurveillanceCameraMedical + entities: + - uid: 19120 components: - type: Transform - pos: 49.5,33.5 - parent: 89 - - uid: 24833 + pos: -0.5,11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Внутренний холл Медбея + - uid: 19121 components: - type: Transform - pos: -1.5,-12.5 - parent: 22565 - - uid: 24834 + rot: 3.141592653589793 rad + pos: -11.5,15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Хим. Отдел + - uid: 19122 components: - type: Transform - pos: -1.5,-11.5 - parent: 22565 - - uid: 24835 + rot: 3.141592653589793 rad + pos: 8.5,18.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Клонирование + - uid: 19123 components: - type: Transform - pos: -0.5,-11.5 - parent: 22565 - - uid: 24836 + rot: 3.141592653589793 rad + pos: 26.5,20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Внутренняя приемная + - uid: 19124 components: - type: Transform - pos: -6.5,-11.5 - parent: 22565 - - uid: 24837 + rot: 3.141592653589793 rad + pos: 8.5,9.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraMedical + nameSet: True + id: Морг +- proto: SurveillanceCameraRouterCommand + entities: + - uid: 19125 components: - type: Transform - pos: -6.5,-13.5 - parent: 22565 - - uid: 24838 + pos: -103.5,26.5 + parent: 2 + - uid: 19126 components: - type: Transform - pos: -5.5,-13.5 - parent: 22565 - - uid: 24839 + pos: 47.5,3.5 + parent: 2 +- proto: SurveillanceCameraRouterEngineering + entities: + - uid: 19127 components: - type: Transform - pos: -4.5,-12.5 - parent: 22565 - - uid: 24840 + pos: -104.5,26.5 + parent: 2 +- proto: SurveillanceCameraRouterGeneral + entities: + - uid: 19128 components: - type: Transform - pos: -5.5,-11.5 - parent: 22565 - - uid: 24841 + pos: -102.5,26.5 + parent: 2 +- proto: SurveillanceCameraRouterMedical + entities: + - uid: 19129 components: - type: Transform - pos: -6.5,-12.5 - parent: 22565 - - uid: 24842 + pos: -105.5,24.5 + parent: 2 +- proto: SurveillanceCameraRouterScience + entities: + - uid: 19130 components: - type: Transform - pos: -0.5,-13.5 - parent: 22565 - - uid: 24843 + pos: -103.5,24.5 + parent: 2 +- proto: SurveillanceCameraRouterSecurity + entities: + - uid: 19131 components: - type: Transform - pos: -0.5,-12.5 - parent: 22565 - - uid: 24844 + pos: -104.5,24.5 + parent: 2 + - uid: 26784 components: - type: Transform - pos: -4.5,-13.5 - parent: 22565 -- proto: SolarPanelBroken + pos: -4.5,-17.5 + parent: 24450 +- proto: SurveillanceCameraRouterService entities: - - uid: 17532 + - uid: 19132 components: - type: Transform - pos: -126.5,-20.5 - parent: 89 - - uid: 19473 + pos: -102.5,24.5 + parent: 2 +- proto: SurveillanceCameraRouterSupply + entities: + - uid: 19133 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,-30.5 - parent: 89 - - uid: 19540 + pos: -74.5,-16.5 + parent: 2 + - uid: 19134 components: - type: Transform - pos: -123.5,-18.5 - parent: 89 - - uid: 19544 + pos: -106.5,24.5 + parent: 2 +- proto: SurveillanceCameraScience + entities: + - uid: 19135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -125.5,-20.5 - parent: 89 - - uid: 19712 + rot: 3.141592653589793 rad + pos: -14.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Лаборатория + - uid: 19136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -132.5,-20.5 - parent: 89 - - uid: 20185 + pos: -18.5,-20.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Робототехника + - uid: 19137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,-18.5 - parent: 89 - - uid: 20547 + pos: -7.5,-32.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Атмос РнД + - uid: 19138 components: - type: Transform - pos: 46.5,39.5 - parent: 89 - - uid: 20592 + rot: 3.141592653589793 rad + pos: -1.5,-24.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Холл РнД + - uid: 19139 components: - type: Transform - pos: 46.5,33.5 - parent: 89 - - uid: 20602 + rot: 3.141592653589793 rad + pos: -6.5,-34.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Серверная + - uid: 19140 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,35.5 - parent: 89 - - uid: 20607 + rot: 3.141592653589793 rad + pos: -4.5,-38.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraScience + nameSet: True + id: Ксеноархеология +- proto: SurveillanceCameraSecurity + entities: + - uid: 19141 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,29.5 - parent: 89 - - uid: 20615 + rot: 3.141592653589793 rad + pos: 13.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Медпункт брига + - uid: 19142 components: - type: Transform - pos: 50.5,31.5 - parent: 89 - - uid: 20618 + rot: 3.141592653589793 rad + pos: 2.5,-10.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Приемная брига + - uid: 19143 components: - type: Transform - pos: 57.5,29.5 - parent: 89 - - uid: 20620 + rot: -1.5707963267948966 rad + pos: 17.5,-5.5 + parent: 2 + - uid: 19144 components: - type: Transform - pos: 59.5,37.5 - parent: 89 - - uid: 20622 + rot: -1.5707963267948966 rad + pos: 25.5,-3.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Комната снаряжения + - uid: 19145 components: - type: Transform - pos: 56.5,39.5 - parent: 89 - - uid: 20623 + pos: 35.5,-11.5 + parent: 2 + - uid: 19146 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,37.5 - parent: 89 - - uid: 20637 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,39.5 - parent: 89 - - uid: 20658 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,35.5 - parent: 89 - - uid: 20764 + pos: 5.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Допросная + - uid: 19147 components: - type: Transform - pos: -131.5,-30.5 - parent: 89 - - uid: 20788 + rot: 3.141592653589793 rad + pos: 41.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: Оружейная + - uid: 26785 components: - type: Transform rot: 3.141592653589793 rad - pos: -135.5,-28.5 - parent: 89 - - uid: 20794 + pos: -14.5,-21.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: прибытие каторги + - uid: 26786 components: - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,-23.5 - parent: 89 - - uid: 24845 + rot: -1.5707963267948966 rad + pos: -11.5,-9.5 + parent: 24450 + - uid: 26787 components: - type: Transform - pos: 0.5,-12.5 - parent: 22565 - - uid: 24846 + pos: -11.5,1.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: пост сб каторги + - uid: 26788 components: - type: Transform - pos: 0.5,-11.5 - parent: 22565 - - uid: 24847 + pos: -21.5,-0.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: левое сборочное крыло каторги + - uid: 26789 components: - type: Transform - pos: 0.5,-13.5 - parent: 22565 - - uid: 24848 + rot: -1.5707963267948966 rad + pos: -31.5,6.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: левые дормы каторги + - uid: 26790 components: - type: Transform - pos: -1.5,-13.5 - parent: 22565 - - uid: 24849 + pos: -2.5,-0.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: правое сборочное крыло каторги + - uid: 26791 components: - type: Transform - pos: -4.5,-11.5 - parent: 22565 - - uid: 24850 + rot: -1.5707963267948966 rad + pos: -23.5,20.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: левый строительный док каторги + - uid: 26792 components: - type: Transform - pos: -5.5,-12.5 - parent: 22565 -- proto: SolarTracker + rot: 1.5707963267948966 rad + pos: -0.5,20.5 + parent: 24450 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSecurity + nameSet: True + id: правый строительный док каторги +- proto: SurveillanceCameraService entities: - - uid: 20338 + - uid: 19148 components: - type: Transform - pos: 53.5,43.5 - parent: 89 - - uid: 20355 + rot: 3.141592653589793 rad + pos: -12.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Кухня + - uid: 19149 components: - type: Transform - pos: -128.5,-31.5 - parent: 89 - - uid: 24851 + rot: -1.5707963267948966 rad + pos: -35.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Раздевалка театра + - uid: 19150 components: - type: Transform - pos: -5.5,-14.5 - parent: 22565 -- proto: SolidSecretDoor - entities: - - uid: 3546 + rot: 3.141592653589793 rad + pos: -23.5,-0.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Бар + - uid: 19151 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,28.5 - parent: 89 - - uid: 17902 + pos: -31.5,-7.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraService + nameSet: True + id: Театр + - uid: 19152 components: - type: Transform - pos: 12.5,-17.5 - parent: 89 - - uid: 24852 + rot: 1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 2 +- proto: SurveillanceCameraSupply + entities: + - uid: 19153 components: - type: Transform - pos: 3.5,9.5 - parent: 22565 -- proto: SpaceCash10 - entities: - - uid: 5727 + rot: -1.5707963267948966 rad + pos: -67.5,-13.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Склад + - uid: 19154 components: - type: Transform - pos: -36.419117,-0.2933004 - parent: 89 - - uid: 25720 + pos: -65.5,-2.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Зал снабжения + - uid: 19155 components: - type: Transform - pos: 5.1794705,-1.1862288 - parent: 89 -- proto: SpaceCash100 - entities: - - uid: 17653 + rot: -1.5707963267948966 rad + pos: -71.5,-11.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Комната отдыха + - uid: 19156 components: - type: Transform rot: 3.141592653589793 rad - pos: 65.45385,4.430016 - parent: 89 -- proto: Spaceshroom - entities: - - uid: 2240 + pos: -72.5,-15.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Офис квартирмейстера + - uid: 19157 components: - type: Transform - pos: 13.5,-14.5 - parent: 89 - - uid: 2252 + rot: 3.141592653589793 rad + pos: -45.5,-19.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Выход в космос + - uid: 19158 components: - type: Transform - pos: 7.5,-20.5 - parent: 89 - - uid: 2268 + rot: -1.5707963267948966 rad + pos: -52.5,-12.5 + parent: 2 + - type: SurveillanceCamera + setupAvailableNetworks: + - SurveillanceCameraSupply + nameSet: True + id: Утилизаторская +- proto: SurveillanceCameraWirelessRouterBase + entities: + - uid: 19159 components: - type: Transform - pos: -77.5,17.5 - parent: 89 - - uid: 2338 + pos: -106.5,26.5 + parent: 2 +- proto: SurveillanceCameraWirelessRouterEntertainment + entities: + - uid: 19160 components: - type: Transform - pos: 3.5,-16.5 - parent: 89 - - uid: 4335 + pos: -105.5,26.5 + parent: 2 +- proto: SurveillanceWirelessCameraMovableEntertainment + entities: + - uid: 19161 components: - type: Transform - pos: -33.5,-16.5 - parent: 89 - - uid: 7117 + rot: 1.5707963267948966 rad + pos: -27.5,7.5 + parent: 2 +- proto: SurvivalKnife + entities: + - uid: 19162 components: - type: Transform - pos: -67.5,21.5 - parent: 89 - - uid: 7119 + pos: 9.49861,-25.506388 + parent: 2 +- proto: SyndicatePersonalAI + entities: + - uid: 19163 components: - type: Transform - pos: -101.5,15.5 - parent: 89 - - uid: 7120 + pos: -88.7376,27.498827 + parent: 2 +- proto: SyndiPDA + entities: + - uid: 19164 components: - type: Transform - pos: -102.5,13.5 - parent: 89 - - uid: 7125 + rot: -1.5707963267948966 rad + pos: -87.52689,26.55105 + parent: 2 +- proto: Syringe + entities: + - uid: 8934 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -103.5,18.5 - parent: 89 - - uid: 7126 + parent: 8931 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8935 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -88.5,19.5 - parent: 89 - - uid: 7127 + parent: 8931 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8941 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -76.5,21.5 - parent: 89 - - uid: 7143 + parent: 8938 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 8942 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -53.5,31.5 - parent: 89 - - uid: 7144 + parent: 8938 + - type: Tag + tags: + - Syringe + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19165 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -49.5,21.5 - parent: 89 - - uid: 7181 + pos: 23.236977,27.759844 + parent: 2 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - uid: 19166 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -24.5,-20.5 - parent: 89 - - uid: 7182 + pos: 23.252602,27.759844 + parent: 2 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 + - uid: 19167 components: + - type: MetaData + name: шприц с успокоительным - type: Transform - pos: -18.5,-27.5 - parent: 89 - - uid: 7183 + pos: 23.268227,27.791094 + parent: 2 + - type: Tag + tags: [] + - type: SolutionContainerManager + solutions: + injector: + temperature: 293.15 + canReact: True + maxVol: 15 + name: null + reagents: + - data: null + ReagentId: ChloralHydrate + Quantity: 15 +- proto: SyringeBicaridine + entities: + - uid: 23950 components: - type: Transform - pos: -11.5,-32.5 - parent: 89 - - uid: 7184 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SyringeDermaline + entities: + - uid: 23951 components: - type: Transform - pos: -12.5,-34.5 - parent: 89 - - uid: 7185 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: SyringeSaline + entities: + - uid: 23952 components: - type: Transform - pos: -15.5,-25.5 - parent: 89 - - uid: 7186 + parent: 23936 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: Table + entities: + - uid: 19168 components: - type: Transform - pos: -41.5,-17.5 - parent: 89 - - uid: 7187 + pos: -84.5,1.5 + parent: 2 + - uid: 19169 components: - type: Transform - pos: -44.5,-9.5 - parent: 89 - - uid: 7205 + pos: -1.5,-41.5 + parent: 2 + - uid: 19170 components: - type: Transform - pos: -82.5,3.5 - parent: 89 - - uid: 7224 + pos: -35.5,5.5 + parent: 2 + - uid: 19171 components: - type: Transform - pos: -84.5,-0.5 - parent: 89 - - uid: 7227 + pos: -97.5,4.5 + parent: 2 + - uid: 19172 components: - type: Transform - pos: -78.5,-7.5 - parent: 89 - - uid: 7229 + rot: -1.5707963267948966 rad + pos: -132.5,-2.5 + parent: 2 + - uid: 19173 components: - type: Transform - pos: -82.5,-4.5 - parent: 89 - - uid: 7240 + rot: 1.5707963267948966 rad + pos: -113.5,-12.5 + parent: 2 + - uid: 19174 components: - type: Transform - pos: -120.5,20.5 - parent: 89 - - uid: 7287 + rot: 1.5707963267948966 rad + pos: -112.5,-13.5 + parent: 2 + - uid: 19175 components: - type: Transform - pos: -124.5,21.5 - parent: 89 - - uid: 7288 + rot: 1.5707963267948966 rad + pos: -114.5,-12.5 + parent: 2 + - uid: 19176 components: - type: Transform - pos: -113.5,17.5 - parent: 89 - - uid: 7289 + rot: 1.5707963267948966 rad + pos: -111.5,-13.5 + parent: 2 + - uid: 19177 components: - type: Transform - pos: -116.5,18.5 - parent: 89 - - uid: 7292 + pos: -65.5,-17.5 + parent: 2 + - uid: 19178 components: - type: Transform - pos: -97.5,13.5 - parent: 89 - - uid: 7293 + rot: -1.5707963267948966 rad + pos: -8.5,-0.5 + parent: 2 + - uid: 19179 components: - type: Transform - pos: -96.5,20.5 - parent: 89 - - uid: 7294 + pos: -1.5,-2.5 + parent: 2 + - uid: 19180 components: - type: Transform - pos: -100.5,22.5 - parent: 89 - - uid: 7295 + pos: -1.5,-1.5 + parent: 2 + - uid: 19181 components: - type: Transform - pos: -98.5,24.5 - parent: 89 - - uid: 7296 + pos: 2.5,19.5 + parent: 2 + - uid: 19182 components: - type: Transform - pos: -100.5,26.5 - parent: 89 - - uid: 7297 + pos: -29.5,-17.5 + parent: 2 + - uid: 19183 components: - type: Transform - pos: -93.5,24.5 - parent: 89 - - uid: 7300 + pos: -37.5,-17.5 + parent: 2 + - uid: 19184 components: - type: Transform - pos: -6.5,37.5 - parent: 89 - - uid: 7302 + pos: 2.5,17.5 + parent: 2 + - uid: 19185 components: - type: Transform - pos: -35.5,21.5 - parent: 89 - - uid: 7303 + pos: -5.5,-15.5 + parent: 2 + - uid: 19186 components: - type: Transform - pos: -42.5,20.5 - parent: 89 - - uid: 7304 + pos: -5.5,-16.5 + parent: 2 + - uid: 19187 components: - type: Transform - pos: -52.5,23.5 - parent: 89 - - uid: 7305 + pos: -5.5,-17.5 + parent: 2 + - uid: 19188 components: - type: Transform - pos: -19.5,24.5 - parent: 89 - - uid: 7306 + pos: -5.5,-18.5 + parent: 2 + - uid: 19189 components: - type: Transform - pos: -22.5,18.5 - parent: 89 - - uid: 7308 + pos: -6.5,-18.5 + parent: 2 + - uid: 19190 components: - type: Transform - pos: -17.5,12.5 - parent: 89 - - uid: 7311 + rot: -1.5707963267948966 rad + pos: -87.5,27.5 + parent: 2 + - uid: 19191 components: - type: Transform - pos: -0.5,30.5 - parent: 89 - - uid: 7312 + pos: 1.5,-30.5 + parent: 2 + - uid: 19192 components: - type: Transform - pos: -3.5,35.5 - parent: 89 - - uid: 7313 + pos: 1.5,-29.5 + parent: 2 + - uid: 19193 components: - type: Transform - pos: 3.5,34.5 - parent: 89 - - uid: 7314 + pos: 4.5,-19.5 + parent: 2 + - uid: 19194 components: - type: Transform - pos: -8.5,40.5 - parent: 89 - - uid: 7315 + pos: 4.5,-20.5 + parent: 2 + - uid: 19195 components: - type: Transform - pos: -4.5,44.5 - parent: 89 - - uid: 7316 + pos: 4.5,-21.5 + parent: 2 + - uid: 19196 components: - type: Transform - pos: 0.5,40.5 - parent: 89 - - uid: 7317 + pos: 4.5,-22.5 + parent: 2 + - uid: 19197 components: - type: Transform - pos: 3.5,39.5 - parent: 89 - - uid: 7318 + pos: 4.5,-18.5 + parent: 2 + - uid: 19198 components: - type: Transform - pos: 0.5,46.5 - parent: 89 - - uid: 7319 + pos: -12.5,-23.5 + parent: 2 + - uid: 19199 components: - type: Transform - pos: -4.5,41.5 - parent: 89 - - uid: 7321 + pos: -13.5,-23.5 + parent: 2 + - uid: 19200 components: - type: Transform - pos: -6.5,32.5 - parent: 89 - - uid: 25681 + pos: -15.5,-23.5 + parent: 2 + - uid: 19201 components: - type: Transform - pos: 13.5,-19.5 - parent: 89 -- proto: SpaceVillainArcade - entities: - - uid: 14908 + pos: -16.5,-23.5 + parent: 2 + - uid: 19202 components: - type: Transform - pos: -10.5,-34.5 - parent: 89 - - uid: 19482 + pos: -18.5,-23.5 + parent: 2 + - uid: 19203 components: - type: Transform - pos: -57.5,26.5 - parent: 89 -- proto: SpawnMobAlexander - entities: - - uid: 14975 + pos: -19.5,-23.5 + parent: 2 + - uid: 19204 components: - type: Transform - pos: -11.5,-4.5 - parent: 89 -- proto: SpawnMobBoxingKangaroo - entities: - - uid: 7155 + pos: -6.5,-38.5 + parent: 2 + - uid: 19205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,0.5 - parent: 89 - - uid: 7160 + pos: -7.5,-38.5 + parent: 2 + - uid: 19206 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,26.5 - parent: 89 - - uid: 7161 + pos: -14.5,-0.5 + parent: 2 + - uid: 19207 components: - type: Transform - rot: 3.141592653589793 rad - pos: -19.5,30.5 - parent: 89 - - uid: 15014 + pos: -13.5,-0.5 + parent: 2 + - uid: 19208 components: - type: Transform - pos: 17.5,31.5 - parent: 89 -- proto: SpawnMobCatBingus - entities: - - uid: 2224 + pos: -12.5,-0.5 + parent: 2 + - uid: 19209 components: - type: Transform - pos: -34.5,-7.5 - parent: 89 - - uid: 7370 + pos: 42.5,10.5 + parent: 2 + - uid: 19210 components: - type: Transform - pos: -34.5,-5.5 - parent: 89 -- proto: SpawnMobCatException - entities: - - uid: 8369 + pos: 48.5,3.5 + parent: 2 + - uid: 19211 components: - type: Transform - pos: -93.5,-9.5 - parent: 89 -- proto: SpawnMobCleanBot - entities: - - uid: 14649 + pos: 27.5,-14.5 + parent: 2 + - uid: 19212 components: - type: Transform - pos: -40.5,8.5 - parent: 89 - - uid: 14852 + pos: 24.5,-14.5 + parent: 2 + - uid: 19213 components: - type: Transform - pos: -37.5,14.5 - parent: 89 -- proto: SpawnMobCockroach - entities: - - uid: 2923 + pos: 21.5,-14.5 + parent: 2 + - uid: 19214 components: - type: Transform - pos: -119.5,-12.5 - parent: 89 - - uid: 5311 + pos: 18.5,-14.5 + parent: 2 + - uid: 19215 components: - type: Transform - pos: -23.5,13.5 - parent: 89 - - uid: 5312 + pos: -13.5,-2.5 + parent: 2 + - uid: 19216 components: - type: Transform - pos: -59.5,9.5 - parent: 89 - - uid: 5323 + rot: 3.141592653589793 rad + pos: 15.5,-16.5 + parent: 2 + - uid: 19217 components: - type: Transform - pos: -66.5,21.5 - parent: 89 - - uid: 10531 + pos: -11.5,-0.5 + parent: 2 + - uid: 19218 components: - type: Transform - pos: 31.5,15.5 - parent: 89 - - uid: 14730 + pos: -61.5,-4.5 + parent: 2 + - uid: 19219 components: - type: Transform - pos: -69.5,-16.5 - parent: 89 - - uid: 14992 + pos: -61.5,-5.5 + parent: 2 + - uid: 19220 components: - type: Transform - pos: -88.5,21.5 - parent: 89 - - uid: 15041 + rot: 3.141592653589793 rad + pos: -132.5,12.5 + parent: 2 + - uid: 19221 components: - type: Transform - pos: -45.5,18.5 - parent: 89 - - uid: 16710 + pos: -71.5,-11.5 + parent: 2 + - uid: 19222 components: - type: Transform - pos: 38.5,12.5 - parent: 89 - - uid: 17042 + pos: -71.5,-12.5 + parent: 2 + - uid: 19223 components: - type: Transform - pos: -77.5,12.5 - parent: 89 - - uid: 21022 + pos: -50.5,-15.5 + parent: 2 + - uid: 19224 components: - type: Transform - pos: -116.5,3.5 - parent: 89 - - uid: 21037 + pos: -50.5,-16.5 + parent: 2 + - uid: 19225 components: - type: Transform - pos: -98.5,-9.5 - parent: 89 - - uid: 25740 + pos: -35.5,9.5 + parent: 2 + - uid: 19226 components: - type: Transform - pos: -21.5,-7.5 - parent: 89 -- proto: SpawnMobCorgi - entities: - - uid: 1934 + pos: -102.5,-5.5 + parent: 2 + - uid: 19227 components: - type: Transform - pos: 40.5,12.5 - parent: 89 -- proto: SpawnMobCow - entities: - - uid: 5322 + pos: -101.5,-5.5 + parent: 2 + - uid: 19228 components: - type: Transform - pos: -5.5,-7.5 - parent: 89 -- proto: SpawnMobFoxRenault - entities: - - uid: 922 + pos: -96.5,-1.5 + parent: 2 + - uid: 19229 components: - type: Transform - pos: 48.5,12.5 - parent: 89 -- proto: SpawnMobGoat - entities: - - uid: 5310 + pos: -96.5,-2.5 + parent: 2 + - uid: 19230 components: - type: Transform - pos: -6.5,-9.5 - parent: 89 -- proto: SpawnMobGorillaLargo - entities: - - uid: 5817 + pos: -93.5,17.5 + parent: 2 + - uid: 19231 components: - type: Transform - pos: -74.5,-15.5 - parent: 89 -- proto: SpawnMobMcGriff - entities: - - uid: 4925 + pos: -94.5,17.5 + parent: 2 + - uid: 19232 components: - type: Transform - pos: 7.5,-9.5 - parent: 89 -- proto: SpawnMobMedibot - entities: - - uid: 14651 + pos: -95.5,17.5 + parent: 2 + - uid: 19233 components: - type: Transform - pos: -6.5,13.5 - parent: 89 -- proto: SpawnMobMonkeyPunpun - entities: - - uid: 7348 + pos: -90.5,13.5 + parent: 2 + - uid: 19234 components: - type: Transform - pos: -30.5,-1.5 - parent: 89 -- proto: SpawnMobMouse - entities: - - uid: 5313 + pos: -90.5,12.5 + parent: 2 + - uid: 19235 components: - type: Transform - pos: -101.5,13.5 - parent: 89 - - uid: 14991 + rot: -1.5707963267948966 rad + pos: -89.5,29.5 + parent: 2 + - uid: 19236 components: - type: Transform - pos: -30.5,32.5 - parent: 89 - - uid: 14993 + rot: -1.5707963267948966 rad + pos: -87.5,26.5 + parent: 2 + - uid: 19237 components: - type: Transform - pos: -57.5,29.5 - parent: 89 - - uid: 14994 + pos: 0.5,27.5 + parent: 2 + - uid: 19238 components: - type: Transform - pos: -77.5,20.5 - parent: 89 - - uid: 15003 + pos: 1.5,27.5 + parent: 2 + - uid: 19239 components: - type: Transform - pos: -96.5,24.5 - parent: 89 - - uid: 15007 + rot: -1.5707963267948966 rad + pos: -119.5,11.5 + parent: 2 + - uid: 19240 components: - type: Transform - pos: -116.5,20.5 - parent: 89 - - uid: 15012 + pos: -91.5,6.5 + parent: 2 + - uid: 19241 components: - type: Transform - pos: -37.5,-5.5 - parent: 89 - - uid: 17917 + pos: -91.5,5.5 + parent: 2 + - uid: 19242 components: - type: Transform - pos: -92.5,25.5 - parent: 89 - - uid: 18158 + rot: 3.141592653589793 rad + pos: -132.5,14.5 + parent: 2 + - uid: 19243 components: - type: Transform - pos: -33.5,32.5 - parent: 89 - - uid: 24853 + rot: 3.141592653589793 rad + pos: -132.5,13.5 + parent: 2 + - uid: 19244 components: - type: Transform - pos: -27.5,10.5 - parent: 22565 - - uid: 24854 + pos: -126.5,-10.5 + parent: 2 + - uid: 19245 components: - type: Transform - pos: -31.5,6.5 - parent: 22565 - - uid: 24855 + pos: -41.5,7.5 + parent: 2 + - uid: 19246 components: - type: Transform - pos: -34.5,11.5 - parent: 22565 - - uid: 24856 + pos: -36.5,9.5 + parent: 2 + - uid: 19247 components: - type: Transform - pos: 5.5,3.5 - parent: 22565 - - uid: 24857 + pos: -13.5,-3.5 + parent: 2 + - uid: 19248 components: - type: Transform - pos: 10.5,8.5 - parent: 22565 - - uid: 25692 + pos: -34.5,28.5 + parent: 2 + - uid: 19249 components: - type: Transform - pos: -57.5,35.5 - parent: 89 - - uid: 25695 + pos: -34.5,27.5 + parent: 2 + - uid: 19250 components: - type: Transform - pos: -69.5,-7.5 - parent: 89 - - uid: 25697 + pos: 13.5,5.5 + parent: 2 + - uid: 19251 components: - type: Transform - pos: -37.5,0.5 - parent: 89 - - uid: 25704 + pos: 14.5,5.5 + parent: 2 + - uid: 19252 components: - type: Transform - pos: -0.5,-11.5 - parent: 89 -- proto: SpawnMobPossumMorty - entities: - - uid: 19994 + pos: 14.5,6.5 + parent: 2 + - uid: 19253 components: - type: Transform - pos: 23.5,36.5 - parent: 89 -- proto: SpawnMobShiva - entities: - - uid: 7339 + pos: -117.5,-14.5 + parent: 2 + - uid: 19254 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,-1.5 - parent: 89 -- proto: SpawnMobSlothPaperwork - entities: - - uid: 6125 + pos: 23.5,27.5 + parent: 2 + - uid: 19255 components: - type: Transform - pos: -53.5,10.5 - parent: 89 -- proto: SpawnMobSmile - entities: - - uid: 7337 + pos: -34.5,5.5 + parent: 2 + - uid: 19256 components: - type: Transform - pos: 2.5,-29.5 - parent: 89 -- proto: SpawnPointAtmos - entities: - - uid: 7146 + pos: -57.5,12.5 + parent: 2 + - uid: 19257 components: - type: Transform - pos: -105.5,-18.5 - parent: 89 - - uid: 8370 + pos: -56.5,12.5 + parent: 2 + - uid: 19258 components: - type: Transform - pos: -105.5,-17.5 - parent: 89 - - uid: 8371 + pos: -56.5,5.5 + parent: 2 + - uid: 19259 components: - type: Transform - pos: -105.5,-16.5 - parent: 89 -- proto: SpawnPointBartender - entities: - - uid: 4331 + pos: -55.5,5.5 + parent: 2 + - uid: 19260 components: - type: Transform - pos: -29.5,-1.5 - parent: 89 -- proto: SpawnPointBotanist - entities: - - uid: 4338 + pos: -61.5,5.5 + parent: 2 + - uid: 19261 components: - type: Transform - pos: -9.5,-8.5 - parent: 89 -- proto: SpawnPointCaptain - entities: - - uid: 11373 + pos: -70.5,5.5 + parent: 2 + - uid: 19262 components: - type: Transform - pos: 34.5,15.5 - parent: 89 -- proto: SpawnPointCargoTechnician - entities: - - uid: 5843 + rot: 1.5707963267948966 rad + pos: -115.5,1.5 + parent: 2 + - uid: 19263 components: - type: Transform - pos: -69.5,-11.5 - parent: 89 - - uid: 7403 + rot: 1.5707963267948966 rad + pos: -115.5,2.5 + parent: 2 + - uid: 19264 components: - type: Transform - pos: -62.5,-5.5 - parent: 89 - - uid: 7404 + pos: -126.5,-9.5 + parent: 2 + - uid: 19265 components: - type: Transform - pos: -65.5,-16.5 - parent: 89 -- proto: SpawnPointChaplain - entities: - - uid: 7401 + pos: 8.5,9.5 + parent: 2 + - uid: 19266 components: - type: Transform - pos: -46.5,-6.5 - parent: 89 -- proto: SpawnPointChef - entities: - - uid: 4336 + pos: 9.5,9.5 + parent: 2 + - uid: 19267 components: - type: Transform - pos: -12.5,-1.5 - parent: 89 -- proto: SpawnPointChemist - entities: - - uid: 17861 + pos: 9.5,8.5 + parent: 2 + - uid: 19268 components: - type: Transform - pos: 0.5,6.5 - parent: 89 - - uid: 21736 + rot: -1.5707963267948966 rad + pos: 5.5,5.5 + parent: 2 + - uid: 19269 components: - type: Transform - pos: 2.5,7.5 - parent: 89 - - uid: 21737 + rot: -1.5707963267948966 rad + pos: 10.5,5.5 + parent: 2 + - uid: 19270 components: - type: Transform - pos: -3.5,8.5 - parent: 89 -- proto: SpawnPointChiefEngineer - entities: - - uid: 8379 + rot: -1.5707963267948966 rad + pos: 11.5,5.5 + parent: 2 + - uid: 19271 components: - type: Transform - pos: -103.5,10.5 - parent: 89 - - uid: 15587 + pos: 15.5,11.5 + parent: 2 + - uid: 19272 components: - type: Transform - pos: 37.5,14.5 - parent: 89 -- proto: SpawnPointChiefMedicalOfficer - entities: - - uid: 15594 + pos: 20.5,12.5 + parent: 2 + - uid: 19273 components: - type: Transform - pos: 33.5,12.5 - parent: 89 - - uid: 19971 + pos: -113.5,-5.5 + parent: 2 + - uid: 19274 components: - type: Transform - pos: 24.5,42.5 - parent: 89 -- proto: SpawnPointClown - entities: - - uid: 4275 + pos: -113.5,-8.5 + parent: 2 + - uid: 19275 components: - type: Transform - pos: -34.5,-4.5 - parent: 89 - - uid: 21054 + pos: -113.5,-7.5 + parent: 2 + - uid: 19276 components: - type: Transform - pos: 52.5,-13.5 - parent: 89 -- proto: SpawnPointDetective - entities: - - uid: 10800 + pos: -91.5,25.5 + parent: 2 + - uid: 19277 components: - type: Transform - pos: 21.5,6.5 - parent: 89 -- proto: SpawnPointHeadOfPersonnel - entities: - - uid: 15593 + pos: -91.5,24.5 + parent: 2 + - uid: 19278 components: - type: Transform - pos: 35.5,15.5 - parent: 89 -- proto: SpawnPointHeadOfSecurity - entities: - - uid: 6131 + pos: -91.5,23.5 + parent: 2 + - uid: 19279 components: - type: Transform - pos: 33.5,-2.5 - parent: 89 - - uid: 15599 + pos: -75.5,13.5 + parent: 2 + - uid: 19280 components: - type: Transform - pos: 31.5,13.5 - parent: 89 -- proto: SpawnPointJanitor - entities: - - uid: 9564 + pos: -75.5,12.5 + parent: 2 + - uid: 19281 components: - type: Transform - pos: -39.5,8.5 - parent: 89 - - uid: 20862 + pos: -44.5,21.5 + parent: 2 + - uid: 19282 components: - type: Transform - pos: -40.5,7.5 - parent: 89 -- proto: SpawnPointLatejoin - entities: - - uid: 6945 + pos: 2.5,21.5 + parent: 2 + - uid: 19283 components: - type: Transform - pos: -64.5,35.5 - parent: 89 - - uid: 6946 + pos: 48.5,-30.5 + parent: 2 + - uid: 19284 components: - type: Transform - pos: -64.5,34.5 - parent: 89 - - uid: 6947 + pos: 24.5,12.5 + parent: 2 + - uid: 19285 components: - type: Transform - pos: -64.5,33.5 - parent: 89 - - uid: 7099 + pos: 23.5,29.5 + parent: 2 + - uid: 19286 components: - type: Transform - pos: -64.5,41.5 - parent: 89 -- proto: SpawnPointLawyer - entities: - - uid: 6371 + pos: 25.5,29.5 + parent: 2 + - uid: 19287 components: - type: Transform - pos: -75.5,-6.5 - parent: 89 -- proto: SpawnPointLibrarian - entities: - - uid: 5861 + pos: 24.5,13.5 + parent: 2 + - uid: 19288 components: - type: Transform - pos: -56.5,9.5 - parent: 89 -- proto: SpawnPointMedicalDoctor - entities: - - uid: 12654 + pos: 27.5,31.5 + parent: 2 + - uid: 19289 components: - type: Transform - pos: 32.5,19.5 - parent: 89 - - uid: 12659 + pos: 21.5,31.5 + parent: 2 + - uid: 19290 components: - type: Transform - pos: 33.5,19.5 - parent: 89 - - uid: 15880 + pos: -115.5,15.5 + parent: 2 + - uid: 19291 components: - type: Transform - pos: 8.5,7.5 - parent: 89 - - uid: 21738 + pos: -115.5,14.5 + parent: 2 + - uid: 19292 components: - type: Transform - pos: 2.5,20.5 - parent: 89 - - uid: 21739 + pos: 2.5,15.5 + parent: 2 + - uid: 19293 components: - type: Transform - pos: -11.5,20.5 - parent: 89 - - uid: 21740 + pos: 26.5,13.5 + parent: 2 + - uid: 19294 components: - type: Transform - pos: 5.5,36.5 - parent: 89 - - uid: 21741 + pos: 25.5,13.5 + parent: 2 + - uid: 19295 components: - type: Transform - pos: 7.5,21.5 - parent: 89 -- proto: SpawnPointMedicalIntern - entities: - - uid: 11330 + pos: 26.5,20.5 + parent: 2 + - uid: 19296 components: - type: Transform - pos: 30.5,31.5 - parent: 89 - - uid: 12132 + pos: -89.5,6.5 + parent: 2 + - uid: 19297 components: - type: Transform - pos: -10.5,11.5 - parent: 89 - - uid: 15900 + pos: -84.5,4.5 + parent: 2 + - uid: 19298 components: - type: Transform - pos: 15.5,12.5 - parent: 89 - - uid: 19811 + pos: -85.5,1.5 + parent: 2 + - uid: 19299 components: - type: Transform - pos: 25.5,12.5 - parent: 89 -- proto: SpawnPointMime - entities: - - uid: 4277 + pos: -74.5,7.5 + parent: 2 + - uid: 19300 components: - type: Transform - pos: -34.5,-8.5 - parent: 89 - - uid: 9810 + pos: -73.5,7.5 + parent: 2 + - uid: 19301 components: - type: Transform - pos: 25.5,-13.5 - parent: 89 -- proto: SpawnPointMusician - entities: - - uid: 4282 + pos: -46.5,13.5 + parent: 2 + - uid: 19302 components: - type: Transform - pos: -34.5,-6.5 - parent: 89 -- proto: SpawnPointObserver - entities: - - uid: 10785 + pos: 16.5,12.5 + parent: 2 + - uid: 19303 components: - type: Transform - pos: -1.5,2.5 - parent: 89 -- proto: SpawnPointParamedic - entities: - - uid: 7170 + pos: 16.5,11.5 + parent: 2 + - uid: 19304 components: - type: Transform - pos: 28.5,17.5 - parent: 89 - - uid: 14282 + pos: -117.5,-15.5 + parent: 2 + - uid: 19305 components: - type: Transform - pos: 20.5,22.5 - parent: 89 -- proto: SpawnPointPassenger - entities: - - uid: 15343 + pos: -119.5,-15.5 + parent: 2 + - uid: 19306 components: - type: Transform - pos: -94.5,15.5 - parent: 89 - - uid: 15344 + pos: -118.5,-15.5 + parent: 2 + - uid: 19307 components: - type: Transform - pos: -92.5,16.5 - parent: 89 - - uid: 15345 + rot: -1.5707963267948966 rad + pos: -123.5,-13.5 + parent: 2 + - uid: 19308 components: - type: Transform - pos: -91.5,13.5 - parent: 89 - - uid: 15346 + pos: -113.5,-4.5 + parent: 2 + - uid: 19309 components: - type: Transform - pos: -93.5,13.5 - parent: 89 -- proto: SpawnPointPsychologist - entities: - - uid: 16957 + pos: -100.5,2.5 + parent: 2 + - uid: 19310 components: - type: Transform - pos: 20.5,18.5 - parent: 89 -- proto: SpawnPointQuartermaster - entities: - - uid: 5842 + pos: -99.5,2.5 + parent: 2 + - uid: 19311 components: - type: Transform - pos: -71.5,-16.5 - parent: 89 - - uid: 7685 + pos: -10.5,24.5 + parent: 2 + - uid: 19312 components: - type: Transform - pos: 35.5,12.5 - parent: 89 -- proto: SpawnPointReporter - entities: - - uid: 17940 + pos: -11.5,24.5 + parent: 2 + - uid: 19313 components: - type: Transform - pos: -26.5,8.5 - parent: 89 -- proto: SpawnPointResearchAssistant - entities: - - uid: 15264 + pos: -115.5,13.5 + parent: 2 + - uid: 19314 components: - type: Transform - pos: 29.5,29.5 - parent: 89 - - uid: 20155 + pos: -3.5,-41.5 + parent: 2 + - type: Construction + edge: 0 + - uid: 19315 components: - type: Transform - pos: -6.5,-44.5 - parent: 89 - - uid: 20178 + pos: -12.5,-19.5 + parent: 2 + - uid: 19316 components: - type: Transform - pos: 1.5,-44.5 - parent: 89 -- proto: SpawnPointResearchDirector - entities: - - uid: 159 + rot: 3.141592653589793 rad + pos: 0.5,-25.5 + parent: 2 + - uid: 19317 components: - type: Transform - pos: 37.5,13.5 - parent: 89 - - uid: 161 + rot: 3.141592653589793 rad + pos: 4.5,-25.5 + parent: 2 + - uid: 19318 components: - type: Transform - pos: 3.5,-29.5 - parent: 89 -- proto: SpawnPointSalvageSpecialist - entities: - - uid: 7405 + pos: -9.5,-16.5 + parent: 2 + - uid: 19319 components: - type: Transform - pos: -47.5,-10.5 - parent: 89 - - uid: 7406 + pos: -10.5,-16.5 + parent: 2 + - uid: 19320 components: - type: Transform - pos: -49.5,-10.5 - parent: 89 - - uid: 7407 + rot: 3.141592653589793 rad + pos: -4.5,-20.5 + parent: 2 + - uid: 19321 components: - type: Transform - pos: -48.5,-10.5 - parent: 89 -- proto: SpawnPointScientist - entities: - - uid: 10890 + pos: -2.5,-28.5 + parent: 2 + - uid: 19322 components: - type: Transform - pos: -15.5,-18.5 - parent: 89 - - uid: 10891 + pos: -0.5,-28.5 + parent: 2 + - uid: 19323 components: - type: Transform - pos: -18.5,-19.5 - parent: 89 - - uid: 10893 + pos: -14.5,-21.5 + parent: 2 + - uid: 19324 components: - type: Transform - pos: -6.5,-22.5 - parent: 89 -- proto: SpawnPointSecurityCadet - entities: - - uid: 2825 + pos: -41.5,-12.5 + parent: 2 + - uid: 19325 components: - type: Transform - pos: 21.5,-4.5 - parent: 89 - - uid: 2989 + pos: -41.5,-10.5 + parent: 2 + - uid: 19326 components: - type: Transform - pos: 30.5,30.5 - parent: 89 - - uid: 7138 + pos: -41.5,-11.5 + parent: 2 + - uid: 19327 components: - type: Transform - pos: 49.5,-26.5 - parent: 89 - - uid: 7602 + pos: 48.5,-28.5 + parent: 2 + - uid: 19328 components: - type: Transform - pos: 43.5,-13.5 - parent: 89 - - uid: 12590 + pos: 46.5,-25.5 + parent: 2 + - uid: 19329 components: - type: Transform - pos: 19.5,29.5 - parent: 89 - - uid: 22562 + pos: 45.5,-30.5 + parent: 2 + - uid: 19330 components: - type: Transform - pos: 43.5,-14.5 - parent: 89 -- proto: SpawnPointSecurityOfficer - entities: - - uid: 2887 + pos: -98.5,9.5 + parent: 2 + - uid: 19331 components: - type: Transform - pos: 22.5,-1.5 - parent: 89 - - uid: 6136 + pos: -9.5,20.5 + parent: 2 + - uid: 19332 components: - type: Transform - pos: -16.5,7.5 - parent: 89 - - uid: 6137 + pos: -99.5,9.5 + parent: 2 + - uid: 19333 components: - type: Transform - pos: -19.5,6.5 - parent: 89 - - uid: 6138 + pos: -83.5,19.5 + parent: 2 + - uid: 19334 components: - type: Transform - pos: 25.5,-4.5 - parent: 89 - - uid: 8212 + pos: -2.5,-41.5 + parent: 2 + - type: Construction + edge: 0 + - uid: 19335 components: - type: Transform - pos: -44.5,1.5 - parent: 89 - - uid: 8213 + pos: -126.5,-8.5 + parent: 2 + - uid: 19336 components: - type: Transform - pos: -59.5,8.5 - parent: 89 - - uid: 8214 + pos: -26.5,-22.5 + parent: 2 + - uid: 19337 components: - type: Transform - pos: -60.5,8.5 - parent: 89 - - uid: 8215 + pos: -26.5,-21.5 + parent: 2 + - uid: 19338 components: - type: Transform - pos: -85.5,12.5 - parent: 89 - - uid: 8216 + pos: -26.5,-19.5 + parent: 2 + - uid: 19339 components: - type: Transform - pos: -88.5,13.5 - parent: 89 - - uid: 8283 + pos: -119.5,12.5 + parent: 2 + - uid: 19340 components: - type: Transform - pos: -59.5,21.5 - parent: 89 - - uid: 8284 + pos: 28.5,13.5 + parent: 2 + - uid: 19341 components: - type: Transform - pos: -62.5,21.5 - parent: 89 - - uid: 8405 + pos: 22.5,36.5 + parent: 2 + - uid: 19342 components: - type: Transform - pos: 18.5,-4.5 - parent: 89 - - uid: 10769 + pos: 22.5,35.5 + parent: 2 + - uid: 19343 components: - type: Transform - pos: -25.5,-4.5 - parent: 89 - - uid: 16766 + pos: 26.5,37.5 + parent: 2 + - uid: 19344 components: - type: Transform - pos: -56.5,35.5 - parent: 89 - - uid: 16767 + pos: 26.5,36.5 + parent: 2 + - uid: 19345 components: - type: Transform - pos: -55.5,43.5 - parent: 89 -- proto: SpawnPointServiceWorker - entities: - - uid: 4628 + pos: 25.5,36.5 + parent: 2 + - uid: 19346 components: - type: Transform - pos: -25.5,-6.5 - parent: 89 -- proto: SpawnPointStationEngineer - entities: - - uid: 1928 + rot: 1.5707963267948966 rad + pos: -115.5,6.5 + parent: 2 + - uid: 19347 components: - type: Transform - pos: -99.5,-0.5 - parent: 89 - - uid: 1929 + rot: 1.5707963267948966 rad + pos: -115.5,5.5 + parent: 2 + - uid: 19348 components: - type: Transform - pos: -98.5,-0.5 - parent: 89 - - uid: 8373 + pos: 48.5,-24.5 + parent: 2 + - uid: 19349 components: - type: Transform - pos: -103.5,-0.5 - parent: 89 - - uid: 8374 + rot: -1.5707963267948966 rad + pos: 48.5,-21.5 + parent: 2 + - uid: 19350 components: - type: Transform - pos: -102.5,-0.5 - parent: 89 - - uid: 8375 + pos: -18.5,-0.5 + parent: 2 + - uid: 19351 components: - type: Transform - pos: -101.5,-0.5 - parent: 89 - - uid: 8376 + pos: 47.5,-28.5 + parent: 2 + - uid: 19352 components: - type: Transform - pos: -100.5,-0.5 - parent: 89 -- proto: SpawnPointTechnicalAssistant - entities: - - uid: 1932 + pos: 46.5,-26.5 + parent: 2 + - uid: 19353 components: - type: Transform - pos: -103.5,-4.5 - parent: 89 - - uid: 2226 + pos: 47.5,-24.5 + parent: 2 + - uid: 19354 components: - type: Transform - pos: -102.5,-4.5 - parent: 89 - - uid: 7381 + pos: 46.5,-24.5 + parent: 2 + - uid: 19355 components: - type: Transform - pos: 48.5,4.5 - parent: 89 - - uid: 8377 + rot: -1.5707963267948966 rad + pos: 49.5,-21.5 + parent: 2 + - uid: 19356 components: - type: Transform - pos: -104.5,-1.5 - parent: 89 - - uid: 8378 + pos: 46.5,-28.5 + parent: 2 + - uid: 19357 components: - type: Transform - pos: -104.5,-0.5 - parent: 89 - - uid: 12834 + pos: 51.5,-30.5 + parent: 2 + - uid: 19358 components: - type: Transform - pos: 31.5,30.5 - parent: 89 -- proto: SpawnPointWarden - entities: - - uid: 6142 + rot: 1.5707963267948966 rad + pos: -131.5,-2.5 + parent: 2 + - uid: 19359 components: - type: Transform - pos: 7.5,-11.5 - parent: 89 -- proto: SpeedLoaderCap - entities: - - uid: 463 + rot: -1.5707963267948966 rad + pos: 46.5,-27.5 + parent: 2 + - uid: 19360 components: - type: Transform - pos: -34.26588,32.403828 - parent: 89 -- proto: SpeedLoaderMagnum - entities: - - uid: 1594 + pos: 54.5,-13.5 + parent: 2 + - uid: 19361 components: - type: Transform - pos: 41.699596,-9.619137 - parent: 89 - - uid: 1642 + rot: 1.5707963267948966 rad + pos: 21.5,-17.5 + parent: 2 + - uid: 19362 components: - type: Transform - pos: 41.65272,-9.275387 - parent: 89 - - uid: 7384 + rot: 1.5707963267948966 rad + pos: 22.5,-17.5 + parent: 2 + - uid: 19363 components: - type: Transform - pos: 42.183395,-9.571789 - parent: 89 - - uid: 7390 + pos: -5.5,-7.5 + parent: 2 + - uid: 19364 components: - type: Transform - pos: 42.152145,-9.243664 - parent: 89 - - uid: 17008 + rot: 1.5707963267948966 rad + pos: -9.5,-0.5 + parent: 2 + - uid: 19365 components: - type: Transform - pos: 35.614456,-0.5068965 - parent: 89 -- proto: SpeedLoaderMagnumPractice - entities: - - uid: 7278 + pos: -88.5,30.5 + parent: 2 + - uid: 23878 components: - type: Transform - pos: 44.85816,-9.368664 - parent: 89 - - uid: 7472 + rot: 3.141592653589793 rad + pos: 2.5,-2.5 + parent: 23711 + - uid: 26793 components: - type: Transform - pos: 44.780033,-9.149914 - parent: 89 -- proto: SpeedLoaderMagnumRubber - entities: - - uid: 2770 + rot: -1.5707963267948966 rad + pos: -31.5,1.5 + parent: 24450 + - uid: 26794 components: - type: Transform - pos: 44.19281,-9.554608 - parent: 89 - - uid: 2771 + rot: 3.141592653589793 rad + pos: -30.5,11.5 + parent: 24450 + - uid: 26795 components: - type: Transform - pos: 44.520935,-9.554608 - parent: 89 - - uid: 2772 + rot: 3.141592653589793 rad + pos: -30.5,1.5 + parent: 24450 + - uid: 26796 components: - type: Transform - pos: 44.31781,-9.226483 - parent: 89 -- proto: SpiderWeb - entities: - - uid: 3314 + rot: 3.141592653589793 rad + pos: -29.5,1.5 + parent: 24450 + - uid: 26797 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,22.5 - parent: 89 - - uid: 4281 + rot: 3.141592653589793 rad + pos: -29.5,2.5 + parent: 24450 + - uid: 26798 components: - type: Transform - pos: -92.5,26.5 - parent: 89 - - uid: 4293 + rot: 3.141592653589793 rad + pos: 5.5,2.5 + parent: 24450 + - uid: 26799 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,27.5 - parent: 89 - - uid: 4444 + rot: 3.141592653589793 rad + pos: 5.5,1.5 + parent: 24450 + - uid: 26800 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -93.5,28.5 - parent: 89 - - uid: 4569 + rot: 3.141592653589793 rad + pos: 6.5,1.5 + parent: 24450 + - uid: 26801 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,29.5 - parent: 89 - - uid: 6011 + rot: 3.141592653589793 rad + pos: 7.5,1.5 + parent: 24450 + - uid: 26802 components: - type: Transform - pos: 14.5,-16.5 - parent: 89 - - uid: 21000 + rot: 3.141592653589793 rad + pos: 6.5,11.5 + parent: 24450 + - uid: 26803 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 40.5,20.5 - parent: 89 - - uid: 21013 + rot: 3.141592653589793 rad + pos: -35.5,5.5 + parent: 24450 + - uid: 26804 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,21.5 - parent: 89 - - uid: 24858 + rot: 3.141592653589793 rad + pos: -35.5,9.5 + parent: 24450 + - uid: 26805 components: - type: Transform - pos: 3.5,10.5 - parent: 22565 - - uid: 24859 + rot: 3.141592653589793 rad + pos: -35.5,11.5 + parent: 24450 + - uid: 26806 components: - type: Transform - pos: 4.5,10.5 - parent: 22565 - - uid: 24860 + rot: 3.141592653589793 rad + pos: 11.5,11.5 + parent: 24450 + - uid: 26807 components: - type: Transform - pos: 3.5,11.5 - parent: 22565 -- proto: SprayBottleSpaceCleaner - entities: - - uid: 9511 + rot: 3.141592653589793 rad + pos: 11.5,9.5 + parent: 24450 + - uid: 26808 components: - type: Transform - pos: -41.17559,7.5532546 - parent: 89 - - uid: 9512 + rot: 3.141592653589793 rad + pos: 11.5,5.5 + parent: 24450 + - uid: 26809 components: - type: Transform - pos: -41.17559,7.865755 - parent: 89 - - uid: 10949 + pos: -4.5,7.5 + parent: 24450 + - uid: 26810 components: - type: Transform - pos: 5.48831,29.827152 - parent: 89 - - uid: 10952 + pos: 1.5,7.5 + parent: 24450 + - uid: 26811 components: - type: Transform - pos: 5.33206,29.624027 - parent: 89 - - uid: 10986 + pos: -5.5,7.5 + parent: 24450 + - uid: 26812 components: - type: Transform - pos: -34.505363,5.583355 - parent: 89 - - uid: 11405 + pos: -3.5,7.5 + parent: 24450 + - uid: 26813 components: - type: Transform - pos: 10.525955,42.67038 - parent: 89 - - uid: 14787 + pos: -18.5,7.5 + parent: 24450 + - uid: 26814 components: - type: Transform - pos: 5.309067,16.752579 - parent: 89 - - uid: 15071 + pos: -19.5,7.5 + parent: 24450 + - uid: 26815 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.576197,36.253662 - parent: 89 - - uid: 15391 + pos: -0.5,7.5 + parent: 24450 + - uid: 26816 components: - type: Transform - pos: 5.628935,29.608402 - parent: 89 - - uid: 15500 + pos: 0.5,7.5 + parent: 24450 + - uid: 26817 components: - type: Transform - pos: 5.628935,33.999027 - parent: 89 - - uid: 15571 + pos: -20.5,7.5 + parent: 24450 + - uid: 26818 components: - type: Transform - pos: 5.26956,34.077152 - parent: 89 - - uid: 15860 + pos: -23.5,7.5 + parent: 24450 + - uid: 26819 components: - type: Transform - pos: 26.439201,13.657077 - parent: 89 - - uid: 15871 + pos: -25.5,7.5 + parent: 24450 + - uid: 26820 components: - type: Transform - pos: 9.69931,8.612162 - parent: 89 - - uid: 17300 + pos: -24.5,7.5 + parent: 24450 + - uid: 26821 components: - type: Transform - pos: -3.2461767,-1.3640878 - parent: 89 -- proto: SprayPainter - entities: - - uid: 1892 + pos: 3.5,11.5 + parent: 24450 + - uid: 26822 components: - type: Transform - pos: -56.366257,5.479856 - parent: 89 -- proto: StairStage - entities: - - uid: 5387 + pos: 4.5,11.5 + parent: 24450 + - uid: 27886 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,-13.5 - parent: 89 - - uid: 6453 + pos: -3.5,-13.5 + parent: 27260 + - uid: 27887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 32.5,-12.5 - parent: 89 -- proto: StasisBed - entities: - - uid: 16017 + pos: -4.5,-11.5 + parent: 27260 + - uid: 27888 components: - type: Transform - pos: -2.5,15.5 - parent: 89 - - uid: 16375 + pos: -5.5,-10.5 + parent: 27260 +- proto: TableCarpet + entities: + - uid: 19366 components: - type: Transform - pos: -0.5,15.5 - parent: 89 -- proto: StationMap - entities: - - uid: 3204 + pos: -44.5,-17.5 + parent: 2 + - uid: 19367 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -42.5,-3.5 - parent: 89 - - uid: 3210 + pos: -44.5,-16.5 + parent: 2 + - uid: 19368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -28.5,12.5 - parent: 89 - - uid: 5464 + pos: -43.5,-17.5 + parent: 2 + - uid: 19369 components: - type: Transform - pos: -62.5,27.5 - parent: 89 - - uid: 5481 + pos: -35.5,-0.5 + parent: 2 + - uid: 19370 components: - type: Transform - pos: -79.5,11.5 - parent: 89 - - uid: 5484 + pos: -36.5,-0.5 + parent: 2 + - uid: 19371 components: - type: Transform - pos: -95.5,11.5 - parent: 89 - - uid: 5485 + pos: -44.5,8.5 + parent: 2 + - uid: 19372 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -53.5,0.5 - parent: 89 - - uid: 5488 + pos: -45.5,8.5 + parent: 2 + - uid: 19373 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,1.5 - parent: 89 - - uid: 5945 + pos: -7.5,41.5 + parent: 2 + - uid: 19374 components: - type: Transform - pos: 11.5,4.5 - parent: 89 - - uid: 7122 + pos: -7.5,40.5 + parent: 2 + - uid: 19375 components: - type: Transform - rot: 3.141592653589793 rad - pos: 29.5,0.5 - parent: 89 - - uid: 7192 + pos: -6.5,40.5 + parent: 2 + - uid: 19376 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-14.5 - parent: 89 - - uid: 7195 + pos: -98.5,17.5 + parent: 2 + - uid: 19377 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,4.5 - parent: 89 - - uid: 7200 + pos: -97.5,17.5 + parent: 2 + - uid: 19378 components: - type: Transform - pos: -53.5,19.5 - parent: 89 - - uid: 7226 + pos: -51.5,48.5 + parent: 2 + - uid: 19379 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,2.5 - parent: 89 - - uid: 7231 + pos: -51.5,47.5 + parent: 2 + - uid: 19380 components: - type: Transform - rot: 3.141592653589793 rad - pos: -82.5,6.5 - parent: 89 - - uid: 7235 + rot: 1.5707963267948966 rad + pos: -27.5,32.5 + parent: 2 + - uid: 19381 components: - type: Transform - pos: -32.5,-10.5 - parent: 89 -- proto: StatueVenusBlue + rot: 1.5707963267948966 rad + pos: -27.5,33.5 + parent: 2 +- proto: TableCounterMetal entities: - - uid: 18227 + - uid: 19382 components: - type: Transform - pos: -1.5,-6.5 - parent: 89 -- proto: StatueVenusRed + pos: 54.5,4.5 + parent: 2 +- proto: TableCounterWood entities: - - uid: 18231 + - uid: 19383 components: - type: Transform - pos: -1.5,-4.5 - parent: 89 -- proto: SteelBench - entities: - - uid: 24861 + pos: -52.5,8.5 + parent: 2 + - uid: 19384 components: - type: Transform - pos: -25.5,-0.5 - parent: 22565 - - uid: 24862 + pos: -52.5,7.5 + parent: 2 + - uid: 19385 components: - type: Transform - pos: -24.5,-0.5 - parent: 22565 - - uid: 24863 + pos: -76.5,-2.5 + parent: 2 + - uid: 19386 components: - type: Transform - pos: -23.5,-0.5 - parent: 22565 - - uid: 24864 + pos: -1.5,45.5 + parent: 2 + - uid: 19387 components: - type: Transform - pos: -0.5,-0.5 - parent: 22565 - - uid: 24865 + pos: -5.5,45.5 + parent: 2 + - uid: 19388 components: - type: Transform - pos: 0.5,-0.5 - parent: 22565 - - uid: 24866 + pos: -5.5,46.5 + parent: 2 + - uid: 19389 components: - type: Transform - pos: 1.5,-0.5 - parent: 22565 -- proto: SteelOre1 - entities: - - uid: 10206 + pos: -1.5,46.5 + parent: 2 + - uid: 19390 components: - type: Transform - pos: -27.517975,28.269533 - parent: 89 -- proto: Stool - entities: - - uid: 2888 + pos: -1.5,44.5 + parent: 2 + - uid: 19391 components: - type: Transform - pos: 21.5,-4.5 - parent: 89 - - uid: 2917 + pos: -5.5,44.5 + parent: 2 + - uid: 19392 components: - type: Transform - pos: 19.5,-4.5 - parent: 89 - - uid: 4694 + pos: -52.5,9.5 + parent: 2 + - uid: 19393 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,-1.5 - parent: 89 - - uid: 4695 + pos: 8.5,-20.5 + parent: 2 + - uid: 19394 components: - type: Transform - pos: -36.5,0.5 - parent: 89 - - uid: 4697 + pos: 8.5,-22.5 + parent: 2 + - uid: 19395 components: - type: Transform - pos: -35.5,0.5 - parent: 89 - - uid: 4700 + pos: 10.5,-19.5 + parent: 2 + - uid: 19396 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,-1.5 - parent: 89 - - uid: 4704 + pos: 11.5,-19.5 + parent: 2 +- proto: TableFancyBlue + entities: + - uid: 19397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,-0.5 - parent: 89 - - uid: 5126 + rot: -1.5707963267948966 rad + pos: 48.5,-1.5 + parent: 2 + - uid: 19398 components: - type: Transform rot: -1.5707963267948966 rad - pos: -48.5,-3.5 - parent: 89 - - uid: 5320 + pos: 48.5,-2.5 + parent: 2 + - uid: 19399 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,-1.5 - parent: 89 - - uid: 5524 + pos: 48.5,-3.5 + parent: 2 +- proto: TableFancyCyan + entities: + - uid: 19400 components: - type: Transform - pos: -45.5,-3.5 - parent: 89 - - uid: 5525 + rot: -1.5707963267948966 rad + pos: 50.5,-2.5 + parent: 2 + - uid: 19401 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-4.5 - parent: 89 - - uid: 5735 + rot: -1.5707963267948966 rad + pos: 50.5,-3.5 + parent: 2 +- proto: TableFancyRed + entities: + - uid: 19402 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-6.5 - parent: 89 - - uid: 9503 + pos: 32.5,-0.5 + parent: 2 + - uid: 19403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,8.5 - parent: 89 - - uid: 10834 + pos: 34.5,-2.5 + parent: 2 + - uid: 19404 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-4.5 - parent: 89 - - uid: 17165 + pos: 34.5,-3.5 + parent: 2 + - uid: 19405 components: - type: Transform - pos: 17.5,-4.5 - parent: 89 - - uid: 17650 + pos: 33.5,-0.5 + parent: 2 +- proto: TableFancyWhite + entities: + - uid: 19406 components: - type: Transform - pos: 18.5,-4.5 - parent: 89 - - uid: 21027 + pos: 37.5,-3.5 + parent: 2 + - uid: 19407 components: - type: Transform - pos: 20.5,-4.5 - parent: 89 -- proto: StoolBar + pos: 30.5,-3.5 + parent: 2 +- proto: TableFrame entities: - - uid: 63 + - uid: 19408 components: - type: Transform - rot: 3.141592653589793 rad - pos: -26.5,-4.5 - parent: 89 - - uid: 64 + pos: -6.5,41.5 + parent: 2 + - uid: 19409 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,-4.5 - parent: 89 - - uid: 65 + pos: 2.5,37.5 + parent: 2 +- proto: TableGlass + entities: + - uid: 19410 components: - type: Transform - rot: 3.141592653589793 rad - pos: -24.5,-4.5 - parent: 89 - - uid: 66 + pos: -13.5,-15.5 + parent: 2 + - uid: 19411 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-4.5 - parent: 89 - - uid: 68 + pos: -16.5,-15.5 + parent: 2 + - uid: 19412 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-3.5 - parent: 89 - - uid: 69 + pos: -15.5,-15.5 + parent: 2 + - uid: 19413 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 89 - - uid: 70 + pos: -14.5,-15.5 + parent: 2 + - uid: 19414 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 89 - - uid: 195 + pos: -27.5,24.5 + parent: 2 + - uid: 19415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-19.5 - parent: 89 - - uid: 196 + pos: -27.5,23.5 + parent: 2 + - uid: 19416 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-21.5 - parent: 89 - - uid: 7757 + pos: 3.5,37.5 + parent: 2 + - uid: 19417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,45.5 - parent: 89 - - uid: 7758 + pos: 1.5,37.5 + parent: 2 + - uid: 19418 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,45.5 - parent: 89 - - uid: 15447 + pos: 0.5,37.5 + parent: 2 + - uid: 19419 components: - type: Transform - pos: -119.5,-14.5 - parent: 89 - - uid: 15655 + pos: -27.5,21.5 + parent: 2 + - uid: 19420 components: - type: Transform - pos: -118.5,-14.5 - parent: 89 - - uid: 16898 + pos: -32.5,21.5 + parent: 2 + - uid: 19421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-18.5 - parent: 89 - - uid: 16913 + pos: -31.5,21.5 + parent: 2 + - uid: 24240 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,-20.5 - parent: 89 - - uid: 17652 + rot: -1.5707963267948966 rad + pos: 4.5,-5.5 + parent: 23919 + - uid: 24241 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-3.5 - parent: 89 - - uid: 17733 + rot: -1.5707963267948966 rad + pos: 6.5,-3.5 + parent: 23919 + - uid: 27889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-2.5 - parent: 89 - - uid: 17739 + pos: -2.5,-11.5 + parent: 27260 + - uid: 27890 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,-4.5 - parent: 89 -- proto: StorageCanister + pos: -2.5,-12.5 + parent: 27260 +- proto: TablePlasmaGlass entities: - - uid: 983 - components: - - type: Transform - pos: -90.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 984 - components: - - type: Transform - pos: -91.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2639 + - uid: 19422 components: - type: Transform - pos: -92.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2640 + rot: -1.5707963267948966 rad + pos: -77.5,-24.5 + parent: 2 + - uid: 19423 components: - type: Transform - pos: -94.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 2641 + pos: -103.5,11.5 + parent: 2 + - uid: 19424 components: - type: Transform - pos: -93.5,-13.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7485 + pos: -27.5,27.5 + parent: 2 + - uid: 19425 components: - type: Transform - pos: -79.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7486 + pos: -27.5,28.5 + parent: 2 + - uid: 19426 components: - type: Transform - pos: -81.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 7487 + pos: -4.5,-27.5 + parent: 2 + - uid: 19427 components: - type: Transform - pos: -80.5,-11.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9613 + pos: -4.5,-28.5 + parent: 2 + - uid: 19428 components: - type: Transform - pos: -93.5,19.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 9640 + pos: -5.5,-27.5 + parent: 2 +- proto: TableReinforced + entities: + - uid: 19429 components: - type: Transform - pos: -22.5,-27.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14610 + rot: 3.141592653589793 rad + pos: -93.5,-4.5 + parent: 2 + - uid: 19430 components: - type: Transform - pos: -105.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 14612 + rot: 3.141592653589793 rad + pos: -91.5,-11.5 + parent: 2 + - uid: 19431 components: - type: Transform - pos: -104.5,18.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15471 + rot: 3.141592653589793 rad + pos: -90.5,-11.5 + parent: 2 + - uid: 19432 components: - type: Transform - pos: 2.5,25.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 15611 + rot: 3.141592653589793 rad + pos: -89.5,-11.5 + parent: 2 + - uid: 19433 components: - type: Transform - pos: 14.5,34.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 24867 + rot: 3.141592653589793 rad + pos: -93.5,-5.5 + parent: 2 + - uid: 19434 components: - type: Transform - pos: -14.5,-9.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 - - uid: 24868 + rot: 3.141592653589793 rad + pos: -93.5,-6.5 + parent: 2 + - uid: 19435 components: - type: Transform - pos: -25.5,-12.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 -- proto: Stunbaton - entities: - - uid: 7142 + pos: -94.5,-3.5 + parent: 2 + - uid: 19436 components: - type: Transform - pos: 21.441029,-2.3814173 - parent: 89 - - uid: 21038 + pos: -24.5,-3.5 + parent: 2 + - uid: 19437 components: - type: Transform - pos: 21.644154,-2.5532923 - parent: 89 - - uid: 22659 + pos: -23.5,-3.5 + parent: 2 + - uid: 19438 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22660 + pos: -22.5,-3.5 + parent: 2 + - uid: 19439 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: Stunprod - entities: - - uid: 24869 + pos: -22.5,-2.5 + parent: 2 + - uid: 19440 components: - type: Transform - pos: 3.94458,11.482362 - parent: 22565 - - uid: 24870 + pos: -22.5,-1.5 + parent: 2 + - uid: 19441 components: - type: Transform - pos: 3.616455,11.576112 - parent: 22565 -- proto: SubstationBasic - entities: - - uid: 610 + pos: 36.5,6.5 + parent: 2 + - uid: 19442 components: - - type: MetaData - name: подстанция мостик - type: Transform - pos: 47.5,5.5 - parent: 89 - - uid: 1532 + rot: 1.5707963267948966 rad + pos: -12.5,13.5 + parent: 2 + - uid: 19443 components: - - type: MetaData - name: подстанция РнД - type: Transform - pos: -9.5,-25.5 - parent: 89 - - uid: 6498 + pos: -16.5,-5.5 + parent: 2 + - uid: 19444 components: - - type: MetaData - name: подстанция УЧ - type: Transform - pos: -132.5,-2.5 - parent: 89 - - uid: 8209 + pos: -16.5,-4.5 + parent: 2 + - uid: 19445 components: - - type: MetaData - name: подстанция мед 1 - type: Transform - pos: -5.5,27.5 - parent: 89 - - uid: 10678 + pos: -16.5,-3.5 + parent: 2 + - uid: 19446 components: - - type: MetaData - name: подстанция карго, суд - type: Transform - pos: -82.5,-9.5 - parent: 89 - - uid: 10967 + pos: -16.5,-2.5 + parent: 2 + - uid: 19447 components: - - type: MetaData - name: подстанция дормы - type: Transform - pos: -40.5,24.5 - parent: 89 - - uid: 11233 + pos: -16.5,-1.5 + parent: 2 + - uid: 19448 components: - - type: MetaData - name: подстанция прибытие - type: Transform - pos: -51.5,28.5 - parent: 89 - - uid: 11831 + pos: -10.5,-2.5 + parent: 2 + - uid: 19449 components: - - type: MetaData - name: подстанция СБ - type: Transform - pos: 16.5,-12.5 - parent: 89 - - uid: 12989 + pos: -10.5,-3.5 + parent: 2 + - uid: 19450 components: - - type: MetaData - name: подстанция коридоров 1 - type: Transform - pos: -90.5,20.5 - parent: 89 - - uid: 13849 + pos: 57.5,2.5 + parent: 2 + - uid: 19451 components: - - type: MetaData - name: подстанция карго, бар - type: Transform - pos: -37.5,-9.5 - parent: 89 - - uid: 14064 + pos: 59.5,2.5 + parent: 2 + - uid: 19452 components: - - type: MetaData - name: подстанция уборщик - type: Transform - pos: -35.5,11.5 - parent: 89 - - uid: 15640 + pos: 57.5,6.5 + parent: 2 + - uid: 19453 components: - - type: MetaData - name: подстанция генератора гравитации - type: Transform - pos: -111.5,-13.5 - parent: 89 - - uid: 16579 + pos: 59.5,6.5 + parent: 2 + - uid: 19454 components: - - type: MetaData - name: подстанция инженерного отдела - type: Transform - pos: -117.5,13.5 - parent: 89 - - uid: 17149 + pos: 65.5,10.5 + parent: 2 + - uid: 19455 components: - type: Transform - pos: 34.5,27.5 - parent: 89 - - uid: 20320 + pos: 63.5,8.5 + parent: 2 + - uid: 19456 components: - type: Transform - pos: 44.5,20.5 - parent: 89 - - uid: 21824 + pos: 63.5,0.5 + parent: 2 + - uid: 19457 components: - type: Transform - pos: 57.5,-17.5 - parent: 89 - - uid: 24871 + pos: 65.5,13.5 + parent: 2 + - uid: 19458 components: - type: Transform - pos: -7.5,-17.5 - parent: 22565 - - uid: 24872 + pos: 63.5,3.5 + parent: 2 + - uid: 19459 components: - type: Transform - pos: -8.5,-3.5 - parent: 22565 - - uid: 24873 + pos: 63.5,5.5 + parent: 2 + - uid: 19460 components: - type: Transform - pos: -15.5,-3.5 - parent: 22565 -- proto: SubstationMachineCircuitboard - entities: - - uid: 7040 + pos: 56.5,10.5 + parent: 2 + - uid: 19461 components: - type: Transform - pos: -103.60425,-7.2144136 - parent: 89 - - uid: 7041 + pos: 55.5,10.5 + parent: 2 + - uid: 19462 components: - type: Transform - pos: -103.323,-7.4956636 - parent: 89 -- proto: SubstationWallBasic - entities: - - uid: 14562 + pos: 53.5,15.5 + parent: 2 + - uid: 19463 components: - type: Transform - pos: -30.5,51.5 - parent: 89 - - uid: 21705 + pos: 54.5,15.5 + parent: 2 + - uid: 19464 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 21627 - - uid: 25574 + pos: 57.5,15.5 + parent: 2 + - uid: 19465 components: - type: Transform - pos: 3.5,-10.5 - parent: 18153 -- proto: SuitStorageAtmos - entities: - - uid: 6949 + pos: 58.5,15.5 + parent: 2 + - uid: 19466 components: - type: Transform - pos: -105.5,-12.5 - parent: 89 - - uid: 7109 + pos: -5.5,-34.5 + parent: 2 + - uid: 19467 components: - type: Transform - pos: -105.5,-14.5 - parent: 89 - - uid: 7111 + pos: 65.5,-1.5 + parent: 2 + - uid: 19468 components: - type: Transform - pos: -105.5,-13.5 - parent: 89 -- proto: SuitStorageCaptain - entities: - - uid: 20798 + pos: 58.5,-6.5 + parent: 2 + - uid: 19469 components: - type: Transform - pos: 46.5,17.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageCE - entities: - - uid: 1056 + pos: 57.5,-6.5 + parent: 2 + - uid: 19470 components: - type: Transform - pos: -101.5,9.5 - parent: 89 -- proto: SuitStorageCMO - entities: - - uid: 6950 + pos: 54.5,-6.5 + parent: 2 + - uid: 19471 components: - type: Transform - pos: 22.5,34.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 -- proto: SuitStorageEngi - entities: - - uid: 478 + rot: 1.5707963267948966 rad + pos: -11.5,10.5 + parent: 2 + - uid: 19472 components: - type: Transform - pos: -110.5,-2.5 - parent: 89 - - uid: 670 + pos: -22.5,-14.5 + parent: 2 + - uid: 19473 components: - type: Transform - pos: -110.5,10.5 - parent: 89 - - uid: 1870 + pos: -1.5,19.5 + parent: 2 + - uid: 19474 components: - type: Transform - pos: -110.5,1.5 - parent: 89 - - uid: 1883 + rot: 1.5707963267948966 rad + pos: -8.5,13.5 + parent: 2 + - uid: 19475 components: - type: Transform - pos: -126.5,-4.5 - parent: 89 - - uid: 2245 + pos: 41.5,9.5 + parent: 2 + - uid: 19476 components: - type: Transform - pos: -106.5,2.5 - parent: 89 - - uid: 2274 + rot: 1.5707963267948966 rad + pos: -10.5,10.5 + parent: 2 + - uid: 19477 components: - type: Transform - pos: -104.5,2.5 - parent: 89 - - uid: 2344 + rot: -1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 19478 components: - type: Transform - pos: -103.5,2.5 - parent: 89 - - uid: 7128 + pos: 40.5,10.5 + parent: 2 + - uid: 19479 components: - type: Transform - pos: -105.5,2.5 - parent: 89 - - uid: 17704 + pos: 56.5,-1.5 + parent: 2 + - uid: 19480 components: - type: Transform - pos: -126.5,-5.5 - parent: 89 - - uid: 17706 + pos: 55.5,-1.5 + parent: 2 + - uid: 19481 components: - type: Transform - pos: -110.5,6.5 - parent: 89 -- proto: SuitStorageEVA - entities: - - uid: 2332 + pos: -85.5,-14.5 + parent: 2 + - uid: 19482 components: - type: Transform - pos: 32.5,9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2217 - - 2357 - - uid: 7129 + pos: -84.5,-14.5 + parent: 2 + - uid: 19483 components: - type: Transform - pos: 31.5,5.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2144 - - 7130 - - uid: 7131 + rot: -1.5707963267948966 rad + pos: 28.5,-0.5 + parent: 2 + - uid: 19484 components: - type: Transform - pos: 32.5,7.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2330 - - 2359 - - uid: 7132 + rot: -1.5707963267948966 rad + pos: 25.5,-6.5 + parent: 2 + - uid: 19485 components: - type: Transform - pos: 30.5,7.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2326 - - 2346 - - uid: 7133 + rot: -1.5707963267948966 rad + pos: 26.5,-0.5 + parent: 2 + - uid: 19486 components: - type: Transform - pos: 30.5,9.5 - parent: 89 - - type: EntityStorage - air: - volume: 200 - immutable: False - temperature: 293.1496 - moles: - - 1.7459903 - - 6.568249 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - 0 - - type: ContainerContainer - containers: - entity_storage: !type:Container - showEnts: False - occludes: True - ents: - - 2333 - - 2352 -- proto: SuitStorageEVAEmergency - entities: - - uid: 9653 + pos: 37.5,3.5 + parent: 2 + - uid: 19487 components: - type: Transform - pos: -88.5,23.5 - parent: 89 -- proto: SuitStorageEVAPrisoner - entities: - - uid: 5947 + pos: -25.5,-3.5 + parent: 2 + - uid: 19488 components: - type: Transform - pos: 14.5,-16.5 - parent: 89 - - uid: 21328 + pos: -26.5,-3.5 + parent: 2 + - uid: 19489 components: - type: Transform - pos: 56.5,-19.5 - parent: 89 - - uid: 21391 + rot: -1.5707963267948966 rad + pos: 7.5,-12.5 + parent: 2 + - uid: 19490 components: - type: Transform - pos: 56.5,-20.5 - parent: 89 -- proto: SuitStorageHOS - entities: - - uid: 7116 + rot: -1.5707963267948966 rad + pos: 27.5,-0.5 + parent: 2 + - uid: 19491 components: - type: Transform - pos: 36.5,-0.5 - parent: 89 -- proto: SuitStorageRD - entities: - - uid: 7100 + rot: -1.5707963267948966 rad + pos: 28.5,-4.5 + parent: 2 + - uid: 19492 components: - type: Transform - pos: 4.5,-31.5 - parent: 89 -- proto: SuitStorageSalv - entities: - - uid: 5745 + pos: 25.5,-3.5 + parent: 2 + - uid: 19493 components: - type: Transform - pos: -52.5,-15.5 - parent: 89 - - uid: 7105 + pos: 54.5,2.5 + parent: 2 + - uid: 19494 components: - type: Transform - pos: -52.5,-16.5 - parent: 89 - - uid: 7112 + pos: 54.5,6.5 + parent: 2 + - uid: 19495 components: - type: Transform - pos: -52.5,-17.5 - parent: 89 -- proto: SuitStorageSec - entities: - - uid: 2360 + pos: -5.5,-36.5 + parent: 2 + - uid: 19496 components: - type: Transform - pos: 41.5,-6.5 - parent: 89 - - uid: 2999 + rot: 3.141592653589793 rad + pos: -60.5,20.5 + parent: 2 + - uid: 19497 components: - type: Transform - pos: 41.5,-7.5 - parent: 89 - - uid: 7171 + pos: -0.5,19.5 + parent: 2 + - uid: 19498 components: - type: Transform - pos: 42.5,-6.5 - parent: 89 - - uid: 7172 + pos: 17.5,-0.5 + parent: 2 + - uid: 19499 components: - type: Transform - pos: 42.5,-7.5 - parent: 89 - - uid: 7379 + pos: 15.5,-6.5 + parent: 2 + - uid: 19500 components: - type: Transform - pos: 41.5,-5.5 - parent: 89 - - uid: 7469 + rot: -1.5707963267948966 rad + pos: 33.5,-13.5 + parent: 2 + - uid: 19501 components: - type: Transform - pos: 42.5,-5.5 - parent: 89 -- proto: SuitStorageWarden - entities: - - uid: 7115 + rot: -1.5707963267948966 rad + pos: 34.5,-12.5 + parent: 2 + - uid: 19502 components: - type: Transform - pos: 7.5,-8.5 - parent: 89 -- proto: SurveillanceCameraAssembly - entities: - - uid: 24874 + rot: -1.5707963267948966 rad + pos: 31.5,-13.5 + parent: 2 + - uid: 19503 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 7.5,7.5 - parent: 22565 -- proto: SurveillanceCameraCommand - entities: - - uid: 4522 + rot: -1.5707963267948966 rad + pos: 31.5,-12.5 + parent: 2 + - uid: 19504 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 28.5,7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ЕВА склад - - uid: 10972 + pos: -63.5,-3.5 + parent: 2 + - uid: 19505 components: - type: Transform - pos: 56.5,8.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик офицерская палуба 2 - - uid: 14892 + pos: -62.5,-3.5 + parent: 2 + - uid: 19506 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 62.5,4.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик мостика - - uid: 14963 + pos: 28.5,-5.5 + parent: 2 + - uid: 19507 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,4.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Правительственный сектор - - uid: 14965 + pos: 21.5,-2.5 + parent: 2 + - uid: 19508 components: - type: Transform - pos: 48.5,-5.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Хранилище - - uid: 14966 + pos: -4.5,8.5 + parent: 2 + - uid: 19509 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: ЕВА склад 2 - - uid: 15741 + pos: -15.5,7.5 + parent: 2 + - uid: 19510 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик вход - - uid: 15744 + pos: -6.5,27.5 + parent: 2 + - uid: 19511 components: - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,16.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Конференц зал - - uid: 16712 + pos: 19.5,-1.5 + parent: 2 + - uid: 19512 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Мостик офицерская палуба 1 - - uid: 16713 + pos: 17.5,-1.5 + parent: 2 + - uid: 19513 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,6.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Кабинет ГП - - uid: 19629 + pos: 19.5,-0.5 + parent: 2 + - uid: 19514 components: - type: Transform - pos: -76.5,-3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraCommand - nameSet: True - id: Суд -- proto: SurveillanceCameraEngineering - entities: - - uid: 19653 + pos: -20.5,5.5 + parent: 2 + - uid: 19515 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Суперматерия - - uid: 19654 + pos: -19.5,5.5 + parent: 2 + - uid: 19516 components: - type: Transform - pos: -119.5,-8.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Склад техники - - uid: 19658 + pos: -20.5,7.5 + parent: 2 + - uid: 19517 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -98.5,-1.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Центральная комната - - uid: 19661 + pos: -16.5,8.5 + parent: 2 + - uid: 19518 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-9.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Склад запчастей - - uid: 19662 + pos: -44.5,2.5 + parent: 2 + - uid: 19519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Атмос - - uid: 19663 + pos: -45.5,0.5 + parent: 2 + - uid: 19520 components: - type: Transform - pos: -105.5,2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Центральный коридор - - uid: 19665 + pos: -45.5,1.5 + parent: 2 + - uid: 19521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,6.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Комната управления - - uid: 19666 + pos: -105.5,9.5 + parent: 2 + - uid: 19522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,17.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Зал двигателя антиматерии - - uid: 19667 + pos: -104.5,9.5 + parent: 2 + - uid: 19523 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -126.5,16.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Холл СМЭСов - - uid: 19668 + pos: -103.5,9.5 + parent: 2 + - uid: 19524 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -114.5,-16.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Ген.грав. - - uid: 19669 + pos: -103.5,-2.5 + parent: 2 + - uid: 19525 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -105.5,-13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraEngineering - nameSet: True - id: Комната снаряжения атмоса -- proto: SurveillanceCameraGeneral - entities: - - uid: 14962 + pos: -102.5,-2.5 + parent: 2 + - uid: 19526 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Зал правительственный сектор - - uid: 19620 + pos: -101.5,-2.5 + parent: 2 + - uid: 19527 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -3.5,-4.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Общий зал - - uid: 19624 + pos: -100.5,-2.5 + parent: 2 + - uid: 19528 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -39.5,0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 1 - - uid: 19625 + pos: -104.5,0.5 + parent: 2 + - uid: 19529 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -62.5,11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 2 - - uid: 19626 + pos: -105.5,0.5 + parent: 2 + - uid: 19530 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -80.5,13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 3 - - uid: 19627 + pos: -3.5,6.5 + parent: 2 + - uid: 19531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -56.5,26.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: КПП - 4 - - uid: 19812 + pos: -85.5,11.5 + parent: 2 + - uid: 19532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraGeneral - nameSet: True - id: Коридор РнД -- proto: SurveillanceCameraMedical - entities: - - uid: 11154 + pos: -87.5,14.5 + parent: 2 + - uid: 19533 components: - type: Transform - pos: -0.5,11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Внутренний холл Медбея - - uid: 19634 + pos: -86.5,14.5 + parent: 2 + - uid: 19534 components: - type: Transform - rot: 3.141592653589793 rad - pos: -11.5,15.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Хим. Отдел - - uid: 19638 + pos: -61.5,8.5 + parent: 2 + - uid: 19535 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,18.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Клонирование - - uid: 19640 + pos: -58.5,7.5 + parent: 2 + - uid: 19536 components: - type: Transform - rot: 3.141592653589793 rad - pos: 26.5,20.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Внутренняя приемная - - uid: 19643 + pos: -59.5,7.5 + parent: 2 + - uid: 19537 components: - type: Transform - rot: 3.141592653589793 rad - pos: 8.5,9.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraMedical - nameSet: True - id: Морг -- proto: SurveillanceCameraRouterCommand - entities: - - uid: 9060 + pos: -58.5,21.5 + parent: 2 + - uid: 19538 components: - type: Transform - pos: -103.5,26.5 - parent: 89 - - uid: 16399 + rot: -1.5707963267948966 rad + pos: -59.5,22.5 + parent: 2 + - uid: 19539 components: - type: Transform - pos: 47.5,3.5 - parent: 89 -- proto: SurveillanceCameraRouterConstructed - entities: - - uid: 1244 + rot: -1.5707963267948966 rad + pos: -60.5,22.5 + parent: 2 + - uid: 19540 components: - type: Transform - pos: -109.5,26.5 - parent: 89 - - uid: 9119 + pos: -8.5,-15.5 + parent: 2 + - uid: 19541 components: - type: Transform - pos: -112.5,24.5 - parent: 89 - - uid: 9120 + pos: 9.5,20.5 + parent: 2 + - uid: 19542 components: - type: Transform - pos: -111.5,24.5 - parent: 89 - - uid: 9121 + pos: -105.5,21.5 + parent: 2 + - uid: 19543 components: - type: Transform - pos: -110.5,24.5 - parent: 89 - - uid: 9130 + pos: -104.5,21.5 + parent: 2 + - uid: 19544 components: - type: Transform - pos: -110.5,26.5 - parent: 89 - - uid: 9131 + pos: -103.5,21.5 + parent: 2 + - uid: 19545 components: - type: Transform - pos: -111.5,26.5 - parent: 89 - - uid: 9132 + pos: -102.5,21.5 + parent: 2 + - uid: 19546 components: - type: Transform - pos: -112.5,26.5 - parent: 89 - - uid: 11103 + pos: -55.5,32.5 + parent: 2 + - uid: 19547 components: - type: Transform - pos: -109.5,24.5 - parent: 89 - - uid: 20072 + pos: 44.5,-15.5 + parent: 2 + - uid: 19548 components: - type: Transform - pos: -107.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterEngineering - entities: - - uid: 9067 + pos: -55.5,33.5 + parent: 2 + - uid: 19549 components: - type: Transform - pos: -104.5,26.5 - parent: 89 -- proto: SurveillanceCameraRouterGeneral - entities: - - uid: 9052 + pos: -55.5,34.5 + parent: 2 + - uid: 19550 components: - type: Transform - pos: -102.5,26.5 - parent: 89 -- proto: SurveillanceCameraRouterMedical - entities: - - uid: 9050 + pos: -54.5,38.5 + parent: 2 + - uid: 19551 components: - type: Transform - pos: -105.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterScience - entities: - - uid: 9048 + pos: -54.5,43.5 + parent: 2 + - uid: 19552 components: - type: Transform - pos: -103.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterSecurity - entities: - - uid: 9049 + pos: -54.5,42.5 + parent: 2 + - uid: 19553 components: - type: Transform - pos: -104.5,24.5 - parent: 89 - - uid: 24875 + pos: -54.5,41.5 + parent: 2 + - uid: 19554 components: - type: Transform - pos: -4.5,-17.5 - parent: 22565 -- proto: SurveillanceCameraRouterService - entities: - - uid: 9047 + pos: -52.5,41.5 + parent: 2 + - uid: 19555 components: - type: Transform - pos: -102.5,24.5 - parent: 89 -- proto: SurveillanceCameraRouterSupply - entities: - - uid: 5855 + pos: -52.5,45.5 + parent: 2 + - uid: 19556 components: - type: Transform - pos: -74.5,-16.5 - parent: 89 - - uid: 8588 + pos: -83.5,16.5 + parent: 2 + - uid: 19557 components: - type: Transform - pos: -106.5,24.5 - parent: 89 -- proto: SurveillanceCameraScience - entities: - - uid: 1576 + pos: -84.5,17.5 + parent: 2 + - uid: 19558 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-15.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Лаборатория - - uid: 14893 + pos: -85.5,17.5 + parent: 2 + - uid: 19559 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,-20.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Робототехника - - uid: 14899 + pos: -96.5,5.5 + parent: 2 + - uid: 19560 components: - type: Transform - pos: -7.5,-32.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Атмос РнД - - uid: 14901 + rot: 1.5707963267948966 rad + pos: -8.5,12.5 + parent: 2 + - uid: 19561 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-24.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Холл РнД - - uid: 14949 + pos: -1.5,10.5 + parent: 2 + - uid: 19562 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-34.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Серверная - - uid: 15096 + pos: -1.5,19.5 + parent: 2 + - uid: 19563 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-38.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraScience - nameSet: True - id: Ксеноархеология -- proto: SurveillanceCameraSecurity - entities: - - uid: 14889 + pos: -2.5,19.5 + parent: 2 + - uid: 19564 components: - type: Transform - rot: 3.141592653589793 rad - pos: 13.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Медпункт брига - - uid: 14952 + pos: 31.5,18.5 + parent: 2 + - uid: 19565 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-10.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Приемная брига - - uid: 15340 + pos: 30.5,18.5 + parent: 2 + - uid: 19566 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 17.5,-5.5 - parent: 89 - - uid: 16715 + pos: 32.5,20.5 + parent: 2 + - uid: 19567 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Комната снаряжения - - uid: 18151 + pos: 33.5,20.5 + parent: 2 + - uid: 19568 components: - type: Transform - pos: 35.5,-11.5 - parent: 89 - - uid: 19623 + pos: 5.5,16.5 + parent: 2 + - uid: 19569 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Допросная - - uid: 19628 + pos: 8.5,18.5 + parent: 2 + - uid: 19570 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: Оружейная - - uid: 24876 + pos: 6.5,16.5 + parent: 2 + - uid: 19571 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-21.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: прибытие каторги - - uid: 24877 + pos: 44.5,-16.5 + parent: 2 + - uid: 19572 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-9.5 - parent: 22565 - - uid: 24878 + pos: 65.5,-4.5 + parent: 2 + - uid: 19573 components: - type: Transform - pos: -11.5,1.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: пост сб каторги - - uid: 24879 + pos: 53.5,-6.5 + parent: 2 + - uid: 19574 components: - type: Transform - pos: -21.5,-0.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: левое сборочное крыло каторги - - uid: 24880 + pos: 44.5,-14.5 + parent: 2 + - uid: 19575 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,6.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: левые дормы каторги - - uid: 24881 + pos: 44.5,-13.5 + parent: 2 + - uid: 19576 components: - type: Transform - pos: -2.5,-0.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: правое сборочное крыло каторги - - uid: 24882 + pos: 44.5,-12.5 + parent: 2 + - uid: 19577 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,20.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: левый строительный док каторги - - uid: 24883 + pos: -2.5,5.5 + parent: 2 + - uid: 19578 + components: + - type: Transform + pos: 44.5,-11.5 + parent: 2 + - uid: 19579 + components: + - type: Transform + pos: -0.5,9.5 + parent: 2 + - uid: 19580 components: - type: Transform - rot: 1.5707963267948966 rad pos: -0.5,20.5 - parent: 22565 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSecurity - nameSet: True - id: правый строительный док каторги -- proto: SurveillanceCameraService - entities: - - uid: 19655 + parent: 2 + - uid: 19581 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,-8.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Морозильник - - uid: 19656 + pos: 19.5,23.5 + parent: 2 + - uid: 19582 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-3.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Ботаника - - uid: 19657 + pos: 5.5,30.5 + parent: 2 + - uid: 19583 components: - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Кухня - - uid: 19659 + pos: 9.5,42.5 + parent: 2 + - uid: 19584 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -35.5,-7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Раздевалка театра - - uid: 19660 + pos: 10.5,42.5 + parent: 2 + - uid: 19585 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,-0.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Бар - - uid: 19664 + pos: 5.5,29.5 + parent: 2 + - uid: 19586 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,-7.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraService - nameSet: True - id: Театр -- proto: SurveillanceCameraSupply - entities: - - uid: 71 + pos: 5.5,32.5 + parent: 2 + - uid: 19587 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -67.5,-13.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Склад - - uid: 91 + pos: 5.5,34.5 + parent: 2 + - uid: 19588 components: - type: Transform - pos: -65.5,-2.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Зал снабжения - - uid: 5856 + pos: -4.5,7.5 + parent: 2 + - uid: 19589 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -71.5,-11.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Комната отдыха - - uid: 5858 + pos: 17.5,23.5 + parent: 2 + - uid: 19590 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-15.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Офис квартирмейстера - - uid: 5859 + pos: 18.5,23.5 + parent: 2 + - uid: 19591 components: - type: Transform - rot: 3.141592653589793 rad - pos: -45.5,-19.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Выход в космос - - uid: 5860 + pos: 5.5,33.5 + parent: 2 + - uid: 19592 + components: + - type: Transform + pos: 6.5,37.5 + parent: 2 + - uid: 19593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -52.5,-12.5 - parent: 89 - - type: SurveillanceCamera - setupAvailableNetworks: - - SurveillanceCameraSupply - nameSet: True - id: Утилизаторская -- proto: SurveillanceCameraWirelessRouterBase - entities: - - uid: 9086 + pos: 32.5,18.5 + parent: 2 + - uid: 19594 components: - type: Transform - pos: -106.5,26.5 - parent: 89 -- proto: SurveillanceCameraWirelessRouterEntertainment - entities: - - uid: 9085 + pos: 11.5,-8.5 + parent: 2 + - uid: 19595 components: - type: Transform - pos: -105.5,26.5 - parent: 89 -- proto: SurveillanceWirelessCameraMovableEntertainment - entities: - - uid: 10855 + rot: -1.5707963267948966 rad + pos: 33.5,-12.5 + parent: 2 + - uid: 19596 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,7.5 - parent: 89 - - uid: 15590 + rot: -1.5707963267948966 rad + pos: 30.5,-12.5 + parent: 2 + - uid: 19597 components: - type: Transform - pos: -23.5,9.5 - parent: 89 -- proto: SurvivalKnife - entities: - - uid: 18010 + pos: 8.5,20.5 + parent: 2 + - uid: 19598 components: - type: Transform - pos: 9.49861,-25.506388 - parent: 89 -- proto: SyndicatePersonalAI - entities: - - uid: 3425 + rot: 1.5707963267948966 rad + pos: -10.5,17.5 + parent: 2 + - uid: 19599 components: - type: Transform - pos: -88.7376,27.498827 - parent: 89 -- proto: SyndiPDA - entities: - - uid: 10133 + pos: -0.5,8.5 + parent: 2 + - uid: 19600 + components: + - type: Transform + pos: -8.5,17.5 + parent: 2 + - uid: 19601 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.52689,26.55105 - parent: 89 -- proto: Syringe - entities: - - uid: 11206 + pos: -1.5,15.5 + parent: 2 + - uid: 19602 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11201 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11211 + pos: 21.5,-3.5 + parent: 2 + - uid: 19603 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11201 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11305 + pos: 34.5,20.5 + parent: 2 + - uid: 19604 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11304 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 11306 + pos: -1.5,5.5 + parent: 2 + - uid: 19605 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - parent: 11304 - - type: Tag - tags: - - Syringe - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 15636 + pos: -3.5,5.5 + parent: 2 + - uid: 19606 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - pos: 23.236977,27.759844 - parent: 89 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - uid: 15681 + pos: -86.5,-14.5 + parent: 2 + - uid: 19607 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - pos: 23.252602,27.759844 - parent: 89 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 - - uid: 15696 + pos: -96.5,-6.5 + parent: 2 + - uid: 19608 components: - - type: MetaData - name: шприц с успокоительным - type: Transform - pos: 23.268227,27.791094 - parent: 89 - - type: Tag - tags: [] - - type: SolutionContainerManager - solutions: - injector: - temperature: 293.15 - canMix: False - canReact: True - maxVol: 15 - name: null - reagents: - - data: null - ReagentId: ChloralHydrate - Quantity: 15 -- proto: Table - entities: - - uid: 83 + pos: -96.5,-5.5 + parent: 2 + - uid: 19609 components: - type: Transform - pos: 2.5,19.5 - parent: 89 - - uid: 130 + pos: -96.5,-4.5 + parent: 2 + - uid: 19610 components: - type: Transform - pos: -29.5,-17.5 - parent: 89 - - uid: 140 + pos: -104.5,7.5 + parent: 2 + - uid: 24242 components: - type: Transform - pos: -37.5,-17.5 - parent: 89 - - uid: 147 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23919 + - uid: 24243 components: - type: Transform - pos: 2.5,17.5 - parent: 89 - - uid: 150 + rot: 1.5707963267948966 rad + pos: 3.5,-7.5 + parent: 23919 + - uid: 24244 components: - type: Transform - pos: -5.5,-15.5 - parent: 89 - - uid: 151 + rot: 3.141592653589793 rad + pos: 4.5,3.5 + parent: 23919 + - uid: 24245 components: - type: Transform - pos: -5.5,-16.5 - parent: 89 - - uid: 152 + rot: 3.141592653589793 rad + pos: 5.5,3.5 + parent: 23919 + - uid: 26823 components: - type: Transform - pos: -5.5,-17.5 - parent: 89 - - uid: 153 + pos: -13.5,-27.5 + parent: 24450 + - uid: 26824 components: - type: Transform - pos: -5.5,-18.5 - parent: 89 - - uid: 154 + pos: -9.5,7.5 + parent: 24450 + - uid: 26825 components: - type: Transform - pos: -6.5,-18.5 - parent: 89 - - uid: 160 + pos: -14.5,4.5 + parent: 24450 + - uid: 26826 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,27.5 - parent: 89 - - uid: 164 + pos: -11.5,7.5 + parent: 24450 + - uid: 26827 components: - type: Transform - pos: 1.5,-30.5 - parent: 89 - - uid: 165 + pos: -14.5,7.5 + parent: 24450 + - uid: 27891 components: - type: Transform - pos: 1.5,-29.5 - parent: 89 - - uid: 190 + rot: 1.5707963267948966 rad + pos: 4.5,-13.5 + parent: 27260 + - uid: 27892 components: - type: Transform - pos: 4.5,-19.5 - parent: 89 - - uid: 191 + pos: 5.5,-10.5 + parent: 27260 + - uid: 27893 components: - type: Transform - pos: 4.5,-20.5 - parent: 89 - - uid: 192 + rot: 1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 27260 + - uid: 27894 components: - type: Transform - pos: 4.5,-21.5 - parent: 89 - - uid: 193 + rot: 1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 27260 + - uid: 27895 components: - type: Transform - pos: 4.5,-22.5 - parent: 89 - - uid: 194 + pos: -1.5,-6.5 + parent: 27260 + - uid: 27896 components: - type: Transform - pos: 4.5,-18.5 - parent: 89 - - uid: 213 + pos: -1.5,-7.5 + parent: 27260 +- proto: TableReinforcedGlass + entities: + - uid: 19611 components: - type: Transform - pos: -12.5,-23.5 - parent: 89 - - uid: 214 + pos: 32.5,-5.5 + parent: 2 + - uid: 19612 components: - type: Transform - pos: -13.5,-23.5 - parent: 89 - - uid: 215 + pos: 31.5,-5.5 + parent: 2 + - uid: 19613 components: - type: Transform - pos: -15.5,-23.5 - parent: 89 - - uid: 216 + pos: 33.5,-5.5 + parent: 2 + - uid: 19614 components: - type: Transform - pos: -16.5,-23.5 - parent: 89 - - uid: 217 + pos: 33.5,-6.5 + parent: 2 + - uid: 19615 components: - type: Transform - pos: -18.5,-23.5 - parent: 89 - - uid: 218 + pos: 10.5,-0.5 + parent: 2 + - uid: 19616 components: - type: Transform - pos: -19.5,-23.5 - parent: 89 - - uid: 242 + pos: 12.5,-0.5 + parent: 2 + - uid: 19617 components: - type: Transform - pos: -6.5,-38.5 - parent: 89 - - uid: 243 + pos: 12.5,-1.5 + parent: 2 + - uid: 19618 components: - type: Transform - pos: -7.5,-38.5 - parent: 89 - - uid: 307 + pos: 15.5,-0.5 + parent: 2 + - uid: 19619 components: - type: Transform - pos: -14.5,-0.5 - parent: 89 - - uid: 308 + pos: 12.5,-3.5 + parent: 2 + - uid: 19620 components: - type: Transform - pos: -13.5,-0.5 - parent: 89 - - uid: 312 + pos: 13.5,-3.5 + parent: 2 + - uid: 19621 components: - type: Transform - pos: -12.5,-0.5 - parent: 89 - - uid: 1994 + pos: -98.5,-7.5 + parent: 2 + - uid: 19622 components: - type: Transform - pos: 42.5,10.5 - parent: 89 - - uid: 2528 + pos: -98.5,-8.5 + parent: 2 + - uid: 19623 components: - type: Transform - pos: 48.5,3.5 - parent: 89 - - uid: 2919 + pos: -98.5,-9.5 + parent: 2 + - uid: 19624 components: - type: Transform - pos: 27.5,-14.5 - parent: 89 - - uid: 2920 + pos: -98.5,-10.5 + parent: 2 + - uid: 19625 components: - type: Transform - pos: 24.5,-14.5 - parent: 89 - - uid: 2921 + rot: 1.5707963267948966 rad + pos: -10.5,21.5 + parent: 2 + - uid: 19626 components: - type: Transform - pos: 21.5,-14.5 - parent: 89 - - uid: 2922 + rot: 1.5707963267948966 rad + pos: -11.5,21.5 + parent: 2 + - uid: 19627 components: - type: Transform - pos: 18.5,-14.5 - parent: 89 - - uid: 2943 + rot: 1.5707963267948966 rad + pos: -10.5,19.5 + parent: 2 + - uid: 19628 components: - type: Transform - pos: -13.5,-2.5 - parent: 89 - - uid: 3029 + rot: 1.5707963267948966 rad + pos: -12.5,21.5 + parent: 2 +- proto: TableStone + entities: + - uid: 19629 components: - type: Transform - rot: 3.141592653589793 rad - pos: 15.5,-16.5 - parent: 89 - - uid: 3986 + pos: -34.5,24.5 + parent: 2 + - uid: 19630 components: - type: Transform - pos: -8.5,-8.5 - parent: 89 - - uid: 4867 + pos: -34.5,23.5 + parent: 2 + - uid: 27897 components: - type: Transform - pos: -11.5,-0.5 - parent: 89 - - uid: 5138 + rot: 3.141592653589793 rad + pos: -4.5,-4.5 + parent: 27260 +- proto: TableWeb + entities: + - uid: 19631 components: - type: Transform - pos: -61.5,-4.5 - parent: 89 - - uid: 5139 + rot: 3.141592653589793 rad + pos: 40.5,22.5 + parent: 2 +- proto: TableWood + entities: + - uid: 19632 components: - type: Transform - pos: -61.5,-5.5 - parent: 89 - - uid: 5794 + pos: -23.5,9.5 + parent: 2 + - uid: 19633 components: - type: Transform rot: 3.141592653589793 rad - pos: -132.5,12.5 - parent: 89 - - uid: 5831 + pos: 58.5,-32.5 + parent: 2 + - uid: 19634 components: - type: Transform - pos: -71.5,-11.5 - parent: 89 - - uid: 5832 + rot: 3.141592653589793 rad + pos: 58.5,-33.5 + parent: 2 + - uid: 19635 components: - type: Transform - pos: -71.5,-12.5 - parent: 89 - - uid: 5834 + rot: 3.141592653589793 rad + pos: 57.5,-33.5 + parent: 2 + - uid: 19636 components: - type: Transform - pos: -50.5,-15.5 - parent: 89 - - uid: 5835 + pos: -24.5,-0.5 + parent: 2 + - uid: 19637 components: - type: Transform - pos: -50.5,-16.5 - parent: 89 - - uid: 6841 + pos: -25.5,-0.5 + parent: 2 + - uid: 19638 components: - type: Transform - pos: -35.5,9.5 - parent: 89 - - uid: 6910 + pos: 24.5,43.5 + parent: 2 + - uid: 19639 components: - type: Transform - pos: -102.5,-5.5 - parent: 89 - - uid: 6911 + pos: 44.5,5.5 + parent: 2 + - uid: 19640 components: - type: Transform - pos: -101.5,-5.5 - parent: 89 - - uid: 6927 + pos: 35.5,13.5 + parent: 2 + - uid: 19641 components: - type: Transform - pos: -96.5,-1.5 - parent: 89 - - uid: 6928 + pos: 34.5,14.5 + parent: 2 + - uid: 19642 components: - type: Transform - pos: -96.5,-2.5 - parent: 89 - - uid: 7036 + pos: 44.5,4.5 + parent: 2 + - uid: 19643 components: - type: Transform - pos: -93.5,17.5 - parent: 89 - - uid: 7037 + pos: 44.5,6.5 + parent: 2 + - uid: 19644 components: - type: Transform - pos: -94.5,17.5 - parent: 89 - - uid: 7038 + pos: 35.5,14.5 + parent: 2 + - uid: 19645 components: - type: Transform - pos: -95.5,17.5 - parent: 89 - - uid: 7077 + pos: 34.5,13.5 + parent: 2 + - uid: 19646 components: - type: Transform - pos: -90.5,13.5 - parent: 89 - - uid: 7078 + pos: 36.5,13.5 + parent: 2 + - uid: 19647 components: - type: Transform - pos: -90.5,12.5 - parent: 89 - - uid: 7373 + pos: 36.5,14.5 + parent: 2 + - uid: 19648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,29.5 - parent: 89 - - uid: 7414 + pos: 32.5,14.5 + parent: 2 + - uid: 19649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -87.5,26.5 - parent: 89 - - uid: 8201 + pos: 32.5,13.5 + parent: 2 + - uid: 19650 components: - type: Transform - pos: 0.5,27.5 - parent: 89 - - uid: 8202 + pos: 33.5,14.5 + parent: 2 + - uid: 19651 components: - type: Transform - pos: 1.5,27.5 - parent: 89 - - uid: 8397 + pos: 33.5,13.5 + parent: 2 + - uid: 19652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -119.5,11.5 - parent: 89 - - uid: 8696 + pos: -55.5,7.5 + parent: 2 + - uid: 19653 components: - type: Transform - pos: -91.5,6.5 - parent: 89 - - uid: 8698 + pos: -26.5,-8.5 + parent: 2 + - uid: 19654 components: - type: Transform - pos: -91.5,5.5 - parent: 89 - - uid: 8798 + pos: -31.5,-5.5 + parent: 2 + - uid: 19655 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,14.5 - parent: 89 - - uid: 8893 + pos: -31.5,-6.5 + parent: 2 + - uid: 19656 components: - type: Transform - rot: 3.141592653589793 rad - pos: -132.5,13.5 - parent: 89 - - uid: 9030 + pos: -30.5,0.5 + parent: 2 + - uid: 19657 components: - type: Transform - pos: -126.5,-10.5 - parent: 89 - - uid: 9494 + pos: -29.5,0.5 + parent: 2 + - uid: 19658 components: - type: Transform - pos: -41.5,7.5 - parent: 89 - - uid: 9497 + pos: -28.5,-2.5 + parent: 2 + - uid: 19659 components: - type: Transform - pos: -36.5,9.5 - parent: 89 - - uid: 10018 + pos: -33.5,-9.5 + parent: 2 + - uid: 19660 components: - type: Transform - pos: -13.5,-3.5 - parent: 89 - - uid: 10210 + pos: -33.5,-3.5 + parent: 2 + - uid: 19661 components: - type: Transform - pos: -34.5,28.5 - parent: 89 - - uid: 10211 + pos: -35.5,-5.5 + parent: 2 + - uid: 19662 components: - type: Transform - pos: -34.5,27.5 - parent: 89 - - uid: 10499 + pos: -26.5,-6.5 + parent: 2 + - uid: 19663 components: - type: Transform - pos: 13.5,5.5 - parent: 89 - - uid: 10500 + pos: 48.5,10.5 + parent: 2 + - uid: 19664 components: - type: Transform - pos: 14.5,5.5 - parent: 89 - - uid: 10503 + pos: 25.5,40.5 + parent: 2 + - uid: 19665 components: - type: Transform - pos: 14.5,6.5 - parent: 89 - - uid: 10958 + pos: -19.5,-2.5 + parent: 2 + - uid: 19666 components: - type: Transform - pos: -117.5,-14.5 - parent: 89 - - uid: 10966 + pos: -19.5,-3.5 + parent: 2 + - uid: 19667 components: - type: Transform - pos: 23.5,27.5 - parent: 89 - - uid: 10983 + pos: -19.5,-5.5 + parent: 2 + - uid: 19668 components: - type: Transform - pos: -34.5,5.5 - parent: 89 - - uid: 10984 + pos: -19.5,-6.5 + parent: 2 + - uid: 19669 components: - type: Transform - pos: -35.5,5.5 - parent: 89 - - uid: 10989 + pos: -22.5,-6.5 + parent: 2 + - uid: 19670 components: - type: Transform - pos: -57.5,12.5 - parent: 89 - - uid: 10994 + pos: 47.5,10.5 + parent: 2 + - uid: 19671 components: - type: Transform - pos: -56.5,12.5 - parent: 89 - - uid: 11023 + pos: -50.5,9.5 + parent: 2 + - uid: 19672 components: - type: Transform - pos: -56.5,5.5 - parent: 89 - - uid: 11024 + pos: -49.5,9.5 + parent: 2 + - uid: 19673 components: - type: Transform - pos: -55.5,5.5 - parent: 89 - - uid: 11027 + pos: -48.5,-7.5 + parent: 2 + - uid: 19674 components: - type: Transform - pos: -61.5,5.5 - parent: 89 - - uid: 11028 + pos: -72.5,-17.5 + parent: 2 + - uid: 19675 components: - type: Transform - pos: -70.5,5.5 - parent: 89 - - uid: 11339 + pos: -71.5,-17.5 + parent: 2 + - uid: 19676 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,1.5 - parent: 89 - - uid: 11340 + pos: -48.5,11.5 + parent: 2 + - uid: 19677 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,2.5 - parent: 89 - - uid: 11380 + pos: -45.5,11.5 + parent: 2 + - uid: 19678 components: - type: Transform - pos: 15.5,-12.5 - parent: 89 - - uid: 12007 + pos: -35.5,-7.5 + parent: 2 + - uid: 19679 components: - type: Transform - pos: -1.5,-41.5 - parent: 89 - - uid: 12627 + pos: -35.5,-9.5 + parent: 2 + - uid: 19680 components: - type: Transform - pos: -126.5,-9.5 - parent: 89 - - uid: 12738 + pos: -35.5,-3.5 + parent: 2 + - uid: 19681 components: - type: Transform - pos: 8.5,9.5 - parent: 89 - - uid: 12739 + pos: -8.5,45.5 + parent: 2 + - uid: 19682 components: - type: Transform - pos: 9.5,9.5 - parent: 89 - - uid: 12740 + pos: -8.5,44.5 + parent: 2 + - uid: 19683 components: - type: Transform - pos: 9.5,8.5 - parent: 89 - - uid: 12747 + pos: 1.5,45.5 + parent: 2 + - uid: 19684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,5.5 - parent: 89 - - uid: 12752 + pos: 1.5,44.5 + parent: 2 + - uid: 19685 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,5.5 - parent: 89 - - uid: 12772 + pos: -5.5,33.5 + parent: 2 + - uid: 19686 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,5.5 - parent: 89 - - uid: 12833 + pos: -5.5,32.5 + parent: 2 + - uid: 19687 components: - type: Transform - pos: 15.5,11.5 - parent: 89 - - uid: 12844 + pos: 19.5,18.5 + parent: 2 + - uid: 19688 components: - type: Transform - pos: 20.5,12.5 - parent: 89 - - uid: 12966 + pos: -34.5,32.5 + parent: 2 + - uid: 19689 components: - type: Transform - pos: -113.5,-5.5 - parent: 89 - - uid: 12967 + pos: -34.5,31.5 + parent: 2 + - uid: 19690 components: - type: Transform - pos: -113.5,-8.5 - parent: 89 - - uid: 13732 + pos: -78.5,-1.5 + parent: 2 + - uid: 19691 components: - type: Transform - pos: -113.5,-7.5 - parent: 89 - - uid: 14595 + pos: -73.5,-1.5 + parent: 2 + - uid: 19692 components: - type: Transform - pos: -91.5,25.5 - parent: 89 - - uid: 14596 + pos: -79.5,-1.5 + parent: 2 + - uid: 19693 components: - type: Transform - pos: -91.5,24.5 - parent: 89 - - uid: 14597 + pos: -74.5,-1.5 + parent: 2 + - uid: 19694 components: - type: Transform - pos: -91.5,23.5 - parent: 89 - - uid: 14719 + pos: -38.5,29.5 + parent: 2 + - uid: 19695 components: - type: Transform - pos: 15.5,-15.5 - parent: 89 - - uid: 14761 + pos: -36.5,29.5 + parent: 2 + - uid: 19696 components: - type: Transform - pos: -75.5,13.5 - parent: 89 - - uid: 14762 + pos: -23.5,27.5 + parent: 2 + - uid: 19697 components: - type: Transform - pos: -75.5,12.5 - parent: 89 - - uid: 14784 + pos: -23.5,28.5 + parent: 2 + - uid: 19698 components: - type: Transform - pos: -44.5,21.5 - parent: 89 - - uid: 14795 + pos: -23.5,29.5 + parent: 2 + - uid: 19699 components: - type: Transform - pos: 2.5,21.5 - parent: 89 - - uid: 14946 + pos: -22.5,29.5 + parent: 2 + - uid: 19700 components: - type: Transform - pos: 48.5,-30.5 - parent: 89 - - uid: 15046 + pos: -19.5,29.5 + parent: 2 + - uid: 19701 components: - type: Transform - pos: 24.5,12.5 - parent: 89 - - uid: 15202 + pos: -19.5,28.5 + parent: 2 + - uid: 19702 components: - type: Transform - pos: 23.5,29.5 - parent: 89 - - uid: 15204 + pos: -19.5,27.5 + parent: 2 + - uid: 19703 components: - type: Transform - pos: 25.5,29.5 - parent: 89 - - uid: 15239 + pos: 4.5,-1.5 + parent: 2 + - uid: 19704 components: - type: Transform - pos: 24.5,13.5 - parent: 89 - - uid: 15241 + pos: 22.5,8.5 + parent: 2 + - uid: 19705 components: - type: Transform - pos: 27.5,31.5 - parent: 89 - - uid: 15250 + pos: 20.5,5.5 + parent: 2 + - uid: 19706 components: - type: Transform - pos: 21.5,31.5 - parent: 89 - - uid: 15278 + pos: 20.5,6.5 + parent: 2 + - uid: 19707 components: - type: Transform - pos: -115.5,15.5 - parent: 89 - - uid: 15282 + pos: 20.5,7.5 + parent: 2 + - uid: 19708 components: - type: Transform - pos: -115.5,14.5 - parent: 89 - - uid: 15294 + pos: 18.5,8.5 + parent: 2 + - uid: 19709 components: - type: Transform - pos: 2.5,15.5 - parent: 89 - - uid: 15354 + pos: 18.5,11.5 + parent: 2 + - uid: 19710 components: - type: Transform - pos: 26.5,13.5 - parent: 89 - - uid: 15355 + pos: -37.5,29.5 + parent: 2 + - uid: 19711 components: - type: Transform - pos: 25.5,13.5 - parent: 89 - - uid: 15474 + pos: 18.5,5.5 + parent: 2 + - uid: 19712 components: - type: Transform - pos: 26.5,20.5 - parent: 89 - - uid: 15487 + pos: 17.5,5.5 + parent: 2 + - uid: 19713 components: - type: Transform - pos: -89.5,6.5 - parent: 89 - - uid: 15488 + rot: 3.141592653589793 rad + pos: -72.5,-5.5 + parent: 2 + - uid: 19714 components: - type: Transform - pos: -84.5,4.5 - parent: 89 - - uid: 15489 + rot: 3.141592653589793 rad + pos: -76.5,-5.5 + parent: 2 + - uid: 19715 components: - type: Transform - pos: -85.5,1.5 - parent: 89 - - uid: 15507 + rot: 3.141592653589793 rad + pos: -75.5,-5.5 + parent: 2 + - uid: 19716 components: - type: Transform - pos: -74.5,7.5 - parent: 89 - - uid: 15508 + pos: -80.5,-9.5 + parent: 2 + - uid: 19717 components: - type: Transform - pos: -73.5,7.5 - parent: 89 - - uid: 15512 + pos: -79.5,-9.5 + parent: 2 + - uid: 19718 components: - type: Transform - pos: -46.5,13.5 - parent: 89 - - uid: 15554 + pos: 6.5,-26.5 + parent: 2 + - uid: 19719 components: - type: Transform - pos: 16.5,12.5 - parent: 89 - - uid: 15689 + pos: 6.5,-25.5 + parent: 2 + - uid: 19720 components: - type: Transform - pos: 16.5,11.5 - parent: 89 - - uid: 15721 + pos: 7.5,-25.5 + parent: 2 + - uid: 19721 components: - type: Transform - pos: -113.5,-13.5 - parent: 89 - - uid: 15866 + pos: 7.5,-26.5 + parent: 2 + - uid: 19722 components: - type: Transform - pos: -117.5,-15.5 - parent: 89 - - uid: 16408 + rot: 1.5707963267948966 rad + pos: -10.5,-36.5 + parent: 2 + - uid: 19723 components: - type: Transform - pos: -119.5,-15.5 - parent: 89 - - uid: 16409 + pos: 19.5,17.5 + parent: 2 + - uid: 19724 components: - type: Transform - pos: -118.5,-15.5 - parent: 89 - - uid: 16422 + pos: 58.5,-31.5 + parent: 2 + - uid: 19725 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -123.5,-13.5 - parent: 89 - - uid: 16439 + pos: -34.5,-14.5 + parent: 2 + - uid: 19726 components: - type: Transform - pos: -113.5,-4.5 - parent: 89 - - uid: 16463 + pos: -23.5,-6.5 + parent: 2 + - uid: 19727 components: - type: Transform - pos: -100.5,2.5 - parent: 89 - - uid: 16464 + pos: 55.5,-33.5 + parent: 2 + - uid: 19728 components: - type: Transform - pos: -99.5,2.5 - parent: 89 - - uid: 16604 + pos: 56.5,-33.5 + parent: 2 + - uid: 19729 components: - type: Transform - pos: -10.5,24.5 - parent: 89 - - uid: 16619 + pos: 57.5,-31.5 + parent: 2 + - uid: 19730 components: - type: Transform - pos: -11.5,24.5 - parent: 89 - - uid: 16718 + pos: -25.5,9.5 + parent: 2 + - uid: 19731 components: - type: Transform - pos: -115.5,13.5 - parent: 89 - - uid: 16864 + pos: -1.5,39.5 + parent: 2 + - uid: 19732 components: - type: Transform - pos: -3.5,-41.5 - parent: 89 - - type: Construction - edge: 0 - - uid: 16908 + rot: 1.5707963267948966 rad + pos: 18.5,21.5 + parent: 2 + - uid: 19733 components: - type: Transform - pos: -12.5,-19.5 - parent: 89 - - uid: 16930 + pos: 45.5,-37.5 + parent: 2 + - uid: 19734 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,-25.5 - parent: 89 - - uid: 16931 + pos: 5.5,-1.5 + parent: 2 + - uid: 19735 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-25.5 - parent: 89 - - uid: 16940 + pos: 3.5,-1.5 + parent: 2 + - uid: 19736 components: - type: Transform - pos: -9.5,-16.5 - parent: 89 - - uid: 16941 + pos: -23.5,8.5 + parent: 2 + - uid: 26828 components: - type: Transform - pos: -10.5,-16.5 - parent: 89 - - uid: 16956 + pos: -14.5,-24.5 + parent: 24450 +- proto: TargetClown + entities: + - uid: 19737 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-20.5 - parent: 89 - - uid: 16958 + rot: -1.5707963267948966 rad + pos: 51.5,-12.5 + parent: 2 +- proto: TargetHuman + entities: + - uid: 19738 components: - type: Transform - pos: -2.5,-28.5 - parent: 89 - - uid: 16959 + rot: -1.5707963267948966 rad + pos: 48.5,-11.5 + parent: 2 + - uid: 19739 components: - type: Transform - pos: -0.5,-28.5 - parent: 89 - - uid: 16962 + rot: -1.5707963267948966 rad + pos: 47.5,-16.5 + parent: 2 + - uid: 19740 components: - type: Transform - pos: -14.5,-21.5 - parent: 89 - - uid: 17166 + rot: -1.5707963267948966 rad + pos: 48.5,-18.5 + parent: 2 +- proto: TargetStrange + entities: + - uid: 19741 components: - type: Transform - pos: -41.5,-12.5 - parent: 89 - - uid: 17176 + rot: -1.5707963267948966 rad + pos: 49.5,-19.5 + parent: 2 + - uid: 19742 components: - type: Transform - pos: -41.5,-10.5 - parent: 89 - - uid: 17180 + rot: -1.5707963267948966 rad + pos: 50.5,-14.5 + parent: 2 +- proto: TargetSyndicate + entities: + - uid: 19743 components: - type: Transform - pos: -41.5,-11.5 - parent: 89 - - uid: 17298 + rot: -1.5707963267948966 rad + pos: 52.5,-15.5 + parent: 2 +- proto: TearGasGrenade + entities: + - uid: 1125 components: - type: Transform - pos: -3.5,-1.5 - parent: 89 - - uid: 17299 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1126 components: - type: Transform - pos: -3.5,-2.5 - parent: 89 - - uid: 18295 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 1127 components: - type: Transform - pos: 48.5,-28.5 - parent: 89 - - uid: 18318 + parent: 1115 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27309 components: - type: Transform - pos: 46.5,-25.5 - parent: 89 - - uid: 18341 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27310 components: - type: Transform - pos: 45.5,-30.5 - parent: 89 - - uid: 18442 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27311 components: - type: Transform - pos: -98.5,9.5 - parent: 89 - - uid: 18449 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27312 components: - type: Transform - pos: -126.5,16.5 - parent: 89 - - uid: 18450 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 27313 components: - type: Transform - pos: -9.5,20.5 - parent: 89 - - uid: 18453 + parent: 27297 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TegCenter + entities: + - uid: 19744 components: - type: Transform - pos: -99.5,9.5 - parent: 89 - - uid: 18455 + pos: -115.5,-19.5 + parent: 2 + - type: ApcPowerReceiver + powerDisabled: True +- proto: TegCirculator + entities: + - uid: 19745 components: - type: Transform - pos: -108.5,-19.5 - parent: 89 - - uid: 18456 + pos: -114.5,-20.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' + - uid: 19746 components: - type: Transform - pos: -107.5,-19.5 - parent: 89 - - uid: 19558 + pos: -111.5,-20.5 + parent: 2 + - type: PointLight + color: '#FF3300FF' +- proto: TelecomServer + entities: + - uid: 10854 components: - type: Transform - pos: -83.5,19.5 - parent: 89 - - uid: 19577 + pos: -111.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10855 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10856 components: - type: Transform - pos: -2.5,-41.5 - parent: 89 - - type: Construction - edge: 0 - - uid: 19594 + pos: -108.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10857 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10858 components: - type: Transform - pos: -126.5,-8.5 - parent: 89 - - uid: 19611 + pos: -112.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10859 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10860 components: - type: Transform - pos: -26.5,-22.5 - parent: 89 - - uid: 19612 + pos: -112.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10861 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10862 components: - type: Transform - pos: -26.5,-21.5 - parent: 89 - - uid: 19613 + pos: -109.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10863 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10864 components: - type: Transform - pos: -26.5,-19.5 - parent: 89 - - uid: 19725 + pos: -108.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10865 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10866 components: - type: Transform - pos: -119.5,12.5 - parent: 89 - - uid: 19813 + pos: -111.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10867 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10868 components: - type: Transform - pos: 28.5,13.5 - parent: 89 - - uid: 19830 + pos: -110.5,24.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10869 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10870 components: - type: Transform - pos: -126.5,17.5 - parent: 89 - - uid: 19876 + pos: -109.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10871 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 10872 components: - type: Transform - pos: 22.5,36.5 - parent: 89 - - uid: 19877 + pos: -110.5,26.5 + parent: 2 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 10873 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 24105 components: - type: Transform - pos: 22.5,35.5 - parent: 89 - - uid: 19878 + pos: 6.5,1.5 + parent: 23919 + - type: ContainerContainer + containers: + key_slots: !type:Container + showEnts: False + occludes: True + ents: + - 24106 + machine_board: !type:Container + showEnts: False + occludes: True + ents: [] + machine_parts: !type:Container + showEnts: False + occludes: True + ents: [] + - uid: 26829 components: - type: Transform - pos: 26.5,37.5 - parent: 89 - - uid: 19879 + pos: -2.5,-17.5 + parent: 24450 +- proto: TelecomServerCircuitboard + entities: + - uid: 19747 components: - type: Transform - pos: 26.5,36.5 - parent: 89 - - uid: 19880 + rot: 1.5707963267948966 rad + pos: -102.92861,21.657013 + parent: 2 +- proto: Telecrystal5 + entities: + - uid: 19748 components: - type: Transform - pos: 25.5,36.5 - parent: 89 - - uid: 20078 + pos: -114.7323,20.73551 + parent: 2 +- proto: TeslaCoil + entities: + - uid: 19749 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,6.5 - parent: 89 - - uid: 20080 + rot: -1.5707963267948966 rad + pos: -117.5,-6.5 + parent: 2 + - uid: 19750 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,5.5 - parent: 89 - - uid: 20383 + rot: -1.5707963267948966 rad + pos: -118.5,-7.5 + parent: 2 + - uid: 19751 components: - type: Transform - pos: 48.5,-24.5 - parent: 89 - - uid: 21062 + rot: -1.5707963267948966 rad + pos: -118.5,-6.5 + parent: 2 + - uid: 19752 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-21.5 - parent: 89 - - uid: 21088 + pos: -117.5,-5.5 + parent: 2 + - uid: 19753 components: - type: Transform - pos: -18.5,-0.5 - parent: 89 - - uid: 21362 + rot: -1.5707963267948966 rad + pos: -118.5,-5.5 + parent: 2 + - uid: 19754 components: - type: Transform - pos: 47.5,-28.5 - parent: 89 - - uid: 21366 + rot: -1.5707963267948966 rad + pos: -117.5,-7.5 + parent: 2 +- proto: TeslaGroundingRod + entities: + - uid: 19755 components: - type: Transform - pos: 46.5,-26.5 - parent: 89 - - uid: 21372 + rot: -1.5707963267948966 rad + pos: -122.5,-6.5 + parent: 2 + - uid: 19756 components: - type: Transform - pos: 47.5,-24.5 - parent: 89 - - uid: 21513 + rot: -1.5707963267948966 rad + pos: -122.5,-5.5 + parent: 2 + - uid: 19757 components: - type: Transform - pos: 46.5,-24.5 - parent: 89 - - uid: 21755 + rot: -1.5707963267948966 rad + pos: -121.5,-5.5 + parent: 2 + - uid: 19758 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-21.5 - parent: 89 - - uid: 21812 + pos: -121.5,-6.5 + parent: 2 +- proto: ThermomachineFreezerMachineCircuitBoard + entities: + - uid: 19759 components: - type: Transform - pos: 46.5,-28.5 - parent: 89 - - uid: 21827 + pos: -105.65808,-7.229766 + parent: 2 +- proto: ThermomachineHeaterMachineCircuitBoard + entities: + - uid: 19760 components: - type: Transform - pos: 51.5,-30.5 - parent: 89 - - uid: 22204 + pos: -105.329956,-7.557891 + parent: 2 +- proto: Thruster + entities: + - uid: 19761 components: - type: Transform rot: 1.5707963267948966 rad - pos: -131.5,-2.5 - parent: 89 - - uid: 22370 + pos: -152.5,-13.5 + parent: 2 + - uid: 19762 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-27.5 - parent: 89 - - uid: 22414 + rot: 3.141592653589793 rad + pos: -136.5,-16.5 + parent: 2 + - uid: 19763 components: - type: Transform - pos: 54.5,-13.5 - parent: 89 - - uid: 24884 + rot: 3.141592653589793 rad + pos: -149.5,-16.5 + parent: 2 + - uid: 19764 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -31.5,1.5 - parent: 22565 - - uid: 24885 + rot: 1.5707963267948966 rad + pos: -152.5,-8.5 + parent: 2 + - uid: 19765 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,11.5 - parent: 22565 - - uid: 24886 + rot: 1.5707963267948966 rad + pos: -152.5,-2.5 + parent: 2 + - uid: 19766 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,1.5 - parent: 22565 - - uid: 24887 + pos: -143.5,1.5 + parent: 2 + - uid: 19767 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,1.5 - parent: 22565 - - uid: 24888 + pos: -149.5,1.5 + parent: 2 + - uid: 19768 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,2.5 - parent: 22565 - - uid: 24889 + pos: -142.5,-16.5 + parent: 2 + - uid: 19769 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,2.5 - parent: 22565 - - uid: 24890 + pos: -136.5,1.5 + parent: 2 + - uid: 23879 components: - type: Transform rot: 3.141592653589793 rad - pos: 5.5,1.5 - parent: 22565 - - uid: 24891 + pos: 3.5,-13.5 + parent: 23711 + - uid: 23880 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,1.5 - parent: 22565 - - uid: 24892 + pos: 6.5,-2.5 + parent: 23711 + - uid: 23881 components: - type: Transform rot: 3.141592653589793 rad - pos: 7.5,1.5 - parent: 22565 - - uid: 24893 + pos: 4.5,-13.5 + parent: 23711 + - uid: 23882 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,11.5 - parent: 22565 - - uid: 24894 + pos: 0.5,-2.5 + parent: 23711 + - uid: 23883 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,5.5 - parent: 22565 - - uid: 24895 + rot: 1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 23711 + - uid: 23884 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,9.5 - parent: 22565 - - uid: 24896 + pos: 2.5,-13.5 + parent: 23711 + - uid: 23885 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-13.5 + parent: 23711 + - uid: 24246 components: - type: Transform rot: 3.141592653589793 rad - pos: -35.5,11.5 - parent: 22565 - - uid: 24897 + pos: 1.5,-11.5 + parent: 23919 + - uid: 24247 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,11.5 - parent: 22565 - - uid: 24898 + pos: 0.5,-11.5 + parent: 23919 + - uid: 24248 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,9.5 - parent: 22565 - - uid: 24899 + pos: 7.5,-11.5 + parent: 23919 + - uid: 24249 + components: + - type: Transform + pos: 0.5,-2.5 + parent: 23919 + - type: Thruster + thrust: 300 + - uid: 24250 components: - type: Transform rot: 3.141592653589793 rad - pos: 11.5,5.5 - parent: 22565 - - uid: 24900 + pos: 8.5,-11.5 + parent: 23919 + - uid: 24251 components: - type: Transform - pos: -4.5,7.5 - parent: 22565 - - uid: 24901 + pos: 8.5,-2.5 + parent: 23919 + - type: Thruster + thrust: 300 + - uid: 24252 components: - type: Transform - pos: 1.5,7.5 - parent: 22565 - - uid: 24902 + rot: 1.5707963267948966 rad + pos: 0.5,-5.5 + parent: 23919 + - uid: 24253 components: - type: Transform - pos: -5.5,7.5 - parent: 22565 - - uid: 24903 + rot: -1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 23919 + - uid: 24423 components: - type: Transform - pos: -3.5,7.5 - parent: 22565 - - uid: 24904 + pos: 2.5,0.5 + parent: 24340 + - uid: 24424 components: - type: Transform - pos: -18.5,7.5 - parent: 22565 - - uid: 24905 + pos: -1.5,0.5 + parent: 24340 + - uid: 24425 components: - type: Transform - pos: -19.5,7.5 - parent: 22565 - - uid: 24906 + rot: 3.141592653589793 rad + pos: 2.5,-6.5 + parent: 24340 + - uid: 24426 components: - type: Transform - pos: -0.5,7.5 - parent: 22565 - - uid: 24907 + rot: 3.141592653589793 rad + pos: -1.5,-6.5 + parent: 24340 + - uid: 24427 components: - type: Transform - pos: 0.5,7.5 - parent: 22565 - - uid: 24908 + rot: -1.5707963267948966 rad + pos: 2.5,-4.5 + parent: 24340 + - uid: 24428 components: - type: Transform - pos: -20.5,7.5 - parent: 22565 - - uid: 24909 + rot: 1.5707963267948966 rad + pos: -1.5,-4.5 + parent: 24340 + - uid: 26830 components: - type: Transform - pos: -23.5,7.5 - parent: 22565 - - uid: 24910 + rot: 3.141592653589793 rad + pos: -23.5,25.5 + parent: 24450 + - uid: 27898 components: - type: Transform - pos: -25.5,7.5 - parent: 22565 - - uid: 24911 + rot: 3.141592653589793 rad + pos: 2.5,-15.5 + parent: 27260 + - uid: 27899 components: - type: Transform - pos: -24.5,7.5 - parent: 22565 - - uid: 24912 + rot: -1.5707963267948966 rad + pos: 8.5,-15.5 + parent: 27260 + - uid: 27900 components: - type: Transform - pos: 3.5,11.5 - parent: 22565 - - uid: 24913 + pos: -6.5,1.5 + parent: 27260 + - uid: 27901 components: - type: Transform - pos: 4.5,11.5 - parent: 22565 - - uid: 25575 + pos: 7.5,1.5 + parent: 27260 + - uid: 27902 components: - type: Transform rot: 3.141592653589793 rad - pos: 2.5,-2.5 - parent: 18153 - - uid: 25677 + pos: -1.5,-15.5 + parent: 27260 + - uid: 27903 components: - type: Transform rot: 1.5707963267948966 rad - pos: 21.5,-17.5 - parent: 89 - - uid: 25678 + pos: -7.5,-15.5 + parent: 27260 +- proto: TintedWindow + entities: + - uid: 19770 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 22.5,-17.5 - parent: 89 - - uid: 25846 + pos: -2.5,11.5 + parent: 2 + - uid: 19771 components: - type: Transform - pos: -25.5,16.5 - parent: 89 -- proto: TableCarpet - entities: - - uid: 108 + pos: 5.5,15.5 + parent: 2 + - uid: 19772 components: - type: Transform - pos: -44.5,-17.5 - parent: 89 - - uid: 109 + pos: 6.5,15.5 + parent: 2 + - uid: 19773 components: - type: Transform - pos: -44.5,-16.5 - parent: 89 - - uid: 110 + pos: 1.5,9.5 + parent: 2 + - uid: 19774 components: - type: Transform - pos: -43.5,-17.5 - parent: 89 - - uid: 4688 + pos: 1.5,8.5 + parent: 2 + - uid: 19775 components: - type: Transform - pos: -35.5,-0.5 - parent: 89 - - uid: 4690 + pos: -7.5,19.5 + parent: 2 + - uid: 19776 components: - type: Transform - pos: -36.5,-0.5 - parent: 89 - - uid: 5416 + pos: -7.5,20.5 + parent: 2 + - uid: 19777 components: - type: Transform - pos: -44.5,8.5 - parent: 89 - - uid: 5424 + pos: -48.5,-5.5 + parent: 2 + - uid: 19778 components: - type: Transform - pos: -45.5,8.5 - parent: 89 - - uid: 7880 + pos: -38.5,-0.5 + parent: 2 + - uid: 19779 components: - type: Transform - pos: -7.5,41.5 - parent: 89 - - uid: 7881 + pos: 1.5,6.5 + parent: 2 + - uid: 19780 components: - type: Transform - pos: -7.5,40.5 - parent: 89 - - uid: 7886 + pos: 1.5,5.5 + parent: 2 + - uid: 19781 components: - type: Transform - pos: -6.5,40.5 - parent: 89 - - uid: 14628 + pos: -50.5,-5.5 + parent: 2 + - uid: 19782 components: - type: Transform - pos: -98.5,17.5 - parent: 89 - - uid: 14629 + pos: -52.5,-5.5 + parent: 2 + - uid: 19783 components: - type: Transform - pos: -97.5,17.5 - parent: 89 - - uid: 17289 + pos: -2.5,13.5 + parent: 2 +- proto: ToiletDirtyWater + entities: + - uid: 19784 components: - type: Transform - pos: -51.5,48.5 - parent: 89 - - uid: 17290 + rot: 3.141592653589793 rad + pos: -27.5,11.5 + parent: 2 + - uid: 19785 components: - type: Transform - pos: -51.5,47.5 - parent: 89 - - uid: 18427 + rot: 3.141592653589793 rad + pos: -21.5,11.5 + parent: 2 + - uid: 19786 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -23.5,11.5 + parent: 2 + - uid: 19787 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -25.5,11.5 + parent: 2 + - uid: 19788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,39.5 + parent: 2 + - uid: 19789 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,43.5 + parent: 2 + - uid: 19790 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,32.5 - parent: 89 - - uid: 19998 + pos: -23.5,31.5 + parent: 2 + - uid: 19791 components: - type: Transform rot: 1.5707963267948966 rad - pos: -27.5,33.5 - parent: 89 -- proto: TableCounterMetal - entities: - - uid: 920 + pos: -37.5,32.5 + parent: 2 + - uid: 19792 components: - type: Transform - pos: 54.5,4.5 - parent: 89 -- proto: TableCounterWood - entities: - - uid: 6036 + pos: 32.5,26.5 + parent: 2 + - uid: 19793 components: - type: Transform - pos: -52.5,8.5 - parent: 89 - - uid: 6037 + pos: 30.5,26.5 + parent: 2 + - uid: 19794 components: - type: Transform - pos: -52.5,7.5 - parent: 89 - - uid: 6146 + rot: 3.141592653589793 rad + pos: 49.5,-33.5 + parent: 2 + - uid: 19795 components: - type: Transform - pos: -76.5,-2.5 - parent: 89 - - uid: 7736 + rot: 3.141592653589793 rad + pos: 51.5,-33.5 + parent: 2 + - uid: 19796 components: - type: Transform - pos: -1.5,45.5 - parent: 89 - - uid: 7737 + rot: 3.141592653589793 rad + pos: 47.5,-33.5 + parent: 2 + - uid: 19797 components: - type: Transform - pos: -5.5,45.5 - parent: 89 - - uid: 7738 + rot: 3.141592653589793 rad + pos: 53.5,-33.5 + parent: 2 + - uid: 26831 components: - type: Transform - pos: -5.5,46.5 - parent: 89 - - uid: 7739 + pos: -13.5,-19.5 + parent: 24450 + - uid: 26832 components: - type: Transform - pos: -1.5,46.5 - parent: 89 - - uid: 7740 + rot: -1.5707963267948966 rad + pos: 11.5,3.5 + parent: 24450 + - uid: 26833 components: - type: Transform - pos: -1.5,44.5 - parent: 89 - - uid: 7743 + rot: 1.5707963267948966 rad + pos: -35.5,3.5 + parent: 24450 +- proto: ToiletEmpty + entities: + - uid: 19798 components: - type: Transform - pos: -5.5,44.5 - parent: 89 - - uid: 9989 + pos: 41.5,17.5 + parent: 2 +- proto: ToolboxElectrical + entities: + - uid: 26834 components: - type: Transform - pos: -52.5,9.5 - parent: 89 - - uid: 14725 + pos: -5.469696,-16.3815 + parent: 24450 +- proto: ToolboxElectricalFilled + entities: + - uid: 19799 components: - type: Transform - pos: 8.5,-20.5 - parent: 89 - - uid: 14726 + pos: -111.51774,-13.59309 + parent: 2 + - uid: 19800 components: - type: Transform - pos: 8.5,-22.5 - parent: 89 - - uid: 25682 + pos: -16.5,-23.5 + parent: 2 + - uid: 19801 components: - type: Transform - pos: 10.5,-19.5 - parent: 89 - - uid: 25683 + pos: -13.5,-23.5 + parent: 2 + - uid: 19802 components: - type: Transform - pos: 11.5,-19.5 - parent: 89 -- proto: TableFrame - entities: - - uid: 7901 + pos: -96.50371,-1.402104 + parent: 2 + - uid: 19803 components: - type: Transform - pos: -6.5,41.5 - parent: 89 - - uid: 8035 + pos: -90.46701,13.116728 + parent: 2 + - uid: 19804 components: - type: Transform - pos: 2.5,37.5 - parent: 89 -- proto: TableGlass - entities: - - uid: 80 + pos: -115.52165,6.6174526 + parent: 2 + - uid: 19805 components: - type: Transform - pos: -13.5,-15.5 - parent: 89 - - uid: 85 + pos: 55.445694,-1.2600117 + parent: 2 + - uid: 19806 + components: + - type: Transform + pos: -114.47441,-12.468628 + parent: 2 + - uid: 24254 + components: + - type: Transform + pos: 6.430176,1.8029289 + parent: 23919 + - uid: 26835 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -19.060518,7.6108303 + parent: 24450 + - uid: 26836 components: - type: Transform - pos: -16.5,-15.5 - parent: 89 - - uid: 86 + rot: -1.5707963267948966 rad + pos: 5.3748856,2.002956 + parent: 24450 +- proto: ToolboxEmergencyFilled + entities: + - uid: 19807 components: - type: Transform - pos: -15.5,-15.5 - parent: 89 - - uid: 87 + pos: -1.5040388,-1.8151927 + parent: 2 + - uid: 19808 components: - type: Transform - pos: -14.5,-15.5 - parent: 89 - - uid: 2091 + pos: -35.505363,5.63023 + parent: 2 + - uid: 19809 components: - type: Transform - pos: -133.5,-2.5 - parent: 89 - - uid: 5780 + pos: -94.388885,17.812685 + parent: 2 + - uid: 19810 components: - type: Transform - pos: -27.5,24.5 - parent: 89 - - uid: 5783 + pos: -46.504913,13.563406 + parent: 2 + - uid: 19811 components: - type: Transform - pos: -27.5,23.5 - parent: 89 - - uid: 8033 + pos: -100.41629,2.6556427 + parent: 2 + - uid: 19812 components: - type: Transform - pos: 3.5,37.5 - parent: 89 - - uid: 8034 + pos: -57.107525,12.612295 + parent: 2 + - uid: 19813 components: - type: Transform - pos: 1.5,37.5 - parent: 89 - - uid: 8036 + pos: 56.070694,-1.3381367 + parent: 2 + - uid: 26837 components: - type: Transform - pos: 0.5,37.5 - parent: 89 - - uid: 10153 + rot: -1.5707963267948966 rad + pos: -29.602055,1.9329305 + parent: 24450 +- proto: ToolboxGoldFilled + entities: + - uid: 19814 components: - type: Transform - pos: -27.5,21.5 - parent: 89 - - uid: 10156 + rot: -1.5707963267948966 rad + pos: 50.29707,-2.3414707 + parent: 2 +- proto: ToolboxMechanical + entities: + - uid: 19815 components: - type: Transform - pos: -32.5,21.5 - parent: 89 - - uid: 10157 + pos: -6.4346533,-18.417767 + parent: 2 +- proto: ToolboxMechanicalFilled + entities: + - uid: 19816 components: - type: Transform - pos: -31.5,21.5 - parent: 89 -- proto: TablePlasmaGlass - entities: - - uid: 2560 + pos: -111.48105,-13.2261715 + parent: 2 + - uid: 19817 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-24.5 - parent: 89 - - uid: 6897 + pos: 42.93365,-4.077855 + parent: 2 + - uid: 19818 components: - type: Transform - pos: -103.5,11.5 - parent: 89 - - uid: 10202 + pos: -19.52074,-23.483624 + parent: 2 + - uid: 19819 components: - type: Transform - pos: -27.5,27.5 - parent: 89 - - uid: 10203 + pos: -96.50371,-1.870854 + parent: 2 + - uid: 19820 components: - type: Transform - pos: -27.5,28.5 - parent: 89 - - uid: 11214 + pos: -55.47563,5.573606 + parent: 2 + - uid: 19821 components: - type: Transform - pos: -4.5,-27.5 - parent: 89 - - uid: 12182 + pos: 55.46132,-1.4631367 + parent: 2 + - uid: 19822 components: - type: Transform - pos: -4.5,-28.5 - parent: 89 - - uid: 16416 + pos: -115.52165,6.4195633 + parent: 2 + - uid: 23886 components: - type: Transform - pos: -5.5,-27.5 - parent: 89 -- proto: TableReinforced - entities: - - uid: 47 + pos: 4.633088,-11.60843 + parent: 23711 + - uid: 26838 components: - type: Transform - pos: -24.5,-3.5 - parent: 89 - - uid: 48 + rot: -1.5707963267948966 rad + pos: -24.092844,7.5518336 + parent: 24450 +- proto: ToyAi + entities: + - uid: 19823 components: - type: Transform - pos: -23.5,-3.5 - parent: 89 - - uid: 49 + pos: 54.502815,4.6506104 + parent: 2 +- proto: ToyAmongPequeno + entities: + - uid: 19824 components: + - type: MetaData + desc: Перед плазма спамом спроси разрешения в АХ! + name: Упси Дупси - type: Transform - pos: -22.5,-3.5 - parent: 89 - - uid: 50 + pos: -88.41348,-27.304625 + parent: 2 +- proto: ToyFigurineSalvage + entities: + - uid: 19825 components: - type: Transform - pos: -22.5,-2.5 - parent: 89 - - uid: 51 + pos: -50.441475,-15.588876 + parent: 2 +- proto: ToyHammer + entities: + - uid: 19826 components: - type: Transform - pos: -22.5,-1.5 - parent: 89 - - uid: 52 + pos: 19.439804,-18.471947 + parent: 2 +- proto: ToyIan + entities: + - uid: 19827 components: - type: Transform - pos: 36.5,6.5 - parent: 89 - - uid: 124 + pos: -34.496696,29.825691 + parent: 2 + - uid: 19828 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,13.5 - parent: 89 - - uid: 132 + pos: -34.69982,27.653816 + parent: 2 + - uid: 19829 components: - type: Transform - pos: -16.5,-5.5 - parent: 89 - - uid: 133 + pos: -34.277946,27.622566 + parent: 2 + - uid: 19830 components: - type: Transform - pos: -16.5,-4.5 - parent: 89 - - uid: 134 + pos: -34.434196,28.028816 + parent: 2 + - uid: 19831 components: - type: Transform - pos: -16.5,-3.5 - parent: 89 - - uid: 135 + pos: -34.746696,28.185066 + parent: 2 + - uid: 19832 components: - type: Transform - pos: -16.5,-2.5 - parent: 89 - - uid: 136 + pos: -32.19982,29.419441 + parent: 2 + - uid: 19833 components: - type: Transform - pos: -16.5,-1.5 - parent: 89 - - uid: 309 + pos: -34.50212,28.551262 + parent: 2 +- proto: ToyMarauder + entities: + - uid: 19834 components: + - type: MetaData + desc: Мародёр с позывным "кочевник", получил огромную огласку после вторжение ксеносов на одну из колоний, где он участвовал как защитник. + name: игрушечный no_mad - type: Transform - pos: -10.5,-2.5 - parent: 89 - - uid: 310 + pos: 35.949993,14.835531 + parent: 2 +- proto: ToyMouse + entities: + - uid: 19835 components: - type: Transform - pos: -10.5,-3.5 - parent: 89 - - uid: 311 + pos: 16.494328,25.730711 + parent: 2 +- proto: ToyRubberDuck + entities: + - uid: 19836 components: - type: Transform - pos: -10.5,-4.5 - parent: 89 - - uid: 388 + pos: 7.5,-28.5 + parent: 2 +- proto: ToySpawner + entities: + - uid: 19837 components: - type: Transform - pos: 57.5,2.5 - parent: 89 - - uid: 389 + pos: -43.5,-15.5 + parent: 2 + - uid: 19838 components: - type: Transform - pos: 59.5,2.5 - parent: 89 - - uid: 391 + pos: 17.5,25.5 + parent: 2 + - uid: 19839 components: - type: Transform - pos: 57.5,6.5 - parent: 89 - - uid: 392 + pos: -50.5,21.5 + parent: 2 + - uid: 19840 components: - type: Transform - pos: 59.5,6.5 - parent: 89 - - uid: 398 + pos: 21.5,17.5 + parent: 2 + - uid: 19841 components: - type: Transform - pos: 65.5,10.5 - parent: 89 - - uid: 399 + pos: -26.5,-24.5 + parent: 2 + - uid: 19842 components: - type: Transform - pos: 63.5,8.5 - parent: 89 - - uid: 400 + pos: 31.5,-3.5 + parent: 2 +- proto: TrackingImplanter + entities: + - uid: 604 components: - type: Transform - pos: 63.5,0.5 - parent: 89 - - uid: 401 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 605 components: - type: Transform - pos: 65.5,13.5 - parent: 89 - - uid: 402 + parent: 591 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 19843 components: - type: Transform - pos: 63.5,3.5 - parent: 89 - - uid: 403 + pos: 23.598495,27.541094 + parent: 2 + - uid: 19844 components: - type: Transform - pos: 63.5,5.5 - parent: 89 - - uid: 408 + pos: 23.629745,27.478594 + parent: 2 +- proto: TrashBag + entities: + - uid: 19845 components: - type: Transform - pos: 56.5,10.5 - parent: 89 - - uid: 409 + pos: -41.482098,7.89655 + parent: 2 + - uid: 19846 components: - type: Transform - pos: 55.5,10.5 - parent: 89 - - uid: 410 + pos: -41.732098,7.880925 + parent: 2 + - uid: 19847 components: - type: Transform - pos: 53.5,15.5 - parent: 89 - - uid: 411 + pos: -41.622723,7.662175 + parent: 2 +- proto: TrashBananaPeel + entities: + - uid: 19848 components: - type: Transform - pos: 54.5,15.5 - parent: 89 - - uid: 412 + pos: -34.49477,-4.576667 + parent: 2 + - uid: 19849 components: - type: Transform - pos: 57.5,15.5 - parent: 89 - - uid: 413 + pos: 36.5316,-4.602179 + parent: 2 +- proto: trayScanner + entities: + - uid: 19850 components: - type: Transform - pos: 58.5,15.5 - parent: 89 - - uid: 616 + pos: -115.65394,2.6449199 + parent: 2 + - uid: 19851 components: - type: Transform - pos: 37.5,-12.5 - parent: 89 - - uid: 928 + pos: -105.63304,0.7137947 + parent: 2 + - uid: 19852 components: - type: Transform - pos: -5.5,-34.5 - parent: 89 - - uid: 961 + pos: -105.19554,0.6044197 + parent: 2 + - uid: 19853 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-6.5 - parent: 89 - - uid: 1053 + pos: -9.853606,-35.779358 + parent: 2 + - uid: 19854 components: - type: Transform - pos: 43.5,-9.5 - parent: 89 - - uid: 1057 + pos: -119.6608,11.784174 + parent: 2 + - uid: 19855 components: - type: Transform - pos: 65.5,-1.5 - parent: 89 - - uid: 1058 + pos: -119.30142,11.612299 + parent: 2 + - uid: 19856 components: - type: Transform - pos: 58.5,-6.5 - parent: 89 - - uid: 1059 + pos: 17.648815,-0.8417225 + parent: 2 + - uid: 19857 components: - type: Transform - pos: 57.5,-6.5 - parent: 89 - - uid: 1067 + pos: 17.648815,-0.8573475 + parent: 2 + - uid: 19858 components: - type: Transform - pos: 54.5,-6.5 - parent: 89 - - uid: 1194 + pos: 17.648815,-0.8573475 + parent: 2 + - uid: 19859 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,10.5 - parent: 89 - - uid: 1355 + pos: -115.28436,2.6449199 + parent: 2 +- proto: Truncheon + entities: + - uid: 24546 components: - type: Transform - pos: -22.5,-14.5 - parent: 89 - - uid: 1356 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage + - uid: 24547 components: - type: Transform - pos: -1.5,19.5 - parent: 89 - - uid: 1566 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: TurboItemRecharger + entities: + - uid: 24255 components: - type: Transform - pos: 41.5,-9.5 - parent: 89 - - uid: 1663 + pos: 3.5,-7.5 + parent: 23919 + - uid: 24256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,13.5 - parent: 89 - - uid: 1684 + pos: 4.5,3.5 + parent: 23919 +- proto: TwoWayLever + entities: + - uid: 19860 components: + - type: MetaData + name: рычаг конвеерной ленты под вратами - type: Transform - pos: 41.5,9.5 - parent: 89 - - uid: 1860 + pos: -51.5,-17.5 + parent: 2 + - uid: 19861 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,10.5 - parent: 89 - - uid: 2054 + pos: -61.5,-17.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 9159: + - Left: Forward + - Right: Reverse + - Middle: Off + 9160: + - Left: Forward + - Right: Reverse + - Middle: Off + 9161: + - Left: Forward + - Right: Reverse + - Middle: Off + 9162: + - Left: Forward + - Right: Reverse + - Middle: Off + 9163: + - Left: Forward + - Right: Reverse + - Middle: Off + 9154: + - Middle: Off + - Right: Forward + - Left: Reverse + 9155: + - Middle: Off + - Right: Forward + - Left: Reverse + 9156: + - Middle: Off + - Right: Forward + - Left: Reverse + 9157: + - Middle: Off + - Right: Forward + - Left: Reverse + 9158: + - Left: Reverse + - Right: Forward + - Middle: Off + - uid: 19862 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 89 - - uid: 2064 + pos: -65.5,-4.5 + parent: 2 + - uid: 19863 components: - type: Transform - pos: 40.5,10.5 - parent: 89 - - uid: 2602 + pos: -60.5,-4.5 + parent: 2 + - uid: 19864 components: - type: Transform - pos: -89.5,-13.5 - parent: 89 - - uid: 2605 + pos: -96.5,26.5 + parent: 2 + - type: DeviceLinkSource + linkedPorts: + 17784: + - Left: Forward + - Right: Reverse + - Middle: Off + 9181: + - Left: Forward + - Right: Reverse + - Middle: Off + 9171: + - Left: Forward + - Right: Reverse + - Middle: Off + 9176: + - Left: Forward + - Right: Reverse + - Middle: Off + 9153: + - Left: Forward + - Right: Reverse + - Middle: Off + 9175: + - Left: Forward + - Right: Reverse + - Middle: Off + 9174: + - Left: Forward + - Right: Reverse + - Middle: Off + 9172: + - Left: Forward + - Right: Reverse + - Middle: Off + 9173: + - Left: Forward + - Right: Reverse + - Middle: Off + 9179: + - Left: Forward + - Right: Reverse + - Middle: Off + 9178: + - Left: Forward + - Right: Reverse + - Middle: Off + 9177: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26839 components: - type: Transform - pos: -88.5,-13.5 - parent: 89 - - uid: 2606 + pos: -5.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25728: + - Left: Forward + - Right: Reverse + - Middle: Off + 25726: + - Left: Forward + - Right: Reverse + - Middle: Off + 25727: + - Left: Forward + - Right: Reverse + - Middle: Off + 25725: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26840 components: - type: Transform - pos: -87.5,-13.5 - parent: 89 - - uid: 2631 + pos: 1.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25737: + - Left: Forward + - Right: Reverse + - Middle: Off + 25738: + - Left: Forward + - Right: Reverse + - Middle: Off + 25739: + - Left: Forward + - Right: Reverse + - Middle: Off + 25740: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26841 components: - type: Transform - pos: 56.5,-1.5 - parent: 89 - - uid: 2633 + pos: -3.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25729: + - Left: Forward + - Right: Reverse + - Middle: Off + 25730: + - Left: Forward + - Right: Reverse + - Middle: Off + 25731: + - Left: Forward + - Right: Reverse + - Middle: Off + 25732: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26842 components: - type: Transform - pos: 55.5,-1.5 - parent: 89 - - uid: 2728 + pos: -0.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25736: + - Left: Forward + - Right: Reverse + - Middle: Off + 25735: + - Left: Forward + - Right: Reverse + - Middle: Off + 25734: + - Left: Forward + - Right: Reverse + - Middle: Off + 25733: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26843 components: - type: Transform - pos: -85.5,-13.5 - parent: 89 - - uid: 2729 + pos: -18.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25709: + - Left: Forward + - Right: Reverse + - Middle: Off + 25714: + - Left: Forward + - Right: Reverse + - Middle: Off + 25713: + - Left: Forward + - Right: Reverse + - Middle: Off + 25715: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26844 components: - type: Transform - pos: -84.5,-13.5 - parent: 89 - - uid: 2872 + pos: -20.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25712: + - Left: Forward + - Right: Reverse + - Middle: Off + 25716: + - Left: Forward + - Right: Reverse + - Middle: Off + 25710: + - Left: Forward + - Right: Reverse + - Middle: Off + 25711: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26845 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-0.5 - parent: 89 - - uid: 2897 + pos: -23.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25718: + - Left: Forward + - Right: Reverse + - Middle: Off + 25717: + - Left: Forward + - Right: Reverse + - Middle: Off + 25719: + - Left: Forward + - Right: Reverse + - Middle: Off + 25724: + - Left: Forward + - Right: Reverse + - Middle: Off + - uid: 26846 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,-12.5 - parent: 89 - - uid: 2903 + pos: -25.5,0.5 + parent: 24450 + - type: DeviceLinkSource + linkedPorts: + 25720: + - Left: Forward + - Right: Reverse + - Middle: Off + 25723: + - Left: Forward + - Right: Reverse + - Middle: Off + 25722: + - Left: Forward + - Right: Reverse + - Middle: Off + 25721: + - Left: Forward + - Right: Reverse + - Middle: Off + 26684: + - Left: Forward + - Right: Reverse + - Middle: Off +- proto: UniformPrinter + entities: + - uid: 19865 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 25.5,-6.5 - parent: 89 - - uid: 2904 + pos: 42.5,7.5 + parent: 2 +- proto: UniformScrubsColorBlue + entities: + - uid: 9231 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,-0.5 - parent: 89 - - uid: 2905 + parent: 9230 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformScrubsColorGreen + entities: + - uid: 9232 components: - type: Transform - pos: 37.5,3.5 - parent: 89 - - uid: 2913 + parent: 9230 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UniformScrubsColorPurple + entities: + - uid: 9233 components: - type: Transform - pos: -25.5,-3.5 - parent: 89 - - uid: 2914 + parent: 9230 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: UprightPianoInstrument + entities: + - uid: 19866 components: - type: Transform - pos: -26.5,-3.5 - parent: 89 - - uid: 2936 + rot: 3.141592653589793 rad + pos: -29.5,-5.5 + parent: 2 + - uid: 19867 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,-12.5 - parent: 89 - - uid: 3002 + rot: 1.5707963267948966 rad + pos: 3.5,41.5 + parent: 2 +- proto: UraniumReinforcedWindowDirectional + entities: + - uid: 24257 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,-0.5 - parent: 89 - - uid: 3005 + rot: 1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 23919 + - uid: 24258 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,-4.5 - parent: 89 - - uid: 3103 + rot: 1.5707963267948966 rad + pos: 2.5,4.5 + parent: 23919 +- proto: UraniumWindoorSecureCentralCommandLocked + entities: + - uid: 24259 components: - type: Transform - pos: 47.5,-1.5 - parent: 89 - - uid: 3104 + pos: 6.5,-7.5 + parent: 23919 + - uid: 24260 components: - type: Transform - pos: 50.5,-5.5 - parent: 89 - - uid: 3105 + pos: 5.5,-7.5 + parent: 23919 +- proto: UraniumWindowDirectional + entities: + - uid: 19868 components: - type: Transform - pos: 50.5,-4.5 - parent: 89 - - uid: 3106 + rot: 1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 2 + - uid: 19869 components: - type: Transform - pos: 47.5,-5.5 - parent: 89 - - uid: 3165 + rot: 1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 2 + - uid: 19870 components: - type: Transform - pos: 25.5,-3.5 - parent: 89 - - uid: 3274 + pos: -6.5,-5.5 + parent: 2 + - uid: 19871 components: - type: Transform - pos: 54.5,2.5 - parent: 89 - - uid: 3296 + pos: -3.5,-5.5 + parent: 2 + - uid: 19872 components: - type: Transform - pos: 48.5,-1.5 - parent: 89 - - uid: 3358 + pos: -6.5,-8.5 + parent: 2 + - uid: 19873 components: - type: Transform - pos: 54.5,6.5 - parent: 89 - - uid: 3360 + pos: -9.5,-5.5 + parent: 2 + - uid: 19874 components: - type: Transform - pos: -5.5,-36.5 - parent: 89 - - uid: 3971 + rot: 1.5707963267948966 rad + pos: -6.5,-8.5 + parent: 2 + - uid: 19875 components: - type: Transform - pos: -0.5,19.5 - parent: 89 - - uid: 4040 + pos: -5.5,-5.5 + parent: 2 + - uid: 19876 components: - type: Transform - pos: 17.5,-0.5 - parent: 89 - - uid: 4201 + pos: -7.5,-5.5 + parent: 2 + - uid: 19877 components: - type: Transform - pos: 15.5,-6.5 - parent: 89 - - uid: 4202 + rot: 1.5707963267948966 rad + pos: -7.5,-9.5 + parent: 2 +- proto: Vaccinator + entities: + - uid: 19878 components: - type: Transform - pos: 15.5,-7.5 - parent: 89 - - uid: 4341 + pos: 7.5,29.5 + parent: 2 +- proto: VariantCubeBox + entities: + - uid: 19879 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-13.5 - parent: 89 - - uid: 4486 + pos: -1.4158952,-41.295216 + parent: 2 +- proto: VendingBarDrobe + entities: + - uid: 19880 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-12.5 - parent: 89 - - uid: 4519 + pos: -31.5,0.5 + parent: 2 +- proto: VendingMachineAtmosDrobe + entities: + - uid: 19881 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-13.5 - parent: 89 - - uid: 4523 + pos: -96.5,-10.5 + parent: 2 +- proto: VendingMachineBooze + entities: + - uid: 19882 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,-12.5 - parent: 89 - - uid: 5001 + pos: -35.5,14.5 + parent: 2 + - uid: 19883 components: - type: Transform - pos: -63.5,-3.5 - parent: 89 - - uid: 5002 + pos: -26.5,-0.5 + parent: 2 + - uid: 19884 components: - type: Transform - pos: -62.5,-3.5 - parent: 89 - - uid: 5221 + pos: 46.5,11.5 + parent: 2 + - uid: 19885 components: - type: Transform - pos: 28.5,-5.5 - parent: 89 - - uid: 5316 + pos: 1.5,46.5 + parent: 2 + - uid: 19886 components: - type: Transform - pos: 21.5,-2.5 - parent: 89 - - uid: 5619 + pos: -8.5,46.5 + parent: 2 + - uid: 19887 components: - type: Transform - pos: -4.5,8.5 - parent: 89 - - uid: 5633 + pos: -55.5,48.5 + parent: 2 +- proto: VendingMachineCargoDrobe + entities: + - uid: 19888 components: - type: Transform - pos: -15.5,7.5 - parent: 89 - - uid: 6141 + pos: -66.5,-17.5 + parent: 2 + - uid: 19889 components: - type: Transform - pos: -6.5,27.5 - parent: 89 - - uid: 6153 + pos: -71.5,-9.5 + parent: 2 +- proto: VendingMachineCart + entities: + - uid: 19890 components: - type: Transform - pos: 19.5,-1.5 - parent: 89 - - uid: 6154 + pos: 44.5,10.5 + parent: 2 +- proto: VendingMachineChang + entities: + - uid: 19891 components: - type: Transform - pos: 17.5,-1.5 - parent: 89 - - uid: 6155 + pos: -51.5,-9.5 + parent: 2 + - uid: 19892 components: - type: Transform - pos: 19.5,-0.5 - parent: 89 - - uid: 6163 + pos: -2.5,37.5 + parent: 2 + - uid: 19893 components: - type: Transform - pos: -20.5,5.5 - parent: 89 - - uid: 6164 + pos: -28.5,21.5 + parent: 2 +- proto: VendingMachineChapel + entities: + - uid: 19894 components: - type: Transform - pos: -19.5,5.5 - parent: 89 - - uid: 6165 + pos: -48.5,-6.5 + parent: 2 +- proto: VendingMachineChefDrobe + entities: + - uid: 19895 components: - type: Transform - pos: -20.5,7.5 - parent: 89 - - uid: 6166 + pos: -15.5,-9.5 + parent: 2 +- proto: VendingMachineChefvend + entities: + - uid: 19896 components: - type: Transform - pos: -16.5,8.5 - parent: 89 - - uid: 6796 + pos: -12.5,-5.5 + parent: 2 +- proto: VendingMachineChemDrobe + entities: + - uid: 19897 components: - type: Transform - pos: -44.5,2.5 - parent: 89 - - uid: 6804 + pos: 2.5,5.5 + parent: 2 +- proto: VendingMachineChemicals + entities: + - uid: 19898 components: - type: Transform - pos: -45.5,0.5 - parent: 89 - - uid: 6805 + pos: 3.5,5.5 + parent: 2 + - uid: 27904 components: - type: Transform - pos: -45.5,1.5 - parent: 89 - - uid: 6884 + pos: -5.5,-11.5 + parent: 27260 +- proto: VendingMachineChemicalsSyndicate + entities: + - uid: 19899 components: - type: Transform - pos: -105.5,9.5 - parent: 89 - - uid: 6885 + pos: -87.5,30.5 + parent: 2 +- proto: VendingMachineCigs + entities: + - uid: 19900 components: - type: Transform - pos: -104.5,9.5 - parent: 89 - - uid: 6886 + pos: -55.5,26.5 + parent: 2 + - uid: 19901 components: - type: Transform - pos: -103.5,9.5 - parent: 89 - - uid: 6958 + pos: -63.5,31.5 + parent: 2 + - uid: 19902 components: - type: Transform - pos: -103.5,-2.5 - parent: 89 - - uid: 6959 + pos: -63.5,39.5 + parent: 2 + - uid: 19903 components: - type: Transform - pos: -102.5,-2.5 - parent: 89 - - uid: 6960 + pos: -85.5,45.5 + parent: 2 + - uid: 19904 components: - type: Transform - pos: -101.5,-2.5 - parent: 89 - - uid: 6961 + pos: -29.5,5.5 + parent: 2 + - uid: 19905 components: - type: Transform - pos: -100.5,-2.5 - parent: 89 - - uid: 6972 + pos: -58.5,12.5 + parent: 2 + - uid: 19906 components: - type: Transform - pos: -104.5,0.5 - parent: 89 - - uid: 6973 + pos: -52.5,5.5 + parent: 2 + - uid: 19907 components: - type: Transform - pos: -105.5,0.5 - parent: 89 - - uid: 7336 + pos: -53.5,5.5 + parent: 2 + - uid: 19908 components: - type: Transform - pos: -3.5,6.5 - parent: 89 - - uid: 8094 + pos: 36.5,3.5 + parent: 2 + - uid: 19909 components: - type: Transform - pos: -85.5,11.5 - parent: 89 - - uid: 8095 + pos: -33.5,15.5 + parent: 2 + - uid: 19910 components: - type: Transform - pos: -87.5,14.5 - parent: 89 - - uid: 8096 + pos: 1.5,-22.5 + parent: 2 + - uid: 19911 components: - type: Transform - pos: -86.5,14.5 - parent: 89 - - uid: 8157 + pos: 15.5,-5.5 + parent: 2 + - uid: 19912 components: - type: Transform - pos: -61.5,8.5 - parent: 89 - - uid: 8160 + pos: -23.5,-8.5 + parent: 2 + - uid: 19913 components: - type: Transform - pos: -58.5,7.5 - parent: 89 - - uid: 8161 + pos: -67.5,1.5 + parent: 2 + - uid: 19914 components: - type: Transform - pos: -59.5,7.5 - parent: 89 - - uid: 8241 + pos: -8.5,33.5 + parent: 2 + - uid: 19915 components: - type: Transform - pos: -58.5,21.5 - parent: 89 - - uid: 8245 + pos: -18.5,-10.5 + parent: 2 + - uid: 19916 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -59.5,22.5 - parent: 89 - - uid: 8246 + pos: -69.5,-5.5 + parent: 2 +- proto: VendingMachineClothing + entities: + - uid: 19917 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -60.5,22.5 - parent: 89 - - uid: 8387 + pos: -95.5,12.5 + parent: 2 + - uid: 19918 components: - type: Transform - pos: -8.5,-15.5 - parent: 89 - - uid: 8399 + pos: -33.5,21.5 + parent: 2 +- proto: VendingMachineCoffee + entities: + - uid: 19919 components: - type: Transform - pos: 40.5,-9.5 - parent: 89 - - uid: 8920 + pos: 1.5,-6.5 + parent: 2 + - uid: 19920 components: - type: Transform - pos: 9.5,20.5 - parent: 89 - - uid: 9021 + pos: 1.5,-21.5 + parent: 2 + - uid: 19921 components: - type: Transform - pos: -105.5,21.5 - parent: 89 - - uid: 9022 + pos: 31.5,16.5 + parent: 2 + - uid: 19922 components: - type: Transform - pos: -104.5,21.5 - parent: 89 - - uid: 9023 + pos: -51.5,11.5 + parent: 2 +- proto: VendingMachineCondiments + entities: + - uid: 19923 components: - type: Transform - pos: -103.5,21.5 - parent: 89 - - uid: 9024 + pos: -18.5,-0.5 + parent: 2 +- proto: VendingMachineDetDrobe + entities: + - uid: 19924 components: - type: Transform - pos: -102.5,21.5 - parent: 89 - - uid: 9026 + pos: 16.5,8.5 + parent: 2 +- proto: VendingMachineDinnerware + entities: + - uid: 19925 components: - type: Transform - pos: -111.5,21.5 - parent: 89 - - uid: 9027 + pos: -11.5,-5.5 + parent: 2 +- proto: VendingMachineDiscount + entities: + - uid: 19926 components: - type: Transform - pos: -110.5,21.5 - parent: 89 - - uid: 9795 + pos: -58.5,1.5 + parent: 2 +- proto: VendingMachineEngiDrobe + entities: + - uid: 19927 components: - type: Transform - pos: -55.5,32.5 - parent: 89 - - uid: 9816 + pos: -98.5,0.5 + parent: 2 +- proto: VendingMachineEngivend + entities: + - uid: 19928 components: - type: Transform - pos: 44.5,-15.5 - parent: 89 - - uid: 9873 + pos: 21.5,-1.5 + parent: 2 + - uid: 19929 components: - type: Transform - pos: -55.5,33.5 - parent: 89 - - uid: 9874 + pos: -99.5,0.5 + parent: 2 + - uid: 24261 components: - type: Transform - pos: -55.5,34.5 - parent: 89 - - uid: 9917 + pos: 1.5,1.5 + parent: 23919 +- proto: VendingMachineGames + entities: + - uid: 19930 components: - type: Transform - pos: -54.5,38.5 - parent: 89 - - uid: 9919 + pos: -47.5,7.5 + parent: 2 + - uid: 19931 components: - type: Transform - pos: -54.5,43.5 - parent: 89 - - uid: 9920 + pos: -75.5,-8.5 + parent: 2 + - uid: 19932 components: - type: Transform - pos: -54.5,42.5 - parent: 89 - - uid: 9921 + pos: -71.5,7.5 + parent: 2 + - uid: 19933 components: - type: Transform - pos: -54.5,41.5 - parent: 89 - - uid: 10015 + pos: 55.5,-28.5 + parent: 2 +- proto: VendingMachineHappyHonk + entities: + - uid: 19934 components: - type: Transform - pos: -52.5,41.5 - parent: 89 - - uid: 10016 + pos: -33.5,-5.5 + parent: 2 +- proto: VendingMachineHydrobe + entities: + - uid: 19935 components: - type: Transform - pos: -52.5,45.5 - parent: 89 - - uid: 10518 + pos: -3.5,-6.5 + parent: 2 +- proto: VendingMachineJaniDrobe + entities: + - uid: 19936 components: - type: Transform - pos: -83.5,16.5 - parent: 89 - - uid: 10548 + pos: -35.5,8.5 + parent: 2 +- proto: VendingMachineLawDrobe + entities: + - uid: 19937 components: - type: Transform - pos: -84.5,17.5 - parent: 89 - - uid: 10549 + pos: -72.5,-7.5 + parent: 2 +- proto: VendingMachineMedical + entities: + - uid: 19938 components: - type: Transform - pos: -85.5,17.5 - parent: 89 - - uid: 10797 + pos: -2.5,21.5 + parent: 2 + - uid: 19939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,5.5 - parent: 89 - - uid: 10872 + pos: 8.5,14.5 + parent: 2 + - uid: 19940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,12.5 - parent: 89 - - uid: 10963 + pos: 11.5,34.5 + parent: 2 + - uid: 19941 components: - type: Transform - pos: -1.5,10.5 - parent: 89 - - uid: 11084 + pos: -4.5,21.5 + parent: 2 + - uid: 27905 components: - type: Transform - pos: -1.5,19.5 - parent: 89 - - uid: 11912 + pos: -3.5,-8.5 + parent: 27260 +- proto: VendingMachineMediDrobe + entities: + - uid: 19942 components: - type: Transform - pos: -2.5,19.5 - parent: 89 - - uid: 12619 + pos: 30.5,20.5 + parent: 2 +- proto: VendingMachineNutri + entities: + - uid: 19943 components: - type: Transform - pos: 31.5,18.5 - parent: 89 - - uid: 12636 + pos: -5.5,-0.5 + parent: 2 +- proto: VendingMachineRoboDrobe + entities: + - uid: 19944 components: - type: Transform - pos: 30.5,18.5 - parent: 89 - - uid: 12638 + pos: -11.5,-23.5 + parent: 2 +- proto: VendingMachineRobotics + entities: + - uid: 19945 components: - type: Transform - pos: 32.5,20.5 - parent: 89 - - uid: 12642 + pos: -11.5,-16.5 + parent: 2 + - uid: 19946 components: - type: Transform - pos: 33.5,20.5 - parent: 89 - - uid: 12656 + pos: -21.5,-20.5 + parent: 2 +- proto: VendingMachineSalvage + entities: + - uid: 19947 components: - type: Transform - pos: 5.5,16.5 - parent: 89 - - uid: 12664 + pos: -52.5,-14.5 + parent: 2 + - uid: 19948 components: - type: Transform - pos: 8.5,18.5 - parent: 89 - - uid: 12668 + pos: -58.5,-17.5 + parent: 2 +- proto: VendingMachineSciDrobe + entities: + - uid: 19949 components: - type: Transform - pos: 6.5,16.5 - parent: 89 - - uid: 14032 + pos: -11.5,-19.5 + parent: 2 +- proto: VendingMachineSec + entities: + - uid: 19950 components: - type: Transform - pos: 44.5,-16.5 - parent: 89 - - uid: 14110 + pos: 39.5,-4.5 + parent: 2 + - uid: 19951 components: - type: Transform - pos: 65.5,-4.5 - parent: 89 - - uid: 14112 + pos: 23.5,-6.5 + parent: 2 + - uid: 24262 components: - type: Transform - pos: 42.5,-9.5 - parent: 89 - - uid: 14119 + pos: 6.5,-7.5 + parent: 23919 + - uid: 27906 components: - type: Transform - pos: 53.5,-6.5 - parent: 89 - - uid: 14660 + pos: 2.5,-6.5 + parent: 27260 +- proto: VendingMachineSecDrobe + entities: + - uid: 19952 components: - type: Transform - pos: 44.5,-14.5 - parent: 89 - - uid: 14796 + pos: -18.5,9.5 + parent: 2 + - uid: 19953 components: - type: Transform - pos: 44.5,-13.5 - parent: 89 - - uid: 14797 + pos: -88.5,12.5 + parent: 2 + - uid: 19954 components: - type: Transform - pos: 44.5,-12.5 - parent: 89 - - uid: 14853 + pos: 22.5,-6.5 + parent: 2 +- proto: VendingMachineSeeds + entities: + - uid: 19955 components: - type: Transform - pos: -2.5,5.5 - parent: 89 - - uid: 14891 + pos: -4.5,-0.5 + parent: 2 +- proto: VendingMachineSovietSoda + entities: + - uid: 19956 components: - type: Transform - pos: 44.5,-11.5 - parent: 89 - - uid: 15038 + pos: -33.5,9.5 + parent: 2 + - uid: 19957 components: - type: Transform - pos: -0.5,9.5 - parent: 89 - - uid: 15079 + pos: -1.5,-4.5 + parent: 2 + - uid: 19958 components: - type: Transform - pos: -0.5,20.5 - parent: 89 - - uid: 15297 + pos: -108.5,-9.5 + parent: 2 + - uid: 19959 components: - type: Transform - pos: 19.5,23.5 - parent: 89 - - uid: 15299 + pos: 36.5,10.5 + parent: 2 +- proto: VendingMachineSustenance + entities: + - uid: 19960 components: - type: Transform - pos: 46.5,12.5 - parent: 89 - - uid: 15392 + pos: 50.5,-27.5 + parent: 2 + - uid: 19961 components: - type: Transform - pos: 5.5,30.5 - parent: 89 - - uid: 15423 + pos: 36.5,-12.5 + parent: 2 + - uid: 19962 components: - type: Transform - pos: 9.5,42.5 - parent: 89 - - uid: 15436 + pos: 40.5,-22.5 + parent: 2 + - uid: 19963 components: - type: Transform - pos: 10.5,42.5 - parent: 89 - - uid: 15441 + pos: 51.5,-27.5 + parent: 2 + - uid: 19964 components: - type: Transform - pos: 5.5,29.5 - parent: 89 - - uid: 15480 + pos: 34.5,-7.5 + parent: 2 + - uid: 19965 components: - type: Transform - pos: 5.5,32.5 - parent: 89 - - uid: 15575 + pos: 15.5,-10.5 + parent: 2 + - uid: 23887 components: - type: Transform - pos: 5.5,34.5 - parent: 89 - - uid: 15723 + pos: 5.5,-9.5 + parent: 23711 + - uid: 26847 components: - type: Transform - pos: -4.5,7.5 - parent: 89 - - uid: 15910 + pos: -27.5,-0.5 + parent: 24450 + - uid: 26848 components: - type: Transform - pos: 17.5,23.5 - parent: 89 - - uid: 15990 + pos: 3.5,-0.5 + parent: 24450 + - uid: 26849 components: - type: Transform - pos: 18.5,23.5 - parent: 89 - - uid: 16134 + pos: 3.5,0.5 + parent: 24450 + - uid: 26850 components: - type: Transform - pos: 5.5,33.5 - parent: 89 - - uid: 16185 + pos: -27.5,0.5 + parent: 24450 +- proto: VendingMachineSyndieDrobe + entities: + - uid: 19966 components: - type: Transform - pos: 6.5,37.5 - parent: 89 - - uid: 16413 + pos: 16.5,34.5 + parent: 2 +- proto: VendingMachineTankDispenserEngineering + entities: + - uid: 19967 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,18.5 - parent: 89 - - uid: 16885 + pos: -130.5,-0.5 + parent: 2 +- proto: VendingMachineTankDispenserEVA + entities: + - uid: 19968 components: - type: Transform - pos: 49.5,-5.5 - parent: 89 - - uid: 17004 + pos: 31.5,9.5 + parent: 2 + - uid: 19969 components: - type: Transform - pos: 35.5,-0.5 - parent: 89 - - uid: 17006 + pos: -97.5,-12.5 + parent: 2 + - uid: 19970 components: - type: Transform - pos: 11.5,-8.5 - parent: 89 - - uid: 17128 + pos: 32.5,9.5 + parent: 2 + - uid: 19971 components: - type: Transform - pos: 44.5,-9.5 - parent: 89 - - uid: 17164 + pos: -93.5,-7.5 + parent: 2 + - uid: 19972 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,-12.5 - parent: 89 - - uid: 17167 + pos: -46.5,-17.5 + parent: 2 + - uid: 19973 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-12.5 - parent: 89 - - uid: 17603 + pos: -96.5,0.5 + parent: 2 + - uid: 19974 components: - type: Transform - pos: 8.5,20.5 - parent: 89 - - uid: 17701 + pos: -98.5,-4.5 + parent: 2 + - uid: 19975 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,17.5 - parent: 89 - - uid: 17881 + pos: 46.5,18.5 + parent: 2 + - uid: 19976 components: - type: Transform - pos: -0.5,8.5 - parent: 89 - - uid: 18654 + pos: 41.5,-4.5 + parent: 2 + - uid: 27907 components: - type: Transform - pos: -8.5,17.5 - parent: 89 - - uid: 20443 + pos: 2.5,-7.5 + parent: 27260 +- proto: VendingMachineTheater + entities: + - uid: 19977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -1.5,15.5 - parent: 89 - - uid: 21028 + pos: -33.5,-6.5 + parent: 2 + - uid: 19978 components: - type: Transform - pos: 21.5,-3.5 - parent: 89 - - uid: 21453 + pos: -65.5,20.5 + parent: 2 +- proto: VendingMachineViroDrobe + entities: + - uid: 19979 components: - type: Transform - pos: 34.5,20.5 - parent: 89 - - uid: 21544 + pos: 8.5,34.5 + parent: 2 +- proto: VendingMachineWallMedical + entities: + - uid: 19980 components: - type: Transform - pos: -1.5,5.5 - parent: 89 - - uid: 21546 + rot: -1.5707963267948966 rad + pos: -99.5,18.5 + parent: 2 + - uid: 19981 components: - type: Transform - pos: -3.5,5.5 - parent: 89 - - uid: 24914 + pos: 16.5,24.5 + parent: 2 + - uid: 19982 components: - type: Transform - pos: -13.5,-27.5 - parent: 22565 - - uid: 24915 + pos: 19.5,16.5 + parent: 2 + - uid: 19983 components: - type: Transform - pos: -9.5,7.5 - parent: 22565 - - uid: 24916 + pos: 3.5,14.5 + parent: 2 + - uid: 19984 components: - type: Transform - pos: -14.5,4.5 - parent: 22565 - - uid: 24917 + pos: -6.5,4.5 + parent: 2 + - uid: 19985 components: - type: Transform - pos: -11.5,7.5 - parent: 22565 - - uid: 24918 + pos: -10.5,16.5 + parent: 2 + - uid: 19986 components: - type: Transform - pos: -14.5,7.5 - parent: 22565 -- proto: TableReinforcedGlass - entities: - - uid: 2948 + pos: 0.5,22.5 + parent: 2 + - uid: 19987 components: - type: Transform - pos: 10.5,-0.5 - parent: 89 - - uid: 2949 + pos: 1.5,14.5 + parent: 2 + - uid: 19988 components: - type: Transform - pos: 12.5,-0.5 - parent: 89 - - uid: 2950 + pos: 15.5,16.5 + parent: 2 + - uid: 19989 components: - type: Transform - pos: 12.5,-1.5 - parent: 89 - - uid: 2951 + pos: 27.5,21.5 + parent: 2 + - uid: 19990 components: - type: Transform - pos: 15.5,-0.5 - parent: 89 - - uid: 5155 + rot: 1.5707963267948966 rad + pos: -13.5,18.5 + parent: 2 + - uid: 19991 components: - type: Transform - pos: 12.5,-3.5 - parent: 89 - - uid: 6150 + rot: 3.141592653589793 rad + pos: -118.5,19.5 + parent: 2 + - uid: 24263 components: - type: Transform - pos: 13.5,-3.5 - parent: 89 - - uid: 6983 + pos: 5.5,-2.5 + parent: 23919 +- proto: VendingMachineYouTool + entities: + - uid: 19992 components: - type: Transform - pos: -98.5,-7.5 - parent: 89 - - uid: 6984 + pos: -98.5,-5.5 + parent: 2 + - uid: 19993 components: - type: Transform - pos: -98.5,-8.5 - parent: 89 - - uid: 6985 + pos: -92.5,17.5 + parent: 2 + - uid: 24264 components: - type: Transform - pos: -98.5,-9.5 - parent: 89 - - uid: 6986 + pos: 1.5,0.5 + parent: 23919 +- proto: WallMining + entities: + - uid: 26851 components: - type: Transform - pos: -98.5,-10.5 - parent: 89 - - uid: 16377 + pos: 2.5,-1.5 + parent: 24450 + - uid: 26852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,21.5 - parent: 89 - - uid: 16378 + rot: 3.141592653589793 rad + pos: -10.5,11.5 + parent: 24450 + - uid: 26853 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,21.5 - parent: 89 - - uid: 17625 + rot: 3.141592653589793 rad + pos: -24.5,12.5 + parent: 24450 + - uid: 26854 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,19.5 - parent: 89 - - uid: 17693 + rot: 3.141592653589793 rad + pos: 0.5,13.5 + parent: 24450 + - uid: 26855 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,21.5 - parent: 89 -- proto: TableStone - entities: - - uid: 3042 + rot: 3.141592653589793 rad + pos: 1.5,12.5 + parent: 24450 + - uid: 26856 components: - - type: MetaData - name: каменный стол (Успокоительное) - type: Transform - pos: 7.5,-2.5 - parent: 89 - - type: Label - currentLabel: Успокоительное - - uid: 10237 + rot: 3.141592653589793 rad + pos: 0.5,12.5 + parent: 24450 + - uid: 26857 components: - type: Transform - pos: -34.5,24.5 - parent: 89 - - uid: 10238 + rot: 3.141592653589793 rad + pos: 0.5,14.5 + parent: 24450 + - uid: 26858 components: - type: Transform - pos: -34.5,23.5 - parent: 89 -- proto: TableWeb - entities: - - uid: 21011 + rot: 3.141592653589793 rad + pos: -24.5,13.5 + parent: 24450 + - uid: 26859 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,22.5 - parent: 89 -- proto: TableWood - entities: - - uid: 58 + pos: -26.5,-1.5 + parent: 24450 + - uid: 26860 components: - type: Transform - pos: -24.5,-0.5 - parent: 89 - - uid: 59 + rot: 1.5707963267948966 rad + pos: -22.5,-1.5 + parent: 24450 + - uid: 26861 components: - type: Transform - pos: -25.5,-0.5 - parent: 89 - - uid: 790 + rot: 3.141592653589793 rad + pos: -20.5,-2.5 + parent: 24450 + - uid: 26862 components: - type: Transform - pos: 24.5,43.5 - parent: 89 - - uid: 965 + rot: 1.5707963267948966 rad + pos: -2.5,-1.5 + parent: 24450 + - uid: 26863 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-3.5 - parent: 89 - - uid: 1747 + rot: 1.5707963267948966 rad + pos: -1.5,-1.5 + parent: 24450 + - uid: 26864 components: - type: Transform - pos: 44.5,5.5 - parent: 89 - - uid: 1938 + rot: 3.141592653589793 rad + pos: -19.5,14.5 + parent: 24450 + - uid: 26865 components: - type: Transform - pos: 35.5,13.5 - parent: 89 - - uid: 1973 + rot: 3.141592653589793 rad + pos: -19.5,16.5 + parent: 24450 + - uid: 26866 components: - type: Transform - pos: 34.5,14.5 - parent: 89 - - uid: 2000 + rot: 1.5707963267948966 rad + pos: -19.5,24.5 + parent: 24450 + - uid: 26867 components: - type: Transform - pos: 44.5,4.5 - parent: 89 - - uid: 2001 + rot: 1.5707963267948966 rad + pos: -24.5,24.5 + parent: 24450 + - uid: 26868 components: - type: Transform - pos: 44.5,6.5 - parent: 89 - - uid: 2122 + rot: 3.141592653589793 rad + pos: -19.5,20.5 + parent: 24450 + - uid: 26869 components: - type: Transform - pos: 35.5,14.5 - parent: 89 - - uid: 2125 + rot: 3.141592653589793 rad + pos: -24.5,16.5 + parent: 24450 + - uid: 26870 components: - type: Transform - pos: 34.5,13.5 - parent: 89 - - uid: 2126 + rot: 3.141592653589793 rad + pos: -4.5,18.5 + parent: 24450 + - uid: 26871 components: - type: Transform - pos: 36.5,13.5 - parent: 89 - - uid: 2127 + rot: 3.141592653589793 rad + pos: -4.5,16.5 + parent: 24450 + - uid: 26872 components: - type: Transform - pos: 36.5,14.5 - parent: 89 - - uid: 2128 + rot: 3.141592653589793 rad + pos: -6.5,11.5 + parent: 24450 + - uid: 26873 components: - type: Transform - pos: 32.5,14.5 - parent: 89 - - uid: 2129 + rot: 3.141592653589793 rad + pos: -4.5,14.5 + parent: 24450 + - uid: 26874 components: - type: Transform - pos: 32.5,13.5 - parent: 89 - - uid: 2132 + rot: 3.141592653589793 rad + pos: -4.5,13.5 + parent: 24450 + - uid: 26875 components: - type: Transform - pos: 33.5,14.5 - parent: 89 - - uid: 2134 + rot: 1.5707963267948966 rad + pos: 0.5,24.5 + parent: 24450 + - uid: 26876 components: - type: Transform - pos: 33.5,13.5 - parent: 89 - - uid: 2908 + rot: 1.5707963267948966 rad + pos: -4.5,24.5 + parent: 24450 + - uid: 26877 components: - type: Transform - pos: -55.5,7.5 - parent: 89 - - uid: 2916 + rot: 3.141592653589793 rad + pos: -13.5,11.5 + parent: 24450 + - uid: 26878 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,-2.5 - parent: 89 - - uid: 3208 + rot: 3.141592653589793 rad + pos: -19.5,18.5 + parent: 24450 + - uid: 26879 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-1.5 - parent: 89 - - uid: 3552 + pos: -24.5,14.5 + parent: 24450 + - uid: 26880 components: - type: Transform - pos: 30.5,-3.5 - parent: 89 - - uid: 3616 + rot: 3.141592653589793 rad + pos: -19.5,13.5 + parent: 24450 + - uid: 26881 components: - type: Transform - pos: 33.5,-0.5 - parent: 89 - - uid: 3737 + rot: 3.141592653589793 rad + pos: -17.5,11.5 + parent: 24450 + - uid: 26882 components: - type: Transform - pos: -26.5,-8.5 - parent: 89 - - uid: 3819 + rot: 3.141592653589793 rad + pos: -19.5,22.5 + parent: 24450 + - uid: 26883 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-2.5 - parent: 89 - - uid: 4003 + pos: -24.5,22.5 + parent: 24450 + - uid: 26884 components: - type: Transform - pos: -31.5,-5.5 - parent: 89 - - uid: 4004 + rot: 3.141592653589793 rad + pos: -24.5,20.5 + parent: 24450 + - uid: 26885 components: - type: Transform - pos: -31.5,-6.5 - parent: 89 - - uid: 4182 + rot: 3.141592653589793 rad + pos: -24.5,18.5 + parent: 24450 + - uid: 26886 components: - type: Transform - pos: -30.5,0.5 - parent: 89 - - uid: 4183 + rot: 3.141592653589793 rad + pos: -25.5,12.5 + parent: 24450 + - uid: 26887 components: - type: Transform - pos: -29.5,0.5 - parent: 89 - - uid: 4184 + rot: 3.141592653589793 rad + pos: -4.5,20.5 + parent: 24450 + - uid: 26888 components: - type: Transform - pos: -28.5,-2.5 - parent: 89 - - uid: 4259 + rot: 3.141592653589793 rad + pos: -4.5,22.5 + parent: 24450 + - uid: 26889 components: - type: Transform - pos: -33.5,-9.5 - parent: 89 - - uid: 4260 + rot: 3.141592653589793 rad + pos: 0.5,22.5 + parent: 24450 + - uid: 26890 components: - type: Transform - pos: -33.5,-3.5 - parent: 89 - - uid: 4261 + rot: 3.141592653589793 rad + pos: 0.5,20.5 + parent: 24450 + - uid: 26891 components: - type: Transform - pos: -35.5,-5.5 - parent: 89 - - uid: 4498 + rot: 3.141592653589793 rad + pos: 0.5,18.5 + parent: 24450 + - uid: 26892 components: - type: Transform - pos: -26.5,-6.5 - parent: 89 - - uid: 4526 + rot: 3.141592653589793 rad + pos: 0.5,16.5 + parent: 24450 + - uid: 26893 components: - type: Transform - pos: 32.5,-0.5 - parent: 89 - - uid: 4868 + rot: 3.141592653589793 rad + pos: -16.5,-2.5 + parent: 24450 + - uid: 26894 components: - type: Transform - pos: 48.5,10.5 - parent: 89 - - uid: 4888 + rot: 3.141592653589793 rad + pos: -16.5,-3.5 + parent: 24450 + - uid: 26895 components: - type: Transform - pos: 25.5,40.5 - parent: 89 - - uid: 4948 + rot: 3.141592653589793 rad + pos: -16.5,-4.5 + parent: 24450 + - uid: 26896 components: - type: Transform - pos: -19.5,-2.5 - parent: 89 - - uid: 4949 + rot: 3.141592653589793 rad + pos: -14.5,-4.5 + parent: 24450 + - uid: 26897 components: - type: Transform - pos: -19.5,-3.5 - parent: 89 - - uid: 4951 + rot: 3.141592653589793 rad + pos: -9.5,-4.5 + parent: 24450 + - uid: 26898 components: - type: Transform - pos: -19.5,-5.5 - parent: 89 - - uid: 4952 + rot: 3.141592653589793 rad + pos: -7.5,-4.5 + parent: 24450 + - uid: 26899 components: - type: Transform - pos: -19.5,-6.5 - parent: 89 - - uid: 4955 + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 24450 + - uid: 26900 components: - type: Transform - pos: -22.5,-6.5 - parent: 89 - - uid: 5390 + rot: 3.141592653589793 rad + pos: -7.5,-2.5 + parent: 24450 + - uid: 26901 components: - type: Transform - pos: 47.5,10.5 - parent: 89 - - uid: 5397 + rot: 3.141592653589793 rad + pos: -17.5,-2.5 + parent: 24450 + - uid: 26902 components: - type: Transform - pos: -50.5,9.5 - parent: 89 - - uid: 5398 + rot: 3.141592653589793 rad + pos: -6.5,-2.5 + parent: 24450 + - uid: 26903 components: - type: Transform - pos: -49.5,9.5 - parent: 89 - - uid: 5462 + rot: 3.141592653589793 rad + pos: -3.5,-2.5 + parent: 24450 + - uid: 26904 components: - type: Transform - pos: -48.5,-7.5 - parent: 89 - - uid: 5645 + rot: 1.5707963267948966 rad + pos: -21.5,-1.5 + parent: 24450 + - uid: 26905 components: - type: Transform - pos: 30.5,-6.5 - parent: 89 - - uid: 5801 + rot: 1.5707963267948966 rad + pos: -9.5,3.5 + parent: 24450 + - uid: 26906 components: - type: Transform - pos: -72.5,-17.5 - parent: 89 - - uid: 5802 + rot: 1.5707963267948966 rad + pos: -8.5,8.5 + parent: 24450 + - uid: 26907 components: - type: Transform - pos: -71.5,-17.5 - parent: 89 - - uid: 6097 + rot: 1.5707963267948966 rad + pos: -8.5,3.5 + parent: 24450 + - uid: 26908 components: - type: Transform - pos: -48.5,11.5 - parent: 89 - - uid: 6120 + rot: 1.5707963267948966 rad + pos: -14.5,8.5 + parent: 24450 + - uid: 26909 components: - type: Transform - pos: -45.5,11.5 - parent: 89 - - uid: 7425 + rot: 1.5707963267948966 rad + pos: -8.5,4.5 + parent: 24450 + - uid: 26910 components: - type: Transform - pos: -35.5,-7.5 - parent: 89 - - uid: 7426 + rot: 1.5707963267948966 rad + pos: -14.5,3.5 + parent: 24450 + - uid: 26911 components: - type: Transform - pos: -35.5,-9.5 - parent: 89 - - uid: 7427 + rot: 1.5707963267948966 rad + pos: -15.5,7.5 + parent: 24450 + - uid: 26912 components: - type: Transform - pos: -35.5,-3.5 - parent: 89 - - uid: 7750 + rot: 1.5707963267948966 rad + pos: -15.5,3.5 + parent: 24450 + - uid: 26913 components: - type: Transform - pos: -8.5,45.5 - parent: 89 - - uid: 7751 + rot: 1.5707963267948966 rad + pos: -15.5,8.5 + parent: 24450 + - uid: 26914 components: - type: Transform - pos: -8.5,44.5 - parent: 89 - - uid: 7753 + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 24450 + - uid: 26915 components: - type: Transform - pos: 1.5,45.5 - parent: 89 - - uid: 7754 + rot: 1.5707963267948966 rad + pos: -9.5,8.5 + parent: 24450 + - uid: 26916 components: - type: Transform - pos: 1.5,44.5 - parent: 89 - - uid: 8077 + rot: 1.5707963267948966 rad + pos: -8.5,7.5 + parent: 24450 + - uid: 26917 components: - type: Transform - pos: -5.5,33.5 - parent: 89 - - uid: 8078 + rot: -1.5707963267948966 rad + pos: 8.5,13.5 + parent: 24450 + - uid: 26918 components: - type: Transform - pos: -5.5,32.5 - parent: 89 - - uid: 9394 + rot: -1.5707963267948966 rad + pos: 11.5,13.5 + parent: 24450 + - uid: 26919 components: - type: Transform - pos: 19.5,18.5 - parent: 89 - - uid: 10187 + rot: -1.5707963267948966 rad + pos: 10.5,13.5 + parent: 24450 + - uid: 26920 components: - type: Transform - pos: -34.5,32.5 - parent: 89 - - uid: 10188 + rot: -1.5707963267948966 rad + pos: 9.5,13.5 + parent: 24450 + - uid: 26921 components: - type: Transform - pos: -34.5,31.5 - parent: 89 - - uid: 10207 + rot: -1.5707963267948966 rad + pos: 8.5,0.5 + parent: 24450 + - uid: 26922 components: - type: Transform - pos: -78.5,-1.5 - parent: 89 - - uid: 10230 + rot: -1.5707963267948966 rad + pos: 7.5,0.5 + parent: 24450 + - uid: 26923 components: - type: Transform - pos: -73.5,-1.5 - parent: 89 - - uid: 10231 + rot: 3.141592653589793 rad + pos: 12.5,13.5 + parent: 24450 + - uid: 26924 components: - type: Transform - pos: -79.5,-1.5 - parent: 89 - - uid: 10233 + rot: 3.141592653589793 rad + pos: 12.5,10.5 + parent: 24450 + - uid: 26925 components: - type: Transform - pos: -74.5,-1.5 - parent: 89 - - uid: 10299 + rot: -1.5707963267948966 rad + pos: 9.5,0.5 + parent: 24450 + - uid: 26926 components: - type: Transform - pos: -38.5,29.5 - parent: 89 - - uid: 10301 + rot: -1.5707963267948966 rad + pos: 12.5,7.5 + parent: 24450 + - uid: 26927 components: - type: Transform - pos: -36.5,29.5 - parent: 89 - - uid: 10366 + rot: -1.5707963267948966 rad + pos: 6.5,0.5 + parent: 24450 + - uid: 26928 components: - type: Transform - pos: -23.5,27.5 - parent: 89 - - uid: 10367 + rot: -1.5707963267948966 rad + pos: 5.5,0.5 + parent: 24450 + - uid: 26929 components: - type: Transform - pos: -23.5,28.5 - parent: 89 - - uid: 10368 + rot: -1.5707963267948966 rad + pos: 12.5,3.5 + parent: 24450 + - uid: 26930 components: - type: Transform - pos: -23.5,29.5 - parent: 89 - - uid: 10369 + rot: -1.5707963267948966 rad + pos: 12.5,4.5 + parent: 24450 + - uid: 26931 components: - type: Transform - pos: -22.5,29.5 - parent: 89 - - uid: 10370 + rot: 3.141592653589793 rad + pos: -29.5,0.5 + parent: 24450 + - uid: 26932 components: - type: Transform - pos: -19.5,29.5 - parent: 89 - - uid: 10371 + rot: 3.141592653589793 rad + pos: -30.5,0.5 + parent: 24450 + - uid: 26933 components: - type: Transform - pos: -19.5,28.5 - parent: 89 - - uid: 10372 + rot: 3.141592653589793 rad + pos: -31.5,0.5 + parent: 24450 + - uid: 26934 components: - type: Transform - pos: -19.5,27.5 - parent: 89 - - uid: 10394 + rot: 3.141592653589793 rad + pos: -32.5,0.5 + parent: 24450 + - uid: 26935 components: - type: Transform - pos: 4.5,-1.5 - parent: 89 - - uid: 10428 + rot: 3.141592653589793 rad + pos: -33.5,0.5 + parent: 24450 + - uid: 26936 components: - type: Transform - pos: 22.5,8.5 - parent: 89 - - uid: 10431 + rot: 3.141592653589793 rad + pos: -35.5,2.5 + parent: 24450 + - uid: 26937 components: - type: Transform - pos: 20.5,5.5 - parent: 89 - - uid: 10432 + rot: 3.141592653589793 rad + pos: -36.5,3.5 + parent: 24450 + - uid: 26938 components: - type: Transform - pos: 20.5,6.5 - parent: 89 - - uid: 10433 + rot: 3.141592653589793 rad + pos: -36.5,4.5 + parent: 24450 + - uid: 26939 components: - type: Transform - pos: 20.5,7.5 - parent: 89 - - uid: 10452 + pos: -36.5,7.5 + parent: 24450 + - uid: 26940 components: - type: Transform - pos: 18.5,8.5 - parent: 89 - - uid: 10465 + rot: 3.141592653589793 rad + pos: -36.5,10.5 + parent: 24450 + - uid: 26941 components: - type: Transform - pos: 18.5,11.5 - parent: 89 - - uid: 10803 + pos: -10.5,-4.5 + parent: 24450 + - uid: 26942 components: - type: Transform - pos: -37.5,29.5 - parent: 89 - - uid: 11063 + pos: -8.5,-4.5 + parent: 24450 + - uid: 26943 components: - type: Transform - pos: 33.5,-5.5 - parent: 89 - - uid: 12837 + pos: -13.5,-4.5 + parent: 24450 + - uid: 26944 components: - type: Transform - pos: 18.5,5.5 - parent: 89 - - uid: 12838 + pos: -15.5,-4.5 + parent: 24450 + - uid: 26945 components: - type: Transform - pos: 17.5,5.5 - parent: 89 - - uid: 13933 + pos: -9.5,-3.5 + parent: 24450 + - uid: 26946 components: - type: Transform - pos: -22.5,9.5 - parent: 89 - - uid: 14523 + pos: -14.5,-3.5 + parent: 24450 + - uid: 26947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -72.5,-5.5 - parent: 89 - - uid: 14534 + rot: 1.5707963267948966 rad + pos: -36.5,13.5 + parent: 24450 + - uid: 26948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -76.5,-5.5 - parent: 89 - - uid: 14535 + rot: 1.5707963267948966 rad + pos: -35.5,13.5 + parent: 24450 + - uid: 26949 components: - type: Transform - rot: 3.141592653589793 rad - pos: -75.5,-5.5 - parent: 89 - - uid: 14699 + rot: 1.5707963267948966 rad + pos: -34.5,13.5 + parent: 24450 + - uid: 26950 components: - type: Transform - pos: -80.5,-9.5 - parent: 89 - - uid: 14700 + rot: 1.5707963267948966 rad + pos: -33.5,13.5 + parent: 24450 + - uid: 26951 components: - type: Transform - pos: -79.5,-9.5 - parent: 89 - - uid: 14733 + rot: 1.5707963267948966 rad + pos: -32.5,13.5 + parent: 24450 + - uid: 26952 components: - type: Transform - pos: 6.5,-26.5 - parent: 89 - - uid: 14734 + pos: 3.5,12.5 + parent: 24450 + - uid: 26953 components: - type: Transform - pos: 6.5,-25.5 - parent: 89 - - uid: 14735 + pos: -28.5,8.5 + parent: 24450 + - uid: 26954 components: - type: Transform - pos: 7.5,-25.5 - parent: 89 - - uid: 14736 + pos: -28.5,9.5 + parent: 24450 + - uid: 26955 components: - type: Transform - pos: 7.5,-26.5 - parent: 89 - - uid: 14928 + pos: 2.5,12.5 + parent: 24450 + - uid: 26956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -10.5,-36.5 - parent: 89 - - uid: 15312 + pos: 4.5,12.5 + parent: 24450 + - uid: 26957 components: - type: Transform - pos: 32.5,-5.5 - parent: 89 - - uid: 15321 + pos: -18.5,11.5 + parent: 24450 + - uid: 26958 components: - type: Transform - pos: 30.5,-5.5 - parent: 89 - - uid: 17012 + pos: -19.5,11.5 + parent: 24450 + - uid: 26959 components: - type: Transform - pos: 19.5,17.5 - parent: 89 - - uid: 17102 + pos: -28.5,12.5 + parent: 24450 + - uid: 26960 components: - type: Transform - pos: 58.5,-31.5 - parent: 89 - - uid: 17308 + pos: 4.5,-1.5 + parent: 24450 + - uid: 26961 components: - type: Transform - pos: -34.5,-14.5 - parent: 89 - - uid: 17649 + pos: 4.5,-0.5 + parent: 24450 + - uid: 26962 components: - type: Transform - pos: -23.5,-6.5 - parent: 89 - - uid: 18157 + pos: -27.5,12.5 + parent: 24450 + - uid: 26963 components: - type: Transform - pos: 56.5,-32.5 - parent: 89 - - uid: 18176 + pos: -28.5,-1.5 + parent: 24450 + - uid: 26964 components: - type: Transform - pos: 55.5,-33.5 - parent: 89 - - uid: 18177 + pos: 3.5,-1.5 + parent: 24450 + - uid: 26965 components: - type: Transform - pos: 56.5,-33.5 - parent: 89 - - uid: 18332 + pos: -27.5,-1.5 + parent: 24450 + - uid: 26966 components: - type: Transform - pos: 57.5,-32.5 - parent: 89 - - uid: 18333 + pos: -28.5,-0.5 + parent: 24450 + - uid: 26967 components: - type: Transform - pos: 57.5,-31.5 - parent: 89 - - uid: 19082 + pos: -26.5,12.5 + parent: 24450 + - uid: 26968 components: - type: Transform - pos: -22.5,8.5 - parent: 89 - - uid: 19112 + pos: -19.5,25.5 + parent: 24450 + - uid: 26969 components: - type: Transform - pos: -25.5,9.5 - parent: 89 - - uid: 19508 + pos: -24.5,26.5 + parent: 24450 + - uid: 26970 components: - type: Transform - pos: -1.5,39.5 - parent: 89 - - uid: 19961 + pos: -24.5,25.5 + parent: 24450 + - uid: 26971 components: - type: Transform - pos: 25.5,39.5 - parent: 89 - - uid: 19997 + pos: -23.5,26.5 + parent: 24450 + - uid: 26972 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 18.5,21.5 - parent: 89 - - uid: 22311 + pos: -3.5,26.5 + parent: 24450 + - uid: 26973 components: - type: Transform - pos: 45.5,-37.5 - parent: 89 - - uid: 24919 + pos: -4.5,25.5 + parent: 24450 + - uid: 26974 components: - type: Transform - pos: -14.5,-24.5 - parent: 22565 - - uid: 25689 + pos: 0.5,26.5 + parent: 24450 + - uid: 26975 components: - type: Transform - pos: 5.5,-1.5 - parent: 89 - - uid: 25690 + pos: 0.5,25.5 + parent: 24450 + - uid: 26976 components: - type: Transform - pos: 3.5,-1.5 - parent: 89 -- proto: TargetClown - entities: - - uid: 17124 + pos: -20.5,26.5 + parent: 24450 + - uid: 26977 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,-12.5 - parent: 89 -- proto: TargetHuman - entities: - - uid: 17207 + pos: -0.5,26.5 + parent: 24450 + - uid: 26978 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-11.5 - parent: 89 - - uid: 17209 + pos: -4.5,12.5 + parent: 24450 + - uid: 26979 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-16.5 - parent: 89 - - uid: 21765 + pos: -19.5,12.5 + parent: 24450 + - uid: 26980 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-18.5 - parent: 89 -- proto: TargetStrange - entities: - - uid: 21374 + pos: -4.5,11.5 + parent: 24450 + - uid: 26981 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-19.5 - parent: 89 - - uid: 21831 + pos: -5.5,11.5 + parent: 24450 + - uid: 26982 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-14.5 - parent: 89 -- proto: TargetSyndicate - entities: - - uid: 17168 + pos: 5.5,12.5 + parent: 24450 + - uid: 26983 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-15.5 - parent: 89 -- proto: TegCenter - entities: - - uid: 7322 + pos: -35.5,1.5 + parent: 24450 + - uid: 26984 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-9.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 -- proto: TegCirculator - entities: - - uid: 7291 + pos: -35.5,0.5 + parent: 24450 + - uid: 26985 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-9.5 - parent: 89 - - type: PointLight - color: '#FF3300FF' - - uid: 7298 + pos: -34.5,0.5 + parent: 24450 + - uid: 26986 components: - type: Transform - pos: -85.5,-9.5 - parent: 89 - - type: PointLight - color: '#FF3300FF' -- proto: TelecomServer - entities: - - uid: 24920 + pos: -29.5,12.5 + parent: 24450 + - uid: 26987 components: - type: Transform - pos: -2.5,-17.5 - parent: 22565 -- proto: TelecomServerFilled - entities: - - uid: 16415 + pos: -29.5,9.5 + parent: 24450 + - uid: 26988 components: - type: Transform - pos: -107.5,26.5 - parent: 89 -- proto: TeslaCoil - entities: - - uid: 8359 + pos: -4.5,26.5 + parent: 24450 + - uid: 26989 components: - type: Transform - pos: -118.5,-6.5 - parent: 89 - - uid: 12633 + pos: -19.5,26.5 + parent: 24450 + - uid: 26990 components: - type: Transform - pos: -150.5,0.5 - parent: 89 - - uid: 13185 + pos: -11.5,0.5 + parent: 24450 + - uid: 26991 components: - type: Transform - pos: -144.5,0.5 - parent: 89 - - uid: 13186 + pos: -8.5,-1.5 + parent: 24450 + - uid: 26992 components: - type: Transform - pos: -150.5,-15.5 - parent: 89 -- proto: TeslaGenerator - entities: - - uid: 8177 + pos: -16.5,-1.5 + parent: 24450 + - uid: 26993 components: - type: Transform - pos: -118.5,-8.5 - parent: 89 -- proto: ThermomachineFreezerMachineCircuitBoard - entities: - - uid: 7067 + pos: 11.5,2.5 + parent: 24450 + - uid: 26994 components: - type: Transform - pos: -105.65808,-7.229766 - parent: 89 -- proto: ThermomachineHeaterMachineCircuitBoard - entities: - - uid: 7068 + pos: -25.5,9.5 + parent: 24450 + - uid: 26995 components: - type: Transform - pos: -105.329956,-7.557891 - parent: 89 -- proto: Thruster - entities: - - uid: 21706 + pos: -24.5,10.5 + parent: 24450 + - uid: 26996 components: - type: Transform - pos: 2.5,0.5 - parent: 21627 - - uid: 21707 + pos: 10.5,7.5 + parent: 24450 + - uid: 26997 components: - type: Transform - pos: -1.5,0.5 - parent: 21627 - - uid: 21708 + pos: 11.5,10.5 + parent: 24450 + - uid: 26998 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-6.5 - parent: 21627 - - uid: 21709 + pos: 8.5,7.5 + parent: 24450 + - uid: 26999 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-6.5 - parent: 21627 - - uid: 21710 + pos: 10.5,2.5 + parent: 24450 + - uid: 27000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,-4.5 - parent: 21627 - - uid: 21711 + pos: -34.5,7.5 + parent: 24450 + - uid: 27001 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-4.5 - parent: 21627 - - uid: 22404 + pos: -33.5,7.5 + parent: 24450 + - uid: 27002 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,10.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22405 + pos: -33.5,10.5 + parent: 24450 + - uid: 27003 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,11.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22406 + pos: -35.5,4.5 + parent: 24450 + - uid: 27004 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,12.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22407 + pos: -28.5,6.5 + parent: 24450 + - uid: 27005 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,13.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22408 + pos: -9.5,-0.5 + parent: 24450 + - uid: 27006 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,14.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22409 + pos: -28.5,4.5 + parent: 24450 + - uid: 27007 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,15.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22410 + pos: 4.5,0.5 + parent: 24450 + - uid: 27008 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,16.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22411 + pos: -28.5,0.5 + parent: 24450 + - uid: 27009 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,17.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22412 + pos: 4.5,4.5 + parent: 24450 + - uid: 27010 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,18.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22413 + pos: -28.5,7.5 + parent: 24450 + - uid: 27011 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -135.5,19.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22420 + pos: -15.5,-1.5 + parent: 24450 + - uid: 27012 components: - type: Transform - pos: -130.5,-9.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 22422 + pos: -7.5,-1.5 + parent: 24450 + - uid: 27013 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -136.5,-14.5 - parent: 89 - - type: Thruster - enabled: False - - uid: 24921 + pos: -14.5,0.5 + parent: 24450 + - uid: 27014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,25.5 - parent: 22565 - - uid: 25576 + pos: -12.5,0.5 + parent: 24450 + - uid: 27015 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-13.5 - parent: 18153 - - uid: 25577 + pos: -9.5,0.5 + parent: 24450 + - uid: 27016 components: - type: Transform - pos: 6.5,-2.5 - parent: 18153 - - uid: 25578 + pos: -8.5,0.5 + parent: 24450 + - uid: 27017 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-13.5 - parent: 18153 - - uid: 25579 + pos: -15.5,0.5 + parent: 24450 + - uid: 27018 components: - type: Transform - pos: 0.5,-2.5 - parent: 18153 - - uid: 25580 + pos: 9.5,4.5 + parent: 24450 + - uid: 27019 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-13.5 - parent: 18153 - - uid: 25581 + pos: 8.5,6.5 + parent: 24450 + - uid: 27020 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-13.5 - parent: 18153 - - uid: 25582 + pos: -24.5,9.5 + parent: 24450 + - uid: 27021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,-13.5 - parent: 18153 -- proto: TintedWindow - entities: - - uid: 4734 + pos: 8.5,10.5 + parent: 24450 + - uid: 27022 components: - type: Transform - pos: -38.5,-0.5 - parent: 89 - - uid: 5194 + pos: -32.5,10.5 + parent: 24450 + - uid: 27023 components: - type: Transform - pos: -48.5,-5.5 - parent: 89 - - uid: 9925 + pos: 9.5,10.5 + parent: 24450 + - uid: 27024 components: - type: Transform - pos: -13.5,-10.5 - parent: 89 - - uid: 10835 + pos: 10.5,10.5 + parent: 24450 + - uid: 27025 components: - type: Transform - pos: 5.5,15.5 - parent: 89 - - uid: 15044 + pos: 9.5,7.5 + parent: 24450 + - uid: 27026 components: - type: Transform - pos: 6.5,15.5 - parent: 89 - - uid: 16516 + pos: 11.5,7.5 + parent: 24450 + - uid: 27027 components: - type: Transform - pos: -7.5,20.5 - parent: 89 - - uid: 16517 + pos: 11.5,4.5 + parent: 24450 + - uid: 27028 components: - type: Transform - pos: -7.5,19.5 - parent: 89 - - uid: 16522 + pos: 10.5,4.5 + parent: 24450 + - uid: 27029 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,8.5 - parent: 89 - - uid: 16523 + pos: -29.5,10.5 + parent: 24450 + - uid: 27030 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,9.5 - parent: 89 - - uid: 16533 + pos: -29.5,11.5 + parent: 24450 + - uid: 27031 components: - type: Transform - pos: -7.5,17.5 - parent: 89 - - uid: 16548 + pos: -35.5,7.5 + parent: 24450 + - uid: 27032 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.5,18.5 - parent: 89 - - uid: 19901 + pos: -32.5,7.5 + parent: 24450 + - uid: 27033 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,6.5 - parent: 89 - - uid: 19906 + pos: -34.5,10.5 + parent: 24450 + - uid: 27034 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,5.5 - parent: 89 - - uid: 20825 + pos: -35.5,10.5 + parent: 24450 + - uid: 27035 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 3.5,18.5 - parent: 89 -- proto: ToiletDirtyWater - entities: - - uid: 1195 + pos: -32.5,6.5 + parent: 24450 + - uid: 27036 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,11.5 - parent: 89 - - uid: 1197 + pos: -32.5,4.5 + parent: 24450 + - uid: 27037 components: - type: Transform - rot: 3.141592653589793 rad - pos: -21.5,11.5 - parent: 89 - - uid: 1857 + pos: -33.5,4.5 + parent: 24450 + - uid: 27038 components: - type: Transform - rot: 3.141592653589793 rad - pos: -23.5,11.5 - parent: 89 - - uid: 9176 + pos: -34.5,4.5 + parent: 24450 + - uid: 27039 components: - type: Transform - rot: 3.141592653589793 rad - pos: -25.5,11.5 - parent: 89 - - uid: 10019 + pos: -14.5,-1.5 + parent: 24450 + - uid: 27040 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,39.5 - parent: 89 - - uid: 10020 + pos: -34.5,2.5 + parent: 24450 + - uid: 27041 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -50.5,43.5 - parent: 89 - - uid: 10355 + pos: 8.5,4.5 + parent: 24450 + - uid: 27042 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -23.5,31.5 - parent: 89 - - uid: 10356 + pos: -9.5,-1.5 + parent: 24450 + - uid: 27043 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -37.5,32.5 - parent: 89 - - uid: 16344 + pos: -26.5,8.5 + parent: 24450 + - uid: 27044 components: - type: Transform - pos: 32.5,26.5 - parent: 89 - - uid: 18451 + pos: -26.5,7.5 + parent: 24450 + - uid: 27045 components: - type: Transform - pos: 30.5,26.5 - parent: 89 - - uid: 20297 + pos: -26.5,9.5 + parent: 24450 + - uid: 27046 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-33.5 - parent: 89 - - uid: 21452 + pos: -14.5,-0.5 + parent: 24450 +- proto: WallMiningDiagonal + entities: + - uid: 27047 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-33.5 - parent: 89 - - uid: 21464 + pos: -2.5,-2.5 + parent: 24450 + - uid: 27048 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-33.5 - parent: 89 - - uid: 21744 + rot: 1.5707963267948966 rad + pos: -21.5,-2.5 + parent: 24450 + - uid: 27049 components: - type: Transform rot: 3.141592653589793 rad - pos: 53.5,-33.5 - parent: 89 - - uid: 24922 + pos: 12.5,2.5 + parent: 24450 + - uid: 27050 components: - type: Transform - pos: -13.5,-19.5 - parent: 22565 - - uid: 24923 + rot: 1.5707963267948966 rad + pos: -36.5,2.5 + parent: 24450 + - uid: 27051 components: - type: Transform rot: -1.5707963267948966 rad - pos: 11.5,3.5 - parent: 22565 - - uid: 24924 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,3.5 - parent: 22565 -- proto: ToiletEmpty - entities: - - uid: 20881 + pos: -29.5,13.5 + parent: 24450 + - uid: 27052 components: - type: Transform - pos: 41.5,17.5 - parent: 89 -- proto: ToolboxElectrical - entities: - - uid: 24925 + pos: 5.5,13.5 + parent: 24450 + - uid: 27053 components: - type: Transform rot: -1.5707963267948966 rad - pos: -5.344622,-16.993944 - parent: 22565 -- proto: ToolboxElectricalFilled - entities: - - uid: 220 + pos: -20.5,-1.5 + parent: 24450 + - uid: 27054 components: - type: Transform - pos: -16.5,-23.5 - parent: 89 - - uid: 221 + pos: -3.5,-1.5 + parent: 24450 +- proto: WallmountTelescreenFrame + entities: + - uid: 19994 components: - type: Transform - pos: -13.5,-23.5 - parent: 89 - - uid: 6933 + pos: -72.5,-5.5 + parent: 2 +- proto: WallmountTelevision + entities: + - uid: 19995 components: - type: Transform - pos: -96.50371,-1.402104 - parent: 89 - - uid: 7230 + pos: -5.5,4.5 + parent: 2 + - uid: 19996 components: - type: Transform - pos: -90.46701,13.116728 - parent: 89 - - uid: 16419 + pos: -62.5,6.5 + parent: 2 + - uid: 19997 components: - type: Transform - pos: -115.52165,6.6174526 - parent: 89 - - uid: 19493 + pos: -67.5,19.5 + parent: 2 + - uid: 19998 components: - type: Transform - pos: 55.445694,-1.2600117 - parent: 89 - - uid: 24926 + pos: 28.5,4.5 + parent: 2 +- proto: WallReinforced + entities: + - uid: 19999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.060518,7.6108303 - parent: 22565 - - uid: 24927 + rot: 1.5707963267948966 rad + pos: -127.5,15.5 + parent: 2 + - uid: 20000 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.3748856,2.002956 - parent: 22565 -- proto: ToolboxEmergencyFilled - entities: - - uid: 1752 + rot: 1.5707963267948966 rad + pos: -127.5,16.5 + parent: 2 + - uid: 20001 components: - type: Transform - pos: -35.505363,5.63023 - parent: 89 - - uid: 7232 + rot: 3.141592653589793 rad + pos: -53.5,-17.5 + parent: 2 + - uid: 20002 components: - type: Transform - pos: -94.388885,17.812685 - parent: 89 - - uid: 15514 + rot: 3.141592653589793 rad + pos: -53.5,-14.5 + parent: 2 + - uid: 20003 components: - type: Transform - pos: -46.504913,13.563406 - parent: 89 - - uid: 16469 + rot: 3.141592653589793 rad + pos: -57.5,-17.5 + parent: 2 + - uid: 20004 components: - type: Transform - pos: -100.41629,2.6556427 - parent: 89 - - uid: 16760 + rot: 3.141592653589793 rad + pos: -57.5,-16.5 + parent: 2 + - uid: 20005 components: - type: Transform - pos: -57.107525,12.612295 - parent: 89 - - uid: 17305 + rot: 3.141592653589793 rad + pos: -57.5,-15.5 + parent: 2 + - uid: 20006 components: - type: Transform - pos: -3.4961767,-1.7703378 - parent: 89 - - uid: 19498 + rot: 3.141592653589793 rad + pos: -57.5,-14.5 + parent: 2 + - uid: 20007 components: - type: Transform - pos: 56.070694,-1.3381367 - parent: 89 - - uid: 24928 + rot: 3.141592653589793 rad + pos: -57.5,-13.5 + parent: 2 + - uid: 20008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -29.602055,1.9329305 - parent: 22565 -- proto: ToolboxGoldFilled - entities: - - uid: 2650 + rot: 3.141592653589793 rad + pos: -57.5,-12.5 + parent: 2 + - uid: 20009 components: - type: Transform - pos: 50.511898,-4.98681 - parent: 89 - - uid: 21047 + rot: 3.141592653589793 rad + pos: -53.5,-12.5 + parent: 2 + - uid: 20010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.998886,-1.4111581 - parent: 89 -- proto: ToolboxMechanical - entities: - - uid: 156 + rot: 3.141592653589793 rad + pos: -57.5,-11.5 + parent: 2 + - uid: 20011 components: - type: Transform - pos: -6.4346533,-18.417767 - parent: 89 -- proto: ToolboxMechanicalFilled - entities: - - uid: 2806 + rot: 3.141592653589793 rad + pos: -56.5,-11.5 + parent: 2 + - uid: 20012 components: - type: Transform - pos: -19.52074,-23.483624 - parent: 89 - - uid: 6939 + rot: 3.141592653589793 rad + pos: -55.5,-11.5 + parent: 2 + - uid: 20013 components: - type: Transform - pos: -96.50371,-1.870854 - parent: 89 - - uid: 11013 + rot: 3.141592653589793 rad + pos: -54.5,-11.5 + parent: 2 + - uid: 20014 components: - type: Transform - pos: -55.47563,5.573606 - parent: 89 - - uid: 19494 + rot: 3.141592653589793 rad + pos: -53.5,-11.5 + parent: 2 + - uid: 20015 components: - type: Transform - pos: 55.46132,-1.4631367 - parent: 89 - - uid: 20083 + rot: 3.141592653589793 rad + pos: -53.5,-15.5 + parent: 2 + - uid: 20016 components: - type: Transform - pos: -115.52165,6.4195633 - parent: 89 - - uid: 24929 + rot: 3.141592653589793 rad + pos: 42.5,-7.5 + parent: 2 + - uid: 20017 components: - type: Transform rot: -1.5707963267948966 rad - pos: -24.092844,7.5518336 - parent: 22565 - - uid: 25583 + pos: -61.5,10.5 + parent: 2 + - uid: 20018 components: - type: Transform - pos: 4.633088,-11.60843 - parent: 18153 -- proto: ToyAi - entities: - - uid: 914 + pos: -105.5,-11.5 + parent: 2 + - uid: 20019 components: - type: Transform - pos: 54.502815,4.6506104 - parent: 89 -- proto: ToyAmongPequeno - entities: - - uid: 17000 + pos: -97.5,-11.5 + parent: 2 + - uid: 20020 components: - - type: MetaData - desc: Перед плазма спамом спроси разрешения в АХ! - name: Упси Дупси - type: Transform - pos: -88.41348,-27.304625 - parent: 89 -- proto: ToyHammer - entities: - - uid: 8176 + rot: -1.5707963267948966 rad + pos: -102.5,-11.5 + parent: 2 + - uid: 20021 components: - type: Transform - pos: 19.439804,-18.471947 - parent: 89 -- proto: ToyIan - entities: - - uid: 10071 + pos: -99.5,-11.5 + parent: 2 + - uid: 20022 components: - type: Transform - pos: -34.496696,29.825691 - parent: 89 - - uid: 10072 + rot: -1.5707963267948966 rad + pos: -104.5,-11.5 + parent: 2 + - uid: 20023 components: - type: Transform - pos: -34.69982,27.653816 - parent: 89 - - uid: 10075 + pos: -98.5,-11.5 + parent: 2 + - uid: 20024 components: - type: Transform - pos: -34.277946,27.622566 - parent: 89 - - uid: 10077 + rot: 3.141592653589793 rad + pos: -93.5,-3.5 + parent: 2 + - uid: 20025 components: - type: Transform - pos: -34.434196,28.028816 - parent: 89 - - uid: 10078 + pos: -122.5,-4.5 + parent: 2 + - uid: 20026 components: - type: Transform - pos: -34.746696,28.185066 - parent: 89 - - uid: 10222 + pos: -89.5,-10.5 + parent: 2 + - uid: 20027 components: - type: Transform - pos: -32.19982,29.419441 - parent: 89 - - uid: 10228 + pos: -121.5,-4.5 + parent: 2 + - uid: 20028 components: - type: Transform - pos: -34.50212,28.551262 - parent: 89 -- proto: ToyMarauder - entities: - - uid: 17020 + pos: -121.5,-9.5 + parent: 2 + - uid: 20029 components: - - type: MetaData - desc: Мародёр с позывным "кочевник", получил огромную огласку после вторжение ксеносов на одну из колоний, где он участвовал как защитник. - name: игрушечный no_mad - type: Transform - pos: 35.949993,14.835531 - parent: 89 -- proto: ToyMouse - entities: - - uid: 6234 + pos: -110.5,-19.5 + parent: 2 + - uid: 20030 components: - type: Transform - pos: 16.494328,25.730711 - parent: 89 -- proto: ToyRubberDuck - entities: - - uid: 9185 + rot: 1.5707963267948966 rad + pos: -127.5,18.5 + parent: 2 + - uid: 20031 components: - type: Transform - pos: 7.5,-28.5 - parent: 89 -- proto: ToySpawner - entities: - - uid: 95 + pos: -122.5,19.5 + parent: 2 + - uid: 20032 components: - type: Transform - pos: -43.5,-15.5 - parent: 89 - - uid: 6123 + pos: -119.5,19.5 + parent: 2 + - uid: 20033 components: - type: Transform - pos: 37.5,-2.5 - parent: 89 - - uid: 12869 + pos: -84.5,-3.5 + parent: 2 + - uid: 20034 components: - type: Transform - pos: 17.5,25.5 - parent: 89 - - uid: 14049 + pos: -124.5,19.5 + parent: 2 + - uid: 20035 components: - type: Transform - pos: -50.5,21.5 - parent: 89 - - uid: 17620 + pos: -125.5,19.5 + parent: 2 + - uid: 20036 components: - type: Transform - pos: 21.5,17.5 - parent: 89 - - uid: 19618 + pos: -118.5,13.5 + parent: 2 + - uid: 20037 components: - type: Transform - pos: -26.5,-24.5 - parent: 89 -- proto: TrackingImplanter - entities: - - uid: 11914 + pos: -120.5,17.5 + parent: 2 + - uid: 20038 components: - type: Transform - pos: 23.598495,27.541094 - parent: 89 - - uid: 15061 + pos: -126.5,19.5 + parent: 2 + - uid: 20039 components: - type: Transform - pos: 23.629745,27.478594 - parent: 89 -- proto: TrashBag - entities: - - uid: 9507 + pos: -120.5,15.5 + parent: 2 + - uid: 20040 components: - type: Transform - pos: -41.482098,7.89655 - parent: 89 - - uid: 9508 + pos: -120.5,19.5 + parent: 2 + - uid: 20041 components: - type: Transform - pos: -41.732098,7.880925 - parent: 89 - - uid: 18356 + pos: -110.5,-13.5 + parent: 2 + - uid: 20042 components: - type: Transform - pos: -41.622723,7.662175 - parent: 89 -- proto: TrashBananaPeel - entities: - - uid: 4119 + pos: -108.5,-13.5 + parent: 2 + - uid: 20043 components: - type: Transform - pos: -34.49477,-4.576667 - parent: 89 - - uid: 21288 + pos: -120.5,18.5 + parent: 2 + - uid: 20044 components: - type: Transform - pos: 36.5316,-4.602179 - parent: 89 -- proto: trayScanner - entities: - - uid: 116 + pos: -123.5,-9.5 + parent: 2 + - uid: 20045 components: - type: Transform - pos: -115.65394,2.6449199 - parent: 89 - - uid: 6902 + pos: -122.5,-9.5 + parent: 2 + - uid: 20046 components: - type: Transform - pos: -105.63304,0.7137947 - parent: 89 - - uid: 6982 + pos: -85.5,-3.5 + parent: 2 + - uid: 20047 components: - type: Transform - pos: -105.19554,0.6044197 - parent: 89 - - uid: 14945 + pos: -96.5,-3.5 + parent: 2 + - uid: 20048 components: - type: Transform - pos: -9.853606,-35.779358 - parent: 89 - - uid: 15287 + pos: -110.5,-12.5 + parent: 2 + - uid: 20049 components: - type: Transform - pos: -119.6608,11.784174 - parent: 89 - - uid: 15291 + pos: 32.5,4.5 + parent: 2 + - uid: 20050 components: - type: Transform - pos: -119.30142,11.612299 - parent: 89 - - uid: 19700 + pos: 25.5,4.5 + parent: 2 + - uid: 20051 components: - type: Transform - pos: 17.648815,-0.8417225 - parent: 89 - - uid: 19701 + pos: -12.5,-26.5 + parent: 2 + - uid: 20052 components: - type: Transform - pos: 17.648815,-0.8573475 - parent: 89 - - uid: 19702 + pos: -13.5,-26.5 + parent: 2 + - uid: 20053 components: - type: Transform - pos: 17.648815,-0.8573475 - parent: 89 - - uid: 20088 + pos: -13.5,-25.5 + parent: 2 + - uid: 20054 components: - type: Transform - pos: -115.28436,2.6449199 - parent: 89 -- proto: Truncheon - entities: - - uid: 22661 + pos: -16.5,-18.5 + parent: 2 + - uid: 20055 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 22662 + pos: 33.5,6.5 + parent: 2 + - uid: 20056 components: - type: Transform - parent: 22641 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: TwoWayLever - entities: - - uid: 4841 + pos: 33.5,7.5 + parent: 2 + - uid: 20057 components: - type: Transform - pos: -61.5,-17.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 4827: - - Left: Forward - - Right: Reverse - - Middle: Off - 4828: - - Left: Forward - - Right: Reverse - - Middle: Off - 4829: - - Left: Forward - - Right: Reverse - - Middle: Off - 4830: - - Left: Forward - - Right: Reverse - - Middle: Off - 4831: - - Left: Forward - - Right: Reverse - - Middle: Off - 4822: - - Middle: Off - - Right: Forward - - Left: Reverse - 4823: - - Middle: Off - - Right: Forward - - Left: Reverse - 4824: - - Middle: Off - - Right: Forward - - Left: Reverse - 4825: - - Middle: Off - - Right: Forward - - Left: Reverse - 4826: - - Left: Reverse - - Right: Forward - - Middle: Off - - uid: 5122 + rot: -1.5707963267948966 rad + pos: -21.5,6.5 + parent: 2 + - uid: 20058 components: - type: Transform - pos: -65.5,-4.5 - parent: 89 - - uid: 5123 + rot: -1.5707963267948966 rad + pos: -16.5,4.5 + parent: 2 + - uid: 20059 components: - type: Transform - pos: -60.5,-4.5 - parent: 89 - - uid: 7667 + rot: -1.5707963267948966 rad + pos: -15.5,9.5 + parent: 2 + - uid: 20060 components: - type: Transform - pos: -96.5,26.5 - parent: 89 - - type: DeviceLinkSource - linkedPorts: - 7674: - - Left: Forward - - Right: Reverse - - Middle: Off - 7676: - - Left: Forward - - Right: Reverse - - Middle: Off - 7661: - - Left: Forward - - Right: Reverse - - Middle: Off - 7666: - - Left: Forward - - Right: Reverse - - Middle: Off - 3618: - - Left: Forward - - Right: Reverse - - Middle: Off - 7665: - - Left: Forward - - Right: Reverse - - Middle: Off - 7664: - - Left: Forward - - Right: Reverse - - Middle: Off - 7662: - - Left: Forward - - Right: Reverse - - Middle: Off - 7663: - - Left: Forward - - Right: Reverse - - Middle: Off - 7673: - - Left: Forward - - Right: Reverse - - Middle: Off - 7672: - - Left: Forward - - Right: Reverse - - Middle: Off - 7671: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24930 + rot: -1.5707963267948966 rad + pos: -4.5,6.5 + parent: 2 + - uid: 20061 components: - type: Transform - pos: -5.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23831: - - Left: Forward - - Right: Reverse - - Middle: Off - 23829: - - Left: Forward - - Right: Reverse - - Middle: Off - 23830: - - Left: Forward - - Right: Reverse - - Middle: Off - 23828: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24931 + rot: -1.5707963267948966 rad + pos: -18.5,4.5 + parent: 2 + - uid: 20062 components: - type: Transform - pos: 1.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23840: - - Left: Forward - - Right: Reverse - - Middle: Off - 23841: - - Left: Forward - - Right: Reverse - - Middle: Off - 23842: - - Left: Forward - - Right: Reverse - - Middle: Off - 23843: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24932 + rot: -1.5707963267948966 rad + pos: -4.5,9.5 + parent: 2 + - uid: 20063 components: - type: Transform - pos: -3.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23832: - - Left: Forward - - Right: Reverse - - Middle: Off - 23833: - - Left: Forward - - Right: Reverse - - Middle: Off - 23834: - - Left: Forward - - Right: Reverse - - Middle: Off - 23835: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24933 + pos: 14.5,-13.5 + parent: 2 + - uid: 20064 components: - type: Transform - pos: -0.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23839: - - Left: Forward - - Right: Reverse - - Middle: Off - 23838: - - Left: Forward - - Right: Reverse - - Middle: Off - 23837: - - Left: Forward - - Right: Reverse - - Middle: Off - 23836: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24934 + pos: 13.5,-14.5 + parent: 2 + - uid: 20065 components: - type: Transform - pos: -18.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23812: - - Left: Forward - - Right: Reverse - - Middle: Off - 23817: - - Left: Forward - - Right: Reverse - - Middle: Off - 23816: - - Left: Forward - - Right: Reverse - - Middle: Off - 23818: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24935 + pos: 12.5,-14.5 + parent: 2 + - uid: 20066 components: - type: Transform - pos: -20.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23815: - - Left: Forward - - Right: Reverse - - Middle: Off - 23819: - - Left: Forward - - Right: Reverse - - Middle: Off - 23813: - - Left: Forward - - Right: Reverse - - Middle: Off - 23814: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24936 + pos: 10.5,-14.5 + parent: 2 + - uid: 20067 components: - type: Transform - pos: -23.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23821: - - Left: Forward - - Right: Reverse - - Middle: Off - 23820: - - Left: Forward - - Right: Reverse - - Middle: Off - 23822: - - Left: Forward - - Right: Reverse - - Middle: Off - 23827: - - Left: Forward - - Right: Reverse - - Middle: Off - - uid: 24937 + rot: -1.5707963267948966 rad + pos: 31.5,0.5 + parent: 2 + - uid: 20068 components: - type: Transform - pos: -25.5,0.5 - parent: 22565 - - type: DeviceLinkSource - linkedPorts: - 23823: - - Left: Forward - - Right: Reverse - - Middle: Off - 23826: - - Left: Forward - - Right: Reverse - - Middle: Off - 23825: - - Left: Forward - - Right: Reverse - - Middle: Off - 23824: - - Left: Forward - - Right: Reverse - - Middle: Off - 24719: - - Left: Forward - - Right: Reverse - - Middle: Off -- proto: UniformPrinter - entities: - - uid: 3346 + rot: -1.5707963267948966 rad + pos: 38.5,-7.5 + parent: 2 + - uid: 20069 components: - type: Transform - pos: 42.5,7.5 - parent: 89 -- proto: UniformScrubsColorBlue - entities: + pos: 33.5,-4.5 + parent: 2 - uid: 20070 components: - type: Transform - parent: 20068 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UniformScrubsColorGreen - entities: + pos: 33.5,-7.5 + parent: 2 - uid: 20071 components: - type: Transform - parent: 20068 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UniformScrubsColorPurple - entities: - - uid: 20069 + pos: -5.5,-33.5 + parent: 2 + - uid: 20072 components: - type: Transform - parent: 20068 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: UprightPianoInstrument - entities: - - uid: 3989 + pos: -8.5,-33.5 + parent: 2 + - uid: 20073 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,-5.5 - parent: 89 - - uid: 8008 + pos: -6.5,-26.5 + parent: 2 + - uid: 20074 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,41.5 - parent: 89 -- proto: Vaccinator - entities: - - uid: 15417 + pos: -4.5,-33.5 + parent: 2 + - uid: 20075 components: - type: Transform - pos: 7.5,29.5 - parent: 89 -- proto: VariantCubeBox - entities: - - uid: 8529 + pos: -6.5,-33.5 + parent: 2 + - uid: 20076 components: - type: Transform - pos: -1.4158952,-41.295216 - parent: 89 -- proto: VendingBarDrobe - entities: - - uid: 79 + pos: -7.5,-33.5 + parent: 2 + - uid: 20077 components: - type: Transform - pos: -31.5,0.5 - parent: 89 -- proto: VendingMachineAtmosDrobe - entities: - - uid: 6997 + pos: -9.5,-33.5 + parent: 2 + - uid: 20078 components: - type: Transform - pos: -96.5,-7.5 - parent: 89 -- proto: VendingMachineBooze - entities: - - uid: 60 + pos: 14.5,35.5 + parent: 2 + - uid: 20079 components: - type: Transform - pos: -26.5,-0.5 - parent: 89 - - uid: 728 + pos: 50.5,-10.5 + parent: 2 + - uid: 20080 components: - type: Transform - pos: 46.5,11.5 - parent: 89 - - uid: 7759 + rot: 3.141592653589793 rad + pos: 39.5,18.5 + parent: 2 + - uid: 20081 components: - type: Transform - pos: 1.5,46.5 - parent: 89 - - uid: 7760 + pos: -106.5,-13.5 + parent: 2 + - uid: 20082 components: - type: Transform - pos: -8.5,46.5 - parent: 89 - - uid: 17287 + pos: 30.5,-4.5 + parent: 2 + - uid: 20083 components: - type: Transform - pos: -55.5,48.5 - parent: 89 -- proto: VendingMachineCargoDrobe - entities: - - uid: 5829 + rot: -1.5707963267948966 rad + pos: 39.5,14.5 + parent: 2 + - uid: 20084 components: - type: Transform - pos: -71.5,-9.5 - parent: 89 -- proto: VendingMachineCart - entities: - - uid: 4521 + rot: -1.5707963267948966 rad + pos: 39.5,13.5 + parent: 2 + - uid: 20085 components: - type: Transform - pos: 44.5,10.5 - parent: 89 -- proto: VendingMachineChang - entities: - - uid: 8159 + rot: -1.5707963267948966 rad + pos: 39.5,12.5 + parent: 2 + - uid: 20086 components: - type: Transform - pos: -2.5,37.5 - parent: 89 - - uid: 10152 + rot: -1.5707963267948966 rad + pos: 39.5,11.5 + parent: 2 + - uid: 20087 components: - type: Transform - pos: -28.5,21.5 - parent: 89 -- proto: VendingMachineChapel - entities: - - uid: 5246 + rot: -1.5707963267948966 rad + pos: 40.5,11.5 + parent: 2 + - uid: 20088 components: - type: Transform - pos: -48.5,-6.5 - parent: 89 -- proto: VendingMachineChefDrobe - entities: - - uid: 14542 + rot: -1.5707963267948966 rad + pos: 41.5,11.5 + parent: 2 + - uid: 20089 components: - type: Transform - pos: -15.5,-9.5 - parent: 89 -- proto: VendingMachineChefvend - entities: - - uid: 14967 + rot: -1.5707963267948966 rad + pos: 42.5,11.5 + parent: 2 + - uid: 20090 components: - type: Transform - pos: -12.5,-5.5 - parent: 89 -- proto: VendingMachineChemDrobe - entities: - - uid: 11095 + rot: -1.5707963267948966 rad + pos: 44.5,11.5 + parent: 2 + - uid: 20091 components: - type: Transform - pos: 2.5,5.5 - parent: 89 -- proto: VendingMachineChemicals - entities: - - uid: 16916 + rot: -1.5707963267948966 rad + pos: 41.5,10.5 + parent: 2 + - uid: 20092 components: - type: Transform - pos: 3.5,5.5 - parent: 89 -- proto: VendingMachineCigs - entities: - - uid: 2520 + rot: -1.5707963267948966 rad + pos: 41.5,5.5 + parent: 2 + - uid: 20093 components: - type: Transform - pos: -53.5,5.5 - parent: 89 - - uid: 3006 + rot: -1.5707963267948966 rad + pos: 41.5,4.5 + parent: 2 + - uid: 20094 components: - type: Transform - pos: 36.5,3.5 - parent: 89 - - uid: 3255 + rot: -1.5707963267948966 rad + pos: 42.5,4.5 + parent: 2 + - uid: 20095 components: - type: Transform - pos: -33.5,15.5 - parent: 89 - - uid: 4042 + rot: -1.5707963267948966 rad + pos: 42.5,3.5 + parent: 2 + - uid: 20096 components: - type: Transform - pos: 1.5,-22.5 - parent: 89 - - uid: 4228 + pos: -5.5,-26.5 + parent: 2 + - uid: 20097 components: - type: Transform - pos: 15.5,-5.5 - parent: 89 - - uid: 5598 + pos: -4.5,-26.5 + parent: 2 + - uid: 20098 components: - type: Transform - pos: -23.5,-8.5 - parent: 89 - - uid: 6098 + pos: 47.5,-10.5 + parent: 2 + - uid: 20099 components: - type: Transform - pos: -67.5,1.5 - parent: 89 - - uid: 8084 + pos: 48.5,-10.5 + parent: 2 + - uid: 20100 components: - type: Transform - pos: -8.5,33.5 - parent: 89 -- proto: VendingMachineClothing - entities: - - uid: 7079 + pos: 46.5,-10.5 + parent: 2 + - uid: 20101 components: - type: Transform - pos: -95.5,12.5 - parent: 89 - - uid: 10155 + pos: -106.5,-12.5 + parent: 2 + - uid: 20102 components: - type: Transform - pos: -33.5,21.5 - parent: 89 -- proto: VendingMachineCoffee - entities: - - uid: 188 + rot: -1.5707963267948966 rad + pos: 63.5,9.5 + parent: 2 + - uid: 20103 components: - type: Transform - pos: 1.5,-21.5 - parent: 89 - - uid: 2169 + pos: -106.5,-11.5 + parent: 2 + - uid: 20104 components: - type: Transform - pos: 31.5,16.5 - parent: 89 - - uid: 6108 + rot: -1.5707963267948966 rad + pos: -103.5,-11.5 + parent: 2 + - uid: 20105 components: - type: Transform - pos: -51.5,11.5 - parent: 89 -- proto: VendingMachineCola - entities: - - uid: 3018 + pos: -101.5,-11.5 + parent: 2 + - uid: 20106 components: - type: Transform - pos: 37.5,6.5 - parent: 89 -- proto: VendingMachineCondiments - entities: - - uid: 21087 + pos: -100.5,-11.5 + parent: 2 + - uid: 20107 components: - type: Transform - pos: -18.5,-0.5 - parent: 89 -- proto: VendingMachineDetDrobe - entities: - - uid: 10506 + pos: -100.5,6.5 + parent: 2 + - uid: 20108 components: - type: Transform - pos: 16.5,8.5 - parent: 89 -- proto: VendingMachineDinnerware - entities: - - uid: 320 + pos: -82.5,-10.5 + parent: 2 + - uid: 20109 components: - type: Transform - pos: -11.5,-5.5 - parent: 89 -- proto: VendingMachineDiscount - entities: - - uid: 3019 + pos: -83.5,-10.5 + parent: 2 + - uid: 20110 components: - type: Transform - pos: 37.5,5.5 - parent: 89 - - uid: 6101 + pos: -83.5,-9.5 + parent: 2 + - uid: 20111 components: - type: Transform - pos: -58.5,1.5 - parent: 89 -- proto: VendingMachineEngiDrobe - entities: - - uid: 6912 + pos: -97.5,-10.5 + parent: 2 + - uid: 20112 components: - type: Transform - pos: -98.5,0.5 - parent: 89 -- proto: VendingMachineEngivend - entities: - - uid: 6918 + pos: -97.5,-9.5 + parent: 2 + - uid: 20113 components: - type: Transform - pos: -99.5,0.5 - parent: 89 -- proto: VendingMachineGames - entities: - - uid: 7619 + pos: -97.5,-8.5 + parent: 2 + - uid: 20114 components: - type: Transform - pos: -47.5,7.5 - parent: 89 - - uid: 14539 + pos: -97.5,-7.5 + parent: 2 + - uid: 20115 components: - type: Transform - pos: -75.5,-8.5 - parent: 89 - - uid: 15511 + pos: -97.5,-6.5 + parent: 2 + - uid: 20116 components: - type: Transform - pos: -71.5,7.5 - parent: 89 - - uid: 18175 + pos: -100.5,7.5 + parent: 2 + - uid: 20117 components: - type: Transform - pos: 55.5,-28.5 - parent: 89 -- proto: VendingMachineHydrobe - entities: - - uid: 4333 + pos: -100.5,8.5 + parent: 2 + - uid: 20118 components: - type: Transform - pos: -5.5,-5.5 - parent: 89 -- proto: VendingMachineJaniDrobe - entities: - - uid: 6919 + pos: -100.5,9.5 + parent: 2 + - uid: 20119 components: - type: Transform - pos: -35.5,8.5 - parent: 89 -- proto: VendingMachineLawDrobe - entities: - - uid: 14544 + pos: -100.5,10.5 + parent: 2 + - uid: 20120 components: - type: Transform - pos: -72.5,-7.5 - parent: 89 -- proto: VendingMachineMedical - entities: - - uid: 5814 + pos: -100.5,11.5 + parent: 2 + - uid: 20121 components: - type: Transform - pos: -2.5,21.5 - parent: 89 - - uid: 12209 + pos: -101.5,6.5 + parent: 2 + - uid: 20122 components: - type: Transform - pos: 8.5,14.5 - parent: 89 - - uid: 15401 + pos: -101.5,11.5 + parent: 2 + - uid: 20123 components: - type: Transform - pos: 11.5,34.5 - parent: 89 - - uid: 19795 + pos: -101.5,12.5 + parent: 2 + - uid: 20124 components: - type: Transform - pos: -4.5,21.5 - parent: 89 -- proto: VendingMachineMediDrobe - entities: - - uid: 12703 + pos: -102.5,12.5 + parent: 2 + - uid: 20125 components: - type: Transform - pos: 30.5,20.5 - parent: 89 -- proto: VendingMachineNutri - entities: - - uid: 9652 + pos: -103.5,12.5 + parent: 2 + - uid: 20126 components: - type: Transform - pos: -5.5,-4.5 - parent: 89 - - uid: 9720 + pos: -104.5,12.5 + parent: 2 + - uid: 20127 components: - type: Transform - pos: -5.5,-0.5 - parent: 89 -- proto: VendingMachineRoboDrobe - entities: - - uid: 2136 + pos: -105.5,12.5 + parent: 2 + - uid: 20128 components: - type: Transform - pos: -11.5,-23.5 - parent: 89 -- proto: VendingMachineRobotics - entities: - - uid: 21097 + pos: -106.5,12.5 + parent: 2 + - uid: 20129 components: - type: Transform - pos: -21.5,-20.5 - parent: 89 -- proto: VendingMachineSalvage - entities: - - uid: 5830 + pos: -106.5,6.5 + parent: 2 + - uid: 20130 components: - type: Transform - pos: -50.5,-9.5 - parent: 89 -- proto: VendingMachineSciDrobe - entities: - - uid: 1939 + pos: -106.5,10.5 + parent: 2 + - uid: 20131 components: - type: Transform - pos: -11.5,-19.5 - parent: 89 -- proto: VendingMachineSec - entities: - - uid: 2557 + pos: -106.5,11.5 + parent: 2 + - uid: 20132 components: - type: Transform - pos: 36.5,-12.5 - parent: 89 - - uid: 4869 + rot: -1.5707963267948966 rad + pos: -89.5,-6.5 + parent: 2 + - uid: 20133 components: - type: Transform - pos: 23.5,-6.5 - parent: 89 -- proto: VendingMachineSecDrobe - entities: - - uid: 6135 + pos: 36.5,-18.5 + parent: 2 + - uid: 20134 components: - type: Transform - pos: 22.5,-6.5 - parent: 89 -- proto: VendingMachineSovietSoda - entities: - - uid: 17657 + pos: 43.5,-1.5 + parent: 2 + - uid: 20135 components: - type: Transform - pos: -108.5,-9.5 - parent: 89 -- proto: VendingMachineSustenance - entities: - - uid: 21352 + pos: 42.5,-1.5 + parent: 2 + - uid: 20136 components: - type: Transform - pos: 40.5,-22.5 - parent: 89 - - uid: 24938 + pos: 44.5,-1.5 + parent: 2 + - uid: 20137 components: - type: Transform - pos: -27.5,-0.5 - parent: 22565 - - uid: 24939 + pos: 41.5,-1.5 + parent: 2 + - uid: 20138 components: - type: Transform - pos: 3.5,-0.5 - parent: 22565 - - uid: 24940 + pos: 40.5,-1.5 + parent: 2 + - uid: 20139 components: - type: Transform - pos: 3.5,0.5 - parent: 22565 - - uid: 24941 + pos: 0.5,-26.5 + parent: 2 + - uid: 20140 components: - type: Transform - pos: -27.5,0.5 - parent: 22565 - - uid: 25381 + pos: 0.5,-27.5 + parent: 2 + - uid: 20141 components: - type: Transform - pos: 51.5,-27.5 - parent: 89 - - uid: 25584 + pos: 0.5,-28.5 + parent: 2 + - uid: 20142 components: - type: Transform - pos: 5.5,-9.5 - parent: 18153 -- proto: VendingMachineTankDispenserEngineering - entities: - - uid: 8895 + pos: 0.5,-29.5 + parent: 2 + - uid: 20143 components: - type: Transform - pos: -130.5,-0.5 - parent: 89 -- proto: VendingMachineTankDispenserEVA - entities: - - uid: 817 + pos: -3.5,-26.5 + parent: 2 + - uid: 20144 components: - type: Transform - pos: -93.5,-7.5 - parent: 89 - - uid: 2209 + pos: -3.5,-27.5 + parent: 2 + - uid: 20145 components: - type: Transform - pos: 31.5,9.5 - parent: 89 - - uid: 2680 + pos: -3.5,-28.5 + parent: 2 + - uid: 20146 components: - type: Transform - pos: -86.5,-13.5 - parent: 89 - - uid: 5519 + pos: -2.5,-32.5 + parent: 2 + - uid: 20147 components: - type: Transform - pos: -46.5,-17.5 - parent: 89 - - uid: 6925 + pos: -3.5,-31.5 + parent: 2 + - uid: 20148 components: - type: Transform - pos: -96.5,0.5 - parent: 89 - - uid: 20090 + pos: -3.5,-32.5 + parent: 2 + - uid: 20149 components: - type: Transform - pos: -98.5,-4.5 - parent: 89 - - uid: 21114 + pos: -0.5,-32.5 + parent: 2 + - uid: 20150 components: - type: Transform - pos: 46.5,18.5 - parent: 89 -- proto: VendingMachineTheater - entities: - - uid: 4247 + pos: -3.5,-29.5 + parent: 2 + - uid: 20151 components: - type: Transform - pos: -33.5,-6.5 - parent: 89 -- proto: VendingMachineViroDrobe - entities: - - uid: 7970 + pos: -9.5,-26.5 + parent: 2 + - uid: 20152 components: - type: Transform - pos: 8.5,34.5 - parent: 89 -- proto: VendingMachineWallMedical - entities: - - uid: 7257 + pos: -10.5,-27.5 + parent: 2 + - uid: 20153 components: - type: Transform - pos: 1.5,14.5 - parent: 89 - - uid: 12846 + pos: -10.5,-28.5 + parent: 2 + - uid: 20154 components: - type: Transform - pos: 15.5,16.5 - parent: 89 - - uid: 15865 + pos: -10.5,-29.5 + parent: 2 + - uid: 20155 components: - type: Transform - pos: 27.5,21.5 - parent: 89 - - uid: 21583 + pos: -10.5,-31.5 + parent: 2 + - uid: 20156 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -13.5,18.5 - parent: 89 -- proto: VendingMachineYouTool - entities: - - uid: 7034 + pos: -10.5,-30.5 + parent: 2 + - uid: 20157 components: - type: Transform - pos: -98.5,-5.5 - parent: 89 - - uid: 7035 + pos: -10.5,-32.5 + parent: 2 + - uid: 20158 components: - type: Transform - pos: -92.5,17.5 - parent: 89 -- proto: WallMining - entities: - - uid: 24942 + pos: -10.5,-33.5 + parent: 2 + - uid: 20159 components: - type: Transform - pos: 2.5,-1.5 - parent: 22565 - - uid: 24943 + pos: -8.5,-26.5 + parent: 2 + - uid: 20160 components: - type: Transform - rot: 3.141592653589793 rad - pos: -10.5,11.5 - parent: 22565 - - uid: 24944 + pos: -7.5,-26.5 + parent: 2 + - uid: 20161 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,12.5 - parent: 22565 - - uid: 24945 + pos: -95.5,-22.5 + parent: 2 + - uid: 20162 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,13.5 - parent: 22565 - - uid: 24946 + pos: -101.5,-22.5 + parent: 2 + - uid: 20163 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,12.5 - parent: 22565 - - uid: 24947 + pos: -101.5,-23.5 + parent: 2 + - uid: 20164 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,12.5 - parent: 22565 - - uid: 24948 + pos: -101.5,-24.5 + parent: 2 + - uid: 20165 components: - type: Transform rot: 3.141592653589793 rad - pos: 0.5,14.5 - parent: 22565 - - uid: 24949 + pos: -101.5,-25.5 + parent: 2 + - uid: 20166 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,13.5 - parent: 22565 - - uid: 24950 - components: - - type: Transform - pos: -26.5,-1.5 - parent: 22565 - - uid: 24951 + pos: -98.5,-26.5 + parent: 2 + - uid: 20167 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -22.5,-1.5 - parent: 22565 - - uid: 24952 + rot: 3.141592653589793 rad + pos: -101.5,-26.5 + parent: 2 + - uid: 20168 components: - type: Transform rot: 3.141592653589793 rad - pos: -20.5,-2.5 - parent: 22565 - - uid: 24953 + pos: -100.5,-26.5 + parent: 2 + - uid: 20169 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,-1.5 - parent: 22565 - - uid: 24954 + rot: 3.141592653589793 rad + pos: -99.5,-22.5 + parent: 2 + - uid: 20170 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-1.5 - parent: 22565 - - uid: 24955 + rot: 3.141592653589793 rad + pos: -99.5,-26.5 + parent: 2 + - uid: 20171 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,14.5 - parent: 22565 - - uid: 24956 + pos: -99.5,-25.5 + parent: 2 + - uid: 20172 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,16.5 - parent: 22565 - - uid: 24957 + pos: -99.5,-24.5 + parent: 2 + - uid: 20173 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,24.5 - parent: 22565 - - uid: 24958 + rot: 3.141592653589793 rad + pos: -99.5,-23.5 + parent: 2 + - uid: 20174 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,24.5 - parent: 22565 - - uid: 24959 + rot: 3.141592653589793 rad + pos: -97.5,-26.5 + parent: 2 + - uid: 20175 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,20.5 - parent: 22565 - - uid: 24960 + pos: -97.5,-25.5 + parent: 2 + - uid: 20176 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,16.5 - parent: 22565 - - uid: 24961 + pos: -97.5,-24.5 + parent: 2 + - uid: 20177 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,18.5 - parent: 22565 - - uid: 24962 + pos: -97.5,-23.5 + parent: 2 + - uid: 20178 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,16.5 - parent: 22565 - - uid: 24963 + pos: -97.5,-22.5 + parent: 2 + - uid: 20179 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,11.5 - parent: 22565 - - uid: 24964 + pos: -96.5,-26.5 + parent: 2 + - uid: 20180 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,14.5 - parent: 22565 - - uid: 24965 + pos: -95.5,-26.5 + parent: 2 + - uid: 20181 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,13.5 - parent: 22565 - - uid: 24966 + pos: -95.5,-25.5 + parent: 2 + - uid: 20182 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,24.5 - parent: 22565 - - uid: 24967 + rot: 3.141592653589793 rad + pos: -95.5,-24.5 + parent: 2 + - uid: 20183 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,24.5 - parent: 22565 - - uid: 24968 + rot: 3.141592653589793 rad + pos: -95.5,-23.5 + parent: 2 + - uid: 20184 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,11.5 - parent: 22565 - - uid: 24969 + pos: -94.5,-26.5 + parent: 2 + - uid: 20185 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,18.5 - parent: 22565 - - uid: 24970 + pos: -93.5,-26.5 + parent: 2 + - uid: 20186 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,14.5 - parent: 22565 - - uid: 24971 + pos: -93.5,-25.5 + parent: 2 + - uid: 20187 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,13.5 - parent: 22565 - - uid: 24972 + pos: -93.5,-24.5 + parent: 2 + - uid: 20188 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,11.5 - parent: 22565 - - uid: 24973 + pos: -93.5,-23.5 + parent: 2 + - uid: 20189 components: - type: Transform rot: 3.141592653589793 rad - pos: -19.5,22.5 - parent: 22565 - - uid: 24974 + pos: -93.5,-22.5 + parent: 2 + - uid: 20190 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,22.5 - parent: 22565 - - uid: 24975 + pos: -92.5,-26.5 + parent: 2 + - uid: 20191 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,20.5 - parent: 22565 - - uid: 24976 + pos: -91.5,-26.5 + parent: 2 + - uid: 20192 components: - type: Transform rot: 3.141592653589793 rad - pos: -24.5,18.5 - parent: 22565 - - uid: 24977 + pos: -91.5,-25.5 + parent: 2 + - uid: 20193 components: - type: Transform rot: 3.141592653589793 rad - pos: -25.5,12.5 - parent: 22565 - - uid: 24978 + pos: -91.5,-24.5 + parent: 2 + - uid: 20194 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,20.5 - parent: 22565 - - uid: 24979 + pos: -91.5,-23.5 + parent: 2 + - uid: 20195 components: - type: Transform rot: 3.141592653589793 rad - pos: -4.5,22.5 - parent: 22565 - - uid: 24980 + pos: -91.5,-22.5 + parent: 2 + - uid: 20196 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,22.5 - parent: 22565 - - uid: 24981 + rot: -1.5707963267948966 rad + pos: -10.5,-24.5 + parent: 2 + - uid: 20197 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,20.5 - parent: 22565 - - uid: 24982 + pos: -86.5,11.5 + parent: 2 + - uid: 20198 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,18.5 - parent: 22565 - - uid: 24983 + pos: -83.5,17.5 + parent: 2 + - uid: 20199 components: - type: Transform - rot: 3.141592653589793 rad - pos: 0.5,16.5 - parent: 22565 - - uid: 24984 + pos: -83.5,15.5 + parent: 2 + - uid: 20200 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-2.5 - parent: 22565 - - uid: 24985 + pos: 50.5,-6.5 + parent: 2 + - uid: 20201 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-3.5 - parent: 22565 - - uid: 24986 + rot: -1.5707963267948966 rad + pos: -9.5,-24.5 + parent: 2 + - uid: 20202 components: - type: Transform - rot: 3.141592653589793 rad - pos: -16.5,-4.5 - parent: 22565 - - uid: 24987 + rot: -1.5707963267948966 rad + pos: -8.5,-24.5 + parent: 2 + - uid: 20203 components: - type: Transform - rot: 3.141592653589793 rad - pos: -14.5,-4.5 - parent: 22565 - - uid: 24988 + rot: -1.5707963267948966 rad + pos: -11.5,-24.5 + parent: 2 + - uid: 20204 components: - type: Transform rot: 3.141592653589793 rad - pos: -9.5,-4.5 - parent: 22565 - - uid: 24989 + pos: -89.5,-22.5 + parent: 2 + - uid: 20205 components: - type: Transform - rot: 3.141592653589793 rad - pos: -7.5,-4.5 - parent: 22565 - - uid: 24990 + pos: 49.5,-10.5 + parent: 2 + - uid: 20206 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-3.5 - parent: 22565 - - uid: 24991 + pos: 42.5,2.5 + parent: 2 + - uid: 20207 components: - type: Transform rot: 3.141592653589793 rad - pos: -7.5,-2.5 - parent: 22565 - - uid: 24992 + pos: 39.5,-0.5 + parent: 2 + - uid: 20208 components: - type: Transform rot: 3.141592653589793 rad - pos: -17.5,-2.5 - parent: 22565 - - uid: 24993 + pos: 38.5,-0.5 + parent: 2 + - uid: 20209 components: - type: Transform rot: 3.141592653589793 rad - pos: -6.5,-2.5 - parent: 22565 - - uid: 24994 + pos: 37.5,-0.5 + parent: 2 + - uid: 20210 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-2.5 - parent: 22565 - - uid: 24995 + pos: 37.5,0.5 + parent: 2 + - uid: 20211 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-1.5 - parent: 22565 - - uid: 24996 + rot: 3.141592653589793 rad + pos: 36.5,0.5 + parent: 2 + - uid: 20212 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,3.5 - parent: 22565 - - uid: 24997 + pos: 0.5,-30.5 + parent: 2 + - uid: 20213 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,8.5 - parent: 22565 - - uid: 24998 + pos: 5.5,-26.5 + parent: 2 + - uid: 20214 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,3.5 - parent: 22565 - - uid: 24999 + pos: 5.5,-27.5 + parent: 2 + - uid: 20215 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,8.5 - parent: 22565 - - uid: 25000 + pos: -3.5,-36.5 + parent: 2 + - uid: 20216 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,4.5 - parent: 22565 - - uid: 25001 + pos: -10.5,-26.5 + parent: 2 + - uid: 20217 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,3.5 - parent: 22565 - - uid: 25002 + pos: 4.5,-26.5 + parent: 2 + - uid: 20218 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,7.5 - parent: 22565 - - uid: 25003 + pos: 0.5,-31.5 + parent: 2 + - uid: 20219 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,3.5 - parent: 22565 - - uid: 25004 + pos: -3.5,-34.5 + parent: 2 + - uid: 20220 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,8.5 - parent: 22565 - - uid: 25005 + pos: -3.5,-33.5 + parent: 2 + - uid: 20221 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 22565 - - uid: 25006 + pos: 41.5,7.5 + parent: 2 + - uid: 20222 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,8.5 - parent: 22565 - - uid: 25007 + pos: 17.5,9.5 + parent: 2 + - uid: 20223 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,7.5 - parent: 22565 - - uid: 25008 + pos: 16.5,9.5 + parent: 2 + - uid: 20224 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,13.5 - parent: 22565 - - uid: 25009 + rot: 3.141592653589793 rad + pos: -89.5,-24.5 + parent: 2 + - uid: 20225 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,13.5 - parent: 22565 - - uid: 25010 + rot: 3.141592653589793 rad + pos: -89.5,-23.5 + parent: 2 + - uid: 20226 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 10.5,13.5 - parent: 22565 - - uid: 25011 + rot: 3.141592653589793 rad + pos: -89.5,-25.5 + parent: 2 + - uid: 20227 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,13.5 - parent: 22565 - - uid: 25012 + rot: 3.141592653589793 rad + pos: -89.5,-26.5 + parent: 2 + - uid: 20228 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 8.5,0.5 - parent: 22565 - - uid: 25013 + rot: 3.141592653589793 rad + pos: -90.5,-26.5 + parent: 2 + - uid: 20229 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 7.5,0.5 - parent: 22565 - - uid: 25014 + rot: 3.141592653589793 rad + pos: -88.5,-26.5 + parent: 2 + - uid: 20230 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,13.5 - parent: 22565 - - uid: 25015 + pos: -87.5,-26.5 + parent: 2 + - uid: 20231 components: - type: Transform rot: 3.141592653589793 rad - pos: 12.5,10.5 - parent: 22565 - - uid: 25016 + pos: -87.5,-25.5 + parent: 2 + - uid: 20232 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 9.5,0.5 - parent: 22565 - - uid: 25017 + rot: 3.141592653589793 rad + pos: -87.5,-24.5 + parent: 2 + - uid: 20233 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,7.5 - parent: 22565 - - uid: 25018 + rot: 3.141592653589793 rad + pos: -87.5,-23.5 + parent: 2 + - uid: 20234 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 6.5,0.5 - parent: 22565 - - uid: 25019 + rot: 3.141592653589793 rad + pos: -87.5,-22.5 + parent: 2 + - uid: 20235 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,0.5 - parent: 22565 - - uid: 25020 + rot: 3.141592653589793 rad + pos: -86.5,-26.5 + parent: 2 + - uid: 20236 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,3.5 - parent: 22565 - - uid: 25021 + rot: 3.141592653589793 rad + pos: -85.5,-26.5 + parent: 2 + - uid: 20237 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 12.5,4.5 - parent: 22565 - - uid: 25022 + rot: 3.141592653589793 rad + pos: -85.5,-25.5 + parent: 2 + - uid: 20238 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,0.5 - parent: 22565 - - uid: 25023 + pos: -85.5,-24.5 + parent: 2 + - uid: 20239 components: - type: Transform rot: 3.141592653589793 rad - pos: -30.5,0.5 - parent: 22565 - - uid: 25024 + pos: -85.5,-23.5 + parent: 2 + - uid: 20240 components: - type: Transform rot: 3.141592653589793 rad - pos: -31.5,0.5 - parent: 22565 - - uid: 25025 + pos: -85.5,-22.5 + parent: 2 + - uid: 20241 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,0.5 - parent: 22565 - - uid: 25026 + rot: -1.5707963267948966 rad + pos: 30.5,10.5 + parent: 2 + - uid: 20242 components: - type: Transform - rot: 3.141592653589793 rad - pos: -33.5,0.5 - parent: 22565 - - uid: 25027 + pos: 32.5,17.5 + parent: 2 + - uid: 20243 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,2.5 - parent: 22565 - - uid: 25028 + pos: 31.5,17.5 + parent: 2 + - uid: 20244 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,3.5 - parent: 22565 - - uid: 25029 + pos: 29.5,16.5 + parent: 2 + - uid: 20245 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,4.5 - parent: 22565 - - uid: 25030 + pos: 29.5,17.5 + parent: 2 + - uid: 20246 components: - type: Transform - pos: -36.5,7.5 - parent: 22565 - - uid: 25031 + pos: 30.5,17.5 + parent: 2 + - uid: 20247 components: - type: Transform - rot: 3.141592653589793 rad - pos: -36.5,10.5 - parent: 22565 - - uid: 25032 + pos: 29.5,11.5 + parent: 2 + - uid: 20248 components: - type: Transform - pos: -10.5,-4.5 - parent: 22565 - - uid: 25033 + pos: 29.5,12.5 + parent: 2 + - uid: 20249 components: - type: Transform - pos: -8.5,-4.5 - parent: 22565 - - uid: 25034 + pos: 29.5,13.5 + parent: 2 + - uid: 20250 components: - type: Transform - pos: -13.5,-4.5 - parent: 22565 - - uid: 25035 + pos: 29.5,14.5 + parent: 2 + - uid: 20251 components: - type: Transform - pos: -15.5,-4.5 - parent: 22565 - - uid: 25036 + pos: 29.5,15.5 + parent: 2 + - uid: 20252 components: - type: Transform - pos: -9.5,-3.5 - parent: 22565 - - uid: 25037 + rot: -1.5707963267948966 rad + pos: 39.5,15.5 + parent: 2 + - uid: 20253 components: - type: Transform - pos: -14.5,-3.5 - parent: 22565 - - uid: 25038 + rot: -1.5707963267948966 rad + pos: 39.5,10.5 + parent: 2 + - uid: 20254 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,13.5 - parent: 22565 - - uid: 25039 + rot: -1.5707963267948966 rad + pos: 38.5,10.5 + parent: 2 + - uid: 20255 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,13.5 - parent: 22565 - - uid: 25040 + rot: -1.5707963267948966 rad + pos: 37.5,10.5 + parent: 2 + - uid: 20256 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,13.5 - parent: 22565 - - uid: 25041 + rot: -1.5707963267948966 rad + pos: 37.5,9.5 + parent: 2 + - uid: 20257 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,13.5 - parent: 22565 - - uid: 25042 + rot: -1.5707963267948966 rad + pos: 33.5,9.5 + parent: 2 + - uid: 20258 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,13.5 - parent: 22565 -- proto: WallMiningDiagonal - entities: - - uid: 25043 + rot: -1.5707963267948966 rad + pos: 33.5,10.5 + parent: 2 + - uid: 20259 components: - type: Transform - rot: 3.141592653589793 rad - pos: -2.5,-2.5 - parent: 22565 - - uid: 25044 + rot: -1.5707963267948966 rad + pos: 32.5,10.5 + parent: 2 + - uid: 20260 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-2.5 - parent: 22565 - - uid: 25045 + rot: -1.5707963267948966 rad + pos: 31.5,10.5 + parent: 2 + - uid: 20261 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,2.5 - parent: 22565 - - uid: 25046 + rot: -1.5707963267948966 rad + pos: 29.5,10.5 + parent: 2 + - uid: 20262 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -36.5,2.5 - parent: 22565 - - uid: 25047 + rot: -1.5707963267948966 rad + pos: 29.5,4.5 + parent: 2 + - uid: 20263 components: - type: Transform rot: -1.5707963267948966 rad - pos: -29.5,13.5 - parent: 22565 - - uid: 25048 + pos: 33.5,4.5 + parent: 2 + - uid: 20264 components: - type: Transform - pos: 5.5,13.5 - parent: 22565 - - uid: 25049 + rot: -1.5707963267948966 rad + pos: 33.5,5.5 + parent: 2 + - uid: 20265 components: - type: Transform rot: -1.5707963267948966 rad - pos: -20.5,-1.5 - parent: 22565 - - uid: 25050 + pos: 33.5,8.5 + parent: 2 + - uid: 20266 components: - type: Transform - pos: -3.5,-1.5 - parent: 22565 -- proto: WallmountTelescreenFrame - entities: - - uid: 16866 + pos: 29.5,7.5 + parent: 2 + - uid: 20267 components: - type: Transform - pos: -72.5,-5.5 - parent: 89 -- proto: WallmountTelevision - entities: - - uid: 17249 + rot: -1.5707963267948966 rad + pos: -78.5,-22.5 + parent: 2 + - uid: 20268 components: - type: Transform - pos: -5.5,4.5 - parent: 89 - - uid: 19783 + rot: -1.5707963267948966 rad + pos: -78.5,-26.5 + parent: 2 + - uid: 20269 components: - type: Transform - pos: -62.5,6.5 - parent: 89 - - uid: 19784 + rot: -1.5707963267948966 rad + pos: -82.5,-26.5 + parent: 2 + - uid: 20270 components: - type: Transform - pos: -67.5,19.5 - parent: 89 - - uid: 19785 + rot: -1.5707963267948966 rad + pos: -82.5,-22.5 + parent: 2 + - uid: 20271 components: - type: Transform - pos: 28.5,4.5 - parent: 89 -- proto: WallReinforced - entities: - - uid: 113 + rot: -1.5707963267948966 rad + pos: -82.5,-23.5 + parent: 2 + - uid: 20272 components: - type: Transform - pos: 11.5,38.5 - parent: 89 - - uid: 146 + rot: -1.5707963267948966 rad + pos: -82.5,-25.5 + parent: 2 + - uid: 20273 components: - type: Transform - pos: 26.5,29.5 - parent: 89 - - uid: 170 + pos: 33.5,17.5 + parent: 2 + - uid: 20274 components: - type: Transform - pos: -8.5,-42.5 - parent: 89 - - uid: 244 + pos: 34.5,17.5 + parent: 2 + - uid: 20275 components: - type: Transform - pos: -2.5,-44.5 - parent: 89 - - uid: 247 + pos: 35.5,17.5 + parent: 2 + - uid: 20276 components: - type: Transform - pos: -2.5,-45.5 - parent: 89 - - uid: 255 + pos: 36.5,17.5 + parent: 2 + - uid: 20277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-42.5 - parent: 89 - - uid: 257 + pos: 37.5,17.5 + parent: 2 + - uid: 20278 components: - type: Transform - pos: -2.5,-46.5 - parent: 89 - - uid: 269 + pos: 38.5,17.5 + parent: 2 + - uid: 20279 components: - type: Transform - pos: -5.5,-33.5 - parent: 89 - - uid: 271 + pos: 39.5,17.5 + parent: 2 + - uid: 20280 components: - type: Transform - pos: -8.5,-33.5 - parent: 89 - - uid: 285 + pos: 39.5,16.5 + parent: 2 + - uid: 20281 components: - type: Transform - pos: -6.5,-26.5 - parent: 89 - - uid: 286 + pos: 35.5,0.5 + parent: 2 + - uid: 20282 components: - type: Transform - pos: -4.5,-33.5 - parent: 89 - - uid: 287 + pos: 34.5,0.5 + parent: 2 + - uid: 20283 components: - type: Transform - pos: -6.5,-33.5 - parent: 89 - - uid: 288 + pos: 33.5,0.5 + parent: 2 + - uid: 20284 components: - type: Transform - pos: -7.5,-33.5 - parent: 89 - - uid: 289 + pos: 29.5,0.5 + parent: 2 + - uid: 20285 components: - type: Transform - pos: -9.5,-33.5 - parent: 89 - - uid: 301 + pos: 36.5,-15.5 + parent: 2 + - uid: 20286 components: - type: Transform - pos: 14.5,35.5 - parent: 89 - - uid: 393 + pos: 34.5,-15.5 + parent: 2 + - uid: 20287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,-7.5 - parent: 89 - - uid: 394 + pos: 35.5,-15.5 + parent: 2 + - uid: 20288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,-7.5 - parent: 89 - - uid: 397 + pos: 33.5,-15.5 + parent: 2 + - uid: 20289 components: - type: Transform - pos: 50.5,-10.5 - parent: 89 - - uid: 459 + pos: 32.5,-15.5 + parent: 2 + - uid: 20290 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,15.5 - parent: 89 - - uid: 460 + pos: 31.5,-15.5 + parent: 2 + - uid: 20291 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 51.5,14.5 - parent: 89 - - uid: 461 + pos: 30.5,-15.5 + parent: 2 + - uid: 20292 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,18.5 - parent: 89 - - uid: 462 + pos: 29.5,-15.5 + parent: 2 + - uid: 20293 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,15.5 - parent: 89 - - uid: 465 + pos: 27.5,-15.5 + parent: 2 + - uid: 20294 components: - type: Transform - pos: 47.5,-9.5 - parent: 89 - - uid: 468 + pos: 26.5,-15.5 + parent: 2 + - uid: 20295 components: - type: Transform - pos: -106.5,-13.5 - parent: 89 - - uid: 470 + pos: 24.5,-15.5 + parent: 2 + - uid: 20296 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,13.5 - parent: 89 - - uid: 471 + pos: 23.5,-15.5 + parent: 2 + - uid: 20297 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,12.5 - parent: 89 - - uid: 472 + pos: 17.5,-12.5 + parent: 2 + - uid: 20298 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,11.5 - parent: 89 - - uid: 473 + pos: 17.5,-11.5 + parent: 2 + - uid: 20299 components: - type: Transform - pos: 49.5,19.5 - parent: 89 - - uid: 474 + pos: 17.5,-13.5 + parent: 2 + - uid: 20300 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,15.5 - parent: 89 - - uid: 475 + pos: 21.5,-15.5 + parent: 2 + - uid: 20301 components: - type: Transform - pos: 30.5,-4.5 - parent: 89 - - uid: 479 + pos: 17.5,-14.5 + parent: 2 + - uid: 20302 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 45.5,14.5 - parent: 89 - - uid: 483 + pos: 20.5,-15.5 + parent: 2 + - uid: 20303 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,14.5 - parent: 89 - - uid: 484 + rot: 3.141592653589793 rad + pos: 18.5,-15.5 + parent: 2 + - uid: 20304 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,13.5 - parent: 89 - - uid: 485 + pos: 14.5,-11.5 + parent: 2 + - uid: 20305 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,12.5 - parent: 89 - - uid: 486 + pos: 15.5,-11.5 + parent: 2 + - uid: 20306 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,11.5 - parent: 89 - - uid: 487 + pos: 1.5,-14.5 + parent: 2 + - uid: 20307 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 40.5,11.5 - parent: 89 - - uid: 488 + pos: 1.5,-13.5 + parent: 2 + - uid: 20308 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,11.5 - parent: 89 - - uid: 489 + pos: 2.5,-14.5 + parent: 2 + - uid: 20309 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,11.5 - parent: 89 - - uid: 491 + pos: 3.5,-14.5 + parent: 2 + - uid: 20310 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 44.5,11.5 - parent: 89 - - uid: 492 + pos: 4.5,-14.5 + parent: 2 + - uid: 20311 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,10.5 - parent: 89 - - uid: 499 + pos: 5.5,-14.5 + parent: 2 + - uid: 20312 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,5.5 - parent: 89 - - uid: 500 + pos: 6.5,-14.5 + parent: 2 + - uid: 20313 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,4.5 - parent: 89 - - uid: 501 + pos: 6.5,-13.5 + parent: 2 + - uid: 20314 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,4.5 - parent: 89 - - uid: 502 + pos: 8.5,-13.5 + parent: 2 + - uid: 20315 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,3.5 - parent: 89 - - uid: 503 + pos: 9.5,-13.5 + parent: 2 + - uid: 20316 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,2.5 - parent: 89 - - uid: 504 + pos: 10.5,-13.5 + parent: 2 + - uid: 20317 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,3.5 - parent: 89 - - uid: 505 + pos: 10.5,-12.5 + parent: 2 + - uid: 20318 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,4.5 - parent: 89 - - uid: 506 + pos: 10.5,-11.5 + parent: 2 + - uid: 20319 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,5.5 - parent: 89 - - uid: 507 + pos: 7.5,-13.5 + parent: 2 + - uid: 20320 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,6.5 - parent: 89 - - uid: 508 + pos: 36.5,-13.5 + parent: 2 + - uid: 20321 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,2.5 - parent: 89 - - uid: 510 + pos: 2.5,0.5 + parent: 2 + - uid: 20322 components: - type: Transform - pos: -5.5,-26.5 - parent: 89 - - uid: 511 + pos: 50.5,-8.5 + parent: 2 + - uid: 20323 components: - type: Transform - pos: -4.5,-26.5 - parent: 89 - - uid: 512 + pos: 43.5,-7.5 + parent: 2 + - uid: 20324 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,6.5 - parent: 89 - - uid: 513 + pos: 1.5,-3.5 + parent: 2 + - uid: 20325 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 47.5,9.5 - parent: 89 - - uid: 514 + pos: 35.5,-13.5 + parent: 2 + - uid: 20326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,9.5 - parent: 89 - - uid: 515 + pos: 1.5,-9.5 + parent: 2 + - uid: 20327 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,10.5 - parent: 89 - - uid: 518 + pos: 2.5,-9.5 + parent: 2 + - uid: 20328 components: - type: Transform - pos: 47.5,-10.5 - parent: 89 - - uid: 519 + pos: 2.5,-8.5 + parent: 2 + - uid: 20329 components: - type: Transform - pos: 46.5,-9.5 - parent: 89 - - uid: 520 + pos: 2.5,-7.5 + parent: 2 + - uid: 20330 components: - type: Transform - pos: 46.5,-8.5 - parent: 89 - - uid: 524 + pos: 2.5,-6.5 + parent: 2 + - uid: 20331 components: - type: Transform - pos: 48.5,-10.5 - parent: 89 - - uid: 525 + pos: 2.5,-5.5 + parent: 2 + - uid: 20332 components: - type: Transform - pos: 48.5,-9.5 - parent: 89 - - uid: 526 + pos: 2.5,-4.5 + parent: 2 + - uid: 20333 components: - type: Transform - pos: 46.5,-10.5 - parent: 89 - - uid: 527 + pos: 2.5,-3.5 + parent: 2 + - uid: 20334 components: - type: Transform - pos: -106.5,-12.5 - parent: 89 - - uid: 528 + pos: 1.5,-2.5 + parent: 2 + - uid: 20335 components: - type: Transform - pos: 49.5,14.5 - parent: 89 - - uid: 534 + pos: 1.5,-1.5 + parent: 2 + - uid: 20336 components: - type: Transform - pos: 48.5,-8.5 - parent: 89 - - uid: 544 + pos: 1.5,-0.5 + parent: 2 + - uid: 20337 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,4.5 - parent: 89 - - uid: 545 + pos: 1.5,0.5 + parent: 2 + - uid: 20338 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,4.5 - parent: 89 - - uid: 547 + pos: 3.5,0.5 + parent: 2 + - uid: 20339 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 65.5,9.5 - parent: 89 - - uid: 548 + pos: 4.5,0.5 + parent: 2 + - uid: 20340 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 64.5,9.5 - parent: 89 - - uid: 549 + pos: 5.5,0.5 + parent: 2 + - uid: 20341 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 63.5,9.5 - parent: 89 - - uid: 551 + pos: 6.5,0.5 + parent: 2 + - uid: 20342 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 61.5,14.5 - parent: 89 - - uid: 552 + pos: 7.5,0.5 + parent: 2 + - uid: 20343 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,14.5 - parent: 89 - - uid: 553 + pos: 8.5,0.5 + parent: 2 + - uid: 20344 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 60.5,15.5 - parent: 89 - - uid: 555 + pos: 10.5,0.5 + parent: 2 + - uid: 20345 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,7.5 - parent: 89 - - uid: 556 + pos: 11.5,0.5 + parent: 2 + - uid: 20346 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,1.5 - parent: 89 - - uid: 557 + pos: 12.5,0.5 + parent: 2 + - uid: 20347 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,1.5 - parent: 89 - - uid: 558 + pos: 13.5,0.5 + parent: 2 + - uid: 20348 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,1.5 - parent: 89 - - uid: 559 + pos: 14.5,0.5 + parent: 2 + - uid: 20349 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,1.5 - parent: 89 - - uid: 560 + pos: 15.5,0.5 + parent: 2 + - uid: 20350 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,1.5 - parent: 89 - - uid: 562 + pos: 16.5,0.5 + parent: 2 + - uid: 20351 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,2.5 - parent: 89 - - uid: 563 + pos: 17.5,0.5 + parent: 2 + - uid: 20352 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,3.5 - parent: 89 - - uid: 564 + pos: 19.5,0.5 + parent: 2 + - uid: 20353 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,4.5 - parent: 89 - - uid: 565 + pos: 20.5,0.5 + parent: 2 + - uid: 20354 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,5.5 - parent: 89 - - uid: 566 + pos: 20.5,-0.5 + parent: 2 + - uid: 20355 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,6.5 - parent: 89 - - uid: 568 + pos: 21.5,-0.5 + parent: 2 + - uid: 20356 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,7.5 - parent: 89 - - uid: 569 + pos: 22.5,-0.5 + parent: 2 + - uid: 20357 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,7.5 - parent: 89 - - uid: 570 + pos: 23.5,-0.5 + parent: 2 + - uid: 20358 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,7.5 - parent: 89 - - uid: 571 + pos: 24.5,-0.5 + parent: 2 + - uid: 20359 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 57.5,7.5 - parent: 89 - - uid: 572 + pos: 24.5,0.5 + parent: 2 + - uid: 20360 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,6.5 - parent: 89 - - uid: 573 + pos: 24.5,0.5 + parent: 2 + - uid: 20361 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,5.5 - parent: 89 - - uid: 575 + pos: 25.5,0.5 + parent: 2 + - uid: 20362 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,3.5 - parent: 89 - - uid: 576 + pos: 26.5,0.5 + parent: 2 + - uid: 20363 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 56.5,2.5 - parent: 89 - - uid: 578 + pos: 27.5,0.5 + parent: 2 + - uid: 20364 components: - type: Transform - pos: -0.5,-37.5 - parent: 89 - - uid: 579 + pos: 6.5,-9.5 + parent: 2 + - uid: 20365 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-23.5 - parent: 89 - - uid: 580 + pos: 6.5,-8.5 + parent: 2 + - uid: 20366 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-23.5 - parent: 89 - - uid: 581 + pos: 6.5,-7.5 + parent: 2 + - uid: 20367 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-25.5 - parent: 89 - - uid: 582 + pos: 9.5,-7.5 + parent: 2 + - uid: 20368 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-25.5 - parent: 89 - - uid: 583 + pos: 10.5,-7.5 + parent: 2 + - uid: 20369 components: - type: Transform - pos: 48.5,9.5 - parent: 89 - - uid: 584 + pos: 10.5,-8.5 + parent: 2 + - uid: 20370 components: - type: Transform - pos: 49.5,9.5 - parent: 89 - - uid: 585 + pos: 10.5,-10.5 + parent: 2 + - uid: 20371 components: - type: Transform - pos: 51.5,13.5 - parent: 89 - - uid: 586 + pos: 20.5,-11.5 + parent: 2 + - uid: 20372 components: - type: Transform - pos: 51.5,12.5 - parent: 89 - - uid: 587 + pos: 20.5,-12.5 + parent: 2 + - uid: 20373 components: - type: Transform - pos: 49.5,10.5 - parent: 89 - - uid: 589 + pos: 20.5,-13.5 + parent: 2 + - uid: 20374 components: - type: Transform - pos: 50.5,12.5 - parent: 89 - - uid: 598 + pos: 20.5,-14.5 + parent: 2 + - uid: 20375 components: - type: Transform - pos: -106.5,-11.5 - parent: 89 - - uid: 600 + pos: 23.5,-11.5 + parent: 2 + - uid: 20376 components: - type: Transform - pos: -105.5,-11.5 - parent: 89 - - uid: 601 + pos: 23.5,-12.5 + parent: 2 + - uid: 20377 components: - type: Transform - pos: -104.5,-11.5 - parent: 89 - - uid: 602 + pos: 23.5,-13.5 + parent: 2 + - uid: 20378 components: - type: Transform - pos: -103.5,-11.5 - parent: 89 - - uid: 603 + pos: 23.5,-14.5 + parent: 2 + - uid: 20379 components: - type: Transform - pos: -102.5,-11.5 - parent: 89 - - uid: 604 + pos: 26.5,-11.5 + parent: 2 + - uid: 20380 components: - type: Transform - pos: -101.5,-11.5 - parent: 89 - - uid: 605 + pos: 26.5,-12.5 + parent: 2 + - uid: 20381 components: - type: Transform - pos: -100.5,-11.5 - parent: 89 - - uid: 606 + pos: 26.5,-13.5 + parent: 2 + - uid: 20382 components: - type: Transform - pos: -99.5,-11.5 - parent: 89 - - uid: 607 + pos: 26.5,-14.5 + parent: 2 + - uid: 20383 components: - type: Transform - pos: -98.5,-11.5 - parent: 89 - - uid: 608 + pos: 29.5,-11.5 + parent: 2 + - uid: 20384 components: - type: Transform - pos: -97.5,-11.5 - parent: 89 - - uid: 609 + pos: 29.5,-12.5 + parent: 2 + - uid: 20385 components: - type: Transform - pos: -97.5,-12.5 - parent: 89 - - uid: 611 + pos: 29.5,-13.5 + parent: 2 + - uid: 20386 components: - type: Transform - pos: -100.5,6.5 - parent: 89 - - uid: 613 + pos: 29.5,-14.5 + parent: 2 + - uid: 20387 components: - type: Transform - pos: -95.5,-12.5 - parent: 89 - - uid: 614 + pos: 35.5,-12.5 + parent: 2 + - uid: 20388 components: - type: Transform - pos: -96.5,-6.5 - parent: 89 - - uid: 623 + rot: -1.5707963267948966 rad + pos: 45.5,-4.5 + parent: 2 + - uid: 20389 components: - type: Transform - pos: -90.5,-12.5 - parent: 89 - - uid: 625 + rot: -1.5707963267948966 rad + pos: 44.5,-4.5 + parent: 2 + - uid: 20390 components: - type: Transform - pos: -89.5,-12.5 - parent: 89 - - uid: 627 + pos: 39.5,-7.5 + parent: 2 + - uid: 20391 components: - type: Transform - pos: -88.5,-12.5 - parent: 89 - - uid: 629 + pos: 24.5,-3.5 + parent: 2 + - uid: 20392 components: - type: Transform - pos: -87.5,-12.5 - parent: 89 - - uid: 631 + pos: 39.5,-8.5 + parent: 2 + - uid: 20393 components: - type: Transform - pos: -86.5,-12.5 - parent: 89 - - uid: 655 + pos: 39.5,-9.5 + parent: 2 + - uid: 20394 components: - type: Transform - pos: -102.5,-20.5 - parent: 89 - - uid: 656 + pos: 39.5,-1.5 + parent: 2 + - uid: 20395 components: - type: Transform - pos: -103.5,-20.5 - parent: 89 - - uid: 657 + pos: 38.5,-1.5 + parent: 2 + - uid: 20396 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,6.5 - parent: 89 - - uid: 658 + pos: 38.5,-2.5 + parent: 2 + - uid: 20397 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,6.5 - parent: 89 - - uid: 659 + pos: 38.5,-3.5 + parent: 2 + - uid: 20398 components: - type: Transform - pos: -106.5,-20.5 - parent: 89 - - uid: 663 + pos: 38.5,-4.5 + parent: 2 + - uid: 20399 components: - type: Transform - pos: -110.5,-20.5 - parent: 89 - - uid: 664 + pos: 37.5,-4.5 + parent: 2 + - uid: 20400 components: - type: Transform - pos: -106.5,-19.5 - parent: 89 - - uid: 665 + pos: 29.5,-7.5 + parent: 2 + - uid: 20401 components: - type: Transform - pos: -106.5,-18.5 - parent: 89 - - uid: 674 + pos: 29.5,-4.5 + parent: 2 + - uid: 20402 components: - type: Transform - pos: 44.5,23.5 - parent: 89 - - uid: 675 + pos: 31.5,-4.5 + parent: 2 + - uid: 20403 components: - type: Transform - pos: 43.5,23.5 - parent: 89 - - uid: 763 + pos: 29.5,-3.5 + parent: 2 + - uid: 20404 components: - type: Transform - pos: -82.5,-10.5 - parent: 89 - - uid: 764 + pos: 29.5,-2.5 + parent: 2 + - uid: 20405 components: - type: Transform - pos: -83.5,-10.5 - parent: 89 - - uid: 765 + pos: 29.5,-1.5 + parent: 2 + - uid: 20406 components: - type: Transform - pos: -83.5,-9.5 - parent: 89 - - uid: 791 + pos: 29.5,-0.5 + parent: 2 + - uid: 20407 components: - type: Transform - pos: 45.5,-6.5 - parent: 89 - - uid: 796 + pos: 24.5,-4.5 + parent: 2 + - uid: 20408 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,19.5 - parent: 89 - - uid: 811 + pos: 24.5,-5.5 + parent: 2 + - uid: 20409 components: - type: Transform - pos: -97.5,-10.5 - parent: 89 - - uid: 812 + pos: 24.5,-6.5 + parent: 2 + - uid: 20410 components: - type: Transform - pos: -97.5,-9.5 - parent: 89 - - uid: 813 + pos: 24.5,-7.5 + parent: 2 + - uid: 20411 components: - type: Transform - pos: -97.5,-8.5 - parent: 89 - - uid: 814 + pos: 23.5,-7.5 + parent: 2 + - uid: 20412 components: - type: Transform - pos: -97.5,-7.5 - parent: 89 - - uid: 815 + pos: 22.5,-7.5 + parent: 2 + - uid: 20413 components: - type: Transform - pos: -97.5,-6.5 - parent: 89 - - uid: 868 + pos: 21.5,-7.5 + parent: 2 + - uid: 20414 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,6.5 - parent: 89 - - uid: 871 + pos: 20.5,-7.5 + parent: 2 + - uid: 20415 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 48.5,2.5 - parent: 89 - - uid: 872 + pos: 19.5,-7.5 + parent: 2 + - uid: 20416 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-22.5 - parent: 89 - - uid: 873 + pos: 17.5,-7.5 + parent: 2 + - uid: 20417 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-21.5 - parent: 89 - - uid: 876 + pos: 16.5,-7.5 + parent: 2 + - uid: 20418 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -106.5,-22.5 - parent: 89 - - uid: 878 + pos: 16.5,-6.5 + parent: 2 + - uid: 20419 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,3.5 - parent: 89 - - uid: 879 + pos: 16.5,-5.5 + parent: 2 + - uid: 20420 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,2.5 - parent: 89 - - uid: 880 + pos: 16.5,-4.5 + parent: 2 + - uid: 20421 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 49.5,2.5 - parent: 89 - - uid: 881 + pos: 16.5,-3.5 + parent: 2 + - uid: 20422 components: - type: Transform - pos: -100.5,7.5 - parent: 89 - - uid: 882 + pos: 20.5,-1.5 + parent: 2 + - uid: 20423 components: - type: Transform - pos: -100.5,8.5 - parent: 89 - - uid: 883 + pos: 17.5,-3.5 + parent: 2 + - uid: 20424 components: - type: Transform - pos: -100.5,9.5 - parent: 89 - - uid: 884 + pos: 18.5,-3.5 + parent: 2 + - uid: 20425 components: - type: Transform - pos: -100.5,10.5 - parent: 89 - - uid: 885 + pos: 19.5,-3.5 + parent: 2 + - uid: 20426 components: - type: Transform - pos: -100.5,11.5 - parent: 89 - - uid: 886 + pos: 20.5,-3.5 + parent: 2 + - uid: 20427 components: - type: Transform - pos: -101.5,6.5 - parent: 89 - - uid: 887 + pos: 20.5,-2.5 + parent: 2 + - uid: 20428 components: - type: Transform - pos: -101.5,11.5 - parent: 89 - - uid: 888 + pos: 16.5,-1.5 + parent: 2 + - uid: 20429 components: - type: Transform - pos: -101.5,12.5 - parent: 89 - - uid: 889 + pos: 16.5,-0.5 + parent: 2 + - uid: 20430 components: - type: Transform - pos: -102.5,12.5 - parent: 89 - - uid: 890 + pos: 10.5,-4.5 + parent: 2 + - uid: 20431 components: - type: Transform - pos: -103.5,12.5 - parent: 89 - - uid: 891 + pos: 6.5,-3.5 + parent: 2 + - uid: 20432 components: - type: Transform - pos: -104.5,12.5 - parent: 89 - - uid: 892 + pos: 7.5,-3.5 + parent: 2 + - uid: 20433 components: - type: Transform - pos: -105.5,12.5 - parent: 89 - - uid: 893 + pos: 4.5,-3.5 + parent: 2 + - uid: 20434 components: - type: Transform - pos: -106.5,12.5 - parent: 89 - - uid: 894 + pos: 3.5,-3.5 + parent: 2 + - uid: 20435 components: - type: Transform - pos: -106.5,6.5 - parent: 89 - - uid: 896 + pos: 18.5,-7.5 + parent: 2 + - uid: 20436 components: - type: Transform - pos: -106.5,10.5 - parent: 89 - - uid: 897 + pos: 38.5,20.5 + parent: 2 + - uid: 20437 components: - type: Transform - pos: -106.5,11.5 - parent: 89 - - uid: 903 + pos: 42.5,20.5 + parent: 2 + - uid: 20438 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-7.5 - parent: 89 - - uid: 934 + pos: 39.5,20.5 + parent: 2 + - uid: 20439 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -89.5,-11.5 - parent: 89 - - uid: 941 + pos: 7.5,-27.5 + parent: 2 + - uid: 20440 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -91.5,-6.5 - parent: 89 - - uid: 942 + pos: 6.5,-27.5 + parent: 2 + - uid: 20441 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-6.5 - parent: 89 - - uid: 943 + pos: 40.5,-0.5 + parent: 2 + - uid: 20442 components: - type: Transform rot: -1.5707963267948966 rad - pos: -90.5,-6.5 - parent: 89 - - uid: 944 + pos: 45.5,-0.5 + parent: 2 + - uid: 20443 components: - type: Transform rot: -1.5707963267948966 rad - pos: -89.5,-6.5 - parent: 89 - - uid: 986 + pos: 43.5,-0.5 + parent: 2 + - uid: 20444 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 50.5,5.5 - parent: 89 - - uid: 995 + rot: -1.5707963267948966 rad + pos: 42.5,-0.5 + parent: 2 + - uid: 20445 components: - type: Transform - pos: 36.5,-18.5 - parent: 89 - - uid: 1003 + rot: -1.5707963267948966 rad + pos: 41.5,-0.5 + parent: 2 + - uid: 20446 components: - type: Transform - pos: 45.5,-8.5 - parent: 89 - - uid: 1004 + rot: 3.141592653589793 rad + pos: 46.5,-0.5 + parent: 2 + - uid: 20447 components: - type: Transform - pos: 45.5,-7.5 - parent: 89 - - uid: 1048 + rot: -1.5707963267948966 rad + pos: 44.5,-0.5 + parent: 2 + - uid: 20448 components: - type: Transform - pos: 25.5,26.5 - parent: 89 - - uid: 1073 + pos: 41.5,15.5 + parent: 2 + - uid: 20449 components: - type: Transform - pos: 43.5,-1.5 - parent: 89 - - uid: 1110 + pos: 41.5,-10.5 + parent: 2 + - uid: 20450 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-6.5 - parent: 89 - - uid: 1118 + pos: 40.5,-10.5 + parent: 2 + - uid: 20451 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-7.5 - parent: 89 - - uid: 1119 + pos: 42.5,-10.5 + parent: 2 + - uid: 20452 components: - type: Transform - pos: 42.5,-1.5 - parent: 89 - - uid: 1121 + pos: 37.5,-15.5 + parent: 2 + - uid: 20453 components: - type: Transform - pos: 44.5,-1.5 - parent: 89 - - uid: 1122 + pos: 18.5,9.5 + parent: 2 + - uid: 20454 components: - type: Transform - rot: 3.141592653589793 rad - pos: 64.5,-0.5 - parent: 89 - - uid: 1123 + pos: 19.5,9.5 + parent: 2 + - uid: 20455 components: - type: Transform - rot: 3.141592653589793 rad - pos: 65.5,-0.5 - parent: 89 - - uid: 1124 + pos: 37.5,-13.5 + parent: 2 + - uid: 20456 components: - type: Transform - pos: 41.5,-1.5 - parent: 89 - - uid: 1125 + pos: -46.5,2.5 + parent: 2 + - uid: 20457 components: - type: Transform - pos: 40.5,-1.5 - parent: 89 - - uid: 1130 + pos: -46.5,-14.5 + parent: 2 + - uid: 20458 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-6.5 - parent: 89 - - uid: 1132 + pos: -46.5,-15.5 + parent: 2 + - uid: 20459 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-5.5 - parent: 89 - - uid: 1200 + pos: -46.5,-16.5 + parent: 2 + - uid: 20460 components: - type: Transform - pos: 0.5,-26.5 - parent: 89 - - uid: 1201 + pos: -45.5,-16.5 + parent: 2 + - uid: 20461 components: - type: Transform - pos: 0.5,-27.5 - parent: 89 - - uid: 1202 + pos: -45.5,-17.5 + parent: 2 + - uid: 20462 components: - type: Transform - pos: 0.5,-28.5 - parent: 89 - - uid: 1203 + pos: -49.5,-17.5 + parent: 2 + - uid: 20463 components: - type: Transform - pos: 0.5,-29.5 - parent: 89 - - uid: 1216 + pos: -49.5,-15.5 + parent: 2 + - uid: 20464 components: - type: Transform - pos: -3.5,-26.5 - parent: 89 - - uid: 1218 + pos: -49.5,-14.5 + parent: 2 + - uid: 20465 components: - type: Transform - pos: -3.5,-27.5 - parent: 89 - - uid: 1220 + pos: -42.5,-2.5 + parent: 2 + - uid: 20466 components: - type: Transform - pos: -3.5,-28.5 - parent: 89 - - uid: 1221 + pos: 39.5,-10.5 + parent: 2 + - uid: 20467 components: - type: Transform - pos: -2.5,-32.5 - parent: 89 - - uid: 1222 + pos: -44.5,-1.5 + parent: 2 + - uid: 20468 components: - type: Transform - pos: -3.5,-31.5 - parent: 89 - - uid: 1223 + pos: -46.5,1.5 + parent: 2 + - uid: 20469 components: - type: Transform - pos: -3.5,-32.5 - parent: 89 - - uid: 1226 + pos: -46.5,0.5 + parent: 2 + - uid: 20470 components: - type: Transform - pos: -0.5,-32.5 - parent: 89 - - uid: 1227 + pos: -46.5,-0.5 + parent: 2 + - uid: 20471 components: - type: Transform - pos: -3.5,-29.5 - parent: 89 - - uid: 1228 + pos: -46.5,-1.5 + parent: 2 + - uid: 20472 components: - type: Transform - pos: -9.5,-26.5 - parent: 89 - - uid: 1229 + pos: -45.5,-1.5 + parent: 2 + - uid: 20473 components: - type: Transform - pos: -10.5,-27.5 - parent: 89 - - uid: 1230 + pos: -57.5,6.5 + parent: 2 + - uid: 20474 components: - type: Transform - pos: -10.5,-28.5 - parent: 89 - - uid: 1231 + pos: -57.5,11.5 + parent: 2 + - uid: 20475 components: - type: Transform - pos: -10.5,-29.5 - parent: 89 - - uid: 1232 + pos: -57.5,10.5 + parent: 2 + - uid: 20476 components: - type: Transform - pos: -10.5,-31.5 - parent: 89 - - uid: 1233 + pos: -57.5,9.5 + parent: 2 + - uid: 20477 components: - type: Transform - pos: -10.5,-30.5 - parent: 89 - - uid: 1234 + pos: -57.5,7.5 + parent: 2 + - uid: 20478 components: - type: Transform - pos: -10.5,-32.5 - parent: 89 - - uid: 1235 + pos: -57.5,8.5 + parent: 2 + - uid: 20479 components: - type: Transform - pos: -10.5,-33.5 - parent: 89 - - uid: 1245 + pos: 44.5,-7.5 + parent: 2 + - uid: 20480 components: - type: Transform - pos: -8.5,-26.5 - parent: 89 - - uid: 1248 + rot: 1.5707963267948966 rad + pos: -15.5,4.5 + parent: 2 + - uid: 20481 components: - type: Transform - pos: -7.5,-26.5 - parent: 89 - - uid: 1249 + rot: 1.5707963267948966 rad + pos: -15.5,5.5 + parent: 2 + - uid: 20482 components: - type: Transform - pos: -4.5,-37.5 - parent: 89 - - uid: 1250 + rot: 1.5707963267948966 rad + pos: -20.5,4.5 + parent: 2 + - uid: 20483 components: - type: Transform - pos: -5.5,-37.5 - parent: 89 - - uid: 1251 + rot: 1.5707963267948966 rad + pos: -21.5,4.5 + parent: 2 + - uid: 20484 components: - type: Transform - pos: -6.5,-37.5 - parent: 89 - - uid: 1252 + rot: 1.5707963267948966 rad + pos: -21.5,7.5 + parent: 2 + - uid: 20485 components: - type: Transform - pos: -7.5,-37.5 - parent: 89 - - uid: 1253 + rot: 1.5707963267948966 rad + pos: -21.5,8.5 + parent: 2 + - uid: 20486 components: - type: Transform - pos: -8.5,-37.5 - parent: 89 - - uid: 1254 + rot: 1.5707963267948966 rad + pos: -21.5,9.5 + parent: 2 + - uid: 20487 components: - type: Transform - pos: -8.5,-38.5 - parent: 89 - - uid: 1265 + rot: 1.5707963267948966 rad + pos: -21.5,10.5 + parent: 2 + - uid: 20488 components: - type: Transform - pos: 3.5,-43.5 - parent: 89 - - uid: 1266 + rot: 1.5707963267948966 rad + pos: -20.5,10.5 + parent: 2 + - uid: 20489 components: - type: Transform - pos: 3.5,-44.5 - parent: 89 - - uid: 1267 + rot: 1.5707963267948966 rad + pos: -18.5,10.5 + parent: 2 + - uid: 20490 components: - type: Transform - pos: 3.5,-45.5 - parent: 89 - - uid: 1268 + rot: 1.5707963267948966 rad + pos: -18.5,11.5 + parent: 2 + - uid: 20491 components: - type: Transform - pos: 3.5,-46.5 - parent: 89 - - uid: 1269 + rot: 1.5707963267948966 rad + pos: -17.5,11.5 + parent: 2 + - uid: 20492 components: - type: Transform - pos: 2.5,-46.5 - parent: 89 - - uid: 1270 + rot: 1.5707963267948966 rad + pos: -16.5,11.5 + parent: 2 + - uid: 20493 components: - type: Transform - pos: 0.5,-46.5 - parent: 89 - - uid: 1271 + rot: 1.5707963267948966 rad + pos: -15.5,11.5 + parent: 2 + - uid: 20494 components: - type: Transform - pos: -0.5,-46.5 - parent: 89 - - uid: 1272 + pos: 15.5,4.5 + parent: 2 + - uid: 20495 components: - type: Transform - pos: -1.5,-46.5 - parent: 89 - - uid: 1273 + pos: 16.5,4.5 + parent: 2 + - uid: 20496 components: - type: Transform - pos: -3.5,-46.5 - parent: 89 - - uid: 1274 + pos: 22.5,4.5 + parent: 2 + - uid: 20497 components: - type: Transform - pos: -5.5,-46.5 - parent: 89 - - uid: 1275 + pos: 21.5,4.5 + parent: 2 + - uid: 20498 components: - type: Transform - pos: -4.5,-46.5 - parent: 89 - - uid: 1276 + pos: 28.5,4.5 + parent: 2 + - uid: 20499 components: - type: Transform - pos: -7.5,-46.5 - parent: 89 - - uid: 1277 + pos: 27.5,4.5 + parent: 2 + - uid: 20500 components: - type: Transform - pos: -8.5,-46.5 - parent: 89 - - uid: 1278 + pos: 26.5,4.5 + parent: 2 + - uid: 20501 components: - type: Transform - pos: -8.5,-45.5 - parent: 89 - - uid: 1279 + pos: 23.5,4.5 + parent: 2 + - uid: 20502 components: - type: Transform - pos: -8.5,-44.5 - parent: 89 - - uid: 1280 + rot: 3.141592653589793 rad + pos: -39.5,24.5 + parent: 2 + - uid: 20503 components: - type: Transform - pos: -8.5,-43.5 - parent: 89 - - uid: 1337 + pos: -43.5,-2.5 + parent: 2 + - uid: 20504 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-22.5 - parent: 89 - - uid: 1364 + pos: -44.5,-2.5 + parent: 2 + - uid: 20505 components: - type: Transform - pos: 22.5,28.5 - parent: 89 - - uid: 1367 + pos: -42.5,1.5 + parent: 2 + - uid: 20506 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-22.5 - parent: 89 - - uid: 1368 + pos: -42.5,2.5 + parent: 2 + - uid: 20507 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-23.5 - parent: 89 - - uid: 1369 + pos: -105.5,-6.5 + parent: 2 + - uid: 20508 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-24.5 - parent: 89 - - uid: 1370 + pos: -104.5,-6.5 + parent: 2 + - uid: 20509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-25.5 - parent: 89 - - uid: 1371 + pos: -106.5,-6.5 + parent: 2 + - uid: 20510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -98.5,-26.5 - parent: 89 - - uid: 1372 + pos: -106.5,-7.5 + parent: 2 + - uid: 20511 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,-26.5 - parent: 89 - - uid: 1373 + pos: -106.5,-8.5 + parent: 2 + - uid: 20512 components: - type: Transform - rot: 3.141592653589793 rad - pos: -100.5,-26.5 - parent: 89 - - uid: 1374 + pos: -106.5,-9.5 + parent: 2 + - uid: 20513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-22.5 - parent: 89 - - uid: 1375 + pos: -106.5,-10.5 + parent: 2 + - uid: 20514 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-26.5 - parent: 89 - - uid: 1377 + pos: -98.5,-6.5 + parent: 2 + - uid: 20515 components: - type: Transform rot: 3.141592653589793 rad - pos: -99.5,-25.5 - parent: 89 - - uid: 1378 + pos: -61.5,19.5 + parent: 2 + - uid: 20516 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-24.5 - parent: 89 - - uid: 1379 + pos: -89.5,11.5 + parent: 2 + - uid: 20517 components: - type: Transform - rot: 3.141592653589793 rad - pos: -99.5,-23.5 - parent: 89 - - uid: 1380 + pos: -89.5,12.5 + parent: 2 + - uid: 20518 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-26.5 - parent: 89 - - uid: 1381 + pos: -89.5,13.5 + parent: 2 + - uid: 20519 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-25.5 - parent: 89 - - uid: 1382 + pos: -89.5,15.5 + parent: 2 + - uid: 20520 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-24.5 - parent: 89 - - uid: 1383 + pos: -89.5,14.5 + parent: 2 + - uid: 20521 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-23.5 - parent: 89 - - uid: 1384 + pos: -89.5,-5.5 + parent: 2 + - uid: 20522 components: - type: Transform - rot: 3.141592653589793 rad - pos: -97.5,-22.5 - parent: 89 - - uid: 1386 + pos: -83.5,-4.5 + parent: 2 + - uid: 20523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -96.5,-26.5 - parent: 89 - - uid: 1387 + rot: 1.5707963267948966 rad + pos: -90.5,28.5 + parent: 2 + - uid: 20524 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-26.5 - parent: 89 - - uid: 1389 + pos: -86.5,-3.5 + parent: 2 + - uid: 20525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-25.5 - parent: 89 - - uid: 1390 + pos: -88.5,-3.5 + parent: 2 + - uid: 20526 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-24.5 - parent: 89 - - uid: 1392 + pos: -89.5,-3.5 + parent: 2 + - uid: 20527 components: - type: Transform - rot: 3.141592653589793 rad - pos: -95.5,-23.5 - parent: 89 - - uid: 1396 + pos: -89.5,-4.5 + parent: 2 + - uid: 20528 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-26.5 - parent: 89 - - uid: 1397 + pos: -87.5,-3.5 + parent: 2 + - uid: 20529 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-26.5 - parent: 89 - - uid: 1399 + pos: -83.5,-3.5 + parent: 2 + - uid: 20530 components: - type: Transform rot: 3.141592653589793 rad - pos: -93.5,-25.5 - parent: 89 - - uid: 1401 + pos: -91.5,19.5 + parent: 2 + - uid: 20531 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-24.5 - parent: 89 - - uid: 1403 + pos: -79.5,-10.5 + parent: 2 + - uid: 20532 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-23.5 - parent: 89 - - uid: 1405 + pos: -80.5,-10.5 + parent: 2 + - uid: 20533 components: - type: Transform - rot: 3.141592653589793 rad - pos: -93.5,-22.5 - parent: 89 - - uid: 1406 + pos: -81.5,-10.5 + parent: 2 + - uid: 20534 components: - type: Transform rot: 3.141592653589793 rad - pos: -92.5,-26.5 - parent: 89 - - uid: 1408 + pos: -91.5,20.5 + parent: 2 + - uid: 20535 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-26.5 - parent: 89 - - uid: 1410 + pos: -90.5,19.5 + parent: 2 + - uid: 20536 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-25.5 - parent: 89 - - uid: 1411 + pos: -89.5,21.5 + parent: 2 + - uid: 20537 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-24.5 - parent: 89 - - uid: 1413 + pos: -88.5,15.5 + parent: 2 + - uid: 20538 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,-23.5 - parent: 89 - - uid: 1414 + pos: -87.5,15.5 + parent: 2 + - uid: 20539 components: - type: Transform rot: 3.141592653589793 rad - pos: -91.5,-22.5 - parent: 89 - - uid: 1428 + pos: -90.5,21.5 + parent: 2 + - uid: 20540 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-24.5 - parent: 89 - - uid: 1442 + pos: -83.5,11.5 + parent: 2 + - uid: 20541 components: - type: Transform - pos: -86.5,11.5 - parent: 89 - - uid: 1475 + pos: -83.5,12.5 + parent: 2 + - uid: 20542 components: - type: Transform - pos: -83.5,17.5 - parent: 89 - - uid: 1477 + pos: -84.5,11.5 + parent: 2 + - uid: 20543 components: - type: Transform - pos: -83.5,15.5 - parent: 89 - - uid: 1509 + pos: 48.5,-7.5 + parent: 2 + - uid: 20544 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -9.5,-24.5 - parent: 89 - - uid: 1510 + pos: 45.5,-7.5 + parent: 2 + - uid: 20545 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,-24.5 - parent: 89 - - uid: 1517 + pos: 47.5,-7.5 + parent: 2 + - uid: 20546 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-26.5 - parent: 89 - - uid: 1520 + pos: 46.5,-7.5 + parent: 2 + - uid: 20547 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -11.5,-24.5 - parent: 89 - - uid: 1562 + pos: 4.5,29.5 + parent: 2 + - uid: 20548 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-22.5 - parent: 89 - - uid: 1635 + pos: -64.5,19.5 + parent: 2 + - uid: 20549 components: - type: Transform - pos: 49.5,-10.5 - parent: 89 - - uid: 1636 + pos: -63.5,19.5 + parent: 2 + - uid: 20550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.5,2.5 - parent: 89 - - uid: 1639 + pos: -64.5,22.5 + parent: 2 + - uid: 20551 components: - type: Transform - pos: 49.5,-9.5 - parent: 89 - - uid: 1643 + pos: -64.5,23.5 + parent: 2 + - uid: 20552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 39.5,-0.5 - parent: 89 - - uid: 1644 + pos: -63.5,23.5 + parent: 2 + - uid: 20553 components: - type: Transform - rot: 3.141592653589793 rad - pos: 38.5,-0.5 - parent: 89 - - uid: 1649 + pos: -62.5,23.5 + parent: 2 + - uid: 20554 components: - type: Transform - pos: 1.5,-37.5 - parent: 89 - - uid: 1650 + pos: -58.5,23.5 + parent: 2 + - uid: 20555 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-0.5 - parent: 89 - - uid: 1651 + pos: -58.5,19.5 + parent: 2 + - uid: 20556 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,0.5 - parent: 89 - - uid: 1652 + pos: -59.5,19.5 + parent: 2 + - uid: 20557 components: - type: Transform - rot: 3.141592653589793 rad - pos: 36.5,0.5 - parent: 89 - - uid: 1654 + pos: -60.5,19.5 + parent: 2 + - uid: 20558 components: - type: Transform - pos: 3.5,-38.5 - parent: 89 - - uid: 1655 + pos: -61.5,6.5 + parent: 2 + - uid: 20559 components: - type: Transform - pos: 3.5,-41.5 - parent: 89 - - uid: 1660 + pos: -60.5,6.5 + parent: 2 + - uid: 20560 components: - type: Transform - pos: 0.5,-32.5 - parent: 89 - - uid: 1661 + pos: -58.5,6.5 + parent: 2 + - uid: 20561 components: - type: Transform - pos: 0.5,-36.5 - parent: 89 - - uid: 1662 + pos: -61.5,11.5 + parent: 2 + - uid: 20562 components: - type: Transform - pos: 0.5,-30.5 - parent: 89 - - uid: 1672 + pos: -58.5,11.5 + parent: 2 + - uid: 20563 components: - type: Transform - pos: 5.5,-26.5 - parent: 89 - - uid: 1673 + pos: 49.5,-7.5 + parent: 2 + - uid: 20564 components: - type: Transform - pos: 5.5,-27.5 - parent: 89 - - uid: 1683 + pos: 4.5,37.5 + parent: 2 + - uid: 20565 components: - type: Transform - pos: 9.5,-19.5 - parent: 89 - - uid: 1707 + pos: 4.5,34.5 + parent: 2 + - uid: 20566 components: - type: Transform - pos: -8.5,10.5 - parent: 89 - - uid: 1734 + pos: 4.5,33.5 + parent: 2 + - uid: 20567 components: - type: Transform - pos: -3.5,-36.5 - parent: 89 - - uid: 1843 + pos: 4.5,32.5 + parent: 2 + - uid: 20568 components: - type: Transform - pos: -10.5,-26.5 - parent: 89 - - uid: 1889 + pos: 4.5,31.5 + parent: 2 + - uid: 20569 components: - type: Transform - pos: 4.5,-26.5 - parent: 89 - - uid: 1891 + rot: 3.141592653589793 rad + pos: -88.5,11.5 + parent: 2 + - uid: 20570 components: - type: Transform - pos: 6.5,-29.5 - parent: 89 - - uid: 1893 + pos: -60.5,11.5 + parent: 2 + - uid: 20571 components: - type: Transform - pos: 5.5,-30.5 - parent: 89 - - uid: 1894 + pos: 41.5,-22.5 + parent: 2 + - uid: 20572 components: - type: Transform - pos: 5.5,-32.5 - parent: 89 - - uid: 1895 + pos: -7.5,27.5 + parent: 2 + - uid: 20573 components: - type: Transform - pos: 5.5,-31.5 - parent: 89 - - uid: 1896 + pos: -7.5,28.5 + parent: 2 + - uid: 20574 components: - type: Transform - pos: 5.5,-29.5 - parent: 89 - - uid: 1899 + pos: -6.5,28.5 + parent: 2 + - uid: 20575 components: - type: Transform - pos: -18.5,24.5 - parent: 89 - - uid: 1904 + pos: -5.5,28.5 + parent: 2 + - uid: 20576 components: - type: Transform - pos: 0.5,-34.5 - parent: 89 - - uid: 1905 + pos: -9.5,24.5 + parent: 2 + - uid: 20577 components: - type: Transform - pos: 0.5,-31.5 - parent: 89 - - uid: 1907 + pos: 4.5,28.5 + parent: 2 + - uid: 20578 components: - type: Transform - pos: 0.5,-33.5 - parent: 89 - - uid: 1912 + pos: -4.5,27.5 + parent: 2 + - uid: 20579 components: - type: Transform - pos: 2.5,-37.5 - parent: 89 - - uid: 1917 + pos: -4.5,28.5 + parent: 2 + - uid: 20580 components: - type: Transform - pos: 0.5,-35.5 - parent: 89 - - uid: 1918 + pos: -8.5,27.5 + parent: 2 + - uid: 20581 components: - type: Transform - pos: 3.5,-42.5 - parent: 89 - - uid: 1919 + pos: -7.5,24.5 + parent: 2 + - uid: 20582 components: - type: Transform - pos: -2.5,-37.5 - parent: 89 - - uid: 1920 + pos: -8.5,24.5 + parent: 2 + - uid: 20583 components: - type: Transform - pos: 3.5,-37.5 - parent: 89 - - uid: 1921 + pos: -4.5,24.5 + parent: 2 + - uid: 20584 components: - type: Transform - pos: -2.5,-37.5 - parent: 89 - - uid: 1922 + pos: -4.5,25.5 + parent: 2 + - uid: 20585 components: - type: Transform - pos: 0.5,-37.5 - parent: 89 - - uid: 1924 + pos: -6.5,24.5 + parent: 2 + - uid: 20586 components: - type: Transform - pos: -3.5,-34.5 - parent: 89 - - uid: 1925 + pos: -5.5,24.5 + parent: 2 + - uid: 20587 components: - type: Transform - pos: -3.5,-37.5 - parent: 89 - - uid: 1926 + pos: -34.5,12.5 + parent: 2 + - uid: 20588 components: - type: Transform - pos: -3.5,-33.5 - parent: 89 - - uid: 1930 + rot: 3.141592653589793 rad + pos: -64.5,20.5 + parent: 2 + - uid: 20589 components: - type: Transform - pos: 41.5,7.5 - parent: 89 - - uid: 1935 + pos: -132.5,19.5 + parent: 2 + - uid: 20590 components: - type: Transform - pos: 17.5,9.5 - parent: 89 - - uid: 1946 + pos: -131.5,19.5 + parent: 2 + - uid: 20591 components: - type: Transform - pos: 16.5,9.5 - parent: 89 - - uid: 2038 + pos: -130.5,19.5 + parent: 2 + - uid: 20592 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-24.5 - parent: 89 - - uid: 2039 + pos: -129.5,19.5 + parent: 2 + - uid: 20593 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-23.5 - parent: 89 - - uid: 2040 + pos: -128.5,19.5 + parent: 2 + - uid: 20594 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-25.5 - parent: 89 - - uid: 2041 + pos: -128.5,18.5 + parent: 2 + - uid: 20595 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,-26.5 - parent: 89 - - uid: 2042 + pos: -129.5,18.5 + parent: 2 + - uid: 20596 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,-26.5 - parent: 89 - - uid: 2043 + pos: -130.5,18.5 + parent: 2 + - uid: 20597 components: - type: Transform - rot: 3.141592653589793 rad - pos: -88.5,-26.5 - parent: 89 - - uid: 2044 + pos: -131.5,18.5 + parent: 2 + - uid: 20598 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-26.5 - parent: 89 - - uid: 2045 + pos: -132.5,18.5 + parent: 2 + - uid: 20599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-25.5 - parent: 89 - - uid: 2046 + pos: -133.5,18.5 + parent: 2 + - uid: 20600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-24.5 - parent: 89 - - uid: 2047 + pos: -133.5,17.5 + parent: 2 + - uid: 20601 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-23.5 - parent: 89 - - uid: 2048 + pos: -133.5,16.5 + parent: 2 + - uid: 20602 components: - type: Transform - rot: 3.141592653589793 rad - pos: -87.5,-22.5 - parent: 89 - - uid: 2049 + pos: -133.5,15.5 + parent: 2 + - uid: 20603 components: - type: Transform - rot: 3.141592653589793 rad - pos: -86.5,-26.5 - parent: 89 - - uid: 2050 + pos: -133.5,14.5 + parent: 2 + - uid: 20604 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-26.5 - parent: 89 - - uid: 2051 + pos: -133.5,13.5 + parent: 2 + - uid: 20605 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-25.5 - parent: 89 - - uid: 2052 + pos: -133.5,12.5 + parent: 2 + - uid: 20606 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-24.5 - parent: 89 - - uid: 2053 + pos: -133.5,11.5 + parent: 2 + - uid: 20607 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-23.5 - parent: 89 - - uid: 2055 + pos: -133.5,10.5 + parent: 2 + - uid: 20608 components: - type: Transform - rot: 3.141592653589793 rad - pos: -85.5,-22.5 - parent: 89 - - uid: 2112 + pos: -132.5,10.5 + parent: 2 + - uid: 20609 components: - type: Transform - pos: -17.5,25.5 - parent: 89 - - uid: 2146 + pos: -131.5,10.5 + parent: 2 + - uid: 20610 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,-28.5 - parent: 89 - - uid: 2147 + pos: -130.5,10.5 + parent: 2 + - uid: 20611 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -100.5,-29.5 - parent: 89 - - uid: 2148 + pos: -129.5,10.5 + parent: 2 + - uid: 20612 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-28.5 - parent: 89 - - uid: 2149 + pos: -128.5,10.5 + parent: 2 + - uid: 20613 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -98.5,-29.5 - parent: 89 - - uid: 2150 + pos: -127.5,19.5 + parent: 2 + - uid: 20614 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-28.5 - parent: 89 - - uid: 2151 + rot: 1.5707963267948966 rad + pos: -127.5,17.5 + parent: 2 + - uid: 20615 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -96.5,-29.5 - parent: 89 - - uid: 2152 + pos: -127.5,14.5 + parent: 2 + - uid: 20616 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-28.5 - parent: 89 - - uid: 2153 + pos: -127.5,10.5 + parent: 2 + - uid: 20617 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -94.5,-29.5 - parent: 89 - - uid: 2154 + pos: -126.5,10.5 + parent: 2 + - uid: 20618 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-28.5 - parent: 89 - - uid: 2155 + pos: -126.5,14.5 + parent: 2 + - uid: 20619 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -92.5,-29.5 - parent: 89 - - uid: 2156 + pos: -128.5,5.5 + parent: 2 + - uid: 20620 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-28.5 - parent: 89 - - uid: 2157 + pos: -128.5,6.5 + parent: 2 + - uid: 20621 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -90.5,-29.5 - parent: 89 - - uid: 2158 + pos: -124.5,7.5 + parent: 2 + - uid: 20622 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-28.5 - parent: 89 - - uid: 2159 + pos: -124.5,6.5 + parent: 2 + - uid: 20623 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -88.5,-29.5 - parent: 89 - - uid: 2160 + pos: -124.5,5.5 + parent: 2 + - uid: 20624 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-28.5 - parent: 89 - - uid: 2161 + pos: -122.5,5.5 + parent: 2 + - uid: 20625 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -86.5,-29.5 - parent: 89 - - uid: 2162 + pos: -122.5,2.5 + parent: 2 + - uid: 20626 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,10.5 - parent: 89 - - uid: 2163 + pos: -122.5,1.5 + parent: 2 + - uid: 20627 components: - type: Transform - pos: 32.5,17.5 - parent: 89 - - uid: 2164 + pos: -123.5,1.5 + parent: 2 + - uid: 20628 components: - type: Transform - pos: 31.5,17.5 - parent: 89 - - uid: 2165 + pos: -124.5,2.5 + parent: 2 + - uid: 20629 components: - type: Transform - pos: 29.5,16.5 - parent: 89 - - uid: 2166 + pos: -124.5,1.5 + parent: 2 + - uid: 20630 components: - type: Transform - pos: 29.5,17.5 - parent: 89 - - uid: 2167 + pos: -124.5,0.5 + parent: 2 + - uid: 20631 components: - type: Transform - pos: 30.5,17.5 - parent: 89 - - uid: 2171 + pos: -124.5,-0.5 + parent: 2 + - uid: 20632 components: - type: Transform - pos: 29.5,11.5 - parent: 89 - - uid: 2172 + pos: -128.5,-0.5 + parent: 2 + - uid: 20633 components: - type: Transform - pos: 29.5,12.5 - parent: 89 - - uid: 2173 + pos: -128.5,0.5 + parent: 2 + - uid: 20634 components: - type: Transform - pos: 29.5,13.5 - parent: 89 - - uid: 2174 + pos: -128.5,1.5 + parent: 2 + - uid: 20635 components: - type: Transform - pos: 29.5,14.5 - parent: 89 - - uid: 2175 + pos: -128.5,2.5 + parent: 2 + - uid: 20636 components: - type: Transform - pos: 29.5,15.5 - parent: 89 - - uid: 2176 + rot: -1.5707963267948966 rad + pos: -123.5,6.5 + parent: 2 + - uid: 20637 components: - type: Transform rot: -1.5707963267948966 rad - pos: 39.5,15.5 - parent: 89 - - uid: 2177 + pos: -124.5,8.5 + parent: 2 + - uid: 20638 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,10.5 - parent: 89 - - uid: 2178 + rot: 3.141592653589793 rad + pos: -119.5,18.5 + parent: 2 + - uid: 20639 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 38.5,10.5 - parent: 89 - - uid: 2179 + pos: 41.5,-15.5 + parent: 2 + - uid: 20640 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,10.5 - parent: 89 - - uid: 2181 + rot: 1.5707963267948966 rad + pos: -119.5,7.5 + parent: 2 + - uid: 20641 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 37.5,9.5 - parent: 89 - - uid: 2182 + rot: 1.5707963267948966 rad + pos: -119.5,0.5 + parent: 2 + - uid: 20642 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-21.5 - parent: 89 - - uid: 2183 + rot: 1.5707963267948966 rad + pos: -118.5,-0.5 + parent: 2 + - uid: 20643 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-21.5 - parent: 89 - - uid: 2184 + rot: 1.5707963267948966 rad + pos: -118.5,-2.5 + parent: 2 + - uid: 20644 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,9.5 - parent: 89 - - uid: 2185 + rot: 1.5707963267948966 rad + pos: -118.5,-3.5 + parent: 2 + - uid: 20645 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,10.5 - parent: 89 - - uid: 2186 + rot: 1.5707963267948966 rad + pos: -118.5,-4.5 + parent: 2 + - uid: 20646 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 32.5,10.5 - parent: 89 - - uid: 2187 + rot: 1.5707963267948966 rad + pos: -117.5,-4.5 + parent: 2 + - uid: 20647 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 31.5,10.5 - parent: 89 - - uid: 2188 + rot: 1.5707963267948966 rad + pos: -116.5,-4.5 + parent: 2 + - uid: 20648 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,10.5 - parent: 89 - - uid: 2194 + rot: 1.5707963267948966 rad + pos: -115.5,-4.5 + parent: 2 + - uid: 20649 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 29.5,4.5 - parent: 89 - - uid: 2195 + rot: 1.5707963267948966 rad + pos: -114.5,-4.5 + parent: 2 + - uid: 20650 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,4.5 - parent: 89 - - uid: 2196 + rot: 1.5707963267948966 rad + pos: -114.5,-5.5 + parent: 2 + - uid: 20651 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,5.5 - parent: 89 - - uid: 2199 + rot: 1.5707963267948966 rad + pos: -114.5,-6.5 + parent: 2 + - uid: 20652 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 33.5,8.5 - parent: 89 - - uid: 2204 + rot: 1.5707963267948966 rad + pos: -114.5,-7.5 + parent: 2 + - uid: 20653 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-28.5 - parent: 89 - - uid: 2205 + rot: 1.5707963267948966 rad + pos: -114.5,-8.5 + parent: 2 + - uid: 20654 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-28.5 - parent: 89 - - uid: 2215 + rot: 1.5707963267948966 rad + pos: -114.5,-9.5 + parent: 2 + - uid: 20655 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -102.5,-29.5 - parent: 89 - - uid: 2216 + rot: 1.5707963267948966 rad + pos: -118.5,8.5 + parent: 2 + - uid: 20656 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-25.5 - parent: 89 - - uid: 2218 + rot: 1.5707963267948966 rad + pos: -118.5,11.5 + parent: 2 + - uid: 20657 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-25.5 - parent: 89 - - uid: 2219 + rot: 1.5707963267948966 rad + pos: -118.5,12.5 + parent: 2 + - uid: 20658 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -104.5,-27.5 - parent: 89 - - uid: 2238 + rot: 1.5707963267948966 rad + pos: -117.5,12.5 + parent: 2 + - uid: 20659 components: - type: Transform - pos: 29.5,7.5 - parent: 89 - - uid: 2246 + rot: 1.5707963267948966 rad + pos: -116.5,12.5 + parent: 2 + - uid: 20660 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-18.5 - parent: 89 - - uid: 2247 + rot: 1.5707963267948966 rad + pos: -115.5,12.5 + parent: 2 + - uid: 20661 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-19.5 - parent: 89 - - uid: 2248 + rot: 1.5707963267948966 rad + pos: -114.5,12.5 + parent: 2 + - uid: 20662 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-20.5 - parent: 89 - - uid: 2251 + rot: 1.5707963267948966 rad + pos: -114.5,13.5 + parent: 2 + - uid: 20663 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-18.5 - parent: 89 - - uid: 2253 + rot: 1.5707963267948966 rad + pos: -114.5,14.5 + parent: 2 + - uid: 20664 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-17.5 - parent: 89 - - uid: 2256 + rot: 1.5707963267948966 rad + pos: -114.5,15.5 + parent: 2 + - uid: 20665 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-15.5 - parent: 89 - - uid: 2266 + rot: 1.5707963267948966 rad + pos: -114.5,16.5 + parent: 2 + - uid: 20666 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-12.5 - parent: 89 - - uid: 2267 + pos: -34.5,11.5 + parent: 2 + - uid: 20667 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -85.5,-12.5 - parent: 89 - - uid: 2269 + pos: -36.5,10.5 + parent: 2 + - uid: 20668 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-22.5 - parent: 89 - - uid: 2273 + rot: 1.5707963267948966 rad + pos: -118.5,19.5 + parent: 2 + - uid: 20669 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-26.5 - parent: 89 - - uid: 2278 + pos: 4.5,30.5 + parent: 2 + - uid: 20670 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-26.5 - parent: 89 - - uid: 2279 + pos: -35.5,10.5 + parent: 2 + - uid: 20671 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-22.5 - parent: 89 - - uid: 2280 + pos: -34.5,10.5 + parent: 2 + - uid: 20672 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-23.5 - parent: 89 - - uid: 2282 + rot: 1.5707963267948966 rad + pos: -122.5,6.5 + parent: 2 + - uid: 20673 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-25.5 - parent: 89 - - uid: 2296 + pos: 37.5,-18.5 + parent: 2 + - uid: 20674 components: - type: Transform - pos: 33.5,17.5 - parent: 89 - - uid: 2297 + rot: 3.141592653589793 rad + pos: -115.5,-9.5 + parent: 2 + - uid: 20675 components: - type: Transform - pos: 34.5,17.5 - parent: 89 - - uid: 2298 + rot: 3.141592653589793 rad + pos: -116.5,-9.5 + parent: 2 + - uid: 20676 components: - type: Transform - pos: 35.5,17.5 - parent: 89 - - uid: 2299 + rot: 3.141592653589793 rad + pos: -117.5,-9.5 + parent: 2 + - uid: 20677 components: - type: Transform - pos: 36.5,17.5 - parent: 89 - - uid: 2300 + rot: 3.141592653589793 rad + pos: -118.5,-9.5 + parent: 2 + - uid: 20678 components: - type: Transform - pos: 37.5,17.5 - parent: 89 - - uid: 2301 + rot: 3.141592653589793 rad + pos: -119.5,-9.5 + parent: 2 + - uid: 20679 components: - type: Transform - pos: 38.5,17.5 - parent: 89 - - uid: 2302 + rot: 3.141592653589793 rad + pos: -120.5,-9.5 + parent: 2 + - uid: 20680 components: - type: Transform - pos: 39.5,17.5 - parent: 89 - - uid: 2303 + rot: 3.141592653589793 rad + pos: -119.5,-4.5 + parent: 2 + - uid: 20681 components: - type: Transform - pos: 39.5,16.5 - parent: 89 - - uid: 2304 + rot: 3.141592653589793 rad + pos: -120.5,-4.5 + parent: 2 + - uid: 20682 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -75.5,-27.5 - parent: 89 - - uid: 2305 + pos: 37.5,-17.5 + parent: 2 + - uid: 20683 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -74.5,-27.5 - parent: 89 - - uid: 2308 + pos: -128.5,7.5 + parent: 2 + - uid: 20684 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -76.5,-28.5 - parent: 89 - - uid: 2309 + pos: -128.5,8.5 + parent: 2 + - uid: 20685 components: - type: Transform rot: -1.5707963267948966 rad - pos: -76.5,-29.5 - parent: 89 - - uid: 2310 + pos: -8.5,-34.5 + parent: 2 + - uid: 20686 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-28.5 - parent: 89 - - uid: 2311 + pos: -8.5,-35.5 + parent: 2 + - uid: 20687 components: - type: Transform rot: -1.5707963267948966 rad - pos: -78.5,-29.5 - parent: 89 - - uid: 2312 + pos: -8.5,-36.5 + parent: 2 + - uid: 20688 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-28.5 - parent: 89 - - uid: 2313 + pos: 50.5,-5.5 + parent: 2 + - uid: 20689 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -80.5,-29.5 - parent: 89 - - uid: 2314 + rot: 1.5707963267948966 rad + pos: 50.5,-7.5 + parent: 2 + - uid: 20690 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-28.5 - parent: 89 - - uid: 2315 + pos: 28.5,10.5 + parent: 2 + - uid: 20691 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-29.5 - parent: 89 - - uid: 2316 + pos: 27.5,10.5 + parent: 2 + - uid: 20692 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-28.5 - parent: 89 - - uid: 2317 + pos: 26.5,10.5 + parent: 2 + - uid: 20693 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -84.5,-29.5 - parent: 89 - - uid: 2321 + pos: 25.5,10.5 + parent: 2 + - uid: 20694 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -103.5,-27.5 - parent: 89 - - uid: 2324 + pos: 24.5,10.5 + parent: 2 + - uid: 20695 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -77.5,-20.5 - parent: 89 - - uid: 2325 + pos: 23.5,10.5 + parent: 2 + - uid: 20696 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -78.5,-20.5 - parent: 89 - - uid: 2327 + pos: 23.5,9.5 + parent: 2 + - uid: 20697 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,-20.5 - parent: 89 - - uid: 2328 + pos: 23.5,8.5 + parent: 2 + - uid: 20698 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -83.5,-20.5 - parent: 89 - - uid: 2516 + pos: 23.5,7.5 + parent: 2 + - uid: 20699 components: - type: Transform - pos: 35.5,0.5 - parent: 89 - - uid: 2517 + pos: 23.5,6.5 + parent: 2 + - uid: 20700 components: - type: Transform - pos: 34.5,0.5 - parent: 89 - - uid: 2518 + pos: 23.5,5.5 + parent: 2 + - uid: 20701 components: - type: Transform - pos: 33.5,0.5 - parent: 89 - - uid: 2522 + rot: 3.141592653589793 rad + pos: 45.5,-1.5 + parent: 2 + - uid: 20702 components: - type: Transform - pos: 29.5,0.5 - parent: 89 - - uid: 2525 + rot: 3.141592653589793 rad + pos: 46.5,-1.5 + parent: 2 + - uid: 20703 components: - type: Transform - pos: 8.5,-19.5 - parent: 89 - - uid: 2526 + rot: 1.5707963267948966 rad + pos: -91.5,27.5 + parent: 2 + - uid: 20704 components: - type: Transform - pos: 18.5,-15.5 - parent: 89 - - uid: 2556 + rot: 1.5707963267948966 rad + pos: -89.5,25.5 + parent: 2 + - uid: 20705 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,16.5 - parent: 89 - - uid: 2575 + rot: 1.5707963267948966 rad + pos: -87.5,25.5 + parent: 2 + - uid: 20706 components: - type: Transform - pos: 36.5,-15.5 - parent: 89 - - uid: 2579 + rot: 1.5707963267948966 rad + pos: -91.5,26.5 + parent: 2 + - uid: 20707 components: - type: Transform - pos: 34.5,-15.5 - parent: 89 - - uid: 2580 + rot: 1.5707963267948966 rad + pos: -90.5,27.5 + parent: 2 + - uid: 20708 components: - type: Transform - pos: 35.5,-15.5 - parent: 89 - - uid: 2581 + pos: 23.5,11.5 + parent: 2 + - uid: 20709 components: - type: Transform - pos: 33.5,-15.5 - parent: 89 - - uid: 2582 + pos: 23.5,12.5 + parent: 2 + - uid: 20710 components: - type: Transform - pos: 32.5,-15.5 - parent: 89 - - uid: 2583 + rot: 1.5707963267948966 rad + pos: -90.5,29.5 + parent: 2 + - uid: 20711 components: - type: Transform - pos: 31.5,-15.5 - parent: 89 - - uid: 2584 + rot: 1.5707963267948966 rad + pos: -90.5,25.5 + parent: 2 + - uid: 20712 components: - type: Transform - pos: 30.5,-15.5 - parent: 89 - - uid: 2585 + rot: 1.5707963267948966 rad + pos: -90.5,26.5 + parent: 2 + - uid: 20713 components: - type: Transform - pos: 29.5,-15.5 - parent: 89 - - uid: 2586 + rot: 1.5707963267948966 rad + pos: -88.5,25.5 + parent: 2 + - uid: 20714 components: - type: Transform - pos: 28.5,-15.5 - parent: 89 - - uid: 2587 + pos: -54.5,46.5 + parent: 2 + - uid: 20715 components: - type: Transform - pos: 27.5,-15.5 - parent: 89 - - uid: 2589 + pos: -53.5,46.5 + parent: 2 + - uid: 20716 components: - type: Transform - pos: 26.5,-15.5 - parent: 89 - - uid: 2590 + pos: -52.5,46.5 + parent: 2 + - uid: 20717 components: - type: Transform - pos: 25.5,-15.5 - parent: 89 - - uid: 2591 + pos: -51.5,46.5 + parent: 2 + - uid: 20718 components: - type: Transform - pos: 24.5,-15.5 - parent: 89 - - uid: 2592 + pos: -50.5,46.5 + parent: 2 + - uid: 20719 components: - type: Transform - pos: 23.5,-15.5 - parent: 89 - - uid: 2593 + pos: -51.5,38.5 + parent: 2 + - uid: 20720 components: - type: Transform - pos: 17.5,-12.5 - parent: 89 - - uid: 2594 + pos: -57.5,37.5 + parent: 2 + - uid: 20721 components: - type: Transform - pos: 17.5,-11.5 - parent: 89 - - uid: 2595 + pos: -53.5,38.5 + parent: 2 + - uid: 20722 components: - type: Transform - pos: 22.5,-15.5 - parent: 89 - - uid: 2596 + pos: -52.5,38.5 + parent: 2 + - uid: 20723 components: - type: Transform - pos: 17.5,-13.5 - parent: 89 - - uid: 2597 + pos: -57.5,38.5 + parent: 2 + - uid: 20724 components: - type: Transform - pos: 21.5,-15.5 - parent: 89 - - uid: 2598 + pos: -57.5,39.5 + parent: 2 + - uid: 20725 components: - type: Transform - pos: 17.5,-14.5 - parent: 89 - - uid: 2599 + pos: -57.5,40.5 + parent: 2 + - uid: 20726 components: - type: Transform - pos: 20.5,-15.5 - parent: 89 - - uid: 2600 + pos: -58.5,37.5 + parent: 2 + - uid: 20727 components: - type: Transform - pos: 11.5,-11.5 - parent: 89 - - uid: 2601 + pos: -58.5,31.5 + parent: 2 + - uid: 20728 components: - type: Transform - pos: 19.5,-15.5 - parent: 89 - - uid: 2603 + pos: -55.5,31.5 + parent: 2 + - uid: 20729 components: - type: Transform - pos: 17.5,-15.5 - parent: 89 - - uid: 2604 + pos: -54.5,31.5 + parent: 2 + - uid: 20730 components: - type: Transform - pos: 12.5,-11.5 - parent: 89 - - uid: 2607 + pos: -54.5,30.5 + parent: 2 + - uid: 20731 components: - type: Transform - pos: 14.5,-11.5 - parent: 89 - - uid: 2608 + pos: -54.5,29.5 + parent: 2 + - uid: 20732 components: - type: Transform - pos: 15.5,-11.5 - parent: 89 - - uid: 2609 + pos: -54.5,28.5 + parent: 2 + - uid: 20733 components: - type: Transform - pos: 16.5,-11.5 - parent: 89 - - uid: 2610 + pos: -54.5,27.5 + parent: 2 + - uid: 20734 components: - type: Transform - pos: 1.5,-14.5 - parent: 89 - - uid: 2611 + pos: -53.5,42.5 + parent: 2 + - uid: 20735 components: - type: Transform - pos: 1.5,-13.5 - parent: 89 - - uid: 2613 + pos: -52.5,42.5 + parent: 2 + - uid: 20736 components: - type: Transform - pos: 2.5,-14.5 - parent: 89 - - uid: 2614 + pos: -51.5,42.5 + parent: 2 + - uid: 20737 components: - type: Transform - pos: 3.5,-14.5 - parent: 89 - - uid: 2615 + pos: -50.5,42.5 + parent: 2 + - uid: 20738 components: - type: Transform - pos: 4.5,-14.5 - parent: 89 - - uid: 2616 + pos: -54.5,32.5 + parent: 2 + - uid: 20739 components: - type: Transform - pos: 5.5,-14.5 - parent: 89 - - uid: 2617 + pos: -54.5,33.5 + parent: 2 + - uid: 20740 components: - type: Transform - pos: 6.5,-14.5 - parent: 89 - - uid: 2618 + pos: -54.5,34.5 + parent: 2 + - uid: 20741 components: - type: Transform - pos: 6.5,-13.5 - parent: 89 - - uid: 2619 + pos: -54.5,36.5 + parent: 2 + - uid: 20742 components: - type: Transform - pos: 8.5,-13.5 - parent: 89 - - uid: 2620 + pos: -54.5,37.5 + parent: 2 + - uid: 20743 components: - type: Transform - pos: 9.5,-13.5 - parent: 89 - - uid: 2621 + pos: -53.5,37.5 + parent: 2 + - uid: 20744 components: - type: Transform - pos: 10.5,-13.5 - parent: 89 - - uid: 2622 + pos: -53.5,33.5 + parent: 2 + - uid: 20745 components: - type: Transform - pos: 10.5,-12.5 - parent: 89 - - uid: 2623 + pos: -51.5,33.5 + parent: 2 + - uid: 20746 components: - type: Transform - pos: 10.5,-11.5 - parent: 89 - - uid: 2624 + pos: -46.5,22.5 + parent: 2 + - uid: 20747 components: - type: Transform - pos: 7.5,-13.5 - parent: 89 - - uid: 2629 + pos: -45.5,22.5 + parent: 2 + - uid: 20748 components: - type: Transform - pos: 36.5,-13.5 - parent: 89 - - uid: 2632 + pos: -44.5,22.5 + parent: 2 + - uid: 20749 components: - type: Transform - pos: 2.5,0.5 - parent: 89 - - uid: 2660 + pos: -43.5,22.5 + parent: 2 + - uid: 20750 components: - type: Transform - pos: 1.5,-3.5 - parent: 89 - - uid: 2661 + rot: 3.141592653589793 rad + pos: -91.5,21.5 + parent: 2 + - uid: 20751 components: - type: Transform - pos: 35.5,-13.5 - parent: 89 - - uid: 2681 + pos: -58.5,32.5 + parent: 2 + - uid: 20752 components: - type: Transform - pos: 1.5,-9.5 - parent: 89 - - uid: 2682 + pos: -58.5,36.5 + parent: 2 + - uid: 20753 components: - type: Transform - pos: 2.5,-9.5 - parent: 89 - - uid: 2683 + rot: 1.5707963267948966 rad + pos: -86.5,29.5 + parent: 2 + - uid: 20754 components: - type: Transform - pos: 2.5,-8.5 - parent: 89 - - uid: 2684 + rot: 1.5707963267948966 rad + pos: -86.5,24.5 + parent: 2 + - uid: 20755 components: - type: Transform - pos: 2.5,-7.5 - parent: 89 - - uid: 2685 + rot: 1.5707963267948966 rad + pos: -86.5,25.5 + parent: 2 + - uid: 20756 components: - type: Transform - pos: 2.5,-6.5 - parent: 89 - - uid: 2686 + rot: 1.5707963267948966 rad + pos: -86.5,28.5 + parent: 2 + - uid: 20757 components: - type: Transform - pos: 2.5,-5.5 - parent: 89 - - uid: 2687 + pos: -83.5,-8.5 + parent: 2 + - uid: 20758 components: - type: Transform - pos: 2.5,-4.5 - parent: 89 - - uid: 2688 + pos: -83.5,-7.5 + parent: 2 + - uid: 20759 components: - type: Transform - pos: 2.5,-3.5 - parent: 89 - - uid: 2689 + pos: -83.5,-6.5 + parent: 2 + - uid: 20760 components: - type: Transform - pos: 1.5,-2.5 - parent: 89 - - uid: 2690 + rot: 1.5707963267948966 rad + pos: -86.5,27.5 + parent: 2 + - uid: 20761 components: - type: Transform - pos: 1.5,-1.5 - parent: 89 - - uid: 2691 + rot: 1.5707963267948966 rad + pos: -86.5,26.5 + parent: 2 + - uid: 20762 components: - type: Transform - pos: 1.5,-0.5 - parent: 89 - - uid: 2692 + pos: -41.5,22.5 + parent: 2 + - uid: 20763 components: - type: Transform - pos: 1.5,0.5 - parent: 89 - - uid: 2694 + pos: 41.5,-11.5 + parent: 2 + - uid: 20764 components: - type: Transform - pos: 3.5,0.5 - parent: 89 - - uid: 2695 + pos: -41.5,23.5 + parent: 2 + - uid: 20765 components: - type: Transform - pos: 4.5,0.5 - parent: 89 - - uid: 2696 + pos: -41.5,25.5 + parent: 2 + - uid: 20766 components: - type: Transform - pos: 5.5,0.5 - parent: 89 - - uid: 2697 + rot: 3.141592653589793 rad + pos: -40.5,25.5 + parent: 2 + - uid: 20767 components: - type: Transform - pos: 6.5,0.5 - parent: 89 - - uid: 2698 + pos: -41.5,24.5 + parent: 2 + - uid: 20768 components: - type: Transform - pos: 7.5,0.5 - parent: 89 - - uid: 2699 + pos: -118.5,18.5 + parent: 2 + - uid: 20769 components: - type: Transform - pos: 8.5,0.5 - parent: 89 - - uid: 2701 + pos: 23.5,13.5 + parent: 2 + - uid: 20770 components: - type: Transform - pos: 10.5,0.5 - parent: 89 - - uid: 2702 + rot: 3.141592653589793 rad + pos: -39.5,25.5 + parent: 2 + - uid: 20771 components: - type: Transform - pos: 11.5,0.5 - parent: 89 - - uid: 2703 + pos: 22.5,13.5 + parent: 2 + - uid: 20772 components: - type: Transform - pos: 12.5,0.5 - parent: 89 - - uid: 2704 + pos: 21.5,13.5 + parent: 2 + - uid: 20773 components: - type: Transform - pos: 13.5,0.5 - parent: 89 - - uid: 2705 + pos: 20.5,13.5 + parent: 2 + - uid: 20774 components: - type: Transform - pos: 14.5,0.5 - parent: 89 - - uid: 2706 + pos: 19.5,13.5 + parent: 2 + - uid: 20775 components: - type: Transform - pos: 15.5,0.5 - parent: 89 - - uid: 2707 + pos: 18.5,13.5 + parent: 2 + - uid: 20776 components: - type: Transform - pos: 16.5,0.5 - parent: 89 - - uid: 2708 + pos: 17.5,10.5 + parent: 2 + - uid: 20777 components: - type: Transform - pos: 17.5,0.5 - parent: 89 - - uid: 2710 + pos: 17.5,12.5 + parent: 2 + - uid: 20778 components: - type: Transform - pos: 19.5,0.5 - parent: 89 - - uid: 2711 + pos: 17.5,11.5 + parent: 2 + - uid: 20779 components: - type: Transform - pos: 20.5,0.5 - parent: 89 - - uid: 2712 + pos: 20.5,10.5 + parent: 2 + - uid: 20780 components: - type: Transform - pos: 20.5,-0.5 - parent: 89 - - uid: 2713 + pos: 22.5,10.5 + parent: 2 + - uid: 20781 components: - type: Transform - pos: 21.5,-0.5 - parent: 89 - - uid: 2714 + pos: 15.5,9.5 + parent: 2 + - uid: 20782 components: - type: Transform - pos: 22.5,-0.5 - parent: 89 - - uid: 2715 + pos: 15.5,6.5 + parent: 2 + - uid: 20783 components: - type: Transform - pos: 23.5,-0.5 - parent: 89 - - uid: 2716 + pos: 15.5,5.5 + parent: 2 + - uid: 20784 components: - type: Transform - pos: 24.5,-0.5 - parent: 89 - - uid: 2717 + pos: 20.5,9.5 + parent: 2 + - uid: 20785 components: - type: Transform - pos: 24.5,0.5 - parent: 89 - - uid: 2719 + pos: 15.5,8.5 + parent: 2 + - uid: 20786 components: - type: Transform - pos: 24.5,0.5 - parent: 89 - - uid: 2720 + pos: -86.5,18.5 + parent: 2 + - uid: 20787 components: - type: Transform - pos: 25.5,0.5 - parent: 89 - - uid: 2721 + rot: 1.5707963267948966 rad + pos: -86.5,30.5 + parent: 2 + - uid: 20788 components: - type: Transform - pos: 26.5,0.5 - parent: 89 - - uid: 2722 + pos: -83.5,18.5 + parent: 2 + - uid: 20789 components: - type: Transform - pos: 27.5,0.5 - parent: 89 - - uid: 2734 + pos: -86.5,17.5 + parent: 2 + - uid: 20790 components: - type: Transform - pos: 6.5,-9.5 - parent: 89 - - uid: 2735 + pos: -86.5,15.5 + parent: 2 + - uid: 20791 components: - type: Transform - pos: 6.5,-8.5 - parent: 89 - - uid: 2736 + pos: -36.5,12.5 + parent: 2 + - uid: 20792 components: - type: Transform - pos: 6.5,-7.5 - parent: 89 - - uid: 2737 + pos: 5.5,-25.5 + parent: 2 + - uid: 20793 components: - type: Transform - pos: 9.5,-7.5 - parent: 89 - - uid: 2738 + pos: -8.5,-25.5 + parent: 2 + - uid: 20794 components: - type: Transform - pos: 10.5,-7.5 - parent: 89 - - uid: 2740 + rot: -1.5707963267948966 rad + pos: -116.5,-11.5 + parent: 2 + - uid: 20795 components: - type: Transform - pos: 10.5,-8.5 - parent: 89 - - uid: 2742 + pos: 15.5,27.5 + parent: 2 + - uid: 20796 components: - type: Transform - pos: 10.5,-10.5 - parent: 89 - - uid: 2743 + pos: 9.5,28.5 + parent: 2 + - uid: 20797 components: - type: Transform - pos: 20.5,-11.5 - parent: 89 - - uid: 2744 + pos: 11.5,28.5 + parent: 2 + - uid: 20798 components: - type: Transform - pos: 20.5,-12.5 - parent: 89 - - uid: 2745 + rot: 1.5707963267948966 rad + pos: 17.5,13.5 + parent: 2 + - uid: 20799 components: - type: Transform - pos: 20.5,-13.5 - parent: 89 - - uid: 2746 + pos: 8.5,28.5 + parent: 2 + - uid: 20800 components: - type: Transform - pos: 20.5,-14.5 - parent: 89 - - uid: 2747 + pos: 7.5,28.5 + parent: 2 + - uid: 20801 components: - type: Transform - pos: 23.5,-11.5 - parent: 89 - - uid: 2748 + pos: 6.5,28.5 + parent: 2 + - uid: 20802 components: - type: Transform - pos: 23.5,-12.5 - parent: 89 - - uid: 2749 + pos: 5.5,28.5 + parent: 2 + - uid: 20803 components: - type: Transform - pos: 23.5,-13.5 - parent: 89 - - uid: 2750 + pos: 41.5,-21.5 + parent: 2 + - uid: 20804 components: - type: Transform - pos: 23.5,-14.5 - parent: 89 - - uid: 2751 + pos: 41.5,-25.5 + parent: 2 + - uid: 20805 components: - type: Transform - pos: 26.5,-11.5 - parent: 89 - - uid: 2752 + pos: 41.5,-23.5 + parent: 2 + - uid: 20806 components: - type: Transform - pos: 26.5,-12.5 - parent: 89 - - uid: 2753 + rot: -1.5707963267948966 rad + pos: 46.5,-4.5 + parent: 2 + - uid: 20807 components: - type: Transform - pos: 26.5,-13.5 - parent: 89 - - uid: 2754 + pos: -52.5,29.5 + parent: 2 + - uid: 20808 components: - type: Transform - pos: 26.5,-14.5 - parent: 89 - - uid: 2755 + rot: 3.141592653589793 rad + pos: -39.5,23.5 + parent: 2 + - uid: 20809 components: - type: Transform - pos: 29.5,-11.5 - parent: 89 - - uid: 2756 + rot: 3.141592653589793 rad + pos: -39.5,22.5 + parent: 2 + - uid: 20810 components: - type: Transform - pos: 29.5,-12.5 - parent: 89 - - uid: 2757 + pos: 7.5,31.5 + parent: 2 + - uid: 20811 components: - type: Transform - pos: 29.5,-13.5 - parent: 89 - - uid: 2758 + pos: 5.5,31.5 + parent: 2 + - uid: 20812 components: - type: Transform - pos: 29.5,-14.5 - parent: 89 - - uid: 2763 + pos: -52.5,28.5 + parent: 2 + - uid: 20813 components: - type: Transform - pos: 35.5,-12.5 - parent: 89 - - uid: 2776 + pos: 38.5,-21.5 + parent: 2 + - uid: 20814 components: - type: Transform - pos: 39.5,-7.5 - parent: 89 - - uid: 2777 + pos: 40.5,-21.5 + parent: 2 + - uid: 20815 components: - type: Transform - pos: 38.5,-7.5 - parent: 89 - - uid: 2778 + rot: 3.141592653589793 rad + pos: -81.5,-7.5 + parent: 2 + - uid: 20816 components: - type: Transform - pos: 24.5,-3.5 - parent: 89 - - uid: 2779 + rot: 3.141592653589793 rad + pos: -81.5,-8.5 + parent: 2 + - uid: 20817 components: - type: Transform - pos: 39.5,-8.5 - parent: 89 - - uid: 2780 + rot: 3.141592653589793 rad + pos: -81.5,-9.5 + parent: 2 + - uid: 20818 components: - type: Transform - pos: 39.5,-9.5 - parent: 89 - - uid: 2781 + pos: 14.5,-14.5 + parent: 2 + - uid: 20819 components: - type: Transform - pos: -73.5,-18.5 - parent: 89 - - uid: 2782 + pos: 14.5,-12.5 + parent: 2 + - uid: 20820 components: - type: Transform - pos: -70.5,-18.5 - parent: 89 - - uid: 2788 + pos: 16.5,-14.5 + parent: 2 + - uid: 20821 components: - type: Transform - pos: 39.5,-1.5 - parent: 89 - - uid: 2789 + rot: 1.5707963267948966 rad + pos: 9.5,-4.5 + parent: 2 + - uid: 20822 components: - type: Transform - pos: 38.5,-1.5 - parent: 89 - - uid: 2790 + pos: 37.5,-23.5 + parent: 2 + - uid: 20823 components: - type: Transform - pos: 38.5,-2.5 - parent: 89 - - uid: 2791 + pos: 41.5,-24.5 + parent: 2 + - uid: 20824 components: - type: Transform - pos: 38.5,-3.5 - parent: 89 - - uid: 2792 + pos: 11.5,35.5 + parent: 2 + - uid: 20825 components: - type: Transform - pos: 38.5,-4.5 - parent: 89 - - uid: 2793 + pos: 5.5,35.5 + parent: 2 + - uid: 20826 components: - type: Transform - pos: 37.5,-4.5 - parent: 89 - - uid: 2794 + pos: 8.5,35.5 + parent: 2 + - uid: 20827 components: - type: Transform - pos: 29.5,-7.5 - parent: 89 - - uid: 2795 + pos: -52.5,27.5 + parent: 2 + - uid: 20828 components: - type: Transform - pos: 29.5,-4.5 - parent: 89 - - uid: 2796 + pos: -35.5,12.5 + parent: 2 + - uid: 20829 components: - type: Transform - pos: 31.5,-4.5 - parent: 89 - - uid: 2797 + rot: -1.5707963267948966 rad + pos: 12.5,23.5 + parent: 2 + - uid: 20830 components: - type: Transform - pos: 29.5,-3.5 - parent: 89 - - uid: 2798 + pos: 37.5,-21.5 + parent: 2 + - uid: 20831 components: - type: Transform - pos: 29.5,-2.5 - parent: 89 - - uid: 2799 + rot: 1.5707963267948966 rad + pos: 9.5,0.5 + parent: 2 + - uid: 20832 components: - type: Transform - pos: 29.5,-1.5 - parent: 89 - - uid: 2800 + rot: 3.141592653589793 rad + pos: -89.5,19.5 + parent: 2 + - uid: 20833 components: - type: Transform - pos: 29.5,-0.5 - parent: 89 - - uid: 2802 + pos: -52.5,30.5 + parent: 2 + - uid: 20834 components: - type: Transform - pos: 24.5,-4.5 - parent: 89 - - uid: 2803 + pos: 4.5,36.5 + parent: 2 + - uid: 20835 components: - type: Transform - pos: 24.5,-5.5 - parent: 89 - - uid: 2804 + pos: 45.5,-10.5 + parent: 2 + - uid: 20836 components: - type: Transform - pos: 24.5,-6.5 - parent: 89 - - uid: 2805 + pos: 44.5,-10.5 + parent: 2 + - uid: 20837 components: - type: Transform - pos: 24.5,-7.5 - parent: 89 - - uid: 2807 + pos: 43.5,-10.5 + parent: 2 + - uid: 20838 components: - type: Transform - pos: 23.5,-7.5 - parent: 89 - - uid: 2808 + pos: 41.5,-16.5 + parent: 2 + - uid: 20839 components: - type: Transform - pos: 22.5,-7.5 - parent: 89 - - uid: 2809 + rot: 3.141592653589793 rad + pos: 16.5,-2.5 + parent: 2 + - uid: 20840 components: - type: Transform - pos: 21.5,-7.5 - parent: 89 - - uid: 2810 + pos: 37.5,-19.5 + parent: 2 + - uid: 20841 components: - type: Transform - pos: 20.5,-7.5 - parent: 89 - - uid: 2811 + pos: 35.5,-18.5 + parent: 2 + - uid: 20842 components: - type: Transform - pos: 19.5,-7.5 - parent: 89 - - uid: 2812 + rot: -1.5707963267948966 rad + pos: 41.5,-17.5 + parent: 2 + - uid: 20843 components: - type: Transform - pos: 17.5,-7.5 - parent: 89 - - uid: 2813 + pos: 33.5,24.5 + parent: 2 + - uid: 20844 components: - type: Transform - pos: 16.5,-7.5 - parent: 89 - - uid: 2814 + pos: 33.5,25.5 + parent: 2 + - uid: 20845 components: - type: Transform - pos: 16.5,-6.5 - parent: 89 - - uid: 2815 + pos: 33.5,27.5 + parent: 2 + - uid: 20846 components: - type: Transform - pos: 16.5,-5.5 - parent: 89 - - uid: 2816 + pos: 33.5,28.5 + parent: 2 + - uid: 20847 components: - type: Transform - pos: 16.5,-4.5 - parent: 89 - - uid: 2817 + pos: 4.5,35.5 + parent: 2 + - uid: 20848 components: - type: Transform - pos: 16.5,-3.5 - parent: 89 - - uid: 2818 + pos: 15.5,28.5 + parent: 2 + - uid: 20849 components: - type: Transform - pos: 20.5,-1.5 - parent: 89 - - uid: 2819 + pos: 15.5,30.5 + parent: 2 + - uid: 20850 components: - type: Transform - pos: 17.5,-3.5 - parent: 89 - - uid: 2820 + pos: 15.5,29.5 + parent: 2 + - uid: 20851 components: - type: Transform - pos: 18.5,-3.5 - parent: 89 - - uid: 2821 + rot: -1.5707963267948966 rad + pos: 42.5,-17.5 + parent: 2 + - uid: 20852 components: - type: Transform - pos: 19.5,-3.5 - parent: 89 - - uid: 2822 + rot: -1.5707963267948966 rad + pos: 43.5,-17.5 + parent: 2 + - uid: 20853 components: - type: Transform - pos: 20.5,-3.5 - parent: 89 - - uid: 2826 + pos: 12.5,28.5 + parent: 2 + - uid: 20854 components: - type: Transform - pos: 20.5,-2.5 - parent: 89 - - uid: 2827 + pos: 15.5,32.5 + parent: 2 + - uid: 20855 components: - type: Transform - pos: 16.5,-1.5 - parent: 89 - - uid: 2828 + pos: 15.5,31.5 + parent: 2 + - uid: 20856 components: - type: Transform - pos: 16.5,-0.5 - parent: 89 - - uid: 2829 + pos: 10.5,31.5 + parent: 2 + - uid: 20857 components: - type: Transform - pos: 10.5,-4.5 - parent: 89 - - uid: 2833 + pos: 9.5,31.5 + parent: 2 + - uid: 20858 components: - type: Transform - pos: 5.5,38.5 - parent: 89 - - uid: 2839 + pos: 10.5,28.5 + parent: 2 + - uid: 20859 components: - type: Transform - pos: 6.5,-3.5 - parent: 89 - - uid: 2840 + pos: 12.5,25.5 + parent: 2 + - uid: 20860 components: - type: Transform - pos: 7.5,-3.5 - parent: 89 - - uid: 2844 + pos: 12.5,30.5 + parent: 2 + - uid: 20861 components: - type: Transform - pos: 4.5,-3.5 - parent: 89 - - uid: 2845 + pos: 9.5,30.5 + parent: 2 + - uid: 20862 components: - type: Transform - pos: 3.5,-3.5 - parent: 89 - - uid: 2915 + pos: 12.5,31.5 + parent: 2 + - uid: 20863 components: - type: Transform - pos: 8.5,38.5 - parent: 89 - - uid: 2940 + pos: -116.5,-15.5 + parent: 2 + - uid: 20864 components: - type: Transform - pos: 18.5,-7.5 - parent: 89 - - uid: 2944 + pos: -116.5,-14.5 + parent: 2 + - uid: 20865 components: - type: Transform - pos: 53.5,-10.5 - parent: 89 - - uid: 3028 + pos: 9.5,29.5 + parent: 2 + - uid: 20866 components: - type: Transform - pos: 16.5,-15.5 - parent: 89 - - uid: 3030 + pos: 11.5,31.5 + parent: 2 + - uid: 20867 components: - type: Transform - pos: 16.5,-17.5 - parent: 89 - - uid: 3035 + pos: 35.5,24.5 + parent: 2 + - uid: 20868 components: - type: Transform - pos: 38.5,20.5 - parent: 89 - - uid: 3036 + pos: 36.5,24.5 + parent: 2 + - uid: 20869 components: - type: Transform - pos: 42.5,20.5 - parent: 89 - - uid: 3037 + pos: 38.5,23.5 + parent: 2 + - uid: 20870 components: - type: Transform - pos: 39.5,20.5 - parent: 89 - - uid: 3047 + pos: 38.5,22.5 + parent: 2 + - uid: 20871 components: - type: Transform - pos: 9.5,-21.5 - parent: 89 - - uid: 3050 + pos: 38.5,21.5 + parent: 2 + - uid: 20872 components: - type: Transform - pos: 8.5,-23.5 - parent: 89 - - uid: 3051 + pos: 15.5,25.5 + parent: 2 + - uid: 20873 components: - type: Transform - pos: 8.5,-24.5 - parent: 89 - - uid: 3052 + pos: 12.5,27.5 + parent: 2 + - uid: 20874 components: - type: Transform - pos: 8.5,-25.5 - parent: 89 - - uid: 3053 + pos: 12.5,24.5 + parent: 2 + - uid: 20875 components: - type: Transform - pos: 8.5,-26.5 - parent: 89 - - uid: 3054 + rot: -1.5707963267948966 rad + pos: 44.5,-17.5 + parent: 2 + - uid: 20876 components: - type: Transform - pos: 8.5,-27.5 - parent: 89 - - uid: 3056 + rot: -1.5707963267948966 rad + pos: 45.5,-17.5 + parent: 2 + - uid: 20877 components: - type: Transform - pos: 7.5,-27.5 - parent: 89 - - uid: 3057 + rot: -1.5707963267948966 rad + pos: 46.5,-17.5 + parent: 2 + - uid: 20878 components: - type: Transform - pos: 6.5,-27.5 - parent: 89 - - uid: 3092 + rot: -1.5707963267948966 rad + pos: 47.5,-17.5 + parent: 2 + - uid: 20879 components: - type: Transform - pos: 24.5,-17.5 - parent: 89 - - uid: 3094 + rot: -1.5707963267948966 rad + pos: 48.5,-17.5 + parent: 2 + - uid: 20880 components: - type: Transform - pos: 34.5,29.5 - parent: 89 - - uid: 3095 + rot: -1.5707963267948966 rad + pos: 49.5,-17.5 + parent: 2 + - uid: 20881 components: - type: Transform - pos: 17.5,-19.5 - parent: 89 - - uid: 3122 + rot: -1.5707963267948966 rad + pos: 50.5,-17.5 + parent: 2 + - uid: 20882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-0.5 - parent: 89 - - uid: 3124 + pos: 51.5,-17.5 + parent: 2 + - uid: 20883 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-0.5 - parent: 89 - - uid: 3128 + pos: 52.5,-17.5 + parent: 2 + - uid: 20884 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 43.5,-0.5 - parent: 89 - - uid: 3129 + pos: 37.5,-25.5 + parent: 2 + - uid: 20885 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 42.5,-0.5 - parent: 89 - - uid: 3131 + pos: 37.5,-24.5 + parent: 2 + - uid: 20886 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 41.5,-0.5 - parent: 89 - - uid: 3139 + pos: 42.5,-21.5 + parent: 2 + - uid: 20887 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-4.5 - parent: 89 - - uid: 3140 + pos: 43.5,-21.5 + parent: 2 + - uid: 20888 components: - type: Transform rot: 3.141592653589793 rad - pos: 51.5,-3.5 - parent: 89 - - uid: 3142 + pos: 41.5,-27.5 + parent: 2 + - uid: 20889 components: - type: Transform rot: 3.141592653589793 rad - pos: 49.5,-1.5 - parent: 89 - - uid: 3143 + pos: 41.5,-26.5 + parent: 2 + - uid: 20890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-0.5 - parent: 89 - - uid: 3144 + pos: -86.5,23.5 + parent: 2 + - uid: 20891 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-0.5 - parent: 89 - - uid: 3145 + pos: 50.5,-9.5 + parent: 2 + - uid: 20892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-0.5 - parent: 89 - - uid: 3146 + pos: -91.5,-3.5 + parent: 2 + - uid: 20893 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-0.5 - parent: 89 - - uid: 3159 + pos: 35.5,-21.5 + parent: 2 + - uid: 20894 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,35.5 - parent: 89 - - uid: 3174 + pos: 36.5,-21.5 + parent: 2 + - uid: 20895 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -27.5,34.5 - parent: 89 - - uid: 3190 + pos: 43.5,15.5 + parent: 2 + - uid: 20896 + components: + - type: Transform + pos: 44.5,15.5 + parent: 2 + - uid: 20897 components: - type: Transform rot: 3.141592653589793 rad - pos: 46.5,16.5 - parent: 89 - - uid: 3192 + pos: -43.5,23.5 + parent: 2 + - uid: 20898 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-0.5 - parent: 89 - - uid: 3194 + pos: 30.5,0.5 + parent: 2 + - uid: 20899 components: - type: Transform - pos: 18.5,-19.5 - parent: 89 - - uid: 3195 + rot: -1.5707963267948966 rad + pos: 28.5,0.5 + parent: 2 + - uid: 20900 components: - type: Transform - pos: 14.5,-20.5 - parent: 89 - - uid: 3196 + rot: 1.5707963267948966 rad + pos: 9.5,-3.5 + parent: 2 + - uid: 20901 components: - type: Transform - pos: 12.5,-20.5 - parent: 89 - - uid: 3198 + rot: 1.5707963267948966 rad + pos: 9.5,-0.5 + parent: 2 + - uid: 20902 components: - type: Transform - pos: 13.5,-20.5 - parent: 89 - - uid: 3200 + rot: 1.5707963267948966 rad + pos: 9.5,-1.5 + parent: 2 + - uid: 20903 components: - type: Transform - pos: 19.5,-17.5 - parent: 89 - - uid: 3201 + rot: 1.5707963267948966 rad + pos: 9.5,-2.5 + parent: 2 + - uid: 20904 components: - type: Transform - pos: 15.5,-20.5 - parent: 89 - - uid: 3202 + pos: 33.5,26.5 + parent: 2 + - uid: 20905 components: - type: Transform - pos: 49.5,21.5 - parent: 89 - - uid: 3203 + rot: -1.5707963267948966 rad + pos: 30.5,-0.5 + parent: 2 + - uid: 20906 components: - type: Transform - pos: 16.5,-20.5 - parent: 89 - - uid: 3207 + pos: -0.5,-26.5 + parent: 2 + - uid: 20907 components: - type: Transform - pos: 16.5,-19.5 - parent: 89 - - uid: 3211 + rot: 3.141592653589793 rad + pos: 55.5,-27.5 + parent: 2 + - uid: 20908 components: - type: Transform - pos: 18.5,-17.5 - parent: 89 - - uid: 3257 + rot: 3.141592653589793 rad + pos: 32.5,0.5 + parent: 2 + - uid: 20909 components: - type: Transform - pos: 41.5,15.5 - parent: 89 - - uid: 3273 + pos: 59.5,-38.5 + parent: 2 + - uid: 20910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,17.5 - parent: 89 - - uid: 3276 + pos: 62.5,-18.5 + parent: 2 + - uid: 20911 components: - type: Transform - pos: 23.5,-17.5 - parent: 89 - - uid: 3279 + rot: -1.5707963267948966 rad + pos: 54.5,-33.5 + parent: 2 + - uid: 20912 components: - type: Transform - pos: 20.5,-18.5 - parent: 89 - - uid: 3284 + pos: 40.5,15.5 + parent: 2 + - uid: 20913 components: - type: Transform - pos: 21.5,-18.5 - parent: 89 - - uid: 3288 + pos: -83.5,-5.5 + parent: 2 + - uid: 20914 components: - type: Transform - pos: 30.5,-17.5 - parent: 89 - - uid: 3289 + rot: 1.5707963267948966 rad + pos: 41.5,20.5 + parent: 2 + - uid: 20915 components: - type: Transform rot: 3.141592653589793 rad - pos: -3.5,-42.5 - parent: 89 - - uid: 3298 + pos: 40.5,18.5 + parent: 2 + - uid: 20916 components: - type: Transform - pos: 31.5,-17.5 - parent: 89 - - uid: 3316 + rot: 3.141592653589793 rad + pos: 41.5,18.5 + parent: 2 + - uid: 20917 components: - type: Transform - pos: 41.5,-10.5 - parent: 89 - - uid: 3335 + pos: 38.5,18.5 + parent: 2 + - uid: 20918 components: - type: Transform - pos: 40.5,-10.5 - parent: 89 - - uid: 3336 + rot: 3.141592653589793 rad + pos: 37.5,-26.5 + parent: 2 + - uid: 20919 components: - type: Transform - pos: 42.5,-10.5 - parent: 89 - - uid: 3347 + rot: 3.141592653589793 rad + pos: 55.5,-26.5 + parent: 2 + - uid: 20920 components: - type: Transform - pos: 37.5,-14.5 - parent: 89 - - uid: 3348 + rot: 3.141592653589793 rad + pos: 55.5,-25.5 + parent: 2 + - uid: 20921 components: - type: Transform - pos: 37.5,-15.5 - parent: 89 - - uid: 3352 + rot: -1.5707963267948966 rad + pos: 54.5,-32.5 + parent: 2 + - uid: 20922 components: - type: Transform - pos: 18.5,9.5 - parent: 89 - - uid: 3355 + rot: 3.141592653589793 rad + pos: 47.5,-20.5 + parent: 2 + - uid: 20923 components: - type: Transform - pos: 19.5,9.5 - parent: 89 - - uid: 3393 + pos: 52.5,-21.5 + parent: 2 + - uid: 20924 components: - type: Transform - pos: 37.5,-13.5 - parent: 89 - - uid: 3397 + pos: 53.5,-21.5 + parent: 2 + - uid: 20925 components: - type: Transform - pos: 45.5,-2.5 - parent: 89 - - uid: 3484 + pos: 54.5,-21.5 + parent: 2 + - uid: 20926 components: - type: Transform - pos: 52.5,-10.5 - parent: 89 - - uid: 3534 + pos: 52.5,-27.5 + parent: 2 + - uid: 20927 components: - type: Transform - pos: 32.5,-17.5 - parent: 89 - - uid: 3536 + rot: -1.5707963267948966 rad + pos: 54.5,-24.5 + parent: 2 + - uid: 20928 components: - type: Transform - pos: 25.5,-17.5 - parent: 89 - - uid: 3638 + rot: 3.141592653589793 rad + pos: 47.5,-19.5 + parent: 2 + - uid: 20929 components: - type: Transform - pos: 20.5,-17.5 - parent: 89 - - uid: 3695 + rot: 3.141592653589793 rad + pos: 40.5,-27.5 + parent: 2 + - uid: 20930 components: - type: Transform - pos: 33.5,-17.5 - parent: 89 - - uid: 3698 + rot: -1.5707963267948966 rad + pos: 52.5,-24.5 + parent: 2 + - uid: 20931 components: - type: Transform - pos: 34.5,-17.5 - parent: 89 - - uid: 3925 + rot: 3.141592653589793 rad + pos: 47.5,-21.5 + parent: 2 + - uid: 20932 components: - type: Transform - pos: -36.5,-8.5 - parent: 89 - - uid: 3926 + rot: 3.141592653589793 rad + pos: 52.5,-32.5 + parent: 2 + - uid: 20933 components: - type: Transform - pos: -38.5,-8.5 - parent: 89 - - uid: 3950 + pos: 51.5,-26.5 + parent: 2 + - uid: 20934 components: - type: Transform - pos: -38.5,-9.5 - parent: 89 - - uid: 3952 + pos: 52.5,-19.5 + parent: 2 + - uid: 20935 components: - type: Transform - pos: -37.5,-10.5 - parent: 89 - - uid: 3953 + pos: 52.5,-18.5 + parent: 2 + - uid: 20936 components: - type: Transform - pos: -36.5,-10.5 - parent: 89 - - uid: 4181 + rot: 3.141592653589793 rad + pos: 50.5,-33.5 + parent: 2 + - uid: 20937 components: - type: Transform - pos: 51.5,-10.5 - parent: 89 - - uid: 4256 + rot: -1.5707963267948966 rad + pos: 54.5,-27.5 + parent: 2 + - uid: 20938 components: - type: Transform - pos: 26.5,-17.5 - parent: 89 - - uid: 4290 + rot: 3.141592653589793 rad + pos: 47.5,-18.5 + parent: 2 + - uid: 20939 components: - type: Transform - pos: 27.5,-17.5 - parent: 89 - - uid: 4326 + pos: 52.5,-23.5 + parent: 2 + - uid: 20940 components: - type: Transform - pos: -46.5,2.5 - parent: 89 - - uid: 4470 + pos: 53.5,-27.5 + parent: 2 + - uid: 20941 components: - type: Transform - pos: -65.5,-18.5 - parent: 89 - - uid: 4482 + rot: 3.141592653589793 rad + pos: 46.5,-32.5 + parent: 2 + - uid: 20942 components: - type: Transform - pos: -61.5,-21.5 - parent: 89 - - uid: 4483 + pos: 52.5,-26.5 + parent: 2 + - uid: 20943 components: - type: Transform - pos: -64.5,-21.5 - parent: 89 - - uid: 4484 + rot: 3.141592653589793 rad + pos: 48.5,-32.5 + parent: 2 + - uid: 20944 components: - type: Transform - pos: -64.5,-20.5 - parent: 89 - - uid: 4485 + rot: 3.141592653589793 rad + pos: 48.5,-33.5 + parent: 2 + - uid: 20945 components: - type: Transform - pos: -64.5,-19.5 - parent: 89 - - uid: 4489 + rot: 3.141592653589793 rad + pos: 50.5,-26.5 + parent: 2 + - uid: 20946 components: - type: Transform - pos: -68.5,-18.5 - parent: 89 - - uid: 4490 + rot: 3.141592653589793 rad + pos: 44.5,-26.5 + parent: 2 + - uid: 20947 components: - type: Transform - pos: -69.5,-18.5 - parent: 89 - - uid: 4495 + rot: 3.141592653589793 rad + pos: 54.5,-31.5 + parent: 2 + - uid: 20948 components: - type: Transform - pos: -74.5,-18.5 - parent: 89 - - uid: 4497 + rot: 3.141592653589793 rad + pos: 54.5,-28.5 + parent: 2 + - uid: 20949 components: - type: Transform - pos: -68.5,-17.5 - parent: 89 - - uid: 4499 + rot: 3.141592653589793 rad + pos: 52.5,-33.5 + parent: 2 + - uid: 20950 components: - type: Transform - pos: -68.5,-15.5 - parent: 89 - - uid: 4500 + rot: 3.141592653589793 rad + pos: 54.5,-29.5 + parent: 2 + - uid: 20951 components: - type: Transform - pos: -68.5,-14.5 - parent: 89 - - uid: 4501 + rot: 3.141592653589793 rad + pos: 50.5,-21.5 + parent: 2 + - uid: 20952 components: - type: Transform - pos: -69.5,-14.5 - parent: 89 - - uid: 4502 + rot: 3.141592653589793 rad + pos: 46.5,-33.5 + parent: 2 + - uid: 20953 components: - type: Transform - pos: -74.5,-11.5 - parent: 89 - - uid: 4503 + rot: 3.141592653589793 rad + pos: 50.5,-32.5 + parent: 2 + - uid: 20954 components: - type: Transform - pos: -71.5,-14.5 - parent: 89 - - uid: 4504 + pos: 47.5,-38.5 + parent: 2 + - uid: 20955 components: - type: Transform - pos: -72.5,-14.5 - parent: 89 - - uid: 4505 + pos: 63.5,-29.5 + parent: 2 + - uid: 20956 components: - type: Transform - pos: -74.5,-14.5 - parent: 89 - - uid: 4506 + pos: 36.5,-35.5 + parent: 2 + - uid: 20957 components: - type: Transform - pos: -75.5,-14.5 - parent: 89 - - uid: 4507 + rot: -1.5707963267948966 rad + pos: 53.5,-24.5 + parent: 2 + - uid: 20958 components: - type: Transform - pos: -75.5,-15.5 - parent: 89 - - uid: 4508 + rot: -1.5707963267948966 rad + pos: 55.5,-24.5 + parent: 2 + - uid: 20959 components: - type: Transform - pos: -75.5,-16.5 - parent: 89 - - uid: 4509 + pos: -2.5,-26.5 + parent: 2 + - uid: 20960 components: - type: Transform - pos: -75.5,-17.5 - parent: 89 - - uid: 4510 + rot: -1.5707963267948966 rad + pos: 33.5,-24.5 + parent: 2 + - uid: 20961 components: - type: Transform - pos: -74.5,-12.5 - parent: 89 - - uid: 4514 + pos: 42.5,-8.5 + parent: 2 + - uid: 20962 components: - type: Transform - pos: -72.5,-11.5 - parent: 89 - - uid: 4515 + pos: 35.5,-14.5 + parent: 2 + - uid: 20963 components: - type: Transform - pos: -72.5,-12.5 - parent: 89 - - uid: 4516 + pos: -12.5,-14.5 + parent: 2 + - uid: 20964 components: - type: Transform - pos: -72.5,-13.5 - parent: 89 - - uid: 4600 + pos: -16.5,-24.5 + parent: 2 + - uid: 20965 components: - type: Transform - pos: -46.5,-14.5 - parent: 89 - - uid: 4601 + pos: -17.5,-20.5 + parent: 2 + - uid: 20966 components: - type: Transform - pos: -46.5,-15.5 - parent: 89 - - uid: 4602 + pos: -17.5,-18.5 + parent: 2 + - uid: 20967 components: - type: Transform - pos: -46.5,-16.5 - parent: 89 - - uid: 4604 + pos: -16.5,-14.5 + parent: 2 + - uid: 20968 components: - type: Transform - pos: -45.5,-16.5 - parent: 89 - - uid: 4605 + pos: -23.5,-17.5 + parent: 2 + - uid: 20969 components: - type: Transform - pos: -45.5,-17.5 - parent: 89 - - uid: 4606 + pos: -14.5,-20.5 + parent: 2 + - uid: 20970 components: - type: Transform - pos: -45.5,-18.5 - parent: 89 - - uid: 4608 + pos: -13.5,-20.5 + parent: 2 + - uid: 20971 components: - type: Transform - pos: -46.5,-18.5 - parent: 89 - - uid: 4612 + pos: -16.5,-20.5 + parent: 2 + - uid: 20972 components: - type: Transform - pos: -44.5,-18.5 - parent: 89 - - uid: 4613 + pos: -17.5,-19.5 + parent: 2 + - uid: 20973 components: - type: Transform - pos: -43.5,-18.5 - parent: 89 - - uid: 4614 + pos: -17.5,-15.5 + parent: 2 + - uid: 20974 components: - type: Transform - pos: -42.5,-18.5 - parent: 89 - - uid: 4615 + pos: -17.5,-14.5 + parent: 2 + - uid: 20975 components: - type: Transform - pos: -41.5,-18.5 - parent: 89 - - uid: 4616 + pos: -23.5,-14.5 + parent: 2 + - uid: 20976 components: - type: Transform - pos: -40.5,-18.5 - parent: 89 - - uid: 4617 + pos: -7.5,-15.5 + parent: 2 + - uid: 20977 components: - type: Transform - pos: -39.5,-18.5 - parent: 89 - - uid: 4618 + pos: -14.5,-14.5 + parent: 2 + - uid: 20978 components: - type: Transform - pos: -38.5,-18.5 - parent: 89 - - uid: 4620 + pos: -15.5,-14.5 + parent: 2 + - uid: 20979 components: - type: Transform - pos: -53.5,-17.5 - parent: 89 - - uid: 4621 + pos: -12.5,-15.5 + parent: 2 + - uid: 20980 components: - type: Transform - pos: -49.5,-18.5 - parent: 89 - - uid: 4622 + pos: -7.5,-14.5 + parent: 2 + - uid: 20981 components: - type: Transform - pos: -58.5,-20.5 - parent: 89 - - uid: 4623 + pos: -6.5,-14.5 + parent: 2 + - uid: 20982 components: - type: Transform - pos: -53.5,-18.5 - parent: 89 - - uid: 4627 + pos: -5.5,-14.5 + parent: 2 + - uid: 20983 components: - type: Transform - pos: -57.5,-18.5 - parent: 89 - - uid: 4629 + pos: -21.5,-21.5 + parent: 2 + - uid: 20984 components: - type: Transform - pos: -58.5,-19.5 - parent: 89 - - uid: 4630 + pos: -4.5,-14.5 + parent: 2 + - uid: 20985 components: - type: Transform - pos: -58.5,-21.5 - parent: 89 - - uid: 4631 + pos: -4.5,-15.5 + parent: 2 + - uid: 20986 components: - type: Transform - pos: -61.5,-20.5 - parent: 89 - - uid: 4632 + pos: -4.5,-16.5 + parent: 2 + - uid: 20987 components: - type: Transform - pos: -61.5,-19.5 - parent: 89 - - uid: 4633 + pos: -4.5,-17.5 + parent: 2 + - uid: 20988 components: - type: Transform - pos: -61.5,-18.5 - parent: 89 - - uid: 4635 + pos: -4.5,-18.5 + parent: 2 + - uid: 20989 components: - type: Transform - pos: -53.5,-15.5 - parent: 89 - - uid: 4636 + pos: -3.5,-18.5 + parent: 2 + - uid: 20990 components: - type: Transform - pos: -53.5,-14.5 - parent: 89 - - uid: 4638 + pos: 0.5,-18.5 + parent: 2 + - uid: 20991 components: - type: Transform - pos: -57.5,-17.5 - parent: 89 - - uid: 4639 + pos: 3.5,-17.5 + parent: 2 + - uid: 20992 components: - type: Transform - pos: -57.5,-16.5 - parent: 89 - - uid: 4640 + pos: 4.5,-17.5 + parent: 2 + - uid: 20993 components: - type: Transform - pos: -57.5,-15.5 - parent: 89 - - uid: 4641 + pos: 5.5,-17.5 + parent: 2 + - uid: 20994 components: - type: Transform - pos: -57.5,-14.5 - parent: 89 - - uid: 4642 + pos: -20.5,-21.5 + parent: 2 + - uid: 20995 components: - type: Transform - pos: -57.5,-13.5 - parent: 89 - - uid: 4643 + pos: -23.5,-21.5 + parent: 2 + - uid: 20996 components: - type: Transform - pos: -57.5,-12.5 - parent: 89 - - uid: 4654 + pos: -23.5,-20.5 + parent: 2 + - uid: 20997 components: - type: Transform - pos: -53.5,-12.5 - parent: 89 - - uid: 4693 + pos: -23.5,-19.5 + parent: 2 + - uid: 20998 components: - type: Transform - pos: -49.5,-17.5 - parent: 89 - - uid: 4696 + pos: -23.5,-18.5 + parent: 2 + - uid: 20999 components: - type: Transform - pos: -49.5,-15.5 - parent: 89 - - uid: 4699 + pos: -23.5,-15.5 + parent: 2 + - uid: 21000 components: - type: Transform - pos: -49.5,-14.5 - parent: 89 - - uid: 4701 + pos: -15.5,-20.5 + parent: 2 + - uid: 21001 components: - type: Transform - pos: -52.5,-18.5 - parent: 89 - - uid: 4703 + pos: -10.5,-21.5 + parent: 2 + - uid: 21002 components: - type: Transform - pos: -50.5,-18.5 - parent: 89 - - uid: 4885 + pos: -10.5,-20.5 + parent: 2 + - uid: 21003 components: - type: Transform - rot: 3.141592653589793 rad - pos: 61.5,-5.5 - parent: 89 - - uid: 4886 + pos: 0.5,-19.5 + parent: 2 + - uid: 21004 components: - type: Transform - pos: 53.5,-12.5 - parent: 89 - - uid: 5003 + pos: 0.5,-20.5 + parent: 2 + - uid: 21005 components: - type: Transform - pos: 44.5,-2.5 - parent: 89 - - uid: 5004 + pos: 0.5,-21.5 + parent: 2 + - uid: 21006 components: - type: Transform - pos: 45.5,-9.5 - parent: 89 - - uid: 5077 + pos: -23.5,-22.5 + parent: 2 + - uid: 21007 components: - type: Transform - pos: -57.5,-11.5 - parent: 89 - - uid: 5117 + pos: -23.5,-23.5 + parent: 2 + - uid: 21008 components: - type: Transform - pos: -42.5,-2.5 - parent: 89 - - uid: 5175 + pos: -23.5,-24.5 + parent: 2 + - uid: 21009 components: - type: Transform - pos: -56.5,-11.5 - parent: 89 - - uid: 5176 + pos: -22.5,-24.5 + parent: 2 + - uid: 21010 components: - type: Transform - pos: -55.5,-11.5 - parent: 89 - - uid: 5178 + pos: -21.5,-24.5 + parent: 2 + - uid: 21011 components: - type: Transform - pos: -54.5,-11.5 - parent: 89 - - uid: 5179 + pos: -20.5,-24.5 + parent: 2 + - uid: 21012 components: - type: Transform - pos: -53.5,-11.5 - parent: 89 - - uid: 5386 + pos: -19.5,-24.5 + parent: 2 + - uid: 21013 components: - type: Transform - rot: 3.141592653589793 rad - pos: -0.5,-42.5 - parent: 89 - - uid: 5421 + pos: -18.5,-24.5 + parent: 2 + - uid: 21014 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-42.5 - parent: 89 - - uid: 5451 + pos: -17.5,-24.5 + parent: 2 + - uid: 21015 components: - type: Transform - pos: 39.5,-10.5 - parent: 89 - - uid: 5459 + pos: -14.5,-24.5 + parent: 2 + - uid: 21016 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-16.5 - parent: 89 - - uid: 5469 + pos: -13.5,-24.5 + parent: 2 + - uid: 21017 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 48.5,-7.5 - parent: 89 - - uid: 5513 + pos: -15.5,-24.5 + parent: 2 + - uid: 21018 components: - type: Transform - pos: -44.5,-1.5 - parent: 89 - - uid: 5514 + pos: -12.5,-24.5 + parent: 2 + - uid: 21019 components: - type: Transform - pos: -46.5,1.5 - parent: 89 - - uid: 5515 + pos: -20.5,-23.5 + parent: 2 + - uid: 21020 components: - type: Transform - pos: -46.5,0.5 - parent: 89 - - uid: 5516 + pos: -10.5,-23.5 + parent: 2 + - uid: 21021 components: - type: Transform - pos: -46.5,-0.5 - parent: 89 - - uid: 5517 + pos: 5.5,-21.5 + parent: 2 + - uid: 21022 components: - type: Transform - pos: -46.5,-1.5 - parent: 89 - - uid: 5518 + pos: 5.5,-23.5 + parent: 2 + - uid: 21023 components: - type: Transform - pos: -45.5,-1.5 - parent: 89 - - uid: 5791 + pos: -16.5,-19.5 + parent: 2 + - uid: 21024 components: - type: Transform - pos: -74.5,-13.5 - parent: 89 - - uid: 5792 + pos: 4.5,-23.5 + parent: 2 + - uid: 21025 components: - type: Transform - pos: -73.5,-11.5 - parent: 89 - - uid: 5950 + pos: -3.5,-23.5 + parent: 2 + - uid: 21026 components: - type: Transform - pos: -57.5,6.5 - parent: 89 - - uid: 5951 + pos: -21.5,-14.5 + parent: 2 + - uid: 21027 components: - type: Transform - pos: -57.5,11.5 - parent: 89 - - uid: 5952 + pos: 0.5,-23.5 + parent: 2 + - uid: 21028 components: - type: Transform - pos: -57.5,10.5 - parent: 89 - - uid: 5953 + pos: -3.5,-21.5 + parent: 2 + - uid: 21029 components: - type: Transform - pos: -57.5,9.5 - parent: 89 - - uid: 5954 + pos: -3.5,-20.5 + parent: 2 + - uid: 21030 components: - type: Transform - pos: -57.5,7.5 - parent: 89 - - uid: 5955 + pos: -4.5,-19.5 + parent: 2 + - uid: 21031 components: - type: Transform - pos: -57.5,8.5 - parent: 89 - - uid: 6015 + pos: -5.5,-19.5 + parent: 2 + - uid: 21032 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-3.5 - parent: 89 - - uid: 6039 + pos: -7.5,-19.5 + parent: 2 + - uid: 21033 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-18.5 - parent: 89 - - uid: 6122 + pos: -9.5,-19.5 + parent: 2 + - uid: 21034 components: - type: Transform - rot: 3.141592653589793 rad - pos: 63.5,-0.5 - parent: 89 - - uid: 6159 + pos: -10.5,-19.5 + parent: 2 + - uid: 21035 components: - type: Transform - pos: 53.5,-11.5 - parent: 89 - - uid: 6174 + pos: -6.5,-19.5 + parent: 2 + - uid: 21036 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,4.5 - parent: 89 - - uid: 6175 + pos: -11.5,-20.5 + parent: 2 + - uid: 21037 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,5.5 - parent: 89 - - uid: 6181 + pos: -12.5,-20.5 + parent: 2 + - uid: 21038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,4.5 - parent: 89 - - uid: 6182 + pos: 5.5,-22.5 + parent: 2 + - uid: 21039 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,4.5 - parent: 89 - - uid: 6185 + pos: 5.5,-18.5 + parent: 2 + - uid: 21040 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,7.5 - parent: 89 - - uid: 6186 + pos: 5.5,-19.5 + parent: 2 + - uid: 21041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,8.5 - parent: 89 - - uid: 6187 + pos: -22.5,-21.5 + parent: 2 + - uid: 21042 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,4.5 + parent: 2 + - uid: 21043 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -3.5,4.5 + parent: 2 + - uid: 21044 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,9.5 - parent: 89 - - uid: 6188 + rot: -1.5707963267948966 rad + pos: -2.5,4.5 + parent: 2 + - uid: 21045 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,10.5 - parent: 89 - - uid: 6189 + rot: -1.5707963267948966 rad + pos: -1.5,4.5 + parent: 2 + - uid: 21046 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,10.5 - parent: 89 - - uid: 6190 + rot: -1.5707963267948966 rad + pos: -0.5,4.5 + parent: 2 + - uid: 21047 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,10.5 - parent: 89 - - uid: 6191 + rot: -1.5707963267948966 rad + pos: 0.5,4.5 + parent: 2 + - uid: 21048 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 89 - - uid: 6192 + rot: -1.5707963267948966 rad + pos: 2.5,4.5 + parent: 2 + - uid: 21049 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -17.5,11.5 - parent: 89 - - uid: 6193 + rot: -1.5707963267948966 rad + pos: 3.5,4.5 + parent: 2 + - uid: 21050 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,11.5 - parent: 89 - - uid: 6194 + rot: -1.5707963267948966 rad + pos: 4.5,4.5 + parent: 2 + - uid: 21051 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,11.5 - parent: 89 - - uid: 6295 + pos: -13.5,-14.5 + parent: 2 + - uid: 21052 components: - type: Transform - pos: 15.5,4.5 - parent: 89 - - uid: 6296 + rot: -1.5707963267948966 rad + pos: 1.5,4.5 + parent: 2 + - uid: 21053 components: - type: Transform - pos: 16.5,4.5 - parent: 89 - - uid: 6301 + rot: -1.5707963267948966 rad + pos: 4.5,5.5 + parent: 2 + - uid: 21054 components: - type: Transform - pos: 22.5,4.5 - parent: 89 - - uid: 6302 + rot: -1.5707963267948966 rad + pos: 4.5,6.5 + parent: 2 + - uid: 21055 components: - type: Transform - pos: 21.5,4.5 - parent: 89 - - uid: 6303 + rot: -1.5707963267948966 rad + pos: 4.5,7.5 + parent: 2 + - uid: 21056 components: - type: Transform - pos: 28.5,4.5 - parent: 89 - - uid: 6304 + rot: -1.5707963267948966 rad + pos: 4.5,8.5 + parent: 2 + - uid: 21057 components: - type: Transform - pos: 27.5,4.5 - parent: 89 - - uid: 6305 + rot: -1.5707963267948966 rad + pos: 4.5,9.5 + parent: 2 + - uid: 21058 components: - type: Transform - pos: 26.5,4.5 - parent: 89 - - uid: 6308 + rot: -1.5707963267948966 rad + pos: 4.5,10.5 + parent: 2 + - uid: 21059 components: - type: Transform - pos: 23.5,4.5 - parent: 89 - - uid: 6320 + pos: 5.5,-20.5 + parent: 2 + - uid: 21060 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,24.5 - parent: 89 - - uid: 6380 + pos: -3.5,-22.5 + parent: 2 + - uid: 21061 components: - type: Transform - pos: -27.5,-19.5 - parent: 89 - - uid: 6454 + pos: -3.5,-19.5 + parent: 2 + - uid: 21062 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,31.5 - parent: 89 - - uid: 6455 + pos: 0.5,-22.5 + parent: 2 + - uid: 21063 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,29.5 - parent: 89 - - uid: 6461 + pos: -4.5,10.5 + parent: 2 + - uid: 21064 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,31.5 - parent: 89 - - uid: 6464 + pos: -2.5,10.5 + parent: 2 + - uid: 21065 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,29.5 - parent: 89 - - uid: 6470 + pos: -3.5,10.5 + parent: 2 + - uid: 21066 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,38.5 - parent: 89 - - uid: 6475 + pos: -4.5,5.5 + parent: 2 + - uid: 21067 components: - type: Transform rot: -1.5707963267948966 rad - pos: -68.5,38.5 - parent: 89 - - uid: 6545 - components: - - type: Transform - pos: -82.5,40.5 - parent: 89 - - uid: 6549 + pos: -0.5,10.5 + parent: 2 + - uid: 21068 components: - type: Transform - pos: -82.5,39.5 - parent: 89 - - uid: 6556 + rot: -1.5707963267948966 rad + pos: 2.5,10.5 + parent: 2 + - uid: 21069 components: - type: Transform - pos: -68.5,39.5 - parent: 89 - - uid: 6562 + rot: -1.5707963267948966 rad + pos: 3.5,10.5 + parent: 2 + - uid: 21070 components: - type: Transform - pos: 19.5,27.5 - parent: 89 - - uid: 6622 + rot: -1.5707963267948966 rad + pos: 1.5,10.5 + parent: 2 + - uid: 21071 components: - type: Transform - pos: -43.5,-2.5 - parent: 89 - - uid: 6623 + pos: 1.5,-16.5 + parent: 2 + - uid: 21072 components: - type: Transform - pos: -44.5,-2.5 - parent: 89 - - uid: 6626 + pos: 1.5,-17.5 + parent: 2 + - uid: 21073 components: - type: Transform - pos: -42.5,1.5 - parent: 89 - - uid: 6627 + pos: 1.5,-18.5 + parent: 2 + - uid: 21074 components: - type: Transform - pos: -42.5,2.5 - parent: 89 - - uid: 6658 + pos: -108.5,-8.5 + parent: 2 + - uid: 21075 components: - type: Transform - pos: -37.5,-18.5 - parent: 89 - - uid: 6659 + pos: -97.5,-5.5 + parent: 2 + - uid: 21076 components: - type: Transform - pos: -36.5,-18.5 - parent: 89 - - uid: 6660 + pos: -97.5,-4.5 + parent: 2 + - uid: 21077 components: - type: Transform - pos: -35.5,-18.5 - parent: 89 - - uid: 6661 + pos: -97.5,-3.5 + parent: 2 + - uid: 21078 components: - type: Transform - pos: -34.5,-18.5 - parent: 89 - - uid: 6662 + rot: 1.5707963267948966 rad + pos: -90.5,-3.5 + parent: 2 + - uid: 21079 components: - type: Transform - pos: -33.5,-18.5 - parent: 89 - - uid: 6663 + pos: -118.5,0.5 + parent: 2 + - uid: 21080 components: - type: Transform - pos: -32.5,-18.5 - parent: 89 - - uid: 6664 + pos: -118.5,7.5 + parent: 2 + - uid: 21081 components: - type: Transform - pos: -31.5,-18.5 - parent: 89 - - uid: 6665 + pos: -118.5,10.5 + parent: 2 + - uid: 21082 components: - type: Transform - pos: -30.5,-18.5 - parent: 89 - - uid: 6666 + pos: -115.5,16.5 + parent: 2 + - uid: 21083 components: - type: Transform - pos: -29.5,-18.5 - parent: 89 - - uid: 6667 + pos: -116.5,16.5 + parent: 2 + - uid: 21084 components: - type: Transform - pos: -28.5,-18.5 - parent: 89 - - uid: 6668 + pos: -117.5,16.5 + parent: 2 + - uid: 21085 components: - type: Transform - pos: -27.5,-18.5 - parent: 89 - - uid: 6669 + pos: -118.5,16.5 + parent: 2 + - uid: 21086 components: - type: Transform - pos: -27.5,-20.5 - parent: 89 - - uid: 6670 + pos: -118.5,14.5 + parent: 2 + - uid: 21087 components: - type: Transform - pos: -27.5,-21.5 - parent: 89 - - uid: 6671 + pos: -110.5,-8.5 + parent: 2 + - uid: 21088 components: - type: Transform - pos: -27.5,-22.5 - parent: 89 - - uid: 6672 + pos: -110.5,-9.5 + parent: 2 + - uid: 21089 components: - type: Transform - pos: -27.5,-23.5 - parent: 89 - - uid: 6673 + pos: -110.5,-10.5 + parent: 2 + - uid: 21090 components: - type: Transform - pos: -27.5,-24.5 - parent: 89 - - uid: 6674 + pos: -110.5,-11.5 + parent: 2 + - uid: 21091 components: - type: Transform - pos: -27.5,-25.5 - parent: 89 - - uid: 6675 + pos: -110.5,-15.5 + parent: 2 + - uid: 21092 components: - type: Transform - pos: -27.5,-26.5 - parent: 89 - - uid: 6676 + pos: -121.5,19.5 + parent: 2 + - uid: 21093 components: - type: Transform - pos: -27.5,-27.5 - parent: 89 - - uid: 6677 + pos: -112.5,-12.5 + parent: 2 + - uid: 21094 components: - type: Transform - pos: -27.5,-28.5 - parent: 89 - - uid: 6678 + pos: -111.5,-12.5 + parent: 2 + - uid: 21095 components: - type: Transform - pos: -13.5,-29.5 - parent: 89 - - uid: 6679 + pos: -112.5,-11.5 + parent: 2 + - uid: 21096 components: - type: Transform - pos: -26.5,-28.5 - parent: 89 - - uid: 6680 + rot: 1.5707963267948966 rad + pos: -93.5,-10.5 + parent: 2 + - uid: 21097 components: - type: Transform - pos: -25.5,-28.5 - parent: 89 - - uid: 6681 + rot: 1.5707963267948966 rad + pos: -93.5,-11.5 + parent: 2 + - uid: 21098 components: - type: Transform - pos: -24.5,-28.5 - parent: 89 - - uid: 6682 + pos: -123.5,-4.5 + parent: 2 + - uid: 21099 components: - type: Transform - pos: -23.5,-28.5 - parent: 89 - - uid: 6683 + pos: -133.5,19.5 + parent: 2 + - uid: 21100 components: - type: Transform - pos: -22.5,-28.5 - parent: 89 - - uid: 6684 + rot: 1.5707963267948966 rad + pos: 56.5,-23.5 + parent: 2 + - uid: 21101 components: - type: Transform - pos: -21.5,-28.5 - parent: 89 - - uid: 6685 + rot: 1.5707963267948966 rad + pos: 55.5,-22.5 + parent: 2 + - uid: 21102 components: - type: Transform - pos: -20.5,-28.5 - parent: 89 - - uid: 6686 + rot: 1.5707963267948966 rad + pos: 55.5,-20.5 + parent: 2 + - uid: 21103 components: - type: Transform - pos: -19.5,-28.5 - parent: 89 - - uid: 6687 + rot: 1.5707963267948966 rad + pos: 55.5,-21.5 + parent: 2 + - uid: 21104 components: - type: Transform - pos: -18.5,-28.5 - parent: 89 - - uid: 6688 + rot: 1.5707963267948966 rad + pos: 55.5,-23.5 + parent: 2 + - uid: 21105 components: - type: Transform - pos: -17.5,-28.5 - parent: 89 - - uid: 6689 + pos: -123.5,19.5 + parent: 2 + - uid: 27055 components: - type: Transform - pos: -16.5,-28.5 - parent: 89 - - uid: 6690 + pos: -16.5,-18.5 + parent: 24450 + - uid: 27056 components: - type: Transform - pos: -15.5,-28.5 - parent: 89 - - uid: 6691 + pos: -14.5,-19.5 + parent: 24450 + - uid: 27057 components: - type: Transform - pos: -14.5,-28.5 - parent: 89 - - uid: 6692 + pos: -16.5,-20.5 + parent: 24450 + - uid: 27058 components: - type: Transform - pos: -13.5,-28.5 - parent: 89 - - uid: 6693 + pos: -14.5,-20.5 + parent: 24450 + - uid: 27059 components: - type: Transform - pos: -13.5,-30.5 - parent: 89 - - uid: 6694 + pos: -14.5,-18.5 + parent: 24450 + - uid: 27060 components: - type: Transform - pos: -13.5,-31.5 - parent: 89 - - uid: 6695 + pos: -16.5,-19.5 + parent: 24450 + - uid: 27061 components: - type: Transform - pos: -13.5,-32.5 - parent: 89 - - uid: 6696 + pos: -8.5,-22.5 + parent: 24450 + - uid: 27062 components: - type: Transform - pos: -13.5,-33.5 - parent: 89 - - uid: 6923 + pos: -12.5,-20.5 + parent: 24450 + - uid: 27063 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -135.5,-13.5 - parent: 89 - - uid: 6934 + pos: -8.5,-25.5 + parent: 24450 + - uid: 27064 components: - type: Transform - pos: -38.5,-10.5 - parent: 89 - - uid: 7026 + pos: -18.5,-25.5 + parent: 24450 + - uid: 27065 components: - type: Transform - pos: -105.5,-6.5 - parent: 89 - - uid: 7027 + pos: -10.5,-20.5 + parent: 24450 + - uid: 27066 components: - type: Transform - pos: -104.5,-6.5 - parent: 89 - - uid: 7028 + pos: -16.5,-27.5 + parent: 24450 + - uid: 27067 components: - type: Transform - pos: -106.5,-6.5 - parent: 89 - - uid: 7029 + rot: 1.5707963267948966 rad + pos: -8.5,-16.5 + parent: 24450 + - uid: 27068 components: - type: Transform - pos: -106.5,-7.5 - parent: 89 - - uid: 7030 + pos: -18.5,-22.5 + parent: 24450 + - uid: 27069 components: - type: Transform - pos: -106.5,-8.5 - parent: 89 - - uid: 7031 + pos: -10.5,-27.5 + parent: 24450 + - uid: 27070 components: - type: Transform - pos: -106.5,-9.5 - parent: 89 - - uid: 7032 + pos: -12.5,-19.5 + parent: 24450 + - uid: 27071 components: - type: Transform - pos: -106.5,-10.5 - parent: 89 - - uid: 7033 + pos: -10.5,-19.5 + parent: 24450 + - uid: 27072 components: - type: Transform - pos: -98.5,-6.5 - parent: 89 - - uid: 7082 + pos: -10.5,-18.5 + parent: 24450 + - uid: 27073 components: - type: Transform - pos: -119.5,-16.5 - parent: 89 - - uid: 7083 + pos: -12.5,-18.5 + parent: 24450 + - uid: 27074 components: - type: Transform rot: 3.141592653589793 rad - pos: -101.5,20.5 - parent: 89 - - uid: 7084 + pos: -13.5,-18.5 + parent: 24450 + - uid: 27075 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,19.5 - parent: 89 - - uid: 7085 + rot: 1.5707963267948966 rad + pos: -8.5,-17.5 + parent: 24450 + - uid: 27076 components: - type: Transform - rot: 3.141592653589793 rad - pos: -104.5,19.5 - parent: 89 - - uid: 7086 + rot: 1.5707963267948966 rad + pos: -8.5,-18.5 + parent: 24450 + - uid: 27077 components: - type: Transform rot: 3.141592653589793 rad - pos: -103.5,19.5 - parent: 89 - - uid: 7087 + pos: -4.5,-18.5 + parent: 24450 + - uid: 27078 components: - type: Transform - rot: 3.141592653589793 rad - pos: -102.5,19.5 - parent: 89 - - uid: 7156 + rot: -1.5707963267948966 rad + pos: -3.5,-18.5 + parent: 24450 + - uid: 27079 components: - type: Transform - rot: 3.141592653589793 rad - pos: -61.5,19.5 - parent: 89 - - uid: 7163 + rot: -1.5707963267948966 rad + pos: -2.5,-18.5 + parent: 24450 + - uid: 27080 components: - type: Transform - pos: 18.5,-18.5 - parent: 89 - - uid: 7215 + rot: -1.5707963267948966 rad + pos: -1.5,-18.5 + parent: 24450 + - uid: 27081 components: - type: Transform - pos: -89.5,11.5 - parent: 89 - - uid: 7216 + rot: -1.5707963267948966 rad + pos: -1.5,-17.5 + parent: 24450 + - uid: 27082 components: - type: Transform - pos: -89.5,12.5 - parent: 89 - - uid: 7217 + rot: -1.5707963267948966 rad + pos: -1.5,-16.5 + parent: 24450 + - uid: 27083 components: - type: Transform - pos: -89.5,13.5 - parent: 89 - - uid: 7218 + rot: 3.141592653589793 rad + pos: -1.5,-15.5 + parent: 24450 + - uid: 27084 components: - type: Transform - pos: -89.5,15.5 - parent: 89 - - uid: 7219 + rot: 1.5707963267948966 rad + pos: -5.5,-18.5 + parent: 24450 + - uid: 27085 components: - type: Transform - pos: -89.5,14.5 - parent: 89 - - uid: 7258 + rot: 1.5707963267948966 rad + pos: -7.5,-18.5 + parent: 24450 + - uid: 27086 components: - type: Transform - pos: -46.5,26.5 - parent: 89 - - uid: 7325 + rot: 1.5707963267948966 rad + pos: -6.5,-18.5 + parent: 24450 + - uid: 27087 components: - type: Transform - pos: -89.5,-5.5 - parent: 89 - - uid: 7341 + rot: 1.5707963267948966 rad + pos: -8.5,-15.5 + parent: 24450 + - uid: 27088 components: - type: Transform - rot: 3.141592653589793 rad - pos: -112.5,19.5 - parent: 89 - - uid: 7351 + rot: 1.5707963267948966 rad + pos: -5.5,-15.5 + parent: 24450 + - uid: 27089 components: - type: Transform rot: 3.141592653589793 rad - pos: -105.5,19.5 - parent: 89 - - uid: 7352 + pos: -4.5,-15.5 + parent: 24450 + - uid: 27090 components: - type: Transform - rot: 3.141592653589793 rad - pos: -106.5,19.5 - parent: 89 - - uid: 7353 + rot: 1.5707963267948966 rad + pos: -6.5,-15.5 + parent: 24450 + - uid: 27091 components: - type: Transform - rot: 3.141592653589793 rad - pos: -107.5,19.5 - parent: 89 - - uid: 7354 + pos: -16.5,-9.5 + parent: 24450 + - uid: 27092 components: - type: Transform rot: 3.141592653589793 rad - pos: -109.5,19.5 - parent: 89 - - uid: 7367 + pos: -3.5,-15.5 + parent: 24450 + - uid: 27093 components: - type: Transform - rot: 3.141592653589793 rad - pos: 51.5,-5.5 - parent: 89 - - uid: 7382 + pos: -21.5,-10.5 + parent: 24450 + - uid: 27094 components: - type: Transform - pos: -86.5,-5.5 - parent: 89 - - uid: 7438 + pos: -21.5,-11.5 + parent: 24450 + - uid: 27095 components: - type: Transform - pos: 45.5,-5.5 - parent: 89 - - uid: 7458 + pos: -21.5,-12.5 + parent: 24450 + - uid: 27096 components: - type: Transform - pos: -86.5,-3.5 - parent: 89 - - uid: 7460 + pos: -21.5,-13.5 + parent: 24450 + - uid: 27097 components: - type: Transform - pos: -88.5,-3.5 - parent: 89 - - uid: 7461 + pos: -20.5,-13.5 + parent: 24450 + - uid: 27098 components: - type: Transform - pos: -89.5,-3.5 - parent: 89 - - uid: 7462 + pos: -19.5,-13.5 + parent: 24450 + - uid: 27099 components: - type: Transform - pos: -89.5,-4.5 - parent: 89 - - uid: 7463 + pos: -18.5,-13.5 + parent: 24450 + - uid: 27100 components: - type: Transform - pos: -87.5,-3.5 - parent: 89 - - uid: 7468 + rot: 1.5707963267948966 rad + pos: -20.5,-9.5 + parent: 24450 + - uid: 27101 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-13.5 - parent: 89 - - uid: 7477 + rot: 1.5707963267948966 rad + pos: -21.5,-9.5 + parent: 24450 + - uid: 27102 components: - type: Transform - pos: -86.5,-4.5 - parent: 89 - - uid: 7489 + rot: 1.5707963267948966 rad + pos: -19.5,-9.5 + parent: 24450 + - uid: 27103 components: - type: Transform - pos: -93.5,30.5 - parent: 89 - - uid: 7493 + rot: 1.5707963267948966 rad + pos: -18.5,-9.5 + parent: 24450 + - uid: 27104 components: - type: Transform - pos: -95.5,30.5 - parent: 89 - - uid: 7494 + pos: -16.5,-13.5 + parent: 24450 + - uid: 27105 components: - type: Transform - pos: -91.5,30.5 - parent: 89 - - uid: 7495 + pos: -16.5,-10.5 + parent: 24450 + - uid: 27106 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,19.5 - parent: 89 - - uid: 7499 + pos: -16.5,-11.5 + parent: 24450 + - uid: 27107 components: - type: Transform - pos: -90.5,30.5 - parent: 89 - - uid: 7500 + pos: -15.5,-13.5 + parent: 24450 + - uid: 27108 components: - type: Transform - pos: -92.5,30.5 - parent: 89 - - uid: 7503 + pos: -14.5,-13.5 + parent: 24450 + - uid: 27109 components: - type: Transform - pos: -94.5,30.5 - parent: 89 - - uid: 7505 + pos: -13.5,-13.5 + parent: 24450 + - uid: 27110 components: - type: Transform - pos: -89.5,30.5 - parent: 89 - - uid: 7510 + pos: -13.5,-7.5 + parent: 24450 + - uid: 27111 components: - type: Transform - pos: -88.5,30.5 - parent: 89 - - uid: 7514 + pos: -16.5,-8.5 + parent: 24450 + - uid: 27112 components: - type: Transform - pos: -74.5,-10.5 - parent: 89 - - uid: 7515 + pos: -16.5,-7.5 + parent: 24450 + - uid: 27113 components: - type: Transform - pos: -75.5,-10.5 - parent: 89 - - uid: 7516 + pos: -15.5,-7.5 + parent: 24450 + - uid: 27114 components: - type: Transform - pos: -76.5,-10.5 - parent: 89 - - uid: 7517 + pos: -14.5,-7.5 + parent: 24450 + - uid: 27115 components: - type: Transform - pos: -77.5,-10.5 - parent: 89 - - uid: 7518 + pos: -12.5,-13.5 + parent: 24450 + - uid: 27116 components: - type: Transform - pos: -78.5,-10.5 - parent: 89 - - uid: 7519 + pos: -12.5,-11.5 + parent: 24450 + - uid: 27117 components: - type: Transform - pos: -79.5,-10.5 - parent: 89 - - uid: 7520 + pos: -12.5,-10.5 + parent: 24450 + - uid: 27118 components: - type: Transform - pos: -80.5,-10.5 - parent: 89 - - uid: 7521 + pos: -12.5,-9.5 + parent: 24450 + - uid: 27119 components: - type: Transform - pos: -81.5,-10.5 - parent: 89 - - uid: 7530 + pos: -12.5,-8.5 + parent: 24450 + - uid: 27120 components: - type: Transform - pos: -84.5,-6.5 - parent: 89 - - uid: 7531 + pos: -12.5,-7.5 + parent: 24450 +- proto: WallRiveted + entities: + - uid: 27121 components: - type: Transform - pos: -85.5,-6.5 - parent: 89 - - uid: 7532 + pos: -18.5,-20.5 + parent: 24450 + - uid: 27122 components: - type: Transform - pos: -86.5,-6.5 - parent: 89 - - uid: 7575 + pos: -8.5,-20.5 + parent: 24450 + - uid: 27123 components: - type: Transform - pos: -100.5,30.5 - parent: 89 - - uid: 7577 + pos: -8.5,-21.5 + parent: 24450 + - uid: 27124 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -96.5,30.5 - parent: 89 - - uid: 7578 + pos: -18.5,-26.5 + parent: 24450 + - uid: 27125 components: - type: Transform - pos: -101.5,28.5 - parent: 89 - - uid: 7591 + pos: -8.5,-27.5 + parent: 24450 + - uid: 27126 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,20.5 - parent: 89 - - uid: 7592 + pos: -18.5,-27.5 + parent: 24450 + - uid: 27127 components: - type: Transform - rot: 3.141592653589793 rad - pos: -90.5,19.5 - parent: 89 - - uid: 7593 + pos: -18.5,-21.5 + parent: 24450 + - uid: 27128 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,21.5 - parent: 89 - - uid: 7594 + pos: -17.5,-20.5 + parent: 24450 + - uid: 27129 components: - type: Transform - pos: -88.5,15.5 - parent: 89 - - uid: 7595 + pos: -9.5,-20.5 + parent: 24450 + - uid: 27130 components: - type: Transform - pos: -87.5,15.5 - parent: 89 - - uid: 7596 + pos: -8.5,-26.5 + parent: 24450 + - uid: 27131 components: - type: Transform rot: 3.141592653589793 rad - pos: -90.5,21.5 - parent: 89 - - uid: 7597 + pos: 11.5,0.5 + parent: 24450 + - uid: 27132 components: - type: Transform rot: -1.5707963267948966 rad - pos: -134.5,-13.5 - parent: 89 - - uid: 7599 + pos: 10.5,0.5 + parent: 24450 + - uid: 27133 components: - type: Transform - pos: -83.5,11.5 - parent: 89 - - uid: 7600 + rot: -1.5707963267948966 rad + pos: 11.5,1.5 + parent: 24450 +- proto: WallRockBasaltBananium + entities: + - uid: 27134 components: - type: Transform - pos: -83.5,12.5 - parent: 89 - - uid: 7601 + pos: -26.5,-4.5 + parent: 24450 + - uid: 27135 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -136.5,-1.5 - parent: 89 - - uid: 7616 + pos: -25.5,-5.5 + parent: 24450 + - uid: 27136 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,51.5 - parent: 89 - - uid: 7620 + pos: -37.5,1.5 + parent: 24450 + - uid: 27137 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,21.5 - parent: 89 - - uid: 7622 + pos: -37.5,2.5 + parent: 24450 + - uid: 27138 components: - type: Transform - pos: -53.5,-16.5 - parent: 89 - - uid: 7623 + pos: -36.5,1.5 + parent: 24450 +- proto: WallRockBasaltGold + entities: + - uid: 27139 components: - type: Transform - pos: -84.5,11.5 - parent: 89 - - uid: 7624 + pos: -31.5,-1.5 + parent: 24450 + - uid: 27140 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,23.5 - parent: 89 - - uid: 7625 + pos: -29.5,-0.5 + parent: 24450 + - uid: 27141 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,24.5 - parent: 89 - - uid: 7626 + pos: -27.5,-8.5 + parent: 24450 + - uid: 27142 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,25.5 - parent: 89 - - uid: 7627 + pos: -26.5,-11.5 + parent: 24450 + - uid: 27143 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,26.5 - parent: 89 - - uid: 7637 + pos: -23.5,-14.5 + parent: 24450 + - uid: 27144 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,36.5 - parent: 89 - - uid: 7638 + pos: 5.5,-4.5 + parent: 24450 +- proto: WallRockBasaltPlasma + entities: + - uid: 27145 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,32.5 - parent: 89 - - uid: 7640 + pos: -31.5,-5.5 + parent: 24450 + - uid: 27146 components: - type: Transform - pos: -102.5,28.5 - parent: 89 - - uid: 7641 + pos: -30.5,-6.5 + parent: 24450 + - uid: 27147 components: - type: Transform - pos: -103.5,28.5 - parent: 89 - - uid: 7642 + pos: -29.5,-5.5 + parent: 24450 + - uid: 27148 components: - type: Transform - pos: -104.5,28.5 - parent: 89 - - uid: 7643 + pos: -25.5,-2.5 + parent: 24450 + - uid: 27149 components: - type: Transform - pos: -105.5,28.5 - parent: 89 - - uid: 7644 + pos: -24.5,-3.5 + parent: 24450 + - uid: 27150 components: - type: Transform - pos: -106.5,28.5 - parent: 89 - - uid: 7645 + pos: -24.5,-3.5 + parent: 24450 + - uid: 27151 components: - type: Transform - pos: -107.5,28.5 - parent: 89 - - uid: 7646 + pos: -24.5,-2.5 + parent: 24450 + - uid: 27152 components: - type: Transform - pos: -108.5,28.5 - parent: 89 - - uid: 7647 + pos: -24.5,-13.5 + parent: 24450 +- proto: WallRockBasaltQuartz + entities: + - uid: 27153 components: - type: Transform - pos: -109.5,28.5 - parent: 89 - - uid: 7648 + pos: 6.5,-6.5 + parent: 24450 + - uid: 27154 components: - type: Transform - pos: -110.5,28.5 - parent: 89 - - uid: 7649 + pos: 6.5,-0.5 + parent: 24450 + - uid: 27155 components: - type: Transform - pos: -111.5,28.5 - parent: 89 - - uid: 7650 + pos: 5.5,-0.5 + parent: 24450 + - uid: 27156 components: - type: Transform - pos: -112.5,28.5 - parent: 89 - - uid: 7651 + pos: 5.5,-1.5 + parent: 24450 + - uid: 27157 components: - type: Transform - pos: -112.5,27.5 - parent: 89 - - uid: 7652 + pos: 12.5,-0.5 + parent: 24450 + - uid: 27158 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,22.5 - parent: 89 - - uid: 7659 + pos: 12.5,1.5 + parent: 24450 + - uid: 27159 components: - type: Transform - pos: -99.5,30.5 - parent: 89 - - uid: 7660 + pos: 13.5,7.5 + parent: 24450 + - uid: 27160 components: - type: Transform - pos: -97.5,30.5 - parent: 89 - - uid: 7669 + pos: 13.5,10.5 + parent: 24450 +- proto: WallRockBasaltSilver + entities: + - uid: 27161 components: - type: Transform - pos: -98.5,30.5 - parent: 89 - - uid: 7709 + pos: -15.5,-14.5 + parent: 24450 + - uid: 27162 components: - type: Transform - pos: -106.5,18.5 - parent: 89 - - uid: 7717 + pos: -15.5,-15.5 + parent: 24450 + - uid: 27163 components: - type: Transform - pos: -113.5,19.5 - parent: 89 - - uid: 7718 + pos: -14.5,-15.5 + parent: 24450 + - uid: 27164 components: - type: Transform - pos: -113.5,20.5 - parent: 89 - - uid: 7719 + pos: -14.5,-16.5 + parent: 24450 + - uid: 27165 components: - type: Transform - pos: -113.5,21.5 - parent: 89 - - uid: 7720 + pos: 1.5,-7.5 + parent: 24450 + - uid: 27166 components: - type: Transform - pos: -113.5,22.5 - parent: 89 - - uid: 7721 + pos: 3.5,-6.5 + parent: 24450 + - uid: 27167 components: - type: Transform - pos: -113.5,23.5 - parent: 89 - - uid: 7722 + pos: 4.5,-8.5 + parent: 24450 +- proto: WallRockBasaltTin + entities: + - uid: 27168 components: - type: Transform - pos: -113.5,24.5 - parent: 89 - - uid: 7723 + pos: -3.5,-3.5 + parent: 24450 + - uid: 27169 components: - type: Transform - pos: -113.5,25.5 - parent: 89 - - uid: 7724 + pos: -4.5,-4.5 + parent: 24450 + - uid: 27170 components: - type: Transform - pos: -113.5,26.5 - parent: 89 - - uid: 7725 + pos: -3.5,-4.5 + parent: 24450 + - uid: 27171 components: - type: Transform - pos: -113.5,27.5 - parent: 89 - - uid: 7726 + pos: -2.5,-3.5 + parent: 24450 + - uid: 27172 components: - type: Transform - rot: 3.141592653589793 rad - pos: -111.5,19.5 - parent: 89 - - uid: 7727 + pos: -14.5,-14.5 + parent: 24450 + - uid: 27173 components: - type: Transform - rot: 3.141592653589793 rad - pos: -110.5,19.5 - parent: 89 - - uid: 7730 + pos: -14.5,-16.5 + parent: 24450 + - uid: 27174 components: - type: Transform - rot: 3.141592653589793 rad - pos: -101.5,27.5 - parent: 89 - - uid: 7734 + pos: -15.5,-16.5 + parent: 24450 + - uid: 27175 components: - type: Transform - pos: 4.5,29.5 - parent: 89 - - uid: 7765 + pos: -20.5,-14.5 + parent: 24450 + - uid: 27176 components: - type: Transform - pos: 4.5,39.5 - parent: 89 - - uid: 7766 + pos: -22.5,-14.5 + parent: 24450 + - uid: 27177 components: - type: Transform - pos: -9.5,42.5 - parent: 89 - - uid: 7767 + pos: -21.5,-14.5 + parent: 24450 +- proto: WallRockBasaltUranium + entities: + - uid: 27178 components: - type: Transform - pos: -9.5,46.5 - parent: 89 - - uid: 7768 + pos: -22.5,-7.5 + parent: 24450 + - uid: 27179 components: - type: Transform - pos: -9.5,45.5 - parent: 89 - - uid: 7769 + pos: -3.5,-9.5 + parent: 24450 + - uid: 27180 components: - type: Transform - pos: -9.5,44.5 - parent: 89 - - uid: 7770 + pos: -2.5,-5.5 + parent: 24450 + - uid: 27181 components: - type: Transform - pos: -9.5,43.5 - parent: 89 - - uid: 7772 + pos: -26.5,-6.5 + parent: 24450 + - uid: 27182 components: - type: Transform - pos: 1.5,47.5 - parent: 89 - - uid: 7773 + pos: -23.5,-4.5 + parent: 24450 + - uid: 27183 components: - type: Transform - pos: 4.5,38.5 - parent: 89 - - uid: 7774 + pos: -28.5,-3.5 + parent: 24450 +- proto: WallShuttle + entities: + - uid: 21106 components: - type: Transform - pos: -8.5,47.5 - parent: 89 - - uid: 7796 + rot: 1.5707963267948966 rad + pos: -112.5,28.5 + parent: 2 + - uid: 21107 components: - type: Transform - pos: -83.5,-12.5 - parent: 89 - - uid: 7798 + rot: 1.5707963267948966 rad + pos: -113.5,27.5 + parent: 2 + - uid: 21108 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,28.5 - parent: 89 - - uid: 7799 + pos: -131.5,-0.5 + parent: 2 + - uid: 21109 components: - type: Transform rot: -1.5707963267948966 rad - pos: -82.5,27.5 - parent: 89 - - uid: 7800 + pos: -131.5,0.5 + parent: 2 + - uid: 21110 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,22.5 - parent: 89 - - uid: 7801 + pos: 56.5,-17.5 + parent: 2 + - uid: 21111 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,26.5 - parent: 89 - - uid: 7802 + pos: -130.5,-3.5 + parent: 2 + - uid: 21112 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,25.5 - parent: 89 - - uid: 7803 + rot: 1.5707963267948966 rad + pos: -68.5,-17.5 + parent: 2 + - uid: 21113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,24.5 - parent: 89 - - uid: 7804 + rot: 1.5707963267948966 rad + pos: -68.5,-15.5 + parent: 2 + - uid: 21114 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,23.5 - parent: 89 - - uid: 7805 + rot: 1.5707963267948966 rad + pos: -68.5,-14.5 + parent: 2 + - uid: 21115 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,22.5 - parent: 89 - - uid: 7806 + rot: 1.5707963267948966 rad + pos: -69.5,-14.5 + parent: 2 + - uid: 21116 components: - type: Transform - pos: -79.5,22.5 - parent: 89 - - uid: 7807 + rot: 1.5707963267948966 rad + pos: -71.5,-14.5 + parent: 2 + - uid: 21117 components: - type: Transform - pos: -78.5,22.5 - parent: 89 - - uid: 7808 + rot: 1.5707963267948966 rad + pos: -72.5,-14.5 + parent: 2 + - uid: 21118 components: - type: Transform - pos: -77.5,22.5 - parent: 89 - - uid: 7809 + rot: 1.5707963267948966 rad + pos: -72.5,-11.5 + parent: 2 + - uid: 21119 components: - type: Transform - pos: -76.5,22.5 - parent: 89 - - uid: 7810 + rot: 1.5707963267948966 rad + pos: -72.5,-12.5 + parent: 2 + - uid: 21120 components: - type: Transform - pos: -75.5,22.5 - parent: 89 - - uid: 7811 + rot: 1.5707963267948966 rad + pos: -72.5,-13.5 + parent: 2 + - uid: 21121 components: - type: Transform - pos: -74.5,22.5 - parent: 89 - - uid: 7812 + rot: 1.5707963267948966 rad + pos: -73.5,-11.5 + parent: 2 + - uid: 21122 components: - type: Transform - pos: -73.5,22.5 - parent: 89 - - uid: 7813 + pos: -127.5,-10.5 + parent: 2 + - uid: 21123 components: - type: Transform - pos: -72.5,22.5 - parent: 89 - - uid: 7816 + pos: -127.5,-9.5 + parent: 2 + - uid: 21124 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -81.5,22.5 - parent: 89 - - uid: 7842 + pos: -130.5,-1.5 + parent: 2 + - uid: 21125 components: - type: Transform - pos: -71.5,22.5 - parent: 89 - - uid: 7843 + pos: -130.5,-2.5 + parent: 2 + - uid: 21126 components: - type: Transform - pos: -70.5,22.5 - parent: 89 - - uid: 7844 + pos: -130.5,-4.5 + parent: 2 + - uid: 21127 components: - type: Transform - pos: -69.5,22.5 - parent: 89 - - uid: 7845 + pos: -129.5,-4.5 + parent: 2 + - uid: 21128 components: - type: Transform - pos: -68.5,22.5 - parent: 89 - - uid: 7846 + pos: -128.5,-4.5 + parent: 2 + - uid: 21129 components: - type: Transform - pos: -68.5,23.5 - parent: 89 - - uid: 7847 + pos: -127.5,-4.5 + parent: 2 + - uid: 21130 components: - type: Transform - pos: -68.5,24.5 - parent: 89 - - uid: 7848 + pos: -127.5,-8.5 + parent: 2 + - uid: 21131 components: - type: Transform - pos: -68.5,25.5 - parent: 89 - - uid: 7849 + pos: -127.5,-5.5 + parent: 2 + - uid: 21132 components: - type: Transform - pos: -68.5,26.5 - parent: 89 - - uid: 7850 + rot: 3.141592653589793 rad + pos: -151.5,-8.5 + parent: 2 + - uid: 21133 components: - type: Transform - pos: -68.5,27.5 - parent: 89 - - uid: 7851 + rot: 3.141592653589793 rad + pos: -151.5,-14.5 + parent: 2 + - uid: 21134 components: - type: Transform - pos: 3.5,47.5 - parent: 89 - - uid: 7852 + rot: 1.5707963267948966 rad + pos: -105.5,-20.5 + parent: 2 + - uid: 21135 components: - type: Transform - pos: 2.5,47.5 - parent: 89 - - uid: 7853 + rot: 1.5707963267948966 rad + pos: -104.5,-20.5 + parent: 2 + - uid: 21136 components: - type: Transform - pos: -1.5,47.5 - parent: 89 - - uid: 7856 + rot: 1.5707963267948966 rad + pos: -110.5,-21.5 + parent: 2 + - uid: 21137 components: - type: Transform - pos: -64.5,19.5 - parent: 89 - - uid: 7857 + rot: 3.141592653589793 rad + pos: -143.5,-15.5 + parent: 2 + - uid: 21138 components: - type: Transform - pos: -63.5,19.5 - parent: 89 - - uid: 7859 + rot: 3.141592653589793 rad + pos: -142.5,0.5 + parent: 2 + - uid: 21139 components: - type: Transform - pos: -64.5,22.5 - parent: 89 - - uid: 7860 + rot: 3.141592653589793 rad + pos: -143.5,0.5 + parent: 2 + - uid: 21140 components: - type: Transform - pos: -64.5,23.5 - parent: 89 - - uid: 7872 + rot: 3.141592653589793 rad + pos: -144.5,-15.5 + parent: 2 + - uid: 21141 components: - type: Transform - pos: -9.5,41.5 - parent: 89 - - uid: 7873 + rot: 3.141592653589793 rad + pos: -144.5,0.5 + parent: 2 + - uid: 21142 components: - type: Transform - pos: -63.5,23.5 - parent: 89 - - uid: 7874 + rot: 3.141592653589793 rad + pos: -141.5,0.5 + parent: 2 + - uid: 21143 components: - type: Transform - pos: -62.5,23.5 - parent: 89 - - uid: 7875 + rot: 3.141592653589793 rad + pos: -146.5,0.5 + parent: 2 + - uid: 21144 components: - type: Transform - pos: -9.5,40.5 - parent: 89 - - uid: 7876 + rot: 3.141592653589793 rad + pos: -133.5,-15.5 + parent: 2 + - uid: 21145 components: - type: Transform - pos: -9.5,39.5 - parent: 89 - - uid: 7878 + rot: 3.141592653589793 rad + pos: -134.5,-15.5 + parent: 2 + - uid: 21146 components: - type: Transform - pos: -9.5,38.5 - parent: 89 - - uid: 7879 + rot: 3.141592653589793 rad + pos: -138.5,0.5 + parent: 2 + - uid: 21147 components: - type: Transform - pos: -58.5,23.5 - parent: 89 - - uid: 7882 + rot: 3.141592653589793 rad + pos: -139.5,0.5 + parent: 2 + - uid: 21148 components: - type: Transform - pos: -58.5,19.5 - parent: 89 - - uid: 7883 + rot: 3.141592653589793 rad + pos: -151.5,-2.5 + parent: 2 + - uid: 21149 components: - type: Transform - pos: -59.5,19.5 - parent: 89 - - uid: 7884 + rot: 3.141592653589793 rad + pos: -151.5,-13.5 + parent: 2 + - uid: 21150 components: - type: Transform - pos: -60.5,19.5 - parent: 89 - - uid: 7930 + rot: 3.141592653589793 rad + pos: -151.5,-5.5 + parent: 2 + - uid: 21151 components: - type: Transform - pos: -61.5,6.5 - parent: 89 - - uid: 7931 + rot: 3.141592653589793 rad + pos: -151.5,-7.5 + parent: 2 + - uid: 21152 components: - type: Transform - pos: -60.5,6.5 - parent: 89 - - uid: 7932 + rot: 3.141592653589793 rad + pos: -151.5,-9.5 + parent: 2 + - uid: 21153 components: - type: Transform - pos: -59.5,6.5 - parent: 89 - - uid: 7933 + rot: 3.141592653589793 rad + pos: -142.5,-15.5 + parent: 2 + - uid: 21154 components: - type: Transform - pos: -58.5,6.5 - parent: 89 - - uid: 7934 + rot: -1.5707963267948966 rad + pos: -129.5,-12.5 + parent: 2 + - uid: 21155 components: - type: Transform - pos: -61.5,11.5 - parent: 89 - - uid: 7936 + rot: 3.141592653589793 rad + pos: -137.5,0.5 + parent: 2 + - uid: 21156 components: - type: Transform - pos: -58.5,11.5 - parent: 89 - - uid: 7991 + rot: 3.141592653589793 rad + pos: -145.5,0.5 + parent: 2 + - uid: 21157 components: - type: Transform - pos: 4.5,43.5 - parent: 89 - - uid: 7992 + rot: 3.141592653589793 rad + pos: -140.5,-15.5 + parent: 2 + - uid: 21158 components: - type: Transform - pos: 4.5,42.5 - parent: 89 - - uid: 7993 + rot: 3.141592653589793 rad + pos: -151.5,-3.5 + parent: 2 + - uid: 21159 components: - type: Transform - pos: 4.5,41.5 - parent: 89 - - uid: 7994 + rot: 3.141592653589793 rad + pos: -150.5,-15.5 + parent: 2 + - uid: 21160 components: - type: Transform - pos: 4.5,40.5 - parent: 89 - - uid: 7995 + rot: 3.141592653589793 rad + pos: -138.5,-15.5 + parent: 2 + - uid: 21161 components: - type: Transform - pos: 4.5,46.5 - parent: 89 - - uid: 7996 + rot: 1.5707963267948966 rad + pos: -119.5,-20.5 + parent: 2 + - uid: 21162 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -135.5,-12.5 + parent: 2 + - uid: 21163 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -147.5,0.5 + parent: 2 + - uid: 21164 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -145.5,-15.5 + parent: 2 + - uid: 21165 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -150.5,0.5 + parent: 2 + - uid: 21166 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -149.5,0.5 + parent: 2 + - uid: 21167 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-4.5 + parent: 2 + - uid: 21168 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-11.5 + parent: 2 + - uid: 21169 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-12.5 + parent: 2 + - uid: 21170 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -151.5,-6.5 + parent: 2 + - uid: 21171 components: - type: Transform - pos: 4.5,45.5 - parent: 89 - - uid: 7997 + rot: 3.141592653589793 rad + pos: -104.5,22.5 + parent: 2 + - uid: 21172 components: - type: Transform - pos: 4.5,44.5 - parent: 89 - - uid: 8013 + rot: 1.5707963267948966 rad + pos: -107.5,-20.5 + parent: 2 + - uid: 21173 components: - type: Transform - pos: 4.5,37.5 - parent: 89 - - uid: 8016 + rot: 1.5707963267948966 rad + pos: -107.5,-21.5 + parent: 2 + - uid: 21174 components: - type: Transform - pos: 4.5,34.5 - parent: 89 - - uid: 8017 + rot: 3.141592653589793 rad + pos: -141.5,-15.5 + parent: 2 + - uid: 21175 components: - type: Transform - pos: 4.5,33.5 - parent: 89 - - uid: 8018 + rot: 3.141592653589793 rad + pos: -132.5,-15.5 + parent: 2 + - uid: 21176 components: - type: Transform - pos: 4.5,32.5 - parent: 89 - - uid: 8019 + rot: 3.141592653589793 rad + pos: -103.5,22.5 + parent: 2 + - uid: 21177 components: - type: Transform - pos: 4.5,31.5 - parent: 89 - - uid: 8020 + rot: 3.141592653589793 rad + pos: -105.5,22.5 + parent: 2 + - uid: 21178 components: - type: Transform rot: 3.141592653589793 rad - pos: -88.5,11.5 - parent: 89 - - uid: 8043 + pos: -106.5,22.5 + parent: 2 + - uid: 21179 components: - type: Transform - pos: -9.5,37.5 - parent: 89 - - uid: 8044 + rot: 3.141592653589793 rad + pos: -151.5,-0.5 + parent: 2 + - uid: 21180 components: - type: Transform - pos: -60.5,11.5 - parent: 89 - - uid: 8045 + rot: 3.141592653589793 rad + pos: -148.5,0.5 + parent: 2 + - uid: 21181 components: - type: Transform - pos: -9.5,35.5 - parent: 89 - - uid: 8046 + rot: -1.5707963267948966 rad + pos: -115.5,22.5 + parent: 2 + - uid: 21182 components: - type: Transform - pos: -9.5,34.5 - parent: 89 - - uid: 8047 + pos: -118.5,23.5 + parent: 2 + - uid: 21183 components: - type: Transform - pos: -9.5,33.5 - parent: 89 - - uid: 8067 + rot: 3.141592653589793 rad + pos: -137.5,-15.5 + parent: 2 + - uid: 21184 components: - type: Transform - pos: -9.5,32.5 - parent: 89 - - uid: 8068 + rot: 3.141592653589793 rad + pos: -132.5,-12.5 + parent: 2 + - uid: 21185 components: - type: Transform - pos: -9.5,31.5 - parent: 89 - - uid: 8086 + rot: 3.141592653589793 rad + pos: -136.5,0.5 + parent: 2 + - uid: 21186 components: - type: Transform - pos: -9.5,29.5 - parent: 89 - - uid: 8097 + rot: 3.141592653589793 rad + pos: -140.5,0.5 + parent: 2 + - uid: 21187 components: - type: Transform - pos: 41.5,-22.5 - parent: 89 - - uid: 8099 + rot: 3.141592653589793 rad + pos: -110.5,22.5 + parent: 2 + - uid: 21188 components: - type: Transform - pos: -7.5,27.5 - parent: 89 - - uid: 8108 + rot: 3.141592653589793 rad + pos: -111.5,22.5 + parent: 2 + - uid: 21189 components: - type: Transform - pos: -7.5,28.5 - parent: 89 - - uid: 8109 + rot: 3.141592653589793 rad + pos: -139.5,-15.5 + parent: 2 + - uid: 21190 components: - type: Transform - pos: -6.5,28.5 - parent: 89 - - uid: 8110 + rot: 1.5707963267948966 rad + pos: -110.5,-20.5 + parent: 2 + - uid: 21191 components: - type: Transform - pos: -5.5,28.5 - parent: 89 - - uid: 8140 + rot: 3.141592653589793 rad + pos: -136.5,-15.5 + parent: 2 + - uid: 21192 components: - type: Transform - pos: -9.5,24.5 - parent: 89 - - uid: 8141 + rot: 3.141592653589793 rad + pos: -135.5,-15.5 + parent: 2 + - uid: 21193 components: - type: Transform - pos: -9.5,25.5 - parent: 89 - - uid: 8142 + rot: 3.141592653589793 rad + pos: -149.5,-15.5 + parent: 2 + - uid: 21194 components: - type: Transform - pos: -9.5,26.5 - parent: 89 - - uid: 8143 + rot: 3.141592653589793 rad + pos: -147.5,-15.5 + parent: 2 + - uid: 21195 components: - type: Transform - pos: -9.5,27.5 - parent: 89 - - uid: 8144 + rot: 3.141592653589793 rad + pos: -132.5,-14.5 + parent: 2 + - uid: 21196 components: - type: Transform - pos: -9.5,28.5 - parent: 89 - - uid: 8145 + rot: 3.141592653589793 rad + pos: -151.5,-1.5 + parent: 2 + - uid: 21197 components: - type: Transform - pos: 4.5,28.5 - parent: 89 - - uid: 8151 + rot: 3.141592653589793 rad + pos: -151.5,-10.5 + parent: 2 + - uid: 21198 components: - type: Transform - pos: -4.5,27.5 - parent: 89 - - uid: 8152 + rot: 3.141592653589793 rad + pos: -146.5,-15.5 + parent: 2 + - uid: 21199 components: - type: Transform - pos: -4.5,28.5 - parent: 89 - - uid: 8173 + rot: 3.141592653589793 rad + pos: -148.5,-15.5 + parent: 2 + - uid: 21200 components: - type: Transform - pos: -8.5,27.5 - parent: 89 - - uid: 8180 + rot: 3.141592653589793 rad + pos: -101.5,20.5 + parent: 2 + - uid: 21201 components: - type: Transform - pos: -7.5,24.5 - parent: 89 - - uid: 8181 + rot: 3.141592653589793 rad + pos: -101.5,19.5 + parent: 2 + - uid: 21202 components: - type: Transform - pos: -8.5,24.5 - parent: 89 - - uid: 8182 + rot: 3.141592653589793 rad + pos: -104.5,19.5 + parent: 2 + - uid: 21203 components: - type: Transform - pos: -4.5,24.5 - parent: 89 - - uid: 8183 + rot: 3.141592653589793 rad + pos: -103.5,19.5 + parent: 2 + - uid: 21204 components: - type: Transform - pos: -4.5,25.5 - parent: 89 - - uid: 8184 + rot: 3.141592653589793 rad + pos: -102.5,19.5 + parent: 2 + - uid: 21205 components: - type: Transform - pos: -6.5,24.5 - parent: 89 - - uid: 8185 + rot: 3.141592653589793 rad + pos: -112.5,19.5 + parent: 2 + - uid: 21206 components: - type: Transform - pos: -5.5,24.5 - parent: 89 - - uid: 8299 + rot: 3.141592653589793 rad + pos: -105.5,19.5 + parent: 2 + - uid: 21207 components: - type: Transform - pos: -34.5,12.5 - parent: 89 - - uid: 8330 + rot: 3.141592653589793 rad + pos: -106.5,19.5 + parent: 2 + - uid: 21208 components: - type: Transform rot: 3.141592653589793 rad - pos: -64.5,20.5 - parent: 89 - - uid: 8396 + pos: -107.5,19.5 + parent: 2 + - uid: 21209 components: - type: Transform - pos: -134.5,14.5 - parent: 89 - - uid: 8400 + rot: 3.141592653589793 rad + pos: -109.5,19.5 + parent: 2 + - uid: 21210 components: - type: Transform - pos: -132.5,9.5 - parent: 89 - - uid: 8401 + rot: 3.141592653589793 rad + pos: -101.5,21.5 + parent: 2 + - uid: 21211 components: - type: Transform - pos: -133.5,9.5 - parent: 89 - - uid: 8402 + rot: 3.141592653589793 rad + pos: -101.5,23.5 + parent: 2 + - uid: 21212 components: - type: Transform - pos: -131.5,9.5 - parent: 89 - - uid: 8403 + rot: 3.141592653589793 rad + pos: -101.5,24.5 + parent: 2 + - uid: 21213 components: - type: Transform - pos: -134.5,13.5 - parent: 89 - - uid: 8404 + rot: 3.141592653589793 rad + pos: -101.5,25.5 + parent: 2 + - uid: 21214 components: - type: Transform - pos: -134.5,12.5 - parent: 89 - - uid: 8406 + rot: 3.141592653589793 rad + pos: -101.5,26.5 + parent: 2 + - uid: 21215 components: - type: Transform - pos: -134.5,10.5 - parent: 89 - - uid: 8407 + rot: 3.141592653589793 rad + pos: -101.5,22.5 + parent: 2 + - uid: 21216 components: - type: Transform - pos: -134.5,11.5 - parent: 89 - - uid: 8411 + rot: 3.141592653589793 rad + pos: -111.5,19.5 + parent: 2 + - uid: 21217 components: - type: Transform - pos: -134.5,15.5 - parent: 89 - - uid: 8412 + rot: 3.141592653589793 rad + pos: -110.5,19.5 + parent: 2 + - uid: 21218 components: - type: Transform - pos: -134.5,16.5 - parent: 89 - - uid: 8413 + rot: 3.141592653589793 rad + pos: -101.5,27.5 + parent: 2 + - uid: 21219 components: - type: Transform - pos: -134.5,17.5 - parent: 89 - - uid: 8414 + rot: 1.5707963267948966 rad + pos: 9.5,-19.5 + parent: 2 + - uid: 21220 components: - type: Transform - pos: -134.5,18.5 - parent: 89 - - uid: 8415 + rot: 1.5707963267948966 rad + pos: 8.5,-19.5 + parent: 2 + - uid: 21221 components: - type: Transform - pos: -134.5,19.5 - parent: 89 - - uid: 8416 + rot: 1.5707963267948966 rad + pos: 43.5,17.5 + parent: 2 + - uid: 21222 components: - type: Transform - pos: -133.5,19.5 - parent: 89 - - uid: 8417 + rot: 1.5707963267948966 rad + pos: 43.5,16.5 + parent: 2 + - uid: 21223 components: - type: Transform - pos: -132.5,19.5 - parent: 89 - - uid: 8418 + rot: 1.5707963267948966 rad + pos: 44.5,16.5 + parent: 2 + - uid: 21224 components: - type: Transform - pos: -131.5,19.5 - parent: 89 - - uid: 8419 + rot: -1.5707963267948966 rad + pos: 47.5,-4.5 + parent: 2 + - uid: 21225 components: - type: Transform - pos: -130.5,19.5 - parent: 89 - - uid: 8420 + rot: -1.5707963267948966 rad + pos: 49.5,-4.5 + parent: 2 + - uid: 21226 components: - type: Transform - pos: -129.5,19.5 - parent: 89 - - uid: 8421 + rot: -1.5707963267948966 rad + pos: -27.5,35.5 + parent: 2 + - uid: 21227 components: - type: Transform - pos: -128.5,19.5 - parent: 89 - - uid: 8422 + rot: -1.5707963267948966 rad + pos: -27.5,34.5 + parent: 2 + - uid: 21228 components: - type: Transform - pos: -128.5,18.5 - parent: 89 - - uid: 8423 + rot: -1.5707963267948966 rad + pos: -28.5,34.5 + parent: 2 + - uid: 21229 components: - type: Transform - pos: -129.5,18.5 - parent: 89 - - uid: 8424 + rot: 3.141592653589793 rad + pos: 45.5,3.5 + parent: 2 + - uid: 21230 components: - type: Transform - pos: -130.5,18.5 - parent: 89 - - uid: 8425 + rot: 1.5707963267948966 rad + pos: -65.5,49.5 + parent: 2 + - uid: 21231 components: - type: Transform - pos: -131.5,18.5 - parent: 89 - - uid: 8426 + rot: 1.5707963267948966 rad + pos: -57.5,49.5 + parent: 2 + - uid: 21232 components: - type: Transform - pos: -132.5,18.5 - parent: 89 - - uid: 8427 + pos: -41.5,27.5 + parent: 2 + - uid: 21233 components: - type: Transform - pos: -133.5,18.5 - parent: 89 - - uid: 8428 + rot: -1.5707963267948966 rad + pos: 37.5,27.5 + parent: 2 + - uid: 21234 components: - type: Transform - pos: -133.5,17.5 - parent: 89 - - uid: 8429 + rot: 3.141592653589793 rad + pos: -3.5,-43.5 + parent: 2 + - uid: 21235 components: - type: Transform - pos: -133.5,16.5 - parent: 89 - - uid: 8430 + rot: 3.141592653589793 rad + pos: -3.5,-44.5 + parent: 2 + - uid: 21236 components: - type: Transform - pos: -133.5,15.5 - parent: 89 - - uid: 8431 + rot: -1.5707963267948966 rad + pos: 11.5,38.5 + parent: 2 + - uid: 21237 components: - type: Transform - pos: -133.5,14.5 - parent: 89 - - uid: 8432 + rot: -1.5707963267948966 rad + pos: -8.5,-42.5 + parent: 2 + - uid: 21238 components: - type: Transform - pos: -133.5,13.5 - parent: 89 - - uid: 8433 + pos: -2.5,-44.5 + parent: 2 + - uid: 21239 components: - type: Transform - pos: -133.5,12.5 - parent: 89 - - uid: 8434 + pos: -2.5,-43.5 + parent: 2 + - uid: 21240 components: - type: Transform - pos: -133.5,11.5 - parent: 89 - - uid: 8435 + pos: -1.5,-42.5 + parent: 2 + - uid: 21241 components: - type: Transform - pos: -133.5,10.5 - parent: 89 - - uid: 8436 + rot: -1.5707963267948966 rad + pos: -2.5,-46.5 + parent: 2 + - uid: 21242 components: - type: Transform - pos: -132.5,10.5 - parent: 89 - - uid: 8437 + rot: -1.5707963267948966 rad + pos: 51.5,15.5 + parent: 2 + - uid: 21243 components: - type: Transform - pos: -131.5,10.5 - parent: 89 - - uid: 8438 + rot: 3.141592653589793 rad + pos: 51.5,14.5 + parent: 2 + - uid: 21244 components: - type: Transform - pos: -130.5,10.5 - parent: 89 - - uid: 8439 + rot: -1.5707963267948966 rad + pos: 49.5,15.5 + parent: 2 + - uid: 21245 components: - type: Transform - pos: -129.5,10.5 - parent: 89 - - uid: 8440 + rot: 3.141592653589793 rad + pos: 45.5,13.5 + parent: 2 + - uid: 21246 components: - type: Transform - pos: -128.5,10.5 - parent: 89 - - uid: 8441 + rot: 3.141592653589793 rad + pos: 45.5,12.5 + parent: 2 + - uid: 21247 components: - type: Transform - pos: -127.5,19.5 - parent: 89 - - uid: 8442 + rot: 3.141592653589793 rad + pos: 45.5,11.5 + parent: 2 + - uid: 21248 components: - type: Transform - pos: -127.5,18.5 - parent: 89 - - uid: 8443 + rot: -1.5707963267948966 rad + pos: 49.5,19.5 + parent: 2 + - uid: 21249 components: - type: Transform - pos: -127.5,17.5 - parent: 89 - - uid: 8444 + rot: 3.141592653589793 rad + pos: 45.5,15.5 + parent: 2 + - uid: 21250 components: - type: Transform - pos: -127.5,16.5 - parent: 89 - - uid: 8445 + rot: 3.141592653589793 rad + pos: 45.5,14.5 + parent: 2 + - uid: 21251 components: - type: Transform - pos: -127.5,15.5 - parent: 89 - - uid: 8446 + rot: 3.141592653589793 rad + pos: 46.5,2.5 + parent: 2 + - uid: 21252 components: - type: Transform - pos: -127.5,14.5 - parent: 89 - - uid: 8450 + rot: 3.141592653589793 rad + pos: 46.5,3.5 + parent: 2 + - uid: 21253 components: - type: Transform - pos: -127.5,10.5 - parent: 89 - - uid: 8453 + rot: 3.141592653589793 rad + pos: 46.5,4.5 + parent: 2 + - uid: 21254 components: - type: Transform - pos: -126.5,10.5 - parent: 89 - - uid: 8457 + rot: 3.141592653589793 rad + pos: 46.5,5.5 + parent: 2 + - uid: 21255 components: - type: Transform - pos: -126.5,14.5 - parent: 89 - - uid: 8462 + rot: 3.141592653589793 rad + pos: 46.5,6.5 + parent: 2 + - uid: 21256 components: - type: Transform - pos: -126.5,19.5 - parent: 89 - - uid: 8483 + rot: 3.141592653589793 rad + pos: 47.5,2.5 + parent: 2 + - uid: 21257 components: - type: Transform - pos: -128.5,5.5 - parent: 89 - - uid: 8484 + rot: 3.141592653589793 rad + pos: 47.5,6.5 + parent: 2 + - uid: 21258 components: - type: Transform - pos: -128.5,6.5 - parent: 89 - - uid: 8486 + rot: 3.141592653589793 rad + pos: 47.5,9.5 + parent: 2 + - uid: 21259 components: - type: Transform - pos: -124.5,7.5 - parent: 89 - - uid: 8487 + rot: 3.141592653589793 rad + pos: 46.5,9.5 + parent: 2 + - uid: 21260 components: - type: Transform - pos: -124.5,6.5 - parent: 89 - - uid: 8488 + rot: 3.141592653589793 rad + pos: 46.5,10.5 + parent: 2 + - uid: 21261 components: - type: Transform - pos: -124.5,5.5 - parent: 89 - - uid: 8491 + rot: 3.141592653589793 rad + pos: 49.5,14.5 + parent: 2 + - uid: 21262 components: - type: Transform - pos: -122.5,5.5 - parent: 89 - - uid: 8493 + rot: -1.5707963267948966 rad + pos: 63.5,4.5 + parent: 2 + - uid: 21263 components: - type: Transform - pos: -122.5,2.5 - parent: 89 - - uid: 8494 + rot: -1.5707963267948966 rad + pos: 64.5,4.5 + parent: 2 + - uid: 21264 components: - type: Transform - pos: -122.5,1.5 - parent: 89 - - uid: 8495 + rot: -1.5707963267948966 rad + pos: 65.5,9.5 + parent: 2 + - uid: 21265 components: - type: Transform - pos: -123.5,1.5 - parent: 89 - - uid: 8496 + rot: -1.5707963267948966 rad + pos: 64.5,9.5 + parent: 2 + - uid: 21266 components: - type: Transform - pos: -124.5,2.5 - parent: 89 - - uid: 8497 + rot: -1.5707963267948966 rad + pos: 61.5,14.5 + parent: 2 + - uid: 21267 components: - type: Transform - pos: -124.5,1.5 - parent: 89 - - uid: 8498 + rot: -1.5707963267948966 rad + pos: 60.5,14.5 + parent: 2 + - uid: 21268 components: - type: Transform - pos: -124.5,0.5 - parent: 89 - - uid: 8499 + rot: -1.5707963267948966 rad + pos: 60.5,15.5 + parent: 2 + - uid: 21269 components: - type: Transform - pos: -124.5,-0.5 - parent: 89 - - uid: 8501 + rot: -1.5707963267948966 rad + pos: 59.5,7.5 + parent: 2 + - uid: 21270 components: - type: Transform - pos: -128.5,-0.5 - parent: 89 - - uid: 8502 + rot: -1.5707963267948966 rad + pos: 59.5,1.5 + parent: 2 + - uid: 21271 components: - type: Transform - pos: -128.5,0.5 - parent: 89 - - uid: 8503 + rot: -1.5707963267948966 rad + pos: 57.5,1.5 + parent: 2 + - uid: 21272 components: - type: Transform - pos: -128.5,1.5 - parent: 89 - - uid: 8504 + rot: -1.5707963267948966 rad + pos: 56.5,1.5 + parent: 2 + - uid: 21273 components: - type: Transform - pos: -128.5,2.5 - parent: 89 - - uid: 8535 + rot: -1.5707963267948966 rad + pos: 55.5,1.5 + parent: 2 + - uid: 21274 components: - type: Transform rot: -1.5707963267948966 rad - pos: -123.5,6.5 - parent: 89 - - uid: 8536 + pos: 54.5,1.5 + parent: 2 + - uid: 21275 components: - type: Transform rot: -1.5707963267948966 rad - pos: -124.5,8.5 - parent: 89 - - uid: 8541 + pos: 53.5,2.5 + parent: 2 + - uid: 21276 components: - type: Transform - rot: 3.141592653589793 rad - pos: -126.5,18.5 - parent: 89 - - uid: 8542 + rot: -1.5707963267948966 rad + pos: 53.5,3.5 + parent: 2 + - uid: 21277 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,18.5 - parent: 89 - - uid: 8574 + rot: -1.5707963267948966 rad + pos: 53.5,4.5 + parent: 2 + - uid: 21278 components: - type: Transform - pos: 41.5,-15.5 - parent: 89 - - uid: 8589 + rot: -1.5707963267948966 rad + pos: 53.5,5.5 + parent: 2 + - uid: 21279 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,7.5 - parent: 89 - - uid: 8595 + rot: -1.5707963267948966 rad + pos: 53.5,6.5 + parent: 2 + - uid: 21280 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,0.5 - parent: 89 - - uid: 8601 + rot: -1.5707963267948966 rad + pos: 54.5,7.5 + parent: 2 + - uid: 21281 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-0.5 - parent: 89 - - uid: 8603 + rot: -1.5707963267948966 rad + pos: 55.5,7.5 + parent: 2 + - uid: 21282 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-2.5 - parent: 89 - - uid: 8604 + rot: -1.5707963267948966 rad + pos: 56.5,7.5 + parent: 2 + - uid: 21283 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-3.5 - parent: 89 - - uid: 8605 + rot: -1.5707963267948966 rad + pos: 57.5,7.5 + parent: 2 + - uid: 21284 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,-4.5 - parent: 89 - - uid: 8606 + rot: -1.5707963267948966 rad + pos: 56.5,6.5 + parent: 2 + - uid: 21285 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,-4.5 - parent: 89 - - uid: 8607 + rot: -1.5707963267948966 rad + pos: 56.5,5.5 + parent: 2 + - uid: 21286 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,-4.5 - parent: 89 - - uid: 8608 + rot: -1.5707963267948966 rad + pos: 56.5,3.5 + parent: 2 + - uid: 21287 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,-4.5 - parent: 89 - - uid: 8609 + rot: -1.5707963267948966 rad + pos: 56.5,2.5 + parent: 2 + - uid: 21288 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-4.5 - parent: 89 - - uid: 8610 + pos: -0.5,-37.5 + parent: 2 + - uid: 21289 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-5.5 - parent: 89 - - uid: 8611 + rot: 3.141592653589793 rad + pos: 48.5,9.5 + parent: 2 + - uid: 21290 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-6.5 - parent: 89 - - uid: 8612 + rot: 3.141592653589793 rad + pos: 49.5,9.5 + parent: 2 + - uid: 21291 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-7.5 - parent: 89 - - uid: 8613 + rot: 3.141592653589793 rad + pos: 51.5,13.5 + parent: 2 + - uid: 21292 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-8.5 - parent: 89 - - uid: 8614 + rot: 3.141592653589793 rad + pos: 51.5,12.5 + parent: 2 + - uid: 21293 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,-9.5 - parent: 89 - - uid: 8616 + rot: 3.141592653589793 rad + pos: 49.5,10.5 + parent: 2 + - uid: 21294 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,8.5 - parent: 89 - - uid: 8618 + rot: 3.141592653589793 rad + pos: 50.5,12.5 + parent: 2 + - uid: 21295 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,10.5 - parent: 89 - - uid: 8619 + rot: -1.5707963267948966 rad + pos: -103.5,-20.5 + parent: 2 + - uid: 21296 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,11.5 - parent: 89 - - uid: 8620 + rot: 3.141592653589793 rad + pos: 49.5,6.5 + parent: 2 + - uid: 21297 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,12.5 - parent: 89 - - uid: 8621 + rot: 3.141592653589793 rad + pos: 50.5,6.5 + parent: 2 + - uid: 21298 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,12.5 - parent: 89 - - uid: 8622 + rot: -1.5707963267948966 rad + pos: -106.5,-20.5 + parent: 2 + - uid: 21299 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -116.5,12.5 - parent: 89 - - uid: 8623 + rot: -1.5707963267948966 rad + pos: 44.5,23.5 + parent: 2 + - uid: 21300 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,12.5 - parent: 89 - - uid: 8624 + rot: -1.5707963267948966 rad + pos: 43.5,23.5 + parent: 2 + - uid: 21301 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,12.5 - parent: 89 - - uid: 8625 + rot: -1.5707963267948966 rad + pos: 43.5,19.5 + parent: 2 + - uid: 21302 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,13.5 - parent: 89 - - uid: 8626 + rot: 3.141592653589793 rad + pos: 48.5,6.5 + parent: 2 + - uid: 21303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,14.5 - parent: 89 - - uid: 8627 + rot: 3.141592653589793 rad + pos: 48.5,2.5 + parent: 2 + - uid: 21304 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,15.5 - parent: 89 - - uid: 8628 + rot: 3.141592653589793 rad + pos: 50.5,3.5 + parent: 2 + - uid: 21305 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,16.5 - parent: 89 - - uid: 8629 + rot: 3.141592653589793 rad + pos: 50.5,2.5 + parent: 2 + - uid: 21306 components: - type: Transform - pos: -34.5,11.5 - parent: 89 - - uid: 8630 + rot: 3.141592653589793 rad + pos: 49.5,2.5 + parent: 2 + - uid: 21307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -114.5,19.5 - parent: 89 - - uid: 8631 + rot: 3.141592653589793 rad + pos: 50.5,5.5 + parent: 2 + - uid: 21308 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -115.5,19.5 - parent: 89 - - uid: 8632 + rot: -1.5707963267948966 rad + pos: 51.5,-6.5 + parent: 2 + - uid: 21309 components: - type: Transform - pos: -36.5,10.5 - parent: 89 - - uid: 8633 + rot: -1.5707963267948966 rad + pos: 51.5,-7.5 + parent: 2 + - uid: 21310 components: - type: Transform - pos: -111.5,-20.5 - parent: 89 - - uid: 8634 + rot: -1.5707963267948966 rad + pos: 64.5,-0.5 + parent: 2 + - uid: 21311 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -118.5,19.5 - parent: 89 - - uid: 8635 + rot: -1.5707963267948966 rad + pos: 65.5,-0.5 + parent: 2 + - uid: 21312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -119.5,19.5 - parent: 89 - - uid: 8636 + rot: -1.5707963267948966 rad + pos: 60.5,-6.5 + parent: 2 + - uid: 21313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -120.5,19.5 - parent: 89 - - uid: 8637 + rot: -1.5707963267948966 rad + pos: 60.5,-5.5 + parent: 2 + - uid: 21314 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -121.5,19.5 - parent: 89 - - uid: 8638 + pos: -4.5,-37.5 + parent: 2 + - uid: 21315 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,19.5 - parent: 89 - - uid: 8639 + pos: -5.5,-37.5 + parent: 2 + - uid: 21316 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -123.5,19.5 - parent: 89 - - uid: 8640 + pos: -6.5,-37.5 + parent: 2 + - uid: 21317 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,19.5 - parent: 89 - - uid: 8641 + pos: -7.5,-37.5 + parent: 2 + - uid: 21318 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,19.5 - parent: 89 - - uid: 8699 + rot: -1.5707963267948966 rad + pos: -8.5,-37.5 + parent: 2 + - uid: 21319 components: - type: Transform - pos: 4.5,30.5 - parent: 89 - - uid: 8704 + rot: -1.5707963267948966 rad + pos: -8.5,-38.5 + parent: 2 + - uid: 21320 components: - type: Transform - pos: -35.5,10.5 - parent: 89 - - uid: 8705 + rot: -1.5707963267948966 rad + pos: 3.5,-43.5 + parent: 2 + - uid: 21321 components: - type: Transform - pos: -34.5,10.5 - parent: 89 - - uid: 8708 + rot: -1.5707963267948966 rad + pos: 3.5,-44.5 + parent: 2 + - uid: 21322 components: - type: Transform - pos: -110.5,-19.5 - parent: 89 - - uid: 8709 + rot: -1.5707963267948966 rad + pos: 3.5,-45.5 + parent: 2 + - uid: 21323 components: - type: Transform - pos: -111.5,-17.5 - parent: 89 - - uid: 8712 + rot: -1.5707963267948966 rad + pos: 2.5,-46.5 + parent: 2 + - uid: 21324 components: - type: Transform - pos: -110.5,-13.5 - parent: 89 - - uid: 8716 + rot: -1.5707963267948966 rad + pos: 0.5,-46.5 + parent: 2 + - uid: 21325 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -124.5,-11.5 - parent: 89 - - uid: 8717 + rot: -1.5707963267948966 rad + pos: -0.5,-46.5 + parent: 2 + - uid: 21326 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -125.5,-11.5 - parent: 89 - - uid: 8718 + rot: -1.5707963267948966 rad + pos: -1.5,-46.5 + parent: 2 + - uid: 21327 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -126.5,-11.5 - parent: 89 - - uid: 8719 + rot: -1.5707963267948966 rad + pos: -3.5,-46.5 + parent: 2 + - uid: 21328 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -127.5,-11.5 - parent: 89 - - uid: 8762 + rot: -1.5707963267948966 rad + pos: -5.5,-46.5 + parent: 2 + - uid: 21329 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -122.5,6.5 - parent: 89 - - uid: 8767 + rot: -1.5707963267948966 rad + pos: -4.5,-46.5 + parent: 2 + - uid: 21330 components: - type: Transform - pos: 37.5,-18.5 - parent: 89 - - uid: 8771 + rot: -1.5707963267948966 rad + pos: -7.5,-46.5 + parent: 2 + - uid: 21331 components: - type: Transform - rot: 3.141592653589793 rad - pos: -115.5,-9.5 - parent: 89 - - uid: 8772 + rot: -1.5707963267948966 rad + pos: -8.5,-45.5 + parent: 2 + - uid: 21332 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,-9.5 - parent: 89 - - uid: 8773 + rot: -1.5707963267948966 rad + pos: -8.5,-44.5 + parent: 2 + - uid: 21333 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-9.5 - parent: 89 - - uid: 8774 + rot: -1.5707963267948966 rad + pos: -8.5,-43.5 + parent: 2 + - uid: 21334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-9.5 - parent: 89 - - uid: 8775 + rot: -1.5707963267948966 rad + pos: 1.5,-37.5 + parent: 2 + - uid: 21335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-9.5 - parent: 89 - - uid: 8776 + rot: -1.5707963267948966 rad + pos: 3.5,-38.5 + parent: 2 + - uid: 21336 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-9.5 - parent: 89 - - uid: 8777 + rot: -1.5707963267948966 rad + pos: 3.5,-41.5 + parent: 2 + - uid: 21337 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-4.5 - parent: 89 - - uid: 8778 + rot: -1.5707963267948966 rad + pos: 0.5,-32.5 + parent: 2 + - uid: 21338 components: - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,-4.5 - parent: 89 - - uid: 8839 + rot: -1.5707963267948966 rad + pos: 0.5,-36.5 + parent: 2 + - uid: 21339 components: - type: Transform - pos: -114.5,-20.5 - parent: 89 - - uid: 8843 + rot: -1.5707963267948966 rad + pos: 6.5,-29.5 + parent: 2 + - uid: 21340 components: - type: Transform - pos: 37.5,-17.5 - parent: 89 - - uid: 8852 + rot: -1.5707963267948966 rad + pos: 5.5,-30.5 + parent: 2 + - uid: 21341 components: - type: Transform rot: -1.5707963267948966 rad - pos: -131.5,-13.5 - parent: 89 - - uid: 8856 + pos: 5.5,-31.5 + parent: 2 + - uid: 21342 components: - type: Transform rot: -1.5707963267948966 rad - pos: -132.5,-13.5 - parent: 89 - - uid: 8857 + pos: 5.5,-29.5 + parent: 2 + - uid: 21343 components: - type: Transform - pos: -133.5,-1.5 - parent: 89 - - uid: 8858 + rot: -1.5707963267948966 rad + pos: 0.5,-34.5 + parent: 2 + - uid: 21344 components: - type: Transform - pos: -132.5,-1.5 - parent: 89 - - uid: 8859 + rot: -1.5707963267948966 rad + pos: 0.5,-33.5 + parent: 2 + - uid: 21345 components: - type: Transform - pos: -131.5,-1.5 - parent: 89 - - uid: 8870 + rot: -1.5707963267948966 rad + pos: 2.5,-37.5 + parent: 2 + - uid: 21346 components: - type: Transform - pos: -127.5,-10.5 - parent: 89 - - uid: 8872 + rot: -1.5707963267948966 rad + pos: 0.5,-35.5 + parent: 2 + - uid: 21347 components: - type: Transform - pos: -127.5,-9.5 - parent: 89 - - uid: 8873 + rot: -1.5707963267948966 rad + pos: 3.5,-42.5 + parent: 2 + - uid: 21348 components: - type: Transform - pos: -129.5,-10.5 - parent: 89 - - uid: 8898 + pos: -2.5,-37.5 + parent: 2 + - uid: 21349 components: - type: Transform - pos: -130.5,-1.5 - parent: 89 - - uid: 8899 + rot: -1.5707963267948966 rad + pos: 0.5,-37.5 + parent: 2 + - uid: 21350 components: - type: Transform - pos: -130.5,-2.5 - parent: 89 - - uid: 8900 + pos: -3.5,-37.5 + parent: 2 + - uid: 21351 components: - type: Transform - pos: -130.5,-3.5 - parent: 89 - - uid: 8901 + rot: -1.5707963267948966 rad + pos: -17.5,25.5 + parent: 2 + - uid: 21352 components: - type: Transform - pos: -130.5,-4.5 - parent: 89 - - uid: 8902 + rot: -1.5707963267948966 rad + pos: -75.5,-18.5 + parent: 2 + - uid: 21353 components: - type: Transform - pos: -129.5,-4.5 - parent: 89 - - uid: 8903 + rot: -1.5707963267948966 rad + pos: -75.5,-19.5 + parent: 2 + - uid: 21354 components: - type: Transform - pos: -128.5,-4.5 - parent: 89 - - uid: 8904 + rot: -1.5707963267948966 rad + pos: -75.5,-20.5 + parent: 2 + - uid: 21355 components: - type: Transform - pos: -127.5,-4.5 - parent: 89 - - uid: 8910 + rot: -1.5707963267948966 rad + pos: -77.5,-18.5 + parent: 2 + - uid: 21356 components: - type: Transform rot: -1.5707963267948966 rad - pos: -134.5,-1.5 - parent: 89 - - uid: 8917 + pos: -77.5,-17.5 + parent: 2 + - uid: 21357 components: - type: Transform - pos: -127.5,-8.5 - parent: 89 - - uid: 8918 + rot: -1.5707963267948966 rad + pos: -77.5,-15.5 + parent: 2 + - uid: 21358 components: - type: Transform - pos: -127.5,-5.5 - parent: 89 - - uid: 8919 + rot: -1.5707963267948966 rad + pos: -77.5,-20.5 + parent: 2 + - uid: 21359 components: - type: Transform - pos: -128.5,7.5 - parent: 89 - - uid: 8921 + rot: -1.5707963267948966 rad + pos: -78.5,-20.5 + parent: 2 + - uid: 21360 components: - type: Transform - pos: -128.5,8.5 - parent: 89 - - uid: 8939 + rot: -1.5707963267948966 rad + pos: -82.5,-20.5 + parent: 2 + - uid: 21361 components: - type: Transform rot: -1.5707963267948966 rad - pos: -135.5,-1.5 - parent: 89 - - uid: 9013 + pos: -83.5,-20.5 + parent: 2 + - uid: 21362 components: - type: Transform - pos: -110.5,-12.5 - parent: 89 - - uid: 9014 + rot: -1.5707963267948966 rad + pos: 48.5,16.5 + parent: 2 + - uid: 21363 components: - type: Transform - pos: -111.5,-12.5 - parent: 89 - - uid: 9016 + rot: -1.5707963267948966 rad + pos: 51.5,-8.5 + parent: 2 + - uid: 21364 components: - type: Transform - pos: -110.5,-16.5 - parent: 89 - - uid: 9038 + rot: -1.5707963267948966 rad + pos: 51.5,-9.5 + parent: 2 + - uid: 21365 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-34.5 - parent: 89 - - uid: 9039 + pos: 51.5,-3.5 + parent: 2 + - uid: 21366 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-35.5 - parent: 89 - - uid: 9040 + pos: 48.5,-0.5 + parent: 2 + - uid: 21367 components: - type: Transform rot: -1.5707963267948966 rad - pos: -8.5,-36.5 - parent: 89 - - uid: 9045 + pos: -73.5,-18.5 + parent: 2 + - uid: 21368 components: - type: Transform - pos: -8.5,-41.5 - parent: 89 - - uid: 9072 + rot: -1.5707963267948966 rad + pos: -70.5,-18.5 + parent: 2 + - uid: 21369 components: - type: Transform - pos: -116.5,22.5 - parent: 89 - - uid: 9155 + rot: -1.5707963267948966 rad + pos: 47.5,-0.5 + parent: 2 + - uid: 21370 components: - type: Transform - pos: -115.5,20.5 - parent: 89 - - uid: 9156 + rot: -1.5707963267948966 rad + pos: 50.5,-0.5 + parent: 2 + - uid: 21371 components: - type: Transform - pos: -115.5,22.5 - parent: 89 - - uid: 9157 + rot: -1.5707963267948966 rad + pos: 5.5,38.5 + parent: 2 + - uid: 21372 components: - type: Transform - pos: -115.5,24.5 - parent: 89 - - uid: 9158 + rot: -1.5707963267948966 rad + pos: 8.5,38.5 + parent: 2 + - uid: 21373 components: - type: Transform - pos: -115.5,26.5 - parent: 89 - - uid: 9159 + rot: -1.5707963267948966 rad + pos: 51.5,-0.5 + parent: 2 + - uid: 21374 components: - type: Transform - pos: -115.5,28.5 - parent: 89 - - uid: 9160 + rot: -1.5707963267948966 rad + pos: 9.5,-21.5 + parent: 2 + - uid: 21375 components: - type: Transform - pos: -113.5,30.5 - parent: 89 - - uid: 9161 + rot: -1.5707963267948966 rad + pos: 8.5,-23.5 + parent: 2 + - uid: 21376 components: - type: Transform - pos: -111.5,30.5 - parent: 89 - - uid: 9162 + rot: -1.5707963267948966 rad + pos: 8.5,-24.5 + parent: 2 + - uid: 21377 components: - type: Transform - pos: -109.5,30.5 - parent: 89 - - uid: 9163 + rot: -1.5707963267948966 rad + pos: 8.5,-25.5 + parent: 2 + - uid: 21378 components: - type: Transform - pos: -107.5,30.5 - parent: 89 - - uid: 9164 + rot: -1.5707963267948966 rad + pos: 8.5,-26.5 + parent: 2 + - uid: 21379 components: - type: Transform - pos: -105.5,30.5 - parent: 89 - - uid: 9181 + rot: -1.5707963267948966 rad + pos: 8.5,-27.5 + parent: 2 + - uid: 21380 components: - type: Transform - pos: 7.5,-29.5 - parent: 89 - - uid: 9183 + rot: -1.5707963267948966 rad + pos: 24.5,-17.5 + parent: 2 + - uid: 21381 components: - type: Transform - pos: 8.5,-28.5 - parent: 89 - - uid: 9234 + rot: -1.5707963267948966 rad + pos: 34.5,29.5 + parent: 2 + - uid: 21382 components: - type: Transform - pos: 21.5,27.5 - parent: 89 - - uid: 9245 + rot: -1.5707963267948966 rad + pos: 17.5,-19.5 + parent: 2 + - uid: 21383 components: - type: Transform - pos: 28.5,10.5 - parent: 89 - - uid: 9246 + rot: -1.5707963267948966 rad + pos: 51.5,-1.5 + parent: 2 + - uid: 21384 components: - type: Transform - pos: 27.5,10.5 - parent: 89 - - uid: 9247 + rot: -1.5707963267948966 rad + pos: 53.5,-7.5 + parent: 2 + - uid: 21385 components: - type: Transform - pos: 26.5,10.5 - parent: 89 - - uid: 9248 + rot: -1.5707963267948966 rad + pos: 50.5,-4.5 + parent: 2 + - uid: 21386 components: - type: Transform - pos: 25.5,10.5 - parent: 89 - - uid: 9249 + rot: -1.5707963267948966 rad + pos: 51.5,-4.5 + parent: 2 + - uid: 21387 components: - type: Transform - pos: 24.5,10.5 - parent: 89 - - uid: 9250 + rot: -1.5707963267948966 rad + pos: 47.5,-2.5 + parent: 2 + - uid: 21388 components: - type: Transform - pos: 23.5,10.5 - parent: 89 - - uid: 9251 + rot: -1.5707963267948966 rad + pos: 47.5,-1.5 + parent: 2 + - uid: 21389 components: - type: Transform - pos: 23.5,9.5 - parent: 89 - - uid: 9252 + rot: -1.5707963267948966 rad + pos: 46.5,16.5 + parent: 2 + - uid: 21390 components: - type: Transform - pos: 23.5,8.5 - parent: 89 - - uid: 9253 + rot: -1.5707963267948966 rad + pos: 14.5,-20.5 + parent: 2 + - uid: 21391 components: - type: Transform - pos: 23.5,7.5 - parent: 89 - - uid: 9254 + rot: -1.5707963267948966 rad + pos: 12.5,-20.5 + parent: 2 + - uid: 21392 components: - type: Transform - pos: 23.5,6.5 - parent: 89 - - uid: 9255 + rot: -1.5707963267948966 rad + pos: 13.5,-20.5 + parent: 2 + - uid: 21393 components: - type: Transform - pos: 23.5,5.5 - parent: 89 - - uid: 9332 + rot: -1.5707963267948966 rad + pos: 19.5,-17.5 + parent: 2 + - uid: 21394 components: - type: Transform - pos: -120.5,-16.5 - parent: 89 - - uid: 9334 + rot: -1.5707963267948966 rad + pos: 15.5,-20.5 + parent: 2 + - uid: 21395 components: - type: Transform - pos: 11.5,39.5 - parent: 89 - - uid: 9337 + rot: -1.5707963267948966 rad + pos: 49.5,21.5 + parent: 2 + - uid: 21396 components: - type: Transform - pos: 11.5,40.5 - parent: 89 - - uid: 9403 + rot: -1.5707963267948966 rad + pos: 16.5,-20.5 + parent: 2 + - uid: 21397 components: - type: Transform - pos: 23.5,11.5 - parent: 89 - - uid: 9404 + rot: -1.5707963267948966 rad + pos: 16.5,-19.5 + parent: 2 + - uid: 21398 components: - type: Transform - pos: 23.5,12.5 - parent: 89 - - uid: 9480 + rot: -1.5707963267948966 rad + pos: 18.5,-17.5 + parent: 2 + - uid: 21399 components: - type: Transform - pos: 10.5,43.5 - parent: 89 - - uid: 9642 + rot: -1.5707963267948966 rad + pos: 23.5,-17.5 + parent: 2 + - uid: 21400 components: - type: Transform - pos: -110.5,18.5 - parent: 89 - - uid: 9643 + rot: -1.5707963267948966 rad + pos: 21.5,-18.5 + parent: 2 + - uid: 21401 components: - type: Transform - pos: -110.5,16.5 - parent: 89 - - uid: 9644 + rot: -1.5707963267948966 rad + pos: 30.5,-17.5 + parent: 2 + - uid: 21402 components: - type: Transform - pos: -68.5,28.5 - parent: 89 - - uid: 9648 + pos: -3.5,-42.5 + parent: 2 + - uid: 21403 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,51.5 - parent: 89 - - uid: 9649 + rot: -1.5707963267948966 rad + pos: 31.5,-17.5 + parent: 2 + - uid: 21404 components: - type: Transform - pos: -68.5,32.5 - parent: 89 - - uid: 9650 + rot: -1.5707963267948966 rad + pos: 52.5,-10.5 + parent: 2 + - uid: 21405 components: - type: Transform - pos: -68.5,36.5 - parent: 89 - - uid: 9651 + rot: -1.5707963267948966 rad + pos: 32.5,-17.5 + parent: 2 + - uid: 21406 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,51.5 - parent: 89 - - uid: 9655 + rot: -1.5707963267948966 rad + pos: 25.5,-17.5 + parent: 2 + - uid: 21407 components: - type: Transform - pos: -68.5,40.5 - parent: 89 - - uid: 9656 + rot: -1.5707963267948966 rad + pos: 20.5,-17.5 + parent: 2 + - uid: 21408 components: - type: Transform - pos: -67.5,46.5 - parent: 89 - - uid: 9657 + rot: -1.5707963267948966 rad + pos: 33.5,-17.5 + parent: 2 + - uid: 21409 components: - type: Transform - pos: -67.5,47.5 - parent: 89 - - uid: 9658 + rot: -1.5707963267948966 rad + pos: 34.5,-17.5 + parent: 2 + - uid: 21410 components: - type: Transform - pos: -67.5,48.5 - parent: 89 - - uid: 9659 + rot: -1.5707963267948966 rad + pos: 51.5,-10.5 + parent: 2 + - uid: 21411 components: - type: Transform - pos: -63.5,46.5 - parent: 89 - - uid: 9660 + rot: -1.5707963267948966 rad + pos: 26.5,-17.5 + parent: 2 + - uid: 21412 components: - type: Transform - pos: -63.5,47.5 - parent: 89 - - uid: 9661 + rot: -1.5707963267948966 rad + pos: 27.5,-17.5 + parent: 2 + - uid: 21413 components: - type: Transform - pos: -63.5,48.5 - parent: 89 - - uid: 9662 + rot: -1.5707963267948966 rad + pos: -65.5,-18.5 + parent: 2 + - uid: 21414 components: - type: Transform - pos: -59.5,46.5 - parent: 89 - - uid: 9663 + rot: -1.5707963267948966 rad + pos: -61.5,-21.5 + parent: 2 + - uid: 21415 components: - type: Transform - pos: -59.5,47.5 - parent: 89 - - uid: 9664 + rot: -1.5707963267948966 rad + pos: -64.5,-20.5 + parent: 2 + - uid: 21416 components: - type: Transform - pos: -59.5,48.5 - parent: 89 - - uid: 9668 + rot: -1.5707963267948966 rad + pos: -64.5,-19.5 + parent: 2 + - uid: 21417 components: - type: Transform - pos: -54.5,46.5 - parent: 89 - - uid: 9669 + rot: -1.5707963267948966 rad + pos: -68.5,-18.5 + parent: 2 + - uid: 21418 components: - type: Transform - pos: -53.5,46.5 - parent: 89 - - uid: 9670 + rot: -1.5707963267948966 rad + pos: -69.5,-18.5 + parent: 2 + - uid: 21419 components: - type: Transform - pos: -52.5,46.5 - parent: 89 - - uid: 9671 + rot: -1.5707963267948966 rad + pos: -74.5,-18.5 + parent: 2 + - uid: 21420 components: - type: Transform - pos: -51.5,46.5 - parent: 89 - - uid: 9672 + rot: -1.5707963267948966 rad + pos: -74.5,-11.5 + parent: 2 + - uid: 21421 components: - type: Transform - pos: -50.5,46.5 - parent: 89 - - uid: 9673 + rot: -1.5707963267948966 rad + pos: -74.5,-14.5 + parent: 2 + - uid: 21422 components: - type: Transform - pos: -49.5,46.5 - parent: 89 - - uid: 9675 + rot: -1.5707963267948966 rad + pos: -75.5,-14.5 + parent: 2 + - uid: 21423 components: - type: Transform - pos: -49.5,44.5 - parent: 89 - - uid: 9676 + rot: -1.5707963267948966 rad + pos: -75.5,-15.5 + parent: 2 + - uid: 21424 components: - type: Transform - pos: -49.5,43.5 - parent: 89 - - uid: 9677 + rot: -1.5707963267948966 rad + pos: -75.5,-16.5 + parent: 2 + - uid: 21425 components: - type: Transform - pos: -49.5,42.5 - parent: 89 - - uid: 9679 + rot: -1.5707963267948966 rad + pos: -75.5,-17.5 + parent: 2 + - uid: 21426 components: - type: Transform - pos: -49.5,40.5 - parent: 89 - - uid: 9680 + rot: -1.5707963267948966 rad + pos: -74.5,-12.5 + parent: 2 + - uid: 21427 components: - type: Transform - pos: -49.5,39.5 - parent: 89 - - uid: 9682 + rot: -1.5707963267948966 rad + pos: -45.5,-18.5 + parent: 2 + - uid: 21428 components: - type: Transform - pos: -50.5,38.5 - parent: 89 - - uid: 9683 + rot: -1.5707963267948966 rad + pos: -46.5,-18.5 + parent: 2 + - uid: 21429 components: - type: Transform - pos: -51.5,38.5 - parent: 89 - - uid: 9684 + rot: -1.5707963267948966 rad + pos: -44.5,-18.5 + parent: 2 + - uid: 21430 components: - type: Transform - pos: -57.5,37.5 - parent: 89 - - uid: 9685 + rot: -1.5707963267948966 rad + pos: -43.5,-18.5 + parent: 2 + - uid: 21431 components: - type: Transform - pos: -53.5,38.5 - parent: 89 - - uid: 9686 + rot: -1.5707963267948966 rad + pos: -42.5,-18.5 + parent: 2 + - uid: 21432 components: - type: Transform - pos: -52.5,38.5 - parent: 89 - - uid: 9687 + rot: -1.5707963267948966 rad + pos: -41.5,-18.5 + parent: 2 + - uid: 21433 components: - type: Transform - pos: -57.5,38.5 - parent: 89 - - uid: 9688 + rot: -1.5707963267948966 rad + pos: -40.5,-18.5 + parent: 2 + - uid: 21434 components: - type: Transform - pos: -57.5,39.5 - parent: 89 - - uid: 9689 + rot: -1.5707963267948966 rad + pos: -39.5,-18.5 + parent: 2 + - uid: 21435 components: - type: Transform - pos: -57.5,40.5 - parent: 89 - - uid: 9695 + rot: -1.5707963267948966 rad + pos: -38.5,-18.5 + parent: 2 + - uid: 21436 components: - type: Transform - pos: -58.5,37.5 - parent: 89 - - uid: 9696 + rot: -1.5707963267948966 rad + pos: -49.5,-18.5 + parent: 2 + - uid: 21437 components: - type: Transform - pos: -58.5,31.5 - parent: 89 - - uid: 9699 + rot: -1.5707963267948966 rad + pos: -58.5,-20.5 + parent: 2 + - uid: 21438 components: - type: Transform - pos: -55.5,31.5 - parent: 89 - - uid: 9700 + rot: -1.5707963267948966 rad + pos: -53.5,-18.5 + parent: 2 + - uid: 21439 components: - type: Transform - pos: -54.5,31.5 - parent: 89 - - uid: 9701 + rot: -1.5707963267948966 rad + pos: -57.5,-18.5 + parent: 2 + - uid: 21440 components: - type: Transform - pos: -54.5,30.5 - parent: 89 - - uid: 9702 + rot: -1.5707963267948966 rad + pos: -58.5,-19.5 + parent: 2 + - uid: 21441 components: - type: Transform - pos: -54.5,29.5 - parent: 89 - - uid: 9703 + rot: -1.5707963267948966 rad + pos: -61.5,-18.5 + parent: 2 + - uid: 21442 components: - type: Transform - pos: -54.5,28.5 - parent: 89 - - uid: 9704 + rot: -1.5707963267948966 rad + pos: -52.5,-18.5 + parent: 2 + - uid: 21443 components: - type: Transform - pos: -54.5,27.5 - parent: 89 - - uid: 9708 + rot: -1.5707963267948966 rad + pos: -50.5,-18.5 + parent: 2 + - uid: 21444 components: - type: Transform - pos: -68.5,41.5 - parent: 89 - - uid: 9722 + rot: -1.5707963267948966 rad + pos: 61.5,-5.5 + parent: 2 + - uid: 21445 components: - type: Transform - pos: -53.5,42.5 - parent: 89 - - uid: 9723 + rot: -1.5707963267948966 rad + pos: 53.5,-12.5 + parent: 2 + - uid: 21446 components: - type: Transform - pos: -52.5,42.5 - parent: 89 - - uid: 9724 + pos: -0.5,-42.5 + parent: 2 + - uid: 21447 components: - type: Transform - pos: -51.5,42.5 - parent: 89 - - uid: 9725 + pos: -4.5,-42.5 + parent: 2 + - uid: 21448 components: - type: Transform - pos: -50.5,42.5 - parent: 89 - - uid: 9726 + rot: -1.5707963267948966 rad + pos: -74.5,-13.5 + parent: 2 + - uid: 21449 components: - type: Transform - pos: -54.5,32.5 - parent: 89 - - uid: 9727 + rot: -1.5707963267948966 rad + pos: 63.5,-0.5 + parent: 2 + - uid: 21450 components: - type: Transform - pos: -54.5,33.5 - parent: 89 - - uid: 9728 + rot: -1.5707963267948966 rad + pos: 53.5,-11.5 + parent: 2 + - uid: 21451 components: - type: Transform - pos: -54.5,34.5 - parent: 89 - - uid: 9729 + rot: -1.5707963267948966 rad + pos: -27.5,-19.5 + parent: 2 + - uid: 21452 components: - type: Transform - pos: -54.5,36.5 - parent: 89 - - uid: 9730 + rot: -1.5707963267948966 rad + pos: -82.5,31.5 + parent: 2 + - uid: 21453 components: - type: Transform - pos: -54.5,37.5 - parent: 89 - - uid: 9732 + rot: -1.5707963267948966 rad + pos: -82.5,29.5 + parent: 2 + - uid: 21454 components: - type: Transform - pos: -53.5,37.5 - parent: 89 - - uid: 9735 + rot: -1.5707963267948966 rad + pos: -68.5,31.5 + parent: 2 + - uid: 21455 components: - type: Transform - pos: -53.5,33.5 - parent: 89 - - uid: 9736 + rot: -1.5707963267948966 rad + pos: -68.5,29.5 + parent: 2 + - uid: 21456 components: - type: Transform - pos: -51.5,33.5 - parent: 89 - - uid: 9737 + rot: -1.5707963267948966 rad + pos: -82.5,38.5 + parent: 2 + - uid: 21457 components: - type: Transform - pos: -50.5,33.5 - parent: 89 - - uid: 9738 + rot: -1.5707963267948966 rad + pos: -68.5,38.5 + parent: 2 + - uid: 21458 components: - type: Transform - pos: -50.5,32.5 - parent: 89 - - uid: 9739 + rot: -1.5707963267948966 rad + pos: -82.5,40.5 + parent: 2 + - uid: 21459 components: - type: Transform - pos: -50.5,31.5 - parent: 89 - - uid: 9740 + rot: -1.5707963267948966 rad + pos: -82.5,39.5 + parent: 2 + - uid: 21460 components: - type: Transform - pos: -50.5,30.5 - parent: 89 - - uid: 9741 + rot: -1.5707963267948966 rad + pos: -68.5,39.5 + parent: 2 + - uid: 21461 components: - type: Transform - pos: -50.5,29.5 - parent: 89 - - uid: 9742 + rot: -1.5707963267948966 rad + pos: -37.5,-18.5 + parent: 2 + - uid: 21462 components: - type: Transform - pos: -50.5,28.5 - parent: 89 - - uid: 9743 + rot: -1.5707963267948966 rad + pos: -36.5,-18.5 + parent: 2 + - uid: 21463 components: - type: Transform - pos: -50.5,27.5 - parent: 89 - - uid: 9744 + rot: -1.5707963267948966 rad + pos: -35.5,-18.5 + parent: 2 + - uid: 21464 components: - type: Transform - pos: -51.5,27.5 - parent: 89 - - uid: 9745 + rot: -1.5707963267948966 rad + pos: -34.5,-18.5 + parent: 2 + - uid: 21465 components: - type: Transform - pos: -51.5,26.5 - parent: 89 - - uid: 9746 + rot: -1.5707963267948966 rad + pos: -33.5,-18.5 + parent: 2 + - uid: 21466 components: - type: Transform - pos: -51.5,25.5 - parent: 89 - - uid: 9747 + rot: -1.5707963267948966 rad + pos: -32.5,-18.5 + parent: 2 + - uid: 21467 components: - type: Transform - pos: -51.5,24.5 - parent: 89 - - uid: 9748 + rot: -1.5707963267948966 rad + pos: -31.5,-18.5 + parent: 2 + - uid: 21468 components: - type: Transform - pos: -51.5,23.5 - parent: 89 - - uid: 9749 + rot: -1.5707963267948966 rad + pos: -30.5,-18.5 + parent: 2 + - uid: 21469 components: - type: Transform - pos: -51.5,22.5 - parent: 89 - - uid: 9750 + rot: -1.5707963267948966 rad + pos: -29.5,-18.5 + parent: 2 + - uid: 21470 components: - type: Transform - pos: -50.5,22.5 - parent: 89 - - uid: 9751 + rot: -1.5707963267948966 rad + pos: -28.5,-18.5 + parent: 2 + - uid: 21471 components: - type: Transform - pos: -49.5,22.5 - parent: 89 - - uid: 9752 + rot: -1.5707963267948966 rad + pos: -27.5,-18.5 + parent: 2 + - uid: 21472 components: - type: Transform - pos: -48.5,22.5 - parent: 89 - - uid: 9753 + rot: -1.5707963267948966 rad + pos: -27.5,-20.5 + parent: 2 + - uid: 21473 components: - type: Transform - pos: -47.5,22.5 - parent: 89 - - uid: 9754 + rot: -1.5707963267948966 rad + pos: -27.5,-21.5 + parent: 2 + - uid: 21474 components: - type: Transform - pos: -46.5,22.5 - parent: 89 - - uid: 9755 + rot: -1.5707963267948966 rad + pos: -27.5,-22.5 + parent: 2 + - uid: 21475 components: - type: Transform - pos: -45.5,22.5 - parent: 89 - - uid: 9756 + rot: -1.5707963267948966 rad + pos: -27.5,-23.5 + parent: 2 + - uid: 21476 components: - type: Transform - pos: -44.5,22.5 - parent: 89 - - uid: 9757 + rot: -1.5707963267948966 rad + pos: -27.5,-24.5 + parent: 2 + - uid: 21477 components: - type: Transform - pos: -43.5,22.5 - parent: 89 - - uid: 9769 + rot: -1.5707963267948966 rad + pos: -27.5,-25.5 + parent: 2 + - uid: 21478 components: - type: Transform - rot: 3.141592653589793 rad - pos: -91.5,21.5 - parent: 89 - - uid: 9772 + rot: -1.5707963267948966 rad + pos: -27.5,-26.5 + parent: 2 + - uid: 21479 components: - type: Transform - pos: -58.5,32.5 - parent: 89 - - uid: 9773 + rot: -1.5707963267948966 rad + pos: -27.5,-27.5 + parent: 2 + - uid: 21480 components: - type: Transform - pos: -68.5,45.5 - parent: 89 - - uid: 9774 + rot: 1.5707963267948966 rad + pos: -26.5,-28.5 + parent: 2 + - uid: 21481 components: - type: Transform - pos: -58.5,36.5 - parent: 89 - - uid: 9778 + rot: -1.5707963267948966 rad + pos: -13.5,-29.5 + parent: 2 + - uid: 21482 components: - type: Transform rot: -1.5707963267948966 rad - pos: -133.5,-13.5 - parent: 89 - - uid: 9790 + pos: -25.5,-28.5 + parent: 2 + - uid: 21483 components: - type: Transform - pos: -65.5,46.5 - parent: 89 - - uid: 9809 + rot: -1.5707963267948966 rad + pos: -24.5,-28.5 + parent: 2 + - uid: 21484 components: - type: Transform - pos: 9.5,43.5 - parent: 89 - - uid: 9818 + rot: -1.5707963267948966 rad + pos: -23.5,-28.5 + parent: 2 + - uid: 21485 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,29.5 - parent: 89 - - uid: 9821 + rot: -1.5707963267948966 rad + pos: -22.5,-28.5 + parent: 2 + - uid: 21486 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,24.5 - parent: 89 - - uid: 9837 + rot: -1.5707963267948966 rad + pos: -21.5,-28.5 + parent: 2 + - uid: 21487 components: - type: Transform - pos: -57.5,46.5 - parent: 89 - - uid: 9857 + rot: -1.5707963267948966 rad + pos: -20.5,-28.5 + parent: 2 + - uid: 21488 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,25.5 - parent: 89 - - uid: 9859 + rot: -1.5707963267948966 rad + pos: -19.5,-28.5 + parent: 2 + - uid: 21489 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,28.5 - parent: 89 - - uid: 9863 + rot: -1.5707963267948966 rad + pos: -18.5,-28.5 + parent: 2 + - uid: 21490 components: - type: Transform - pos: -50.5,37.5 - parent: 89 - - uid: 9864 + rot: -1.5707963267948966 rad + pos: -17.5,-28.5 + parent: 2 + - uid: 21491 components: - type: Transform - pos: -50.5,36.5 - parent: 89 - - uid: 9865 + rot: -1.5707963267948966 rad + pos: -16.5,-28.5 + parent: 2 + - uid: 21492 components: - type: Transform - pos: -50.5,35.5 - parent: 89 - - uid: 9866 + rot: -1.5707963267948966 rad + pos: -15.5,-28.5 + parent: 2 + - uid: 21493 components: - type: Transform - pos: -50.5,34.5 - parent: 89 - - uid: 9883 + rot: -1.5707963267948966 rad + pos: -14.5,-28.5 + parent: 2 + - uid: 21494 components: - type: Transform - pos: -50.5,49.5 - parent: 89 - - uid: 10053 + rot: -1.5707963267948966 rad + pos: -13.5,-28.5 + parent: 2 + - uid: 21495 components: - type: Transform - pos: -83.5,-8.5 - parent: 89 - - uid: 10059 + rot: -1.5707963267948966 rad + pos: -13.5,-30.5 + parent: 2 + - uid: 21496 components: - type: Transform - pos: -83.5,-7.5 - parent: 89 - - uid: 10060 + rot: -1.5707963267948966 rad + pos: -13.5,-31.5 + parent: 2 + - uid: 21497 components: - type: Transform - pos: -83.5,-6.5 - parent: 89 - - uid: 10112 + rot: -1.5707963267948966 rad + pos: -13.5,-32.5 + parent: 2 + - uid: 21498 components: - type: Transform - pos: -28.5,34.5 - parent: 89 - - uid: 10113 + rot: -1.5707963267948966 rad + pos: -13.5,-33.5 + parent: 2 + - uid: 21499 components: - type: Transform - pos: -25.5,34.5 - parent: 89 - - uid: 10115 + rot: -1.5707963267948966 rad + pos: 48.5,-4.5 + parent: 2 + - uid: 21500 components: - type: Transform - pos: -24.5,34.5 - parent: 89 - - uid: 10117 + rot: -1.5707963267948966 rad + pos: -119.5,-16.5 + parent: 2 + - uid: 21501 components: - type: Transform - pos: -26.5,34.5 - parent: 89 - - uid: 10119 + rot: -1.5707963267948966 rad + pos: 18.5,-18.5 + parent: 2 + - uid: 21502 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,27.5 - parent: 89 - - uid: 10120 + rot: -1.5707963267948966 rad + pos: -46.5,26.5 + parent: 2 + - uid: 21503 components: - type: Transform - pos: -35.5,34.5 - parent: 89 - - uid: 10121 + rot: -1.5707963267948966 rad + pos: 51.5,-5.5 + parent: 2 + - uid: 21504 components: - type: Transform - pos: -31.5,34.5 - parent: 89 - - uid: 10122 + rot: -1.5707963267948966 rad + pos: -93.5,30.5 + parent: 2 + - uid: 21505 components: - type: Transform - pos: -32.5,34.5 - parent: 89 - - uid: 10123 + rot: -1.5707963267948966 rad + pos: -95.5,30.5 + parent: 2 + - uid: 21506 components: - type: Transform - pos: -33.5,34.5 - parent: 89 - - uid: 10124 + rot: -1.5707963267948966 rad + pos: -91.5,30.5 + parent: 2 + - uid: 21507 components: - type: Transform - pos: -34.5,34.5 - parent: 89 - - uid: 10125 + rot: -1.5707963267948966 rad + pos: -90.5,30.5 + parent: 2 + - uid: 21508 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -86.5,26.5 - parent: 89 - - uid: 10134 + rot: -1.5707963267948966 rad + pos: -92.5,30.5 + parent: 2 + - uid: 21509 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,51.5 - parent: 89 - - uid: 10146 + rot: -1.5707963267948966 rad + pos: -94.5,30.5 + parent: 2 + - uid: 21510 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,50.5 - parent: 89 - - uid: 10184 + rot: -1.5707963267948966 rad + pos: -89.5,30.5 + parent: 2 + - uid: 21511 components: - type: Transform - pos: -41.5,22.5 - parent: 89 - - uid: 10185 + rot: -1.5707963267948966 rad + pos: -74.5,-10.5 + parent: 2 + - uid: 21512 components: - type: Transform - pos: 41.5,-11.5 - parent: 89 - - uid: 10199 + rot: -1.5707963267948966 rad + pos: -75.5,-10.5 + parent: 2 + - uid: 21513 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,49.5 - parent: 89 - - uid: 10268 + rot: -1.5707963267948966 rad + pos: -76.5,-10.5 + parent: 2 + - uid: 21514 components: - type: Transform - pos: -41.5,23.5 - parent: 89 - - uid: 10277 + rot: -1.5707963267948966 rad + pos: -77.5,-10.5 + parent: 2 + - uid: 21515 components: - type: Transform - pos: -41.5,33.5 - parent: 89 - - uid: 10278 + rot: -1.5707963267948966 rad + pos: -100.5,30.5 + parent: 2 + - uid: 21516 components: - type: Transform - pos: -40.5,33.5 - parent: 89 - - uid: 10279 + rot: -1.5707963267948966 rad + pos: -96.5,30.5 + parent: 2 + - uid: 21517 components: - type: Transform - pos: -40.5,34.5 - parent: 89 - - uid: 10280 + rot: -1.5707963267948966 rad + pos: -101.5,28.5 + parent: 2 + - uid: 21518 components: - type: Transform - pos: -39.5,34.5 - parent: 89 - - uid: 10281 + rot: -1.5707963267948966 rad + pos: -82.5,36.5 + parent: 2 + - uid: 21519 components: - type: Transform - pos: -38.5,34.5 - parent: 89 - - uid: 10282 + rot: -1.5707963267948966 rad + pos: -82.5,32.5 + parent: 2 + - uid: 21520 components: - type: Transform - pos: -37.5,34.5 - parent: 89 - - uid: 10283 + rot: -1.5707963267948966 rad + pos: -102.5,28.5 + parent: 2 + - uid: 21521 components: - type: Transform - pos: -36.5,34.5 - parent: 89 - - uid: 10303 + rot: -1.5707963267948966 rad + pos: -104.5,28.5 + parent: 2 + - uid: 21522 components: - type: Transform - pos: -41.5,25.5 - parent: 89 - - uid: 10305 + rot: -1.5707963267948966 rad + pos: -106.5,28.5 + parent: 2 + - uid: 21523 components: - type: Transform - rot: 3.141592653589793 rad - pos: -40.5,25.5 - parent: 89 - - uid: 10319 + rot: -1.5707963267948966 rad + pos: -108.5,28.5 + parent: 2 + - uid: 21524 components: - type: Transform - pos: -41.5,24.5 - parent: 89 - - uid: 10321 + rot: -1.5707963267948966 rad + pos: -110.5,28.5 + parent: 2 + - uid: 21525 components: - type: Transform - rot: 3.141592653589793 rad - pos: -32.5,47.5 - parent: 89 - - uid: 10327 + rot: -1.5707963267948966 rad + pos: -99.5,30.5 + parent: 2 + - uid: 21526 components: - type: Transform - pos: -18.5,25.5 - parent: 89 - - uid: 10328 + rot: -1.5707963267948966 rad + pos: -97.5,30.5 + parent: 2 + - uid: 21527 components: - type: Transform - pos: -18.5,26.5 - parent: 89 - - uid: 10329 + rot: -1.5707963267948966 rad + pos: -98.5,30.5 + parent: 2 + - uid: 21528 components: - type: Transform - pos: -18.5,27.5 - parent: 89 - - uid: 10330 + rot: -1.5707963267948966 rad + pos: -113.5,19.5 + parent: 2 + - uid: 21529 components: - type: Transform - pos: -18.5,28.5 - parent: 89 - - uid: 10331 + rot: -1.5707963267948966 rad + pos: -113.5,20.5 + parent: 2 + - uid: 21530 components: - type: Transform - pos: -18.5,29.5 - parent: 89 - - uid: 10332 + rot: -1.5707963267948966 rad + pos: -113.5,21.5 + parent: 2 + - uid: 21531 components: - type: Transform - pos: -18.5,30.5 - parent: 89 - - uid: 10333 + rot: -1.5707963267948966 rad + pos: -113.5,22.5 + parent: 2 + - uid: 21532 components: - type: Transform - pos: -18.5,31.5 - parent: 89 - - uid: 10334 + rot: -1.5707963267948966 rad + pos: -113.5,23.5 + parent: 2 + - uid: 21533 components: - type: Transform - pos: -18.5,32.5 - parent: 89 - - uid: 10336 + rot: -1.5707963267948966 rad + pos: -113.5,24.5 + parent: 2 + - uid: 21534 components: - type: Transform - pos: -19.5,33.5 - parent: 89 - - uid: 10338 + rot: -1.5707963267948966 rad + pos: -113.5,26.5 + parent: 2 + - uid: 21535 components: - type: Transform - pos: -20.5,34.5 - parent: 89 - - uid: 10339 + rot: -1.5707963267948966 rad + pos: 4.5,39.5 + parent: 2 + - uid: 21536 components: - type: Transform - pos: -21.5,34.5 - parent: 89 - - uid: 10340 + rot: -1.5707963267948966 rad + pos: -9.5,42.5 + parent: 2 + - uid: 21537 components: - type: Transform - pos: -22.5,34.5 - parent: 89 - - uid: 10341 + rot: -1.5707963267948966 rad + pos: -9.5,46.5 + parent: 2 + - uid: 21538 components: - type: Transform - pos: -23.5,34.5 - parent: 89 - - uid: 10385 + rot: -1.5707963267948966 rad + pos: -9.5,45.5 + parent: 2 + - uid: 21539 components: - type: Transform - pos: -107.5,16.5 - parent: 89 - - uid: 10386 + rot: -1.5707963267948966 rad + pos: -9.5,44.5 + parent: 2 + - uid: 21540 components: - type: Transform - pos: -109.5,16.5 - parent: 89 - - uid: 10387 + rot: -1.5707963267948966 rad + pos: -9.5,43.5 + parent: 2 + - uid: 21541 components: - type: Transform - pos: -118.5,18.5 - parent: 89 - - uid: 10388 + rot: -1.5707963267948966 rad + pos: 1.5,47.5 + parent: 2 + - uid: 21542 components: - type: Transform - pos: -121.5,-15.5 - parent: 89 - - uid: 10389 + rot: -1.5707963267948966 rad + pos: 4.5,38.5 + parent: 2 + - uid: 21543 components: - type: Transform - pos: -121.5,-14.5 - parent: 89 - - uid: 10393 + rot: -1.5707963267948966 rad + pos: -8.5,47.5 + parent: 2 + - uid: 21544 components: - type: Transform - pos: 23.5,13.5 - parent: 89 - - uid: 10402 + rot: -1.5707963267948966 rad + pos: -82.5,28.5 + parent: 2 + - uid: 21545 components: - type: Transform - pos: 53.5,-15.5 - parent: 89 - - uid: 10403 + rot: -1.5707963267948966 rad + pos: -82.5,27.5 + parent: 2 + - uid: 21546 components: - type: Transform - pos: -117.5,22.5 - parent: 89 - - uid: 10404 + rot: -1.5707963267948966 rad + pos: -80.5,22.5 + parent: 2 + - uid: 21547 components: - type: Transform - pos: -118.5,22.5 - parent: 89 - - uid: 10405 + rot: -1.5707963267948966 rad + pos: -82.5,26.5 + parent: 2 + - uid: 21548 components: - type: Transform - pos: -119.5,22.5 - parent: 89 - - uid: 10408 + rot: -1.5707963267948966 rad + pos: -82.5,25.5 + parent: 2 + - uid: 21549 components: - type: Transform - pos: -111.5,-18.5 - parent: 89 - - uid: 10409 + rot: -1.5707963267948966 rad + pos: -82.5,24.5 + parent: 2 + - uid: 21550 components: - type: Transform - pos: -110.5,-15.5 - parent: 89 - - uid: 10410 + rot: -1.5707963267948966 rad + pos: -82.5,23.5 + parent: 2 + - uid: 21551 components: - type: Transform - pos: -124.5,22.5 - parent: 89 - - uid: 10411 + rot: -1.5707963267948966 rad + pos: -82.5,22.5 + parent: 2 + - uid: 21552 components: - type: Transform - pos: -125.5,22.5 - parent: 89 - - uid: 10412 + rot: -1.5707963267948966 rad + pos: -79.5,22.5 + parent: 2 + - uid: 21553 components: - type: Transform - pos: -126.5,22.5 - parent: 89 - - uid: 10413 + rot: -1.5707963267948966 rad + pos: -78.5,22.5 + parent: 2 + - uid: 21554 components: - type: Transform - pos: -127.5,22.5 - parent: 89 - - uid: 10414 + rot: -1.5707963267948966 rad + pos: -77.5,22.5 + parent: 2 + - uid: 21555 components: - type: Transform - pos: -115.5,-20.5 - parent: 89 - - uid: 10420 + rot: -1.5707963267948966 rad + pos: -73.5,22.5 + parent: 2 + - uid: 21556 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-6.5 - parent: 89 - - uid: 10425 + pos: -72.5,22.5 + parent: 2 + - uid: 21557 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,25.5 - parent: 89 - - uid: 10437 + rot: -1.5707963267948966 rad + pos: -81.5,22.5 + parent: 2 + - uid: 21558 components: - type: Transform - pos: 22.5,13.5 - parent: 89 - - uid: 10438 + rot: -1.5707963267948966 rad + pos: -71.5,22.5 + parent: 2 + - uid: 21559 components: - type: Transform - pos: 21.5,13.5 - parent: 89 - - uid: 10439 + rot: -1.5707963267948966 rad + pos: -70.5,22.5 + parent: 2 + - uid: 21560 components: - type: Transform - pos: 20.5,13.5 - parent: 89 - - uid: 10440 + rot: -1.5707963267948966 rad + pos: -69.5,22.5 + parent: 2 + - uid: 21561 components: - type: Transform - pos: 19.5,13.5 - parent: 89 - - uid: 10441 + rot: -1.5707963267948966 rad + pos: -68.5,22.5 + parent: 2 + - uid: 21562 components: - type: Transform - pos: 18.5,13.5 - parent: 89 - - uid: 10442 + rot: -1.5707963267948966 rad + pos: -68.5,23.5 + parent: 2 + - uid: 21563 components: - type: Transform - pos: 17.5,10.5 - parent: 89 - - uid: 10443 + rot: -1.5707963267948966 rad + pos: -68.5,24.5 + parent: 2 + - uid: 21564 components: - type: Transform - pos: 17.5,12.5 - parent: 89 - - uid: 10444 + rot: -1.5707963267948966 rad + pos: -68.5,25.5 + parent: 2 + - uid: 21565 components: - type: Transform - pos: 17.5,11.5 - parent: 89 - - uid: 10445 + rot: -1.5707963267948966 rad + pos: -68.5,26.5 + parent: 2 + - uid: 21566 components: - type: Transform - pos: 8.5,39.5 - parent: 89 - - uid: 10448 + rot: -1.5707963267948966 rad + pos: -68.5,27.5 + parent: 2 + - uid: 21567 components: - type: Transform - pos: 20.5,10.5 - parent: 89 - - uid: 10449 + rot: -1.5707963267948966 rad + pos: 3.5,47.5 + parent: 2 + - uid: 21568 components: - type: Transform - pos: 22.5,10.5 - parent: 89 - - uid: 10454 + rot: -1.5707963267948966 rad + pos: 2.5,47.5 + parent: 2 + - uid: 21569 components: - type: Transform - pos: 15.5,9.5 - parent: 89 - - uid: 10455 + rot: -1.5707963267948966 rad + pos: -1.5,47.5 + parent: 2 + - uid: 21570 components: - type: Transform - pos: 15.5,6.5 - parent: 89 - - uid: 10456 + rot: -1.5707963267948966 rad + pos: -9.5,41.5 + parent: 2 + - uid: 21571 components: - type: Transform - pos: 15.5,5.5 - parent: 89 - - uid: 10473 + rot: -1.5707963267948966 rad + pos: -9.5,40.5 + parent: 2 + - uid: 21572 components: - type: Transform - pos: 20.5,9.5 - parent: 89 - - uid: 10484 + rot: -1.5707963267948966 rad + pos: -9.5,39.5 + parent: 2 + - uid: 21573 components: - type: Transform - pos: 15.5,8.5 - parent: 89 - - uid: 10489 + rot: -1.5707963267948966 rad + pos: -9.5,38.5 + parent: 2 + - uid: 21574 components: - type: Transform - pos: -111.5,-19.5 - parent: 89 - - uid: 10490 + rot: -1.5707963267948966 rad + pos: 4.5,43.5 + parent: 2 + - uid: 21575 components: - type: Transform - pos: -112.5,-20.5 - parent: 89 - - uid: 10505 + rot: -1.5707963267948966 rad + pos: 4.5,42.5 + parent: 2 + - uid: 21576 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-6.5 - parent: 89 - - uid: 10509 + pos: 4.5,41.5 + parent: 2 + - uid: 21577 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,46.5 - parent: 89 - - uid: 10510 + rot: -1.5707963267948966 rad + pos: 4.5,40.5 + parent: 2 + - uid: 21578 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -27.5,46.5 - parent: 89 - - uid: 10512 + rot: -1.5707963267948966 rad + pos: 4.5,46.5 + parent: 2 + - uid: 21579 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,47.5 - parent: 89 - - uid: 10513 + rot: -1.5707963267948966 rad + pos: 4.5,45.5 + parent: 2 + - uid: 21580 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,49.5 - parent: 89 - - uid: 10514 + rot: -1.5707963267948966 rad + pos: 4.5,44.5 + parent: 2 + - uid: 21581 components: - type: Transform - rot: 3.141592653589793 rad - pos: -27.5,50.5 - parent: 89 - - uid: 10515 + rot: -1.5707963267948966 rad + pos: -9.5,37.5 + parent: 2 + - uid: 21582 components: - type: Transform - pos: -86.5,41.5 - parent: 89 - - uid: 10519 + rot: -1.5707963267948966 rad + pos: -9.5,35.5 + parent: 2 + - uid: 21583 components: - type: Transform - pos: -86.5,18.5 - parent: 89 - - uid: 10520 + rot: -1.5707963267948966 rad + pos: -9.5,34.5 + parent: 2 + - uid: 21584 components: - type: Transform - pos: -87.5,31.5 - parent: 89 - - uid: 10521 + rot: -1.5707963267948966 rad + pos: -9.5,33.5 + parent: 2 + - uid: 21585 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,30.5 - parent: 89 - - uid: 10522 + pos: -9.5,32.5 + parent: 2 + - uid: 21586 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,31.5 - parent: 89 - - uid: 10523 + pos: -9.5,31.5 + parent: 2 + - uid: 21587 components: - type: Transform - pos: -87.5,34.5 - parent: 89 - - uid: 10524 + rot: -1.5707963267948966 rad + pos: -9.5,29.5 + parent: 2 + - uid: 21588 components: - type: Transform - pos: -87.5,33.5 - parent: 89 - - uid: 10525 + rot: -1.5707963267948966 rad + pos: -9.5,25.5 + parent: 2 + - uid: 21589 components: - type: Transform - pos: -87.5,32.5 - parent: 89 - - uid: 10527 + rot: -1.5707963267948966 rad + pos: -9.5,26.5 + parent: 2 + - uid: 21590 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,36.5 - parent: 89 - - uid: 10528 + pos: -9.5,27.5 + parent: 2 + - uid: 21591 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,36.5 - parent: 89 - - uid: 10529 + pos: -9.5,28.5 + parent: 2 + - uid: 21592 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,36.5 - parent: 89 - - uid: 10532 + pos: -134.5,14.5 + parent: 2 + - uid: 21593 components: - type: Transform rot: -1.5707963267948966 rad - pos: -88.5,40.5 - parent: 89 - - uid: 10533 + pos: -132.5,9.5 + parent: 2 + - uid: 21594 components: - type: Transform rot: -1.5707963267948966 rad - pos: -87.5,40.5 - parent: 89 - - uid: 10534 + pos: -133.5,9.5 + parent: 2 + - uid: 21595 components: - type: Transform rot: -1.5707963267948966 rad - pos: -86.5,40.5 - parent: 89 - - uid: 10535 + pos: -131.5,9.5 + parent: 2 + - uid: 21596 components: - type: Transform - pos: -83.5,18.5 - parent: 89 - - uid: 10536 + rot: -1.5707963267948966 rad + pos: -134.5,13.5 + parent: 2 + - uid: 21597 components: - type: Transform - pos: -86.5,17.5 - parent: 89 - - uid: 10537 + rot: -1.5707963267948966 rad + pos: -134.5,12.5 + parent: 2 + - uid: 21598 components: - type: Transform - pos: -86.5,15.5 - parent: 89 - - uid: 10565 + rot: -1.5707963267948966 rad + pos: -134.5,10.5 + parent: 2 + - uid: 21599 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,46.5 - parent: 89 - - uid: 10567 + rot: -1.5707963267948966 rad + pos: -134.5,11.5 + parent: 2 + - uid: 21600 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,46.5 - parent: 89 - - uid: 10568 + rot: -1.5707963267948966 rad + pos: -134.5,15.5 + parent: 2 + - uid: 21601 components: - type: Transform - pos: 53.5,-16.5 - parent: 89 - - uid: 10572 + rot: -1.5707963267948966 rad + pos: -134.5,16.5 + parent: 2 + - uid: 21602 components: - type: Transform - pos: -86.5,45.5 - parent: 89 - - uid: 10573 + rot: -1.5707963267948966 rad + pos: -134.5,17.5 + parent: 2 + - uid: 21603 components: - type: Transform - pos: -86.5,46.5 - parent: 89 - - uid: 10574 + rot: -1.5707963267948966 rad + pos: -134.5,18.5 + parent: 2 + - uid: 21604 components: - type: Transform - pos: -86.5,47.5 - parent: 89 - - uid: 10576 + rot: -1.5707963267948966 rad + pos: -134.5,19.5 + parent: 2 + - uid: 21605 components: - type: Transform - pos: -82.5,41.5 - parent: 89 - - uid: 10580 + rot: -1.5707963267948966 rad + pos: -124.5,-11.5 + parent: 2 + - uid: 21606 components: - type: Transform - pos: -82.5,45.5 - parent: 89 - - uid: 10581 + rot: -1.5707963267948966 rad + pos: -125.5,-11.5 + parent: 2 + - uid: 21607 components: - type: Transform - pos: -82.5,46.5 - parent: 89 - - uid: 10582 + rot: -1.5707963267948966 rad + pos: -126.5,-11.5 + parent: 2 + - uid: 21608 components: - type: Transform - pos: -82.5,47.5 - parent: 89 - - uid: 10600 + rot: -1.5707963267948966 rad + pos: -127.5,-11.5 + parent: 2 + - uid: 21609 components: - type: Transform - pos: 53.5,-13.5 - parent: 89 - - uid: 10610 + rot: -1.5707963267948966 rad + pos: -131.5,-13.5 + parent: 2 + - uid: 21610 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,35.5 - parent: 89 - - uid: 10626 + pos: -132.5,-13.5 + parent: 2 + - uid: 21611 components: - type: Transform - pos: -87.5,35.5 - parent: 89 - - uid: 10627 + rot: -1.5707963267948966 rad + pos: -132.5,0.5 + parent: 2 + - uid: 21612 components: - type: Transform - pos: -88.5,31.5 - parent: 89 - - uid: 10657 + rot: -1.5707963267948966 rad + pos: -131.5,-1.5 + parent: 2 + - uid: 21613 components: - type: Transform - pos: -36.5,12.5 - parent: 89 - - uid: 10662 + rot: 1.5707963267948966 rad + pos: -135.5,0.5 + parent: 2 + - uid: 21614 components: - type: Transform - pos: 5.5,-25.5 - parent: 89 - - uid: 10694 + rot: -1.5707963267948966 rad + pos: -8.5,-41.5 + parent: 2 + - uid: 21615 components: - type: Transform - pos: -8.5,-25.5 - parent: 89 - - uid: 10739 + rot: -1.5707963267948966 rad + pos: -116.5,22.5 + parent: 2 + - uid: 21616 components: - type: Transform - pos: 53.5,-14.5 - parent: 89 - - uid: 10759 + rot: -1.5707963267948966 rad + pos: 51.5,-2.5 + parent: 2 + - uid: 21617 components: - type: Transform - pos: 29.5,33.5 - parent: 89 - - uid: 10760 + rot: -1.5707963267948966 rad + pos: 7.5,-29.5 + parent: 2 + - uid: 21618 components: - type: Transform rot: -1.5707963267948966 rad - pos: -116.5,-11.5 - parent: 89 - - uid: 10772 + pos: 8.5,-28.5 + parent: 2 + - uid: 21619 components: - type: Transform - rot: 3.141592653589793 rad - pos: -28.5,38.5 - parent: 89 - - uid: 10777 + rot: -1.5707963267948966 rad + pos: -120.5,-16.5 + parent: 2 + - uid: 21620 components: - type: Transform - rot: 3.141592653589793 rad - pos: -31.5,38.5 - parent: 89 - - uid: 10787 + rot: -1.5707963267948966 rad + pos: 11.5,39.5 + parent: 2 + - uid: 21621 components: - type: Transform - pos: 14.5,38.5 - parent: 89 - - uid: 10793 + rot: -1.5707963267948966 rad + pos: 11.5,40.5 + parent: 2 + - uid: 21622 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-6.5 - parent: 89 - - uid: 10819 + pos: 10.5,43.5 + parent: 2 + - uid: 21623 components: - type: Transform - pos: -116.5,-20.5 - parent: 89 - - uid: 10824 + rot: -1.5707963267948966 rad + pos: -68.5,28.5 + parent: 2 + - uid: 21624 components: - type: Transform - pos: -119.5,-22.5 - parent: 89 - - uid: 10826 + rot: -1.5707963267948966 rad + pos: -68.5,32.5 + parent: 2 + - uid: 21625 components: - type: Transform - pos: -113.5,-20.5 - parent: 89 - - uid: 10827 + rot: -1.5707963267948966 rad + pos: -68.5,36.5 + parent: 2 + - uid: 21626 components: - type: Transform - pos: -115.5,-19.5 - parent: 89 - - uid: 10829 + rot: -1.5707963267948966 rad + pos: -68.5,40.5 + parent: 2 + - uid: 21627 components: - type: Transform - pos: -110.5,-21.5 - parent: 89 - - uid: 10839 + rot: -1.5707963267948966 rad + pos: -67.5,46.5 + parent: 2 + - uid: 21628 components: - type: Transform - pos: 16.5,33.5 - parent: 89 - - uid: 10864 + rot: -1.5707963267948966 rad + pos: -67.5,47.5 + parent: 2 + - uid: 21629 components: - type: Transform - pos: 15.5,27.5 - parent: 89 - - uid: 10875 + rot: -1.5707963267948966 rad + pos: -63.5,46.5 + parent: 2 + - uid: 21630 components: - type: Transform - pos: 30.5,33.5 - parent: 89 - - uid: 10876 + rot: -1.5707963267948966 rad + pos: -63.5,47.5 + parent: 2 + - uid: 21631 components: - type: Transform - pos: 26.5,31.5 - parent: 89 - - uid: 10895 + rot: -1.5707963267948966 rad + pos: -59.5,46.5 + parent: 2 + - uid: 21632 components: - type: Transform - pos: 31.5,33.5 - parent: 89 - - uid: 10896 + rot: -1.5707963267948966 rad + pos: -59.5,47.5 + parent: 2 + - uid: 21633 components: - type: Transform - pos: 32.5,33.5 - parent: 89 - - uid: 10898 + rot: -1.5707963267948966 rad + pos: -59.5,48.5 + parent: 2 + - uid: 21634 components: - type: Transform - pos: 33.5,32.5 - parent: 89 - - uid: 10899 + rot: -1.5707963267948966 rad + pos: -49.5,46.5 + parent: 2 + - uid: 21635 components: - type: Transform - pos: 33.5,33.5 - parent: 89 - - uid: 10900 + rot: -1.5707963267948966 rad + pos: -49.5,44.5 + parent: 2 + - uid: 21636 components: - type: Transform - pos: -129.5,24.5 - parent: 89 - - uid: 10903 + rot: -1.5707963267948966 rad + pos: -49.5,43.5 + parent: 2 + - uid: 21637 components: - type: Transform - pos: 28.5,33.5 - parent: 89 - - uid: 10904 + rot: -1.5707963267948966 rad + pos: -49.5,42.5 + parent: 2 + - uid: 21638 components: - type: Transform - pos: 19.5,33.5 - parent: 89 - - uid: 10918 + rot: -1.5707963267948966 rad + pos: -49.5,40.5 + parent: 2 + - uid: 21639 components: - type: Transform - pos: 26.5,32.5 - parent: 89 - - uid: 10921 + rot: -1.5707963267948966 rad + pos: -49.5,39.5 + parent: 2 + - uid: 21640 components: - type: Transform - pos: 9.5,28.5 - parent: 89 - - uid: 10923 + rot: -1.5707963267948966 rad + pos: -50.5,38.5 + parent: 2 + - uid: 21641 components: - type: Transform - pos: 18.5,33.5 - parent: 89 - - uid: 10927 + rot: -1.5707963267948966 rad + pos: -68.5,41.5 + parent: 2 + - uid: 21642 components: - type: Transform - pos: 11.5,28.5 - parent: 89 - - uid: 10928 + rot: -1.5707963267948966 rad + pos: -50.5,33.5 + parent: 2 + - uid: 21643 components: - type: Transform - pos: -128.5,22.5 - parent: 89 - - uid: 10932 + rot: -1.5707963267948966 rad + pos: -50.5,32.5 + parent: 2 + - uid: 21644 components: - type: Transform - pos: 33.5,31.5 - parent: 89 - - uid: 10956 + rot: -1.5707963267948966 rad + pos: -50.5,31.5 + parent: 2 + - uid: 21645 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-6.5 - parent: 89 - - uid: 10957 + pos: -50.5,30.5 + parent: 2 + - uid: 21646 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 17.5,13.5 - parent: 89 - - uid: 10961 + rot: -1.5707963267948966 rad + pos: -50.5,29.5 + parent: 2 + - uid: 21647 components: - type: Transform - pos: -18.5,22.5 - parent: 89 - - uid: 11000 + rot: -1.5707963267948966 rad + pos: -50.5,28.5 + parent: 2 + - uid: 21648 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-5.5 - parent: 89 - - uid: 11003 + pos: -50.5,27.5 + parent: 2 + - uid: 21649 components: - type: Transform - pos: 8.5,28.5 - parent: 89 - - uid: 11004 + rot: -1.5707963267948966 rad + pos: -51.5,27.5 + parent: 2 + - uid: 21650 components: - type: Transform - pos: 7.5,28.5 - parent: 89 - - uid: 11005 + rot: -1.5707963267948966 rad + pos: -51.5,26.5 + parent: 2 + - uid: 21651 components: - type: Transform - pos: 6.5,28.5 - parent: 89 - - uid: 11006 + rot: -1.5707963267948966 rad + pos: -51.5,25.5 + parent: 2 + - uid: 21652 components: - type: Transform - pos: 5.5,28.5 - parent: 89 - - uid: 11015 + rot: -1.5707963267948966 rad + pos: -51.5,23.5 + parent: 2 + - uid: 21653 components: - type: Transform - pos: 41.5,-21.5 - parent: 89 - - uid: 11019 + rot: -1.5707963267948966 rad + pos: -51.5,22.5 + parent: 2 + - uid: 21654 components: - type: Transform - pos: 41.5,-25.5 - parent: 89 - - uid: 11029 + rot: -1.5707963267948966 rad + pos: -50.5,22.5 + parent: 2 + - uid: 21655 components: - type: Transform - pos: 41.5,-23.5 - parent: 89 - - uid: 11039 + rot: -1.5707963267948966 rad + pos: -48.5,22.5 + parent: 2 + - uid: 21656 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-6.5 - parent: 89 - - uid: 11047 + pos: -47.5,22.5 + parent: 2 + - uid: 21657 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-4.5 - parent: 89 - - uid: 11099 + pos: -68.5,45.5 + parent: 2 + - uid: 21658 components: - type: Transform - pos: -52.5,29.5 - parent: 89 - - uid: 11151 + rot: -1.5707963267948966 rad + pos: -65.5,46.5 + parent: 2 + - uid: 21659 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,23.5 - parent: 89 - - uid: 11152 + rot: -1.5707963267948966 rad + pos: 9.5,43.5 + parent: 2 + - uid: 21660 components: - type: Transform - rot: 3.141592653589793 rad - pos: -39.5,22.5 - parent: 89 - - uid: 11212 + rot: -1.5707963267948966 rad + pos: -57.5,46.5 + parent: 2 + - uid: 21661 components: - type: Transform - pos: 7.5,31.5 - parent: 89 - - uid: 11213 + rot: -1.5707963267948966 rad + pos: -50.5,37.5 + parent: 2 + - uid: 21662 components: - type: Transform - pos: 5.5,31.5 - parent: 89 - - uid: 11220 + rot: -1.5707963267948966 rad + pos: -50.5,36.5 + parent: 2 + - uid: 21663 components: - type: Transform - pos: -18.5,23.5 - parent: 89 - - uid: 11262 + rot: -1.5707963267948966 rad + pos: -50.5,35.5 + parent: 2 + - uid: 21664 components: - type: Transform - pos: -52.5,28.5 - parent: 89 - - uid: 11456 + rot: -1.5707963267948966 rad + pos: -50.5,34.5 + parent: 2 + - uid: 21665 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-3.5 - parent: 89 - - uid: 11457 + pos: -50.5,49.5 + parent: 2 + - uid: 21666 components: - type: Transform - pos: -11.5,25.5 - parent: 89 - - uid: 11464 + rot: -1.5707963267948966 rad + pos: -25.5,34.5 + parent: 2 + - uid: 21667 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-2.5 - parent: 89 - - uid: 11495 + pos: -24.5,34.5 + parent: 2 + - uid: 21668 components: - type: Transform - pos: -16.5,25.5 - parent: 89 - - uid: 11600 + rot: -1.5707963267948966 rad + pos: -26.5,34.5 + parent: 2 + - uid: 21669 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 42.5,24.5 - parent: 89 - - uid: 11659 + rot: -1.5707963267948966 rad + pos: -35.5,34.5 + parent: 2 + - uid: 21670 components: - type: Transform - pos: 38.5,-21.5 - parent: 89 - - uid: 11724 + rot: -1.5707963267948966 rad + pos: -31.5,34.5 + parent: 2 + - uid: 21671 components: - type: Transform - pos: 40.5,-21.5 - parent: 89 - - uid: 11822 + rot: -1.5707963267948966 rad + pos: -32.5,34.5 + parent: 2 + - uid: 21672 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-7.5 - parent: 89 - - uid: 11823 + rot: -1.5707963267948966 rad + pos: -33.5,34.5 + parent: 2 + - uid: 21673 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-8.5 - parent: 89 - - uid: 11824 + rot: -1.5707963267948966 rad + pos: -34.5,34.5 + parent: 2 + - uid: 21674 components: - type: Transform - rot: 3.141592653589793 rad - pos: -81.5,-9.5 - parent: 89 - - uid: 11832 + rot: -1.5707963267948966 rad + pos: -41.5,33.5 + parent: 2 + - uid: 21675 components: - type: Transform - pos: 15.5,-14.5 - parent: 89 - - uid: 11833 + rot: -1.5707963267948966 rad + pos: -40.5,34.5 + parent: 2 + - uid: 21676 components: - type: Transform - pos: 14.5,-14.5 - parent: 89 - - uid: 11834 + rot: -1.5707963267948966 rad + pos: -39.5,34.5 + parent: 2 + - uid: 21677 components: - type: Transform - pos: 14.5,-12.5 - parent: 89 - - uid: 11835 + rot: -1.5707963267948966 rad + pos: -38.5,34.5 + parent: 2 + - uid: 21678 components: - type: Transform - pos: 16.5,-14.5 - parent: 89 - - uid: 11918 + rot: -1.5707963267948966 rad + pos: -37.5,34.5 + parent: 2 + - uid: 21679 components: - type: Transform - pos: 26.5,26.5 - parent: 89 - - uid: 12011 + rot: -1.5707963267948966 rad + pos: -36.5,34.5 + parent: 2 + - uid: 21680 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-4.5 - parent: 89 - - uid: 12571 + rot: -1.5707963267948966 rad + pos: -18.5,25.5 + parent: 2 + - uid: 21681 components: - type: Transform - pos: 26.5,27.5 - parent: 89 - - uid: 12577 + rot: -1.5707963267948966 rad + pos: -18.5,26.5 + parent: 2 + - uid: 21682 components: - type: Transform - pos: 37.5,-23.5 - parent: 89 - - uid: 12578 + rot: -1.5707963267948966 rad + pos: -18.5,27.5 + parent: 2 + - uid: 21683 components: - type: Transform - pos: 41.5,-24.5 - parent: 89 - - uid: 12587 + rot: -1.5707963267948966 rad + pos: -18.5,28.5 + parent: 2 + - uid: 21684 components: - type: Transform - pos: 22.5,27.5 - parent: 89 - - uid: 12593 + rot: -1.5707963267948966 rad + pos: -18.5,29.5 + parent: 2 + - uid: 21685 components: - type: Transform - pos: 11.5,35.5 - parent: 89 - - uid: 12594 + rot: -1.5707963267948966 rad + pos: -18.5,30.5 + parent: 2 + - uid: 21686 components: - type: Transform - pos: 15.5,38.5 - parent: 89 - - uid: 12595 + rot: -1.5707963267948966 rad + pos: -18.5,31.5 + parent: 2 + - uid: 21687 components: - type: Transform - pos: 5.5,35.5 - parent: 89 - - uid: 12597 + rot: -1.5707963267948966 rad + pos: -18.5,32.5 + parent: 2 + - uid: 21688 components: - type: Transform - pos: 8.5,35.5 - parent: 89 - - uid: 12613 + rot: -1.5707963267948966 rad + pos: -19.5,33.5 + parent: 2 + - uid: 21689 components: - type: Transform - pos: 15.5,35.5 - parent: 89 - - uid: 12660 + rot: -1.5707963267948966 rad + pos: -20.5,34.5 + parent: 2 + - uid: 21690 components: - type: Transform - pos: -52.5,27.5 - parent: 89 - - uid: 12699 + rot: -1.5707963267948966 rad + pos: -21.5,34.5 + parent: 2 + - uid: 21691 components: - type: Transform - pos: 32.5,27.5 - parent: 89 - - uid: 12765 + rot: -1.5707963267948966 rad + pos: -22.5,34.5 + parent: 2 + - uid: 21692 components: - type: Transform - pos: -35.5,12.5 - parent: 89 - - uid: 12814 + rot: -1.5707963267948966 rad + pos: -23.5,34.5 + parent: 2 + - uid: 21693 components: - type: Transform rot: -1.5707963267948966 rad - pos: 12.5,23.5 - parent: 89 - - uid: 12818 + pos: 53.5,-15.5 + parent: 2 + - uid: 21694 components: - type: Transform - pos: -41.5,26.5 - parent: 89 - - uid: 12829 + rot: -1.5707963267948966 rad + pos: -117.5,22.5 + parent: 2 + - uid: 21695 components: - type: Transform - pos: 28.5,27.5 - parent: 89 - - uid: 12854 + rot: -1.5707963267948966 rad + pos: -118.5,22.5 + parent: 2 + - uid: 21696 components: - type: Transform - pos: 37.5,-21.5 - parent: 89 - - uid: 12861 + rot: -1.5707963267948966 rad + pos: -119.5,22.5 + parent: 2 + - uid: 21697 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,0.5 - parent: 89 - - uid: 12972 + rot: -1.5707963267948966 rad + pos: -124.5,22.5 + parent: 2 + - uid: 21698 components: - type: Transform - pos: 37.5,-28.5 - parent: 89 - - uid: 12980 + rot: -1.5707963267948966 rad + pos: -125.5,22.5 + parent: 2 + - uid: 21699 components: - type: Transform - rot: 3.141592653589793 rad - pos: -89.5,19.5 - parent: 89 - - uid: 13208 + rot: -1.5707963267948966 rad + pos: -126.5,22.5 + parent: 2 + - uid: 21700 components: - type: Transform - pos: 27.5,27.5 - parent: 89 - - uid: 13267 + rot: -1.5707963267948966 rad + pos: -127.5,22.5 + parent: 2 + - uid: 21701 components: - type: Transform - pos: -36.5,-9.5 - parent: 89 - - uid: 13449 + rot: -1.5707963267948966 rad + pos: 8.5,39.5 + parent: 2 + - uid: 21702 components: - type: Transform - pos: -52.5,30.5 - parent: 89 - - uid: 14021 + rot: -1.5707963267948966 rad + pos: -87.5,31.5 + parent: 2 + - uid: 21703 components: - type: Transform - pos: 15.5,37.5 - parent: 89 - - uid: 14025 + rot: 1.5707963267948966 rad + pos: -86.5,31.5 + parent: 2 + - uid: 21704 components: - type: Transform - pos: 4.5,36.5 - parent: 89 - - uid: 14034 + rot: -1.5707963267948966 rad + pos: -87.5,34.5 + parent: 2 + - uid: 21705 components: - type: Transform - pos: 22.5,26.5 - parent: 89 - - uid: 14051 + rot: -1.5707963267948966 rad + pos: -87.5,33.5 + parent: 2 + - uid: 21706 components: - type: Transform - pos: -9.5,-37.5 - parent: 89 - - uid: 14060 + rot: -1.5707963267948966 rad + pos: -87.5,32.5 + parent: 2 + - uid: 21707 components: - type: Transform - pos: 8.5,40.5 - parent: 89 - - uid: 14068 + rot: -1.5707963267948966 rad + pos: -86.5,36.5 + parent: 2 + - uid: 21708 components: - type: Transform - pos: -128.5,23.5 - parent: 89 - - uid: 14069 + rot: -1.5707963267948966 rad + pos: -87.5,36.5 + parent: 2 + - uid: 21709 components: - type: Transform - pos: -128.5,24.5 - parent: 89 - - uid: 14087 + rot: -1.5707963267948966 rad + pos: 53.5,-16.5 + parent: 2 + - uid: 21710 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,-3.5 - parent: 89 - - uid: 14092 + rot: -1.5707963267948966 rad + pos: -86.5,45.5 + parent: 2 + - uid: 21711 components: - type: Transform - pos: 45.5,-10.5 - parent: 89 - - uid: 14093 + rot: -1.5707963267948966 rad + pos: -86.5,46.5 + parent: 2 + - uid: 21712 components: - type: Transform - pos: 44.5,-10.5 - parent: 89 - - uid: 14094 + rot: -1.5707963267948966 rad + pos: -86.5,47.5 + parent: 2 + - uid: 21713 components: - type: Transform - pos: 43.5,-10.5 - parent: 89 - - uid: 14179 + rot: -1.5707963267948966 rad + pos: -82.5,41.5 + parent: 2 + - uid: 21714 components: - type: Transform - pos: 41.5,-16.5 - parent: 89 - - uid: 14194 + rot: -1.5707963267948966 rad + pos: -82.5,45.5 + parent: 2 + - uid: 21715 components: - type: Transform - rot: 3.141592653589793 rad - pos: 16.5,-2.5 - parent: 89 - - uid: 14294 + rot: -1.5707963267948966 rad + pos: -82.5,46.5 + parent: 2 + - uid: 21716 components: - type: Transform - pos: 37.5,-19.5 - parent: 89 - - uid: 14559 + rot: -1.5707963267948966 rad + pos: -82.5,47.5 + parent: 2 + - uid: 21717 components: - type: Transform - pos: 35.5,-18.5 - parent: 89 - - uid: 14569 + rot: -1.5707963267948966 rad + pos: 53.5,-13.5 + parent: 2 + - uid: 21718 components: - type: Transform - pos: 53.5,-18.5 - parent: 89 - - uid: 14576 + rot: -1.5707963267948966 rad + pos: -32.5,35.5 + parent: 2 + - uid: 21719 components: - type: Transform - pos: -132.5,24.5 - parent: 89 - - uid: 14579 + rot: -1.5707963267948966 rad + pos: -87.5,35.5 + parent: 2 + - uid: 21720 components: - type: Transform - pos: -133.5,24.5 - parent: 89 - - uid: 14640 + rot: -1.5707963267948966 rad + pos: -88.5,31.5 + parent: 2 + - uid: 21721 components: - type: Transform - pos: -133.5,23.5 - parent: 89 - - uid: 14641 + rot: -1.5707963267948966 rad + pos: 53.5,-14.5 + parent: 2 + - uid: 21722 components: - type: Transform - pos: -133.5,22.5 - parent: 89 - - uid: 14642 + rot: -1.5707963267948966 rad + pos: 29.5,33.5 + parent: 2 + - uid: 21723 components: - type: Transform - pos: -133.5,20.5 - parent: 89 - - uid: 14844 + rot: -1.5707963267948966 rad + pos: -28.5,38.5 + parent: 2 + - uid: 21724 components: - type: Transform - pos: 30.5,27.5 - parent: 89 - - uid: 14848 + rot: -1.5707963267948966 rad + pos: -31.5,38.5 + parent: 2 + - uid: 21725 components: - type: Transform - pos: 16.5,27.5 - parent: 89 - - uid: 14875 + rot: -1.5707963267948966 rad + pos: 14.5,38.5 + parent: 2 + - uid: 21726 components: - type: Transform - pos: -10.5,-37.5 - parent: 89 - - uid: 14876 + rot: -1.5707963267948966 rad + pos: -116.5,-20.5 + parent: 2 + - uid: 21727 components: - type: Transform - pos: -11.5,-37.5 - parent: 89 - - uid: 14877 + rot: -1.5707963267948966 rad + pos: 16.5,33.5 + parent: 2 + - uid: 21728 components: - type: Transform - pos: -12.5,-37.5 - parent: 89 - - uid: 14878 + rot: -1.5707963267948966 rad + pos: 30.5,33.5 + parent: 2 + - uid: 21729 components: - type: Transform - pos: -13.5,-37.5 - parent: 89 - - uid: 14964 + rot: -1.5707963267948966 rad + pos: 31.5,33.5 + parent: 2 + - uid: 21730 components: - type: Transform - pos: -116.5,-13.5 - parent: 89 - - uid: 15026 + rot: -1.5707963267948966 rad + pos: 32.5,33.5 + parent: 2 + - uid: 21731 components: - type: Transform - pos: 22.5,32.5 - parent: 89 - - uid: 15039 + rot: -1.5707963267948966 rad + pos: 33.5,32.5 + parent: 2 + - uid: 21732 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-17.5 - parent: 89 - - uid: 15072 + pos: -129.5,24.5 + parent: 2 + - uid: 21733 components: - type: Transform - pos: 33.5,24.5 - parent: 89 - - uid: 15073 + rot: -1.5707963267948966 rad + pos: 28.5,33.5 + parent: 2 + - uid: 21734 components: - type: Transform - pos: 33.5,25.5 - parent: 89 - - uid: 15075 + rot: -1.5707963267948966 rad + pos: 19.5,33.5 + parent: 2 + - uid: 21735 components: - type: Transform - pos: 33.5,27.5 - parent: 89 - - uid: 15076 + rot: -1.5707963267948966 rad + pos: 18.5,33.5 + parent: 2 + - uid: 21736 components: - type: Transform - pos: 33.5,28.5 - parent: 89 - - uid: 15085 + rot: -1.5707963267948966 rad + pos: -128.5,22.5 + parent: 2 + - uid: 21737 components: - type: Transform - pos: 4.5,35.5 - parent: 89 - - uid: 15087 + rot: -1.5707963267948966 rad + pos: 33.5,31.5 + parent: 2 + - uid: 21738 components: - type: Transform - pos: 23.5,26.5 - parent: 89 - - uid: 15088 + rot: -1.5707963267948966 rad + pos: -11.5,25.5 + parent: 2 + - uid: 21739 components: - type: Transform - pos: 33.5,30.5 - parent: 89 - - uid: 15094 + rot: -1.5707963267948966 rad + pos: -16.5,25.5 + parent: 2 + - uid: 21740 components: - type: Transform - pos: 18.5,27.5 - parent: 89 - - uid: 15097 + rot: -1.5707963267948966 rad + pos: 42.5,24.5 + parent: 2 + - uid: 21741 components: - type: Transform - pos: 31.5,27.5 - parent: 89 - - uid: 15107 + rot: -1.5707963267948966 rad + pos: 15.5,35.5 + parent: 2 + - uid: 21742 components: - type: Transform - pos: 20.5,27.5 - parent: 89 - - uid: 15153 + rot: -1.5707963267948966 rad + pos: -41.5,26.5 + parent: 2 + - uid: 21743 components: - type: Transform - pos: 17.5,27.5 - parent: 89 - - uid: 15167 + rot: -1.5707963267948966 rad + pos: 37.5,-28.5 + parent: 2 + - uid: 21744 components: - type: Transform - pos: 15.5,28.5 - parent: 89 - - uid: 15168 + rot: -1.5707963267948966 rad + pos: 15.5,37.5 + parent: 2 + - uid: 21745 components: - type: Transform - pos: 15.5,30.5 - parent: 89 - - uid: 15169 + rot: -1.5707963267948966 rad + pos: -9.5,-37.5 + parent: 2 + - uid: 21746 components: - type: Transform - pos: 15.5,29.5 - parent: 89 - - uid: 15172 + rot: -1.5707963267948966 rad + pos: 8.5,40.5 + parent: 2 + - uid: 21747 components: - type: Transform - pos: 22.5,31.5 - parent: 89 - - uid: 15179 + rot: -1.5707963267948966 rad + pos: -128.5,23.5 + parent: 2 + - uid: 21748 components: - type: Transform - pos: 26.5,28.5 - parent: 89 - - uid: 15190 + rot: -1.5707963267948966 rad + pos: 53.5,-18.5 + parent: 2 + - uid: 21749 components: - type: Transform rot: -1.5707963267948966 rad - pos: 22.5,29.5 - parent: 89 - - uid: 15210 + pos: -132.5,24.5 + parent: 2 + - uid: 21750 components: - type: Transform - pos: -115.5,-17.5 - parent: 89 - - uid: 15244 + rot: -1.5707963267948966 rad + pos: -133.5,23.5 + parent: 2 + - uid: 21751 components: - type: Transform - pos: 29.5,27.5 - parent: 89 - - uid: 15300 + rot: -1.5707963267948966 rad + pos: -133.5,22.5 + parent: 2 + - uid: 21752 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,10.5 - parent: 89 - - uid: 15305 + pos: -133.5,20.5 + parent: 2 + - uid: 21753 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-17.5 - parent: 89 - - uid: 15313 + pos: -10.5,-37.5 + parent: 2 + - uid: 21754 components: - type: Transform - pos: -116.5,-19.5 - parent: 89 - - uid: 15334 + rot: -1.5707963267948966 rad + pos: -11.5,-37.5 + parent: 2 + - uid: 21755 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-17.5 - parent: 89 - - uid: 15362 + pos: -12.5,-37.5 + parent: 2 + - uid: 21756 components: - type: Transform - pos: 12.5,28.5 - parent: 89 - - uid: 15378 + rot: -1.5707963267948966 rad + pos: 33.5,30.5 + parent: 2 + - uid: 21757 components: - type: Transform - pos: -111.5,-15.5 - parent: 89 - - uid: 15396 + rot: 3.141592653589793 rad + pos: 45.5,10.5 + parent: 2 + - uid: 21758 components: - type: Transform + rot: -1.5707963267948966 rad pos: 15.5,33.5 - parent: 89 - - uid: 15397 + parent: 2 + - uid: 21759 components: - type: Transform - pos: 15.5,32.5 - parent: 89 - - uid: 15398 + rot: -1.5707963267948966 rad + pos: 15.5,36.5 + parent: 2 + - uid: 21760 components: - type: Transform - pos: 15.5,31.5 - parent: 89 - - uid: 15399 + rot: -1.5707963267948966 rad + pos: 20.5,33.5 + parent: 2 + - uid: 21761 components: - type: Transform - pos: 10.5,31.5 - parent: 89 - - uid: 15400 + rot: -1.5707963267948966 rad + pos: 17.5,33.5 + parent: 2 + - uid: 21762 components: - type: Transform - pos: 9.5,31.5 - parent: 89 - - uid: 15416 + rot: -1.5707963267948966 rad + pos: -10.5,25.5 + parent: 2 + - uid: 21763 components: - type: Transform - pos: 10.5,28.5 - parent: 89 - - uid: 15424 + rot: -1.5707963267948966 rad + pos: 15.5,34.5 + parent: 2 + - uid: 21764 components: - type: Transform - pos: 15.5,36.5 - parent: 89 - - uid: 15428 + rot: -1.5707963267948966 rad + pos: 47.5,-3.5 + parent: 2 + - uid: 21765 components: - type: Transform - pos: 20.5,33.5 - parent: 89 - - uid: 15429 + rot: -1.5707963267948966 rad + pos: -116.5,-16.5 + parent: 2 + - uid: 21766 components: - type: Transform - pos: 17.5,33.5 - parent: 89 - - uid: 15432 + rot: -1.5707963267948966 rad + pos: -118.5,-16.5 + parent: 2 + - uid: 21767 components: - type: Transform - pos: -10.5,25.5 - parent: 89 - - uid: 15473 + rot: -1.5707963267948966 rad + pos: -117.5,-16.5 + parent: 2 + - uid: 21768 components: - type: Transform - pos: 12.5,25.5 - parent: 89 - - uid: 15485 + rot: -1.5707963267948966 rad + pos: -127.5,-12.5 + parent: 2 + - uid: 21769 components: - type: Transform - pos: -110.5,-18.5 - parent: 89 - - uid: 15490 + rot: -1.5707963267948966 rad + pos: -111.5,-21.5 + parent: 2 + - uid: 21770 components: - type: Transform - pos: 12.5,30.5 - parent: 89 - - uid: 15537 + rot: -1.5707963267948966 rad + pos: -112.5,-21.5 + parent: 2 + - uid: 21771 components: - type: Transform - pos: 9.5,30.5 - parent: 89 - - uid: 15540 + rot: -1.5707963267948966 rad + pos: 34.5,28.5 + parent: 2 + - uid: 21772 components: - type: Transform - pos: 12.5,31.5 - parent: 89 - - uid: 15546 + rot: -1.5707963267948966 rad + pos: 37.5,24.5 + parent: 2 + - uid: 21773 components: - type: Transform - pos: 15.5,34.5 - parent: 89 - - uid: 15610 + rot: -1.5707963267948966 rad + pos: 38.5,24.5 + parent: 2 + - uid: 21774 components: - type: Transform - pos: -116.5,-15.5 - parent: 89 - - uid: 15612 + rot: -1.5707963267948966 rad + pos: 11.5,-20.5 + parent: 2 + - uid: 21775 components: - type: Transform - pos: -110.5,-17.5 - parent: 89 - - uid: 15613 + rot: -1.5707963267948966 rad + pos: 35.5,28.5 + parent: 2 + - uid: 21776 components: - type: Transform - pos: -116.5,-18.5 - parent: 89 - - uid: 15614 + rot: -1.5707963267948966 rad + pos: 36.5,28.5 + parent: 2 + - uid: 21777 components: - type: Transform - pos: -115.5,-18.5 - parent: 89 - - uid: 15615 + rot: -1.5707963267948966 rad + pos: -113.5,-21.5 + parent: 2 + - uid: 21778 components: - type: Transform - pos: -116.5,-17.5 - parent: 89 - - uid: 15616 + rot: -1.5707963267948966 rad + pos: 27.5,37.5 + parent: 2 + - uid: 21779 components: - type: Transform - pos: -116.5,-16.5 - parent: 89 - - uid: 15617 + pos: -2.5,-42.5 + parent: 2 + - uid: 21780 components: - type: Transform - pos: -115.5,-15.5 - parent: 89 - - uid: 15618 + rot: -1.5707963267948966 rad + pos: 53.5,-17.5 + parent: 2 + - uid: 21781 components: - type: Transform - pos: -115.5,-16.5 - parent: 89 - - uid: 15620 + rot: -1.5707963267948966 rad + pos: 48.5,-34.5 + parent: 2 + - uid: 21782 components: - type: Transform - pos: -111.5,-16.5 - parent: 89 - - uid: 15625 + rot: -1.5707963267948966 rad + pos: 44.5,-34.5 + parent: 2 + - uid: 21783 components: - type: Transform - pos: -110.5,-14.5 - parent: 89 - - uid: 15630 + rot: -1.5707963267948966 rad + pos: 46.5,-34.5 + parent: 2 + - uid: 21784 components: - type: Transform - pos: -116.5,-12.5 - parent: 89 - - uid: 15632 + rot: -1.5707963267948966 rad + pos: 43.5,-34.5 + parent: 2 + - uid: 21785 components: - type: Transform - pos: -112.5,-12.5 - parent: 89 - - uid: 15633 + rot: -1.5707963267948966 rad + pos: 42.5,-34.5 + parent: 2 + - uid: 21786 components: - type: Transform - pos: -113.5,-12.5 - parent: 89 - - uid: 15634 + rot: -1.5707963267948966 rad + pos: 40.5,-34.5 + parent: 2 + - uid: 21787 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -55.5,49.5 + parent: 2 + - uid: 21788 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -54.5,49.5 + parent: 2 + - uid: 21789 components: - type: Transform - pos: -114.5,-12.5 - parent: 89 - - uid: 15635 + rot: -1.5707963267948966 rad + pos: 45.5,18.5 + parent: 2 + - uid: 21790 components: - type: Transform - pos: -116.5,-14.5 - parent: 89 - - uid: 15699 + rot: -1.5707963267948966 rad + pos: 45.5,21.5 + parent: 2 + - uid: 21791 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-16.5 - parent: 89 - - uid: 15700 + rot: -1.5707963267948966 rad + pos: 26.5,33.5 + parent: 2 + - uid: 21792 components: - type: Transform - rot: 3.141592653589793 rad - pos: -117.5,-16.5 - parent: 89 - - uid: 15701 + rot: -1.5707963267948966 rad + pos: 43.5,20.5 + parent: 2 + - uid: 21793 components: - type: Transform - pos: -117.5,-23.5 - parent: 89 - - uid: 15703 + rot: -1.5707963267948966 rad + pos: 52.5,-7.5 + parent: 2 + - uid: 21794 components: - type: Transform - pos: -114.5,-21.5 - parent: 89 - - uid: 15704 + rot: -1.5707963267948966 rad + pos: 34.5,-18.5 + parent: 2 + - uid: 21795 components: - type: Transform - pos: -127.5,-12.5 - parent: 89 - - uid: 15705 + rot: -1.5707963267948966 rad + pos: 34.5,-20.5 + parent: 2 + - uid: 21796 components: - type: Transform - pos: -111.5,-24.5 - parent: 89 - - uid: 15706 + rot: -1.5707963267948966 rad + pos: 34.5,-21.5 + parent: 2 + - uid: 21797 components: - type: Transform - pos: -111.5,-23.5 - parent: 89 - - uid: 15707 + rot: -1.5707963267948966 rad + pos: 45.5,-34.5 + parent: 2 + - uid: 21798 components: - type: Transform - pos: -113.5,-24.5 - parent: 89 - - uid: 15708 + rot: -1.5707963267948966 rad + pos: 41.5,-34.5 + parent: 2 + - uid: 21799 components: - type: Transform - pos: -111.5,-21.5 - parent: 89 - - uid: 15709 + rot: -1.5707963267948966 rad + pos: 58.5,-18.5 + parent: 2 + - uid: 21800 components: - type: Transform - pos: -115.5,-23.5 - parent: 89 - - uid: 15710 + rot: -1.5707963267948966 rad + pos: 59.5,-29.5 + parent: 2 + - uid: 21801 components: - type: Transform - pos: -112.5,-21.5 - parent: 89 - - uid: 15711 + rot: -1.5707963267948966 rad + pos: 54.5,-34.5 + parent: 2 + - uid: 21802 components: - type: Transform - pos: -117.5,-24.5 - parent: 89 - - uid: 15712 + rot: -1.5707963267948966 rad + pos: 59.5,-28.5 + parent: 2 + - uid: 21803 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-20.5 - parent: 89 - - uid: 15713 + rot: -1.5707963267948966 rad + pos: 59.5,-30.5 + parent: 2 + - uid: 21804 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-20.5 - parent: 89 - - uid: 15714 + rot: -1.5707963267948966 rad + pos: 45.5,20.5 + parent: 2 + - uid: 21805 components: - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,-18.5 - parent: 89 - - uid: 15715 + rot: -1.5707963267948966 rad + pos: 9.5,-23.5 + parent: 2 + - uid: 21806 components: - type: Transform - rot: 3.141592653589793 rad - pos: -119.5,-18.5 - parent: 89 - - uid: 15781 + rot: -1.5707963267948966 rad + pos: -115.5,-21.5 + parent: 2 + - uid: 21807 components: - type: Transform - pos: 9.5,29.5 - parent: 89 - - uid: 15878 + rot: -1.5707963267948966 rad + pos: 22.5,-18.5 + parent: 2 + - uid: 21808 components: - type: Transform - pos: 11.5,31.5 - parent: 89 - - uid: 15919 + rot: -1.5707963267948966 rad + pos: 22.5,33.5 + parent: 2 + - uid: 21809 components: - type: Transform - pos: 35.5,24.5 - parent: 89 - - uid: 15921 + rot: -1.5707963267948966 rad + pos: -130.5,-13.5 + parent: 2 + - uid: 21810 components: - type: Transform - pos: 34.5,28.5 - parent: 89 - - uid: 15922 + rot: -1.5707963267948966 rad + pos: -127.5,-13.5 + parent: 2 + - uid: 21811 components: - type: Transform - pos: 36.5,24.5 - parent: 89 - - uid: 15923 + rot: -1.5707963267948966 rad + pos: -129.5,-14.5 + parent: 2 + - uid: 21812 components: - type: Transform - pos: 37.5,24.5 - parent: 89 - - uid: 15924 + rot: -1.5707963267948966 rad + pos: 21.5,33.5 + parent: 2 + - uid: 21813 components: - type: Transform - pos: 38.5,24.5 - parent: 89 - - uid: 15925 + rot: -1.5707963267948966 rad + pos: 21.5,34.5 + parent: 2 + - uid: 21814 components: - type: Transform - pos: 38.5,23.5 - parent: 89 - - uid: 15926 + rot: -1.5707963267948966 rad + pos: 22.5,38.5 + parent: 2 + - uid: 21815 components: - type: Transform - pos: 38.5,22.5 - parent: 89 - - uid: 15927 + rot: -1.5707963267948966 rad + pos: 27.5,34.5 + parent: 2 + - uid: 21816 components: - type: Transform - pos: 38.5,21.5 - parent: 89 - - uid: 15989 + rot: -1.5707963267948966 rad + pos: 21.5,37.5 + parent: 2 + - uid: 21817 components: - type: Transform - pos: 15.5,25.5 - parent: 89 - - uid: 16128 + rot: -1.5707963267948966 rad + pos: 27.5,33.5 + parent: 2 + - uid: 21818 components: - type: Transform - pos: 12.5,27.5 - parent: 89 - - uid: 16171 + rot: -1.5707963267948966 rad + pos: 26.5,38.5 + parent: 2 + - uid: 21819 components: - type: Transform - pos: 12.5,24.5 - parent: 89 - - uid: 16270 + rot: -1.5707963267948966 rad + pos: 22.5,39.5 + parent: 2 + - uid: 21820 components: - type: Transform - pos: 11.5,-20.5 - parent: 89 - - uid: 16272 + rot: -1.5707963267948966 rad + pos: 22.5,40.5 + parent: 2 + - uid: 21821 components: - type: Transform - pos: 35.5,28.5 - parent: 89 - - uid: 16273 + rot: -1.5707963267948966 rad + pos: 22.5,41.5 + parent: 2 + - uid: 21822 components: - type: Transform - pos: 36.5,28.5 - parent: 89 - - uid: 16436 + rot: -1.5707963267948966 rad + pos: 22.5,42.5 + parent: 2 + - uid: 21823 components: - type: Transform - pos: -113.5,-21.5 - parent: 89 - - uid: 16551 + rot: -1.5707963267948966 rad + pos: 26.5,39.5 + parent: 2 + - uid: 21824 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-17.5 - parent: 89 - - uid: 16552 + pos: 26.5,40.5 + parent: 2 + - uid: 21825 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-17.5 - parent: 89 - - uid: 16561 + pos: 26.5,41.5 + parent: 2 + - uid: 21826 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-17.5 - parent: 89 - - uid: 16714 + pos: 26.5,42.5 + parent: 2 + - uid: 21827 components: - type: Transform - pos: 27.5,37.5 - parent: 89 - - uid: 16717 + rot: -1.5707963267948966 rad + pos: 23.5,38.5 + parent: 2 + - uid: 21828 components: - type: Transform rot: -1.5707963267948966 rad - pos: 47.5,-17.5 - parent: 89 - - uid: 16862 + pos: 25.5,38.5 + parent: 2 + - uid: 21829 components: - type: Transform - pos: -2.5,-43.5 - parent: 89 - - uid: 16876 + rot: -1.5707963267948966 rad + pos: 26.5,43.5 + parent: 2 + - uid: 21830 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-17.5 - parent: 89 - - uid: 16877 + pos: 22.5,43.5 + parent: 2 + - uid: 21831 components: - type: Transform - pos: -2.5,-42.5 - parent: 89 - - uid: 16987 + rot: -1.5707963267948966 rad + pos: 59.5,-32.5 + parent: 2 + - uid: 21832 components: - type: Transform - pos: -118.5,-22.5 - parent: 89 - - uid: 16988 + rot: -1.5707963267948966 rad + pos: 59.5,-26.5 + parent: 2 + - uid: 21833 components: - type: Transform - pos: -115.5,-24.5 - parent: 89 - - uid: 16994 + rot: -1.5707963267948966 rad + pos: 59.5,-27.5 + parent: 2 + - uid: 21834 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,-17.5 - parent: 89 - - uid: 16997 + pos: 36.5,-28.5 + parent: 2 + - uid: 21835 components: - type: Transform rot: -1.5707963267948966 rad - pos: 50.5,-17.5 - parent: 89 - - uid: 17013 + pos: 56.5,-18.5 + parent: 2 + - uid: 21836 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-17.5 - parent: 89 - - uid: 17014 + pos: 38.5,-27.5 + parent: 2 + - uid: 21837 components: - type: Transform rot: -1.5707963267948966 rad - pos: 52.5,-17.5 - parent: 89 - - uid: 17015 + pos: 58.5,-16.5 + parent: 2 + - uid: 21838 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-17.5 - parent: 89 - - uid: 17021 + pos: 57.5,-16.5 + parent: 2 + - uid: 21839 components: - type: Transform - pos: 37.5,-25.5 - parent: 89 - - uid: 17022 + rot: -1.5707963267948966 rad + pos: 45.5,16.5 + parent: 2 + - uid: 21840 components: - type: Transform - pos: 37.5,-24.5 - parent: 89 - - uid: 17045 + rot: -1.5707963267948966 rad + pos: 49.5,16.5 + parent: 2 + - uid: 21841 components: - type: Transform - pos: 42.5,-21.5 - parent: 89 - - uid: 17046 + rot: -1.5707963267948966 rad + pos: 39.5,-27.5 + parent: 2 + - uid: 21842 components: - type: Transform - pos: 43.5,-21.5 - parent: 89 - - uid: 17051 + rot: -1.5707963267948966 rad + pos: 50.5,15.5 + parent: 2 + - uid: 21843 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-27.5 - parent: 89 - - uid: 17054 + rot: -1.5707963267948966 rad + pos: 44.5,18.5 + parent: 2 + - uid: 21844 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,-26.5 - parent: 89 - - uid: 17057 + rot: -1.5707963267948966 rad + pos: 9.5,-20.5 + parent: 2 + - uid: 21845 components: - type: Transform rot: -1.5707963267948966 rad - pos: 48.5,-34.5 - parent: 89 - - uid: 17058 + pos: 39.5,25.5 + parent: 2 + - uid: 21846 components: - type: Transform rot: -1.5707963267948966 rad - pos: 44.5,-34.5 - parent: 89 - - uid: 17059 + pos: 10.5,-20.5 + parent: 2 + - uid: 21847 components: - type: Transform rot: -1.5707963267948966 rad - pos: 46.5,-34.5 - parent: 89 - - uid: 17060 + pos: 43.5,18.5 + parent: 2 + - uid: 21848 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,-34.5 - parent: 89 - - uid: 17061 + pos: 37.5,25.5 + parent: 2 + - uid: 21849 components: - type: Transform rot: -1.5707963267948966 rad - pos: 42.5,-34.5 - parent: 89 - - uid: 17086 + pos: 44.5,21.5 + parent: 2 + - uid: 21850 components: - type: Transform - pos: -86.5,23.5 - parent: 89 - - uid: 17171 + rot: -1.5707963267948966 rad + pos: 43.5,21.5 + parent: 2 + - uid: 21851 components: - type: Transform rot: -1.5707963267948966 rad - pos: 40.5,-34.5 - parent: 89 - - uid: 17223 + pos: 39.5,24.5 + parent: 2 + - uid: 21852 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,16.5 - parent: 89 - - uid: 17250 + rot: -1.5707963267948966 rad + pos: 41.5,24.5 + parent: 2 + - uid: 21853 components: - type: Transform - pos: -55.5,49.5 - parent: 89 - - uid: 17251 + rot: -1.5707963267948966 rad + pos: 40.5,24.5 + parent: 2 + - uid: 21854 components: - type: Transform - pos: -54.5,49.5 - parent: 89 - - uid: 17647 + rot: 3.141592653589793 rad + pos: 49.5,12.5 + parent: 2 + - uid: 21855 components: - type: Transform - rot: 3.141592653589793 rad - pos: -30.5,52.5 - parent: 89 - - uid: 17648 + rot: -1.5707963267948966 rad + pos: 45.5,17.5 + parent: 2 + - uid: 21856 components: - type: Transform rot: 3.141592653589793 rad - pos: -29.5,52.5 - parent: 89 - - uid: 17656 + pos: 43.5,22.5 + parent: 2 + - uid: 21857 components: - type: Transform - pos: 45.5,18.5 - parent: 89 - - uid: 17668 + rot: -1.5707963267948966 rad + pos: 44.5,22.5 + parent: 2 + - uid: 21858 components: - type: Transform - pos: 45.5,21.5 - parent: 89 - - uid: 17687 + rot: -1.5707963267948966 rad + pos: 55.5,-18.5 + parent: 2 + - uid: 21859 components: - type: Transform - pos: 26.5,33.5 - parent: 89 - - uid: 17695 + rot: -1.5707963267948966 rad + pos: 37.5,-27.5 + parent: 2 + - uid: 21860 components: - type: Transform - pos: 43.5,20.5 - parent: 89 - - uid: 18144 + rot: -1.5707963267948966 rad + pos: 52.5,-34.5 + parent: 2 + - uid: 21861 components: - type: Transform - pos: 52.5,-7.5 - parent: 89 - - uid: 18161 + rot: -1.5707963267948966 rad + pos: 49.5,-34.5 + parent: 2 + - uid: 21862 components: - type: Transform - pos: 34.5,-18.5 - parent: 89 - - uid: 18162 + rot: -1.5707963267948966 rad + pos: 50.5,-34.5 + parent: 2 + - uid: 21863 components: - type: Transform - pos: 34.5,-19.5 - parent: 89 - - uid: 18163 + rot: -1.5707963267948966 rad + pos: 51.5,-34.5 + parent: 2 + - uid: 21864 components: - type: Transform - pos: 34.5,-20.5 - parent: 89 - - uid: 18164 + rot: -1.5707963267948966 rad + pos: 53.5,-34.5 + parent: 2 + - uid: 21865 components: - type: Transform - pos: 34.5,-21.5 - parent: 89 - - uid: 18165 + rot: -1.5707963267948966 rad + pos: 58.5,-24.5 + parent: 2 + - uid: 21866 components: - type: Transform - pos: 35.5,-21.5 - parent: 89 - - uid: 18166 + rot: -1.5707963267948966 rad + pos: -45.5,26.5 + parent: 2 + - uid: 21867 components: - type: Transform rot: -1.5707963267948966 rad - pos: 56.5,-23.5 - parent: 89 - - uid: 18167 + pos: -44.5,26.5 + parent: 2 + - uid: 21868 components: - type: Transform - pos: 36.5,-21.5 - parent: 89 - - uid: 18168 + rot: -1.5707963267948966 rad + pos: -43.5,26.5 + parent: 2 + - uid: 21869 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,-34.5 - parent: 89 - - uid: 18170 + pos: -42.5,26.5 + parent: 2 + - uid: 21870 components: - type: Transform rot: -1.5707963267948966 rad - pos: 41.5,-34.5 - parent: 89 - - uid: 18171 + pos: -47.5,25.5 + parent: 2 + - uid: 21871 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-18.5 - parent: 89 - - uid: 18187 + rot: -1.5707963267948966 rad + pos: -47.5,24.5 + parent: 2 + - uid: 21872 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-29.5 - parent: 89 - - uid: 18188 + rot: -1.5707963267948966 rad + pos: -47.5,23.5 + parent: 2 + - uid: 21873 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-34.5 - parent: 89 - - uid: 18194 + pos: 35.5,-28.5 + parent: 2 + - uid: 21874 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-28.5 - parent: 89 - - uid: 18195 + rot: -1.5707963267948966 rad + pos: 58.5,-19.5 + parent: 2 + - uid: 21875 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-30.5 - parent: 89 - - uid: 18202 + rot: -1.5707963267948966 rad + pos: 58.5,-21.5 + parent: 2 + - uid: 21876 components: - type: Transform - pos: 43.5,15.5 - parent: 89 - - uid: 18228 + rot: -1.5707963267948966 rad + pos: 59.5,-25.5 + parent: 2 + - uid: 21877 components: - type: Transform - pos: 44.5,15.5 - parent: 89 - - uid: 18345 + rot: -1.5707963267948966 rad + pos: 58.5,-23.5 + parent: 2 + - uid: 21878 components: - type: Transform - rot: 3.141592653589793 rad - pos: -43.5,23.5 - parent: 89 - - uid: 18429 + rot: -1.5707963267948966 rad + pos: 58.5,-22.5 + parent: 2 + - uid: 21879 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 45.5,20.5 - parent: 89 - - uid: 18430 + rot: -1.5707963267948966 rad + pos: 58.5,-17.5 + parent: 2 + - uid: 21880 components: - type: Transform - pos: 9.5,-23.5 - parent: 89 - - uid: 18439 + rot: -1.5707963267948966 rad + pos: 58.5,-20.5 + parent: 2 + - uid: 21881 components: - type: Transform rot: -1.5707963267948966 rad - pos: 30.5,0.5 - parent: 89 - - uid: 18650 + pos: 34.5,-28.5 + parent: 2 + - uid: 21882 components: - type: Transform rot: -1.5707963267948966 rad - pos: 28.5,0.5 - parent: 89 - - uid: 18710 + pos: 33.5,-21.5 + parent: 2 + - uid: 21883 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-3.5 - parent: 89 - - uid: 18711 + rot: -1.5707963267948966 rad + pos: 33.5,-22.5 + parent: 2 + - uid: 21884 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-0.5 - parent: 89 - - uid: 18975 + pos: 18.5,28.5 + parent: 2 + - uid: 21885 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-1.5 - parent: 89 - - uid: 18984 + pos: 30.5,28.5 + parent: 2 + - uid: 21886 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,-2.5 - parent: 89 - - uid: 19252 + pos: 31.5,28.5 + parent: 2 + - uid: 21887 components: - type: Transform - pos: 33.5,26.5 - parent: 89 - - uid: 19340 + pos: 29.5,28.5 + parent: 2 + - uid: 21888 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 30.5,-0.5 - parent: 89 - - uid: 19546 + pos: 27.5,28.5 + parent: 2 + - uid: 21889 components: - type: Transform - pos: -0.5,-26.5 - parent: 89 - - uid: 19567 + pos: 21.5,32.5 + parent: 2 + - uid: 21890 components: - type: Transform - pos: -113.5,-23.5 - parent: 89 - - uid: 19569 + pos: 20.5,31.5 + parent: 2 + - uid: 21891 components: - type: Transform - pos: -115.5,-21.5 - parent: 89 - - uid: 19570 + pos: 28.5,31.5 + parent: 2 + - uid: 21892 components: - type: Transform - pos: -116.5,-21.5 - parent: 89 - - uid: 19590 + pos: 32.5,31.5 + parent: 2 + - uid: 21893 components: - type: Transform - pos: 22.5,-18.5 - parent: 89 - - uid: 19718 + pos: 16.5,30.5 + parent: 2 + - uid: 21894 components: - type: Transform - pos: 22.5,33.5 - parent: 89 - - uid: 19764 + pos: 17.5,28.5 + parent: 2 + - uid: 21895 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-13.5 - parent: 89 - - uid: 19765 + pos: 28.5,29.5 + parent: 2 + - uid: 21896 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -130.5,-14.5 - parent: 89 - - uid: 19766 + pos: 32.5,28.5 + parent: 2 + - uid: 21897 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-14.5 - parent: 89 - - uid: 19767 + pos: 32.5,29.5 + parent: 2 + - uid: 21898 components: + - type: MetaData + name: Мягкая стена - type: Transform - rot: 3.141592653589793 rad - pos: -127.5,-13.5 - parent: 89 - - uid: 19768 + pos: 28.5,28.5 + parent: 2 + - uid: 21899 components: - type: Transform - rot: 3.141592653589793 rad - pos: -129.5,-14.5 - parent: 89 - - uid: 19781 + pos: 27.5,32.5 + parent: 2 + - uid: 21900 components: - type: Transform - pos: 23.5,-18.5 - parent: 89 - - uid: 19793 + pos: 32.5,32.5 + parent: 2 + - uid: 21901 components: - type: Transform - pos: 21.5,33.5 - parent: 89 - - uid: 19815 + pos: 30.5,32.5 + parent: 2 + - uid: 21902 components: - type: Transform - pos: 21.5,34.5 - parent: 89 - - uid: 19823 + pos: 29.5,32.5 + parent: 2 + - uid: 21903 components: - type: Transform - pos: 22.5,38.5 - parent: 89 - - uid: 19838 + pos: 31.5,32.5 + parent: 2 + - uid: 21904 components: - type: Transform - pos: 27.5,34.5 - parent: 89 - - uid: 19842 + pos: 28.5,32.5 + parent: 2 + - uid: 21905 components: - type: Transform - pos: 21.5,37.5 - parent: 89 - - uid: 19847 + pos: 16.5,31.5 + parent: 2 + - uid: 21906 components: - type: Transform - pos: 27.5,33.5 - parent: 89 - - uid: 19849 + pos: 19.5,32.5 + parent: 2 + - uid: 21907 components: - type: Transform - pos: 26.5,38.5 - parent: 89 - - uid: 19850 + pos: 18.5,32.5 + parent: 2 + - uid: 21908 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 22.5,39.5 - parent: 89 - - uid: 19851 + pos: 16.5,28.5 + parent: 2 + - uid: 21909 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 22.5,40.5 - parent: 89 - - uid: 19852 + pos: 16.5,29.5 + parent: 2 + - uid: 21910 components: - type: Transform - pos: 22.5,41.5 - parent: 89 - - uid: 19853 + pos: 20.5,32.5 + parent: 2 + - uid: 21911 components: - type: Transform - pos: 22.5,42.5 - parent: 89 - - uid: 19854 + pos: 17.5,32.5 + parent: 2 + - uid: 21912 components: - type: Transform - pos: 26.5,39.5 - parent: 89 - - uid: 19855 + pos: 16.5,32.5 + parent: 2 + - uid: 21913 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 26.5,40.5 - parent: 89 - - uid: 19856 + pos: 20.5,29.5 + parent: 2 + - uid: 21914 components: + - type: MetaData + name: Мягкая стена - type: Transform - pos: 26.5,41.5 - parent: 89 - - uid: 19857 + pos: 20.5,28.5 + parent: 2 + - uid: 21915 components: - type: Transform - pos: 26.5,42.5 - parent: 89 - - uid: 19858 + pos: 19.5,28.5 + parent: 2 + - uid: 21916 components: - type: Transform - pos: 23.5,38.5 - parent: 89 - - uid: 19859 + pos: 21.5,28.5 + parent: 2 + - uid: 21917 components: - type: Transform - pos: 25.5,38.5 - parent: 89 - - uid: 19862 + pos: 32.5,30.5 + parent: 2 + - uid: 21918 components: - type: Transform - pos: 26.5,43.5 - parent: 89 - - uid: 19864 + rot: -1.5707963267948966 rad + pos: -58.5,-18.5 + parent: 2 + - uid: 21919 components: - type: Transform - pos: 22.5,43.5 - parent: 89 - - uid: 20005 + rot: -1.5707963267948966 rad + pos: -64.5,-18.5 + parent: 2 + - uid: 21920 components: - type: Transform - pos: -47.5,26.5 - parent: 89 - - uid: 20104 + rot: -1.5707963267948966 rad + pos: -5.5,47.5 + parent: 2 + - uid: 21921 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-32.5 - parent: 89 - - uid: 20184 + pos: 45.5,2.5 + parent: 2 + - uid: 21922 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-26.5 - parent: 89 - - uid: 20203 + pos: -3.5,-45.5 + parent: 2 + - uid: 21923 components: - type: Transform rot: 3.141592653589793 rad - pos: 59.5,-27.5 - parent: 89 - - uid: 20210 + pos: -1.5,-43.5 + parent: 2 + - uid: 21924 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-27.5 - parent: 89 - - uid: 20246 + pos: -1.5,-44.5 + parent: 2 + - uid: 21925 components: - type: Transform rot: 3.141592653589793 rad - pos: 32.5,0.5 - parent: 89 - - uid: 20299 - components: - - type: Transform - pos: 59.5,-38.5 - parent: 89 - - uid: 20362 + pos: -1.5,-45.5 + parent: 2 + - uid: 21926 components: - type: Transform - pos: 62.5,-18.5 - parent: 89 - - uid: 20386 + rot: 1.5707963267948966 rad + pos: -107.5,-22.5 + parent: 2 + - uid: 21927 components: - type: Transform - pos: 36.5,-28.5 - parent: 89 - - uid: 20388 + rot: 1.5707963267948966 rad + pos: -110.5,-22.5 + parent: 2 + - uid: 21928 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-33.5 - parent: 89 - - uid: 20393 + pos: -114.5,22.5 + parent: 2 + - uid: 21929 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-18.5 - parent: 89 - - uid: 20396 + pos: -109.5,22.5 + parent: 2 + - uid: 21930 components: - type: Transform rot: 3.141592653589793 rad - pos: 56.5,-17.5 - parent: 89 - - uid: 20414 + pos: -99.5,28.5 + parent: 2 + - uid: 21931 components: - type: Transform rot: 3.141592653589793 rad - pos: 38.5,-27.5 - parent: 89 - - uid: 20421 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 39.5,-34.5 - parent: 89 - - uid: 20422 + pos: -102.5,22.5 + parent: 2 + - uid: 21932 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-16.5 - parent: 89 - - uid: 20426 + pos: -112.5,22.5 + parent: 2 + - uid: 21933 components: - type: Transform rot: 3.141592653589793 rad - pos: 57.5,-16.5 - parent: 89 - - uid: 20778 + pos: -107.5,22.5 + parent: 2 + - uid: 21934 components: - type: Transform rot: -1.5707963267948966 rad - pos: 45.5,16.5 - parent: 89 - - uid: 20779 + pos: -129.5,-13.5 + parent: 2 + - uid: 21935 components: - type: Transform rot: -1.5707963267948966 rad - pos: 49.5,16.5 - parent: 89 - - uid: 20782 + pos: -89.5,31.5 + parent: 2 + - uid: 21936 components: - type: Transform - pos: 40.5,15.5 - parent: 89 - - uid: 20801 + rot: 3.141592653589793 rad + pos: -86.5,44.5 + parent: 2 + - uid: 21937 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,51.5 - parent: 89 - - uid: 20802 + pos: -86.5,43.5 + parent: 2 + - uid: 21938 components: - type: Transform rot: 3.141592653589793 rad - pos: -32.5,51.5 - parent: 89 - - uid: 20808 + pos: -86.5,42.5 + parent: 2 + - uid: 21939 components: - type: Transform rot: 3.141592653589793 rad - pos: 39.5,-27.5 - parent: 89 - - uid: 20853 + pos: -86.5,41.5 + parent: 2 + - uid: 21940 components: - type: Transform - pos: -85.5,-5.5 - parent: 89 - - uid: 20856 + rot: 3.141592653589793 rad + pos: -86.5,40.5 + parent: 2 + - uid: 23888 components: - type: Transform - pos: 50.5,15.5 - parent: 89 - - uid: 20866 + pos: 1.5,-3.5 + parent: 23711 + - uid: 23889 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 41.5,20.5 - parent: 89 - - uid: 20871 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 23711 + - uid: 23890 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,18.5 - parent: 89 - - uid: 20872 + pos: 5.5,-3.5 + parent: 23711 + - uid: 23891 components: - type: Transform - pos: 44.5,18.5 - parent: 89 - - uid: 20874 + pos: 2.5,-3.5 + parent: 23711 + - uid: 23892 components: - type: Transform - rot: 3.141592653589793 rad - pos: 41.5,18.5 - parent: 89 - - uid: 20916 + rot: 1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 23711 + - uid: 23893 components: - type: Transform - pos: 9.5,-20.5 - parent: 89 - - uid: 20920 + rot: -1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 23711 + - uid: 23894 components: - type: Transform - pos: 38.5,18.5 - parent: 89 - - uid: 20924 + rot: 1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 23711 + - uid: 23895 components: - type: Transform - pos: 39.5,25.5 - parent: 89 - - uid: 20943 + rot: 3.141592653589793 rad + pos: 6.5,-9.5 + parent: 23711 + - uid: 23896 components: - type: Transform - pos: 10.5,-20.5 - parent: 89 - - uid: 20953 + rot: -1.5707963267948966 rad + pos: 0.5,-11.5 + parent: 23711 + - uid: 23897 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,18.5 - parent: 89 - - uid: 20955 + pos: 0.5,-4.5 + parent: 23711 + - uid: 23898 components: - type: Transform - pos: 37.5,25.5 - parent: 89 - - uid: 20962 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 23711 + - uid: 23899 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,21.5 - parent: 89 - - uid: 20967 + pos: 1.5,-10.5 + parent: 23711 + - uid: 23900 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,16.5 - parent: 89 - - uid: 20972 + pos: 2.5,-10.5 + parent: 23711 + - uid: 23901 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 23711 + - uid: 23902 components: - type: Transform rot: 3.141592653589793 rad - pos: 37.5,-26.5 - parent: 89 - - uid: 20973 + pos: 6.5,-11.5 + parent: 23711 + - uid: 23903 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-26.5 - parent: 89 - - uid: 20974 + pos: 5.5,-13.5 + parent: 23711 + - uid: 23904 components: - type: Transform rot: 3.141592653589793 rad - pos: 55.5,-25.5 - parent: 89 - - uid: 20981 + pos: 1.5,-13.5 + parent: 23711 + - uid: 23905 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,21.5 - parent: 89 - - uid: 20995 + pos: 2.5,-12.5 + parent: 23711 + - uid: 23906 components: - type: Transform rot: 1.5707963267948966 rad - pos: 39.5,24.5 - parent: 89 - - uid: 20996 + pos: 5.5,-12.5 + parent: 23711 + - uid: 23907 + components: + - type: Transform + pos: 3.5,-12.5 + parent: 23711 + - uid: 23908 + components: + - type: Transform + pos: 4.5,-12.5 + parent: 23711 + - uid: 23909 components: - type: Transform rot: 1.5707963267948966 rad - pos: 41.5,24.5 - parent: 89 - - uid: 21001 + pos: 1.5,-12.5 + parent: 23711 + - uid: 24265 components: - type: Transform rot: 1.5707963267948966 rad - pos: 40.5,24.5 - parent: 89 - - uid: 21008 + pos: 4.5,2.5 + parent: 23919 + - uid: 24266 components: - type: Transform - rot: 3.141592653589793 rad - pos: 49.5,12.5 - parent: 89 - - uid: 21009 + rot: -1.5707963267948966 rad + pos: 4.5,-6.5 + parent: 23919 + - uid: 24267 components: - type: Transform rot: 1.5707963267948966 rad - pos: 45.5,17.5 - parent: 89 - - uid: 21012 + pos: 6.5,-0.5 + parent: 23919 + - uid: 24268 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-32.5 - parent: 89 - - uid: 21044 + pos: 3.5,-0.5 + parent: 23919 + - uid: 24269 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,22.5 - parent: 89 - - uid: 21045 + rot: -1.5707963267948966 rad + pos: 8.5,4.5 + parent: 23919 + - uid: 24270 + components: + - type: Transform + pos: 0.5,4.5 + parent: 23919 + - uid: 24271 + components: + - type: Transform + pos: 0.5,3.5 + parent: 23919 + - uid: 24272 components: - type: Transform rot: 1.5707963267948966 rad - pos: 44.5,22.5 - parent: 89 - - uid: 21061 + pos: 7.5,-0.5 + parent: 23919 + - uid: 24273 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-20.5 - parent: 89 - - uid: 21292 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 23919 + - uid: 24274 components: - type: Transform - pos: 52.5,-21.5 - parent: 89 - - uid: 21293 + rot: 1.5707963267948966 rad + pos: 1.5,-6.5 + parent: 23919 + - uid: 24275 components: - type: Transform - pos: 53.5,-21.5 - parent: 89 - - uid: 21294 + rot: 1.5707963267948966 rad + pos: 1.5,-2.5 + parent: 23919 + - uid: 24276 components: - type: Transform - pos: 54.5,-21.5 - parent: 89 - - uid: 21295 + rot: 1.5707963267948966 rad + pos: 1.5,-1.5 + parent: 23919 + - uid: 24277 components: - type: Transform - pos: 52.5,-27.5 - parent: 89 - - uid: 21314 + rot: 1.5707963267948966 rad + pos: 1.5,-5.5 + parent: 23919 + - uid: 24278 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 54.5,-24.5 - parent: 89 - - uid: 21315 + pos: 8.5,0.5 + parent: 23919 + - uid: 24279 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-19.5 - parent: 89 - - uid: 21332 + rot: 1.5707963267948966 rad + pos: 0.5,0.5 + parent: 23919 + - uid: 24280 components: - type: Transform - rot: 3.141592653589793 rad - pos: 40.5,-27.5 - parent: 89 - - uid: 21334 + pos: 0.5,1.5 + parent: 23919 + - uid: 24281 components: - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-18.5 - parent: 89 - - uid: 21335 + pos: 1.5,2.5 + parent: 23919 + - uid: 24282 components: - type: Transform - rot: 3.141592653589793 rad - pos: 56.5,-16.5 - parent: 89 - - uid: 21336 + pos: 8.5,1.5 + parent: 23919 + - uid: 24283 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-27.5 - parent: 89 - - uid: 21337 + rot: 1.5707963267948966 rad + pos: 1.5,-0.5 + parent: 23919 + - uid: 24284 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-24.5 - parent: 89 - - uid: 21342 + rot: 1.5707963267948966 rad + pos: 1.5,-4.5 + parent: 23919 + - uid: 24285 components: - type: Transform - rot: 3.141592653589793 rad - pos: 47.5,-21.5 - parent: 89 - - uid: 21343 + pos: 7.5,-1.5 + parent: 23919 + - uid: 24286 components: - type: Transform - rot: 3.141592653589793 rad - pos: 52.5,-32.5 - parent: 89 - - uid: 21347 + pos: 7.5,-2.5 + parent: 23919 + - uid: 24287 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 52.5,-34.5 - parent: 89 - - uid: 21356 + pos: 7.5,-3.5 + parent: 23919 + - uid: 24288 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 49.5,-34.5 - parent: 89 - - uid: 21363 + pos: 7.5,-4.5 + parent: 23919 + - uid: 24289 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 50.5,-34.5 - parent: 89 - - uid: 21364 + pos: 7.5,-5.5 + parent: 23919 + - uid: 24290 components: - type: Transform - pos: 51.5,-26.5 - parent: 89 - - uid: 21367 + pos: 7.5,-6.5 + parent: 23919 + - uid: 24291 components: - type: Transform - pos: 52.5,-19.5 - parent: 89 - - uid: 21368 + pos: 5.5,2.5 + parent: 23919 + - uid: 24292 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-22.5 - parent: 89 - - uid: 21369 + pos: 5.5,-0.5 + parent: 23919 + - uid: 24293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 5.5,-2.5 + parent: 23919 + - uid: 24294 components: - type: Transform rot: -1.5707963267948966 rad - pos: 51.5,-34.5 - parent: 89 - - uid: 21378 + pos: 1.5,-10.5 + parent: 23919 + - uid: 24295 components: - type: Transform rot: -1.5707963267948966 rad - pos: 53.5,-34.5 - parent: 89 - - uid: 21382 + pos: 2.5,-10.5 + parent: 23919 + - uid: 24296 components: - type: Transform - pos: 52.5,-18.5 - parent: 89 - - uid: 21390 + rot: -1.5707963267948966 rad + pos: 4.5,-10.5 + parent: 23919 + - uid: 24297 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-33.5 - parent: 89 - - uid: 21458 + rot: -1.5707963267948966 rad + pos: 6.5,-10.5 + parent: 23919 + - uid: 24298 components: - type: Transform rot: -1.5707963267948966 rad - pos: 54.5,-27.5 - parent: 89 - - uid: 21460 + pos: 7.5,-10.5 + parent: 23919 + - uid: 24299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 23919 + - uid: 24300 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-24.5 - parent: 89 - - uid: 21480 + pos: 6.5,-11.5 + parent: 23919 + - uid: 24301 components: - type: Transform rot: 3.141592653589793 rad - pos: 47.5,-18.5 - parent: 89 - - uid: 21484 + pos: 2.5,-11.5 + parent: 23919 + - uid: 24302 components: - type: Transform - pos: -45.5,26.5 - parent: 89 - - uid: 21486 + pos: 7.5,-7.5 + parent: 23919 + - uid: 24303 components: - type: Transform - pos: -44.5,26.5 - parent: 89 - - uid: 21487 + rot: 1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 23919 + - uid: 24304 components: - type: Transform - pos: -43.5,26.5 - parent: 89 - - uid: 21488 + rot: -1.5707963267948966 rad + pos: 5.5,-6.5 + parent: 23919 + - uid: 24305 components: - type: Transform - pos: -42.5,26.5 - parent: 89 - - uid: 21489 + rot: -1.5707963267948966 rad + pos: 6.5,-6.5 + parent: 23919 + - uid: 24306 components: - type: Transform - pos: -47.5,25.5 - parent: 89 - - uid: 21490 + pos: 1.5,-7.5 + parent: 23919 + - uid: 24307 components: - type: Transform - pos: -47.5,24.5 - parent: 89 - - uid: 21491 + rot: 1.5707963267948966 rad + pos: 8.5,-8.5 + parent: 23919 + - uid: 24308 components: - type: Transform - pos: -47.5,23.5 - parent: 89 - - uid: 21522 + rot: 1.5707963267948966 rad + pos: 8.5,-9.5 + parent: 23919 + - uid: 24309 components: - type: Transform - pos: 52.5,-23.5 - parent: 89 - - uid: 21523 + rot: 1.5707963267948966 rad + pos: 0.5,-8.5 + parent: 23919 + - uid: 24310 components: - type: Transform - pos: 53.5,-27.5 - parent: 89 - - uid: 21525 + rot: 1.5707963267948966 rad + pos: 0.5,-9.5 + parent: 23919 + - uid: 24311 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-32.5 - parent: 89 - - uid: 21611 + rot: 1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 23919 + - uid: 24312 components: - type: Transform - pos: 52.5,-26.5 - parent: 89 - - uid: 21614 + rot: 1.5707963267948966 rad + pos: 3.5,-5.5 + parent: 23919 + - uid: 24313 components: - type: Transform - pos: 33.5,-28.5 - parent: 89 - - uid: 21623 + rot: 1.5707963267948966 rad + pos: 3.5,-3.5 + parent: 23919 + - uid: 24314 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-32.5 - parent: 89 - - uid: 21743 + rot: 1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 23919 + - uid: 24315 components: - type: Transform - pos: 35.5,-28.5 - parent: 89 - - uid: 21747 + rot: -1.5707963267948966 rad + pos: 4.5,-12.5 + parent: 23919 + - uid: 24316 components: - type: Transform - rot: 3.141592653589793 rad - pos: 48.5,-33.5 - parent: 89 - - uid: 21753 + pos: 4.5,-0.5 + parent: 23919 + - uid: 24317 components: - type: Transform - rot: 3.141592653589793 rad - pos: 50.5,-26.5 - parent: 89 - - uid: 21754 + pos: 6.5,2.5 + parent: 23919 + - uid: 24318 components: - type: Transform rot: 3.141592653589793 rad - pos: 44.5,-26.5 - parent: 89 - - uid: 21757 + pos: 0.5,-3.5 + parent: 23919 + - uid: 24319 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-31.5 - parent: 89 - - uid: 21758 + pos: 8.5,-4.5 + parent: 23919 + - uid: 24320 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-28.5 - parent: 89 - - uid: 21760 + pos: 8.5,-3.5 + parent: 23919 + - uid: 24321 components: - type: Transform rot: 3.141592653589793 rad - pos: 52.5,-33.5 - parent: 89 - - uid: 21763 + pos: 0.5,-4.5 + parent: 23919 + - uid: 24322 components: - type: Transform rot: 3.141592653589793 rad - pos: 54.5,-29.5 - parent: 89 - - uid: 21766 + pos: 8.5,2.5 + parent: 23919 + - uid: 24323 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-21.5 - parent: 89 - - uid: 21773 + pos: 0.5,2.5 + parent: 23919 + - uid: 24324 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-19.5 - parent: 89 - - uid: 21774 + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 23919 + - uid: 24325 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-21.5 - parent: 89 - - uid: 21775 + rot: 1.5707963267948966 rad + pos: 0.5,-10.5 + parent: 23919 + - uid: 24326 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 55.5,-20.5 - parent: 89 - - uid: 21776 + pos: 8.5,3.5 + parent: 23919 + - uid: 24327 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-21.5 - parent: 89 - - uid: 21788 + pos: 2.5,5.5 + parent: 23919 + - uid: 24328 components: - type: Transform - rot: 3.141592653589793 rad - pos: 59.5,-25.5 - parent: 89 - - uid: 21789 + pos: 7.5,2.5 + parent: 23919 + - uid: 24329 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-23.5 - parent: 89 - - uid: 21790 + pos: 3.5,1.5 + parent: 23919 + - uid: 24330 components: - type: Transform rot: -1.5707963267948966 rad - pos: 58.5,-22.5 - parent: 89 - - uid: 21814 + pos: 3.5,2.5 + parent: 23919 + - uid: 24429 components: - type: Transform - rot: 3.141592653589793 rad - pos: 58.5,-17.5 - parent: 89 - - uid: 21820 + pos: 1.5,-0.5 + parent: 24340 + - uid: 24430 components: - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,-33.5 - parent: 89 - - uid: 21825 + pos: -0.5,-0.5 + parent: 24340 + - uid: 24431 components: - type: Transform rot: 3.141592653589793 rad - pos: 50.5,-32.5 - parent: 89 - - uid: 21828 + pos: -0.5,-4.5 + parent: 24340 + - uid: 24432 components: - type: Transform rot: 3.141592653589793 rad - pos: 58.5,-20.5 - parent: 89 - - uid: 21902 - components: - - type: Transform - pos: 47.5,-38.5 - parent: 89 - - uid: 21946 - components: - - type: Transform - pos: 63.5,-29.5 - parent: 89 - - uid: 21956 + pos: -0.5,-5.5 + parent: 24340 + - uid: 24433 components: - type: Transform - pos: 36.5,-35.5 - parent: 89 - - uid: 22116 + rot: 1.5707963267948966 rad + pos: -0.5,0.5 + parent: 24340 + - uid: 24434 components: - type: Transform - pos: -130.5,-12.5 - parent: 89 - - uid: 22117 + rot: 1.5707963267948966 rad + pos: 1.5,0.5 + parent: 24340 + - uid: 24435 components: - type: Transform - pos: -130.5,-11.5 - parent: 89 - - uid: 22121 + rot: 1.5707963267948966 rad + pos: 1.5,-3.5 + parent: 24340 + - uid: 24436 components: - type: Transform - pos: -130.5,-10.5 - parent: 89 - - uid: 22351 + rot: 3.141592653589793 rad + pos: 2.5,-1.5 + parent: 24340 + - uid: 24437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 53.5,-24.5 - parent: 89 - - uid: 22355 + rot: 3.141592653589793 rad + pos: -1.5,-1.5 + parent: 24340 + - uid: 24438 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-24.5 - parent: 89 - - uid: 22359 + pos: 1.5,-4.5 + parent: 24340 + - uid: 24439 components: - type: Transform rot: -1.5707963267948966 rad - pos: 55.5,-23.5 - parent: 89 - - uid: 24566 + pos: 1.5,-5.5 + parent: 24340 + - uid: 24440 components: - type: Transform - pos: -2.5,-26.5 - parent: 89 - - uid: 25051 + rot: 3.141592653589793 rad + pos: -0.5,-3.5 + parent: 24340 + - uid: 27908 components: - type: Transform - pos: -16.5,-18.5 - parent: 22565 - - uid: 25052 + rot: 3.141592653589793 rad + pos: 3.5,-15.5 + parent: 27260 + - uid: 27909 components: - type: Transform - pos: -14.5,-19.5 - parent: 22565 - - uid: 25053 + pos: 0.5,0.5 + parent: 27260 + - uid: 27910 components: - type: Transform - pos: -16.5,-20.5 - parent: 22565 - - uid: 25054 + pos: 0.5,-3.5 + parent: 27260 + - uid: 27911 components: - type: Transform - pos: -14.5,-20.5 - parent: 22565 - - uid: 25055 + pos: 2.5,0.5 + parent: 27260 + - uid: 27912 components: - type: Transform - pos: -14.5,-18.5 - parent: 22565 - - uid: 25056 + rot: 3.141592653589793 rad + pos: 3.5,0.5 + parent: 27260 + - uid: 27913 components: - type: Transform - pos: -16.5,-19.5 - parent: 22565 - - uid: 25057 + rot: -1.5707963267948966 rad + pos: -3.5,-2.5 + parent: 27260 + - uid: 27914 components: - type: Transform - pos: -8.5,-22.5 - parent: 22565 - - uid: 25058 + pos: 2.5,-3.5 + parent: 27260 + - uid: 27915 components: - type: Transform - pos: -12.5,-20.5 - parent: 22565 - - uid: 25059 + pos: -1.5,0.5 + parent: 27260 + - uid: 27916 components: - type: Transform - pos: -8.5,-25.5 - parent: 22565 - - uid: 25060 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 27260 + - uid: 27917 components: - type: Transform - pos: -18.5,-25.5 - parent: 22565 - - uid: 25061 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 27260 + - uid: 27918 components: - type: Transform - pos: -10.5,-20.5 - parent: 22565 - - uid: 25062 + rot: 3.141592653589793 rad + pos: 3.5,-3.5 + parent: 27260 + - uid: 27919 components: - type: Transform - pos: -16.5,-27.5 - parent: 22565 - - uid: 25063 + pos: -1.5,-3.5 + parent: 27260 + - uid: 27920 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-16.5 - parent: 22565 - - uid: 25064 + rot: -1.5707963267948966 rad + pos: -3.5,-1.5 + parent: 27260 + - uid: 27921 components: - type: Transform - pos: -18.5,-22.5 - parent: 22565 - - uid: 25065 + rot: -1.5707963267948966 rad + pos: 4.5,-2.5 + parent: 27260 + - uid: 27922 components: - type: Transform - pos: -10.5,-27.5 - parent: 22565 - - uid: 25066 + rot: -1.5707963267948966 rad + pos: -3.5,-0.5 + parent: 27260 + - uid: 27923 components: - type: Transform - pos: -12.5,-19.5 - parent: 22565 - - uid: 25067 + rot: -1.5707963267948966 rad + pos: 4.5,-1.5 + parent: 27260 + - uid: 27924 components: - type: Transform - pos: -10.5,-19.5 - parent: 22565 - - uid: 25068 + rot: -1.5707963267948966 rad + pos: 4.5,-0.5 + parent: 27260 + - uid: 27925 components: - type: Transform - pos: -10.5,-18.5 - parent: 22565 - - uid: 25069 + rot: -1.5707963267948966 rad + pos: -3.5,0.5 + parent: 27260 + - uid: 27926 components: - type: Transform - pos: -12.5,-18.5 - parent: 22565 - - uid: 25070 + rot: -1.5707963267948966 rad + pos: 6.5,-7.5 + parent: 27260 + - uid: 27927 components: - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-18.5 - parent: 22565 - - uid: 25071 + rot: -1.5707963267948966 rad + pos: 7.5,-4.5 + parent: 27260 + - uid: 27928 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-17.5 - parent: 22565 - - uid: 25072 + rot: -1.5707963267948966 rad + pos: 7.5,-3.5 + parent: 27260 + - uid: 27929 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-18.5 - parent: 22565 - - uid: 25073 + rot: -1.5707963267948966 rad + pos: 5.5,-7.5 + parent: 27260 + - uid: 27930 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-18.5 - parent: 22565 - - uid: 25074 + rot: -1.5707963267948966 rad + pos: 4.5,-7.5 + parent: 27260 + - uid: 27931 components: - type: Transform rot: -1.5707963267948966 rad - pos: -3.5,-18.5 - parent: 22565 - - uid: 25075 + pos: -3.5,-3.5 + parent: 27260 + - uid: 27932 components: - type: Transform rot: -1.5707963267948966 rad - pos: -2.5,-18.5 - parent: 22565 - - uid: 25076 + pos: 4.5,0.5 + parent: 27260 + - uid: 27933 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-18.5 - parent: 22565 - - uid: 25077 + pos: 6.5,-3.5 + parent: 27260 + - uid: 27934 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-17.5 - parent: 22565 - - uid: 25078 + pos: 3.5,-7.5 + parent: 27260 + - uid: 27935 components: - type: Transform rot: -1.5707963267948966 rad - pos: -1.5,-16.5 - parent: 22565 - - uid: 25079 + pos: -2.5,-4.5 + parent: 27260 + - uid: 27936 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-15.5 - parent: 22565 - - uid: 25080 + rot: -1.5707963267948966 rad + pos: 3.5,-4.5 + parent: 27260 + - uid: 27937 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-18.5 - parent: 22565 - - uid: 25081 + rot: -1.5707963267948966 rad + pos: 5.5,-3.5 + parent: 27260 + - uid: 27938 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-18.5 - parent: 22565 - - uid: 25082 + rot: -1.5707963267948966 rad + pos: 4.5,-3.5 + parent: 27260 + - uid: 27939 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-18.5 - parent: 22565 - - uid: 25083 + rot: -1.5707963267948966 rad + pos: 7.5,-6.5 + parent: 27260 + - uid: 27940 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-15.5 - parent: 22565 - - uid: 25084 + rot: -1.5707963267948966 rad + pos: 7.5,-7.5 + parent: 27260 + - uid: 27941 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,-15.5 - parent: 22565 - - uid: 25085 + rot: -1.5707963267948966 rad + pos: 7.5,-5.5 + parent: 27260 + - uid: 27942 components: - type: Transform - rot: 3.141592653589793 rad - pos: -4.5,-15.5 - parent: 22565 - - uid: 25086 + rot: -1.5707963267948966 rad + pos: -2.5,-7.5 + parent: 27260 + - uid: 27943 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -6.5,-15.5 - parent: 22565 - - uid: 25087 + rot: -1.5707963267948966 rad + pos: -4.5,-3.5 + parent: 27260 + - uid: 27944 components: - type: Transform - pos: -16.5,-9.5 - parent: 22565 - - uid: 25088 + rot: -1.5707963267948966 rad + pos: -5.5,-3.5 + parent: 27260 + - uid: 27945 components: - type: Transform - rot: 3.141592653589793 rad - pos: -3.5,-15.5 - parent: 22565 - - uid: 25089 + rot: -1.5707963267948966 rad + pos: -6.5,-3.5 + parent: 27260 + - uid: 27946 components: - type: Transform - pos: -21.5,-10.5 - parent: 22565 - - uid: 25090 + rot: -1.5707963267948966 rad + pos: -6.5,-4.5 + parent: 27260 + - uid: 27947 components: - type: Transform - pos: -21.5,-11.5 - parent: 22565 - - uid: 25091 + rot: -1.5707963267948966 rad + pos: -6.5,-5.5 + parent: 27260 + - uid: 27948 components: - type: Transform - pos: -21.5,-12.5 - parent: 22565 - - uid: 25092 + rot: -1.5707963267948966 rad + pos: -6.5,-6.5 + parent: 27260 + - uid: 27949 components: - type: Transform - pos: -21.5,-13.5 - parent: 22565 - - uid: 25093 + rot: -1.5707963267948966 rad + pos: -6.5,-7.5 + parent: 27260 + - uid: 27950 components: - type: Transform - pos: -20.5,-13.5 - parent: 22565 - - uid: 25094 + rot: -1.5707963267948966 rad + pos: -5.5,-7.5 + parent: 27260 + - uid: 27951 components: - type: Transform - pos: -19.5,-13.5 - parent: 22565 - - uid: 25095 + rot: -1.5707963267948966 rad + pos: -4.5,-7.5 + parent: 27260 + - uid: 27952 components: - type: Transform - pos: -18.5,-13.5 - parent: 22565 - - uid: 25096 + rot: -1.5707963267948966 rad + pos: -3.5,-7.5 + parent: 27260 + - uid: 27953 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -20.5,-9.5 - parent: 22565 - - uid: 25097 + rot: -1.5707963267948966 rad + pos: -2.5,-6.5 + parent: 27260 + - uid: 27954 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -21.5,-9.5 - parent: 22565 - - uid: 25098 + rot: -1.5707963267948966 rad + pos: 3.5,-6.5 + parent: 27260 + - uid: 27955 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,-9.5 - parent: 22565 - - uid: 25099 + rot: -1.5707963267948966 rad + pos: 2.5,-10.5 + parent: 27260 + - uid: 27956 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -18.5,-9.5 - parent: 22565 - - uid: 25100 + rot: -1.5707963267948966 rad + pos: 1.5,-10.5 + parent: 27260 + - uid: 27957 components: - type: Transform - pos: -16.5,-13.5 - parent: 22565 - - uid: 25101 + rot: -1.5707963267948966 rad + pos: -0.5,-10.5 + parent: 27260 + - uid: 27958 components: - type: Transform - pos: -16.5,-10.5 - parent: 22565 - - uid: 25102 + rot: -1.5707963267948966 rad + pos: -1.5,-10.5 + parent: 27260 + - uid: 27959 components: - type: Transform - pos: -16.5,-11.5 - parent: 22565 - - uid: 25103 + rot: -1.5707963267948966 rad + pos: -1.5,-11.5 + parent: 27260 + - uid: 27960 components: - type: Transform - pos: -15.5,-13.5 - parent: 22565 - - uid: 25104 + rot: -1.5707963267948966 rad + pos: -1.5,-12.5 + parent: 27260 + - uid: 27961 components: - type: Transform - pos: -14.5,-13.5 - parent: 22565 - - uid: 25105 + rot: -1.5707963267948966 rad + pos: -1.5,-13.5 + parent: 27260 + - uid: 27962 components: - type: Transform - pos: -13.5,-13.5 - parent: 22565 - - uid: 25106 + rot: -1.5707963267948966 rad + pos: -0.5,-13.5 + parent: 27260 + - uid: 27963 components: - type: Transform - pos: -13.5,-7.5 - parent: 22565 - - uid: 25107 + rot: -1.5707963267948966 rad + pos: 0.5,-13.5 + parent: 27260 + - uid: 27964 components: - type: Transform - pos: -16.5,-8.5 - parent: 22565 - - uid: 25108 + rot: -1.5707963267948966 rad + pos: 1.5,-13.5 + parent: 27260 + - uid: 27965 components: - type: Transform - pos: -16.5,-7.5 - parent: 22565 - - uid: 25109 + rot: -1.5707963267948966 rad + pos: 2.5,-13.5 + parent: 27260 + - uid: 27966 components: - type: Transform - pos: -15.5,-7.5 - parent: 22565 - - uid: 25110 + rot: -1.5707963267948966 rad + pos: 2.5,-12.5 + parent: 27260 + - uid: 27967 components: - type: Transform - pos: -14.5,-7.5 - parent: 22565 - - uid: 25111 + rot: -1.5707963267948966 rad + pos: 2.5,-11.5 + parent: 27260 + - uid: 27968 components: - type: Transform - pos: -12.5,-13.5 - parent: 22565 - - uid: 25112 + rot: -1.5707963267948966 rad + pos: 3.5,-10.5 + parent: 27260 + - uid: 27969 components: - type: Transform - pos: -12.5,-11.5 - parent: 22565 - - uid: 25113 + rot: -1.5707963267948966 rad + pos: 3.5,-8.5 + parent: 27260 + - uid: 27970 components: - type: Transform - pos: -12.5,-10.5 - parent: 22565 - - uid: 25114 + rot: -1.5707963267948966 rad + pos: 3.5,-13.5 + parent: 27260 + - uid: 27971 components: - type: Transform - pos: -12.5,-9.5 - parent: 22565 - - uid: 25115 + rot: -1.5707963267948966 rad + pos: 3.5,-14.5 + parent: 27260 + - uid: 27972 components: - type: Transform - pos: -12.5,-8.5 - parent: 22565 - - uid: 25116 + rot: -1.5707963267948966 rad + pos: 4.5,-14.5 + parent: 27260 + - uid: 27973 components: - type: Transform - pos: -12.5,-7.5 - parent: 22565 - - uid: 25355 + rot: -1.5707963267948966 rad + pos: 5.5,-14.5 + parent: 27260 + - uid: 27974 components: - type: Transform - pos: 34.5,-28.5 - parent: 89 - - uid: 25358 + rot: -1.5707963267948966 rad + pos: 6.5,-14.5 + parent: 27260 + - uid: 27975 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-21.5 - parent: 89 - - uid: 25359 + pos: 7.5,-14.5 + parent: 27260 + - uid: 27976 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-24.5 - parent: 89 - - uid: 25362 + pos: 7.5,-13.5 + parent: 27260 + - uid: 27977 components: - type: Transform rot: -1.5707963267948966 rad - pos: 33.5,-22.5 - parent: 89 -- proto: WallReinforcedDiagonal - entities: - - uid: 3011 + pos: 7.5,-12.5 + parent: 27260 + - uid: 27978 components: - type: Transform rot: -1.5707963267948966 rad - pos: 43.5,24.5 - parent: 89 - - uid: 7453 + pos: 7.5,-11.5 + parent: 27260 + - uid: 27979 components: - type: Transform rot: -1.5707963267948966 rad - pos: 37.5,28.5 - parent: 89 - - uid: 14742 + pos: 7.5,-10.5 + parent: 27260 + - uid: 27980 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -134.5,9.5 - parent: 89 - - uid: 17883 + rot: -1.5707963267948966 rad + pos: 7.5,-9.5 + parent: 27260 + - uid: 27981 components: - type: Transform rot: -1.5707963267948966 rad - pos: -28.5,52.5 - parent: 89 - - uid: 17884 + pos: 7.5,-8.5 + parent: 27260 + - uid: 27982 components: - type: Transform - pos: -31.5,52.5 - parent: 89 - - uid: 17887 + rot: -1.5707963267948966 rad + pos: -2.5,-10.5 + parent: 27260 + - uid: 27983 components: - type: Transform - pos: 51.5,16.5 - parent: 89 - - uid: 17888 + rot: -1.5707963267948966 rad + pos: -2.5,-8.5 + parent: 27260 + - uid: 27984 components: - type: Transform rot: 3.141592653589793 rad - pos: 66.5,9.5 - parent: 89 - - uid: 17890 + pos: 5.5,0.5 + parent: 27260 + - uid: 27985 components: - type: Transform rot: -1.5707963267948966 rad - pos: 60.5,16.5 - parent: 89 - - uid: 17891 - components: - - type: Transform - pos: 53.5,7.5 - parent: 89 - - uid: 17892 + pos: -2.5,-14.5 + parent: 27260 + - uid: 27986 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 53.5,1.5 - parent: 89 - - uid: 17905 + rot: -1.5707963267948966 rad + pos: -3.5,-14.5 + parent: 27260 + - uid: 27987 components: - type: Transform rot: -1.5707963267948966 rad - pos: 66.5,-0.5 - parent: 89 - - uid: 17909 + pos: -4.5,-14.5 + parent: 27260 + - uid: 27988 components: - type: Transform - rot: 3.141592653589793 rad - pos: 60.5,-7.5 - parent: 89 - - uid: 17910 + rot: -1.5707963267948966 rad + pos: -5.5,-14.5 + parent: 27260 + - uid: 27989 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,29.5 - parent: 89 - - uid: 19802 + rot: -1.5707963267948966 rad + pos: -6.5,-14.5 + parent: 27260 + - uid: 27990 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -65.5,-19.5 - parent: 89 - - uid: 19804 + rot: -1.5707963267948966 rad + pos: -6.5,-13.5 + parent: 27260 + - uid: 27991 components: - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,-19.5 - parent: 89 - - uid: 19805 + rot: -1.5707963267948966 rad + pos: -6.5,-12.5 + parent: 27260 + - uid: 27992 components: - type: Transform - pos: -70.5,31.5 - parent: 89 - - uid: 19844 + rot: -1.5707963267948966 rad + pos: -6.5,-11.5 + parent: 27260 + - uid: 27993 components: - type: Transform - rot: 3.141592653589793 rad - pos: -80.5,29.5 - parent: 89 - - uid: 19848 + rot: -1.5707963267948966 rad + pos: -6.5,-10.5 + parent: 27260 + - uid: 27994 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,31.5 - parent: 89 - - uid: 19860 + pos: -6.5,-9.5 + parent: 27260 + - uid: 27995 components: - type: Transform rot: -1.5707963267948966 rad - pos: -80.5,38.5 - parent: 89 - - uid: 19861 + pos: -6.5,-8.5 + parent: 27260 + - uid: 27996 components: - type: Transform - pos: -70.5,38.5 - parent: 89 - - uid: 20099 + rot: -1.5707963267948966 rad + pos: -2.5,-13.5 + parent: 27260 + - uid: 27997 components: - type: Transform - pos: -101.5,30.5 - parent: 89 - - uid: 20247 + rot: 3.141592653589793 rad + pos: 8.5,-3.5 + parent: 27260 + - uid: 27998 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -70.5,36.5 - parent: 89 - - uid: 20257 + rot: 3.141592653589793 rad + pos: 8.5,-8.5 + parent: 27260 + - uid: 27999 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,47.5 - parent: 89 - - uid: 20381 + rot: 3.141592653589793 rad + pos: 8.5,-9.5 + parent: 27260 + - uid: 28000 components: - type: Transform - pos: -9.5,47.5 - parent: 89 - - uid: 20857 + rot: 3.141592653589793 rad + pos: 8.5,-14.5 + parent: 27260 + - uid: 28001 components: - type: Transform rot: 3.141592653589793 rad - pos: 8.5,-29.5 - parent: 89 - - uid: 20861 + pos: 7.5,-15.5 + parent: 27260 + - uid: 28002 components: - type: Transform rot: 3.141592653589793 rad - pos: -80.5,36.5 - parent: 89 - - uid: 20869 + pos: 2.5,-14.5 + parent: 27260 + - uid: 28003 components: - type: Transform rot: 3.141592653589793 rad - pos: -49.5,38.5 - parent: 89 - - uid: 20879 + pos: -6.5,-15.5 + parent: 27260 + - uid: 28004 components: - type: Transform - pos: -68.5,46.5 - parent: 89 - - uid: 20889 + rot: 3.141592653589793 rad + pos: -1.5,-14.5 + parent: 27260 + - uid: 28005 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -49.5,49.5 - parent: 89 - - uid: 20893 + rot: 3.141592653589793 rad + pos: -2.5,-15.5 + parent: 27260 + - uid: 28006 components: - type: Transform - pos: -59.5,49.5 - parent: 89 - - uid: 20894 + rot: 3.141592653589793 rad + pos: -7.5,-14.5 + parent: 27260 + - uid: 28007 components: - type: Transform - pos: -67.5,49.5 - parent: 89 - - uid: 20895 + rot: 3.141592653589793 rad + pos: -7.5,-9.5 + parent: 27260 + - uid: 28008 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -63.5,49.5 - parent: 89 - - uid: 20896 + rot: 3.141592653589793 rad + pos: -7.5,-8.5 + parent: 27260 + - uid: 28009 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -19.5,34.5 - parent: 89 - - uid: 20897 + rot: 3.141592653589793 rad + pos: -7.5,-3.5 + parent: 27260 + - uid: 28010 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -18.5,33.5 - parent: 89 - - uid: 20898 + rot: 3.141592653589793 rad + pos: -4.5,0.5 + parent: 27260 + - uid: 28011 components: - type: Transform rot: 1.5707963267948966 rad - pos: -89.5,36.5 - parent: 89 - - uid: 20900 - components: - - type: Transform - pos: -89.5,40.5 - parent: 89 - - uid: 20901 + pos: 7.5,0.5 + parent: 27260 + - uid: 28012 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -82.5,48.5 - parent: 89 - - uid: 20902 + rot: 1.5707963267948966 rad + pos: 8.5,0.5 + parent: 27260 + - uid: 28013 components: - type: Transform - pos: -86.5,48.5 - parent: 89 - - uid: 20903 + rot: 3.141592653589793 rad + pos: -5.5,-0.5 + parent: 27260 + - uid: 28014 components: - type: Transform rot: -1.5707963267948966 rad - pos: -27.5,38.5 - parent: 89 - - uid: 20904 + pos: -5.5,-1.5 + parent: 27260 + - uid: 28015 components: - type: Transform - pos: -32.5,38.5 - parent: 89 - - uid: 20906 + rot: 3.141592653589793 rad + pos: -5.5,-2.5 + parent: 27260 + - uid: 28016 components: - type: Transform rot: 1.5707963267948966 rad - pos: 7.5,40.5 - parent: 89 - - uid: 20907 + pos: 6.5,1.5 + parent: 27260 + - uid: 28017 components: - type: Transform - pos: 21.5,38.5 - parent: 89 - - uid: 20908 + rot: 1.5707963267948966 rad + pos: 6.5,0.5 + parent: 27260 + - uid: 28018 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 34.5,30.5 - parent: 89 - - uid: 20911 + rot: 1.5707963267948966 rad + pos: 6.5,2.5 + parent: 27260 + - uid: 28019 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 59.5,-24.5 - parent: 89 - - uid: 20915 + rot: 1.5707963267948966 rad + pos: 6.5,3.5 + parent: 27260 + - uid: 28020 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 27.5,38.5 - parent: 89 - - uid: 20921 + rot: 1.5707963267948966 rad + pos: 6.5,4.5 + parent: 27260 + - uid: 28021 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 26.5,44.5 - parent: 89 - - uid: 20945 + rot: 1.5707963267948966 rad + pos: 6.5,5.5 + parent: 27260 + - uid: 28022 components: - type: Transform - pos: -88.5,32.5 - parent: 89 - - uid: 20952 + rot: 1.5707963267948966 rad + pos: 6.5,6.5 + parent: 27260 + - uid: 28023 components: - type: Transform - pos: -89.5,31.5 - parent: 89 - - uid: 21276 + rot: 1.5707963267948966 rad + pos: 6.5,7.5 + parent: 27260 + - uid: 28024 components: - type: Transform rot: 1.5707963267948966 rad - pos: -121.5,-16.5 - parent: 89 - - uid: 21297 + pos: 6.5,8.5 + parent: 27260 + - uid: 28025 components: - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,40.5 - parent: 89 - - uid: 21638 + rot: 1.5707963267948966 rad + pos: 6.5,9.5 + parent: 27260 + - uid: 28026 components: - type: Transform - pos: 22.5,44.5 - parent: 89 -- proto: WallRiveted - entities: - - uid: 25117 + rot: 1.5707963267948966 rad + pos: 6.5,10.5 + parent: 27260 + - uid: 28027 components: - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,12.5 - parent: 22565 - - uid: 25118 + rot: 1.5707963267948966 rad + pos: 6.5,11.5 + parent: 27260 + - uid: 28028 components: - type: Transform - pos: -28.5,8.5 - parent: 22565 - - uid: 25119 + rot: 1.5707963267948966 rad + pos: 6.5,12.5 + parent: 27260 + - uid: 28029 components: - type: Transform - pos: -28.5,9.5 - parent: 22565 - - uid: 25120 + rot: 1.5707963267948966 rad + pos: 6.5,13.5 + parent: 27260 + - uid: 28030 components: - type: Transform - pos: -18.5,-20.5 - parent: 22565 - - uid: 25121 + rot: 1.5707963267948966 rad + pos: 6.5,14.5 + parent: 27260 + - uid: 28031 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,12.5 - parent: 22565 - - uid: 25122 + pos: 7.5,15.5 + parent: 27260 + - uid: 28032 components: - type: Transform - pos: -8.5,-20.5 - parent: 22565 - - uid: 25123 + rot: 1.5707963267948966 rad + pos: -5.5,1.5 + parent: 27260 + - uid: 28033 components: - type: Transform - pos: -8.5,-21.5 - parent: 22565 - - uid: 25124 + rot: 1.5707963267948966 rad + pos: -5.5,2.5 + parent: 27260 + - uid: 28034 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,12.5 - parent: 22565 - - uid: 25125 + pos: -5.5,3.5 + parent: 27260 + - uid: 28035 components: - type: Transform - pos: 4.5,9.5 - parent: 22565 - - uid: 25126 + rot: 1.5707963267948966 rad + pos: -5.5,4.5 + parent: 27260 + - uid: 28036 components: - type: Transform rot: 1.5707963267948966 rad - pos: -18.5,11.5 - parent: 22565 - - uid: 25127 + pos: -5.5,5.5 + parent: 27260 + - uid: 28037 components: - type: Transform rot: 1.5707963267948966 rad - pos: -19.5,11.5 - parent: 22565 - - uid: 25128 + pos: -5.5,6.5 + parent: 27260 + - uid: 28038 components: - type: Transform - pos: -18.5,-26.5 - parent: 22565 - - uid: 25129 + rot: 1.5707963267948966 rad + pos: -5.5,7.5 + parent: 27260 + - uid: 28039 components: - type: Transform - pos: -28.5,12.5 - parent: 22565 - - uid: 25130 + rot: 1.5707963267948966 rad + pos: -5.5,8.5 + parent: 27260 + - uid: 28040 components: - type: Transform - pos: -8.5,-27.5 - parent: 22565 - - uid: 25131 + rot: 1.5707963267948966 rad + pos: -5.5,9.5 + parent: 27260 + - uid: 28041 components: - type: Transform - pos: -18.5,-27.5 - parent: 22565 - - uid: 25132 + rot: 1.5707963267948966 rad + pos: -5.5,10.5 + parent: 27260 + - uid: 28042 components: - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,8.5 - parent: 22565 - - uid: 25133 + rot: 1.5707963267948966 rad + pos: -5.5,11.5 + parent: 27260 + - uid: 28043 components: - type: Transform - pos: 4.5,-1.5 - parent: 22565 - - uid: 25134 + rot: 1.5707963267948966 rad + pos: -5.5,12.5 + parent: 27260 + - uid: 28044 components: - type: Transform - pos: 4.5,-0.5 - parent: 22565 - - uid: 25135 + rot: 1.5707963267948966 rad + pos: -5.5,13.5 + parent: 27260 + - uid: 28045 components: - type: Transform - pos: -18.5,-21.5 - parent: 22565 - - uid: 25136 + rot: 1.5707963267948966 rad + pos: -5.5,0.5 + parent: 27260 + - uid: 28046 components: - type: Transform - pos: -17.5,-20.5 - parent: 22565 - - uid: 25137 + rot: 1.5707963267948966 rad + pos: -6.5,0.5 + parent: 27260 + - uid: 28047 components: - type: Transform rot: 3.141592653589793 rad - pos: -27.5,12.5 - parent: 22565 - - uid: 25138 + pos: -7.5,0.5 + parent: 27260 + - uid: 28048 components: - type: Transform - pos: -28.5,-1.5 - parent: 22565 - - uid: 25139 + rot: -1.5707963267948966 rad + pos: 6.5,-0.5 + parent: 27260 + - uid: 28049 components: - type: Transform - pos: 3.5,-1.5 - parent: 22565 - - uid: 25140 + rot: -1.5707963267948966 rad + pos: 6.5,-1.5 + parent: 27260 + - uid: 28050 components: - type: Transform - pos: -27.5,-1.5 - parent: 22565 - - uid: 25141 + rot: -1.5707963267948966 rad + pos: 6.5,-2.5 + parent: 27260 + - uid: 28051 components: - type: Transform - pos: -28.5,-0.5 - parent: 22565 - - uid: 25142 + pos: -6.5,15.5 + parent: 27260 + - uid: 28052 components: - type: Transform rot: 3.141592653589793 rad - pos: -26.5,12.5 - parent: 22565 - - uid: 25143 + pos: 7.5,14.5 + parent: 27260 + - uid: 28053 components: - type: Transform - pos: -19.5,25.5 - parent: 22565 - - uid: 25144 + rot: 3.141592653589793 rad + pos: 7.5,13.5 + parent: 27260 + - uid: 28054 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,26.5 - parent: 22565 - - uid: 25145 + rot: 3.141592653589793 rad + pos: -6.5,14.5 + parent: 27260 + - uid: 28055 components: - type: Transform - pos: -24.5,25.5 - parent: 22565 - - uid: 25146 + rot: 3.141592653589793 rad + pos: -6.5,13.5 + parent: 27260 + - uid: 28056 components: - type: Transform - pos: -23.5,26.5 - parent: 22565 - - uid: 25147 + rot: -1.5707963267948966 rad + pos: 6.5,17.5 + parent: 27260 + - uid: 28057 components: - type: Transform - pos: -3.5,26.5 - parent: 22565 - - uid: 25148 + rot: -1.5707963267948966 rad + pos: 7.5,16.5 + parent: 27260 + - uid: 28058 components: - type: Transform - pos: -4.5,25.5 - parent: 22565 - - uid: 25149 + rot: -1.5707963267948966 rad + pos: 6.5,18.5 + parent: 27260 + - uid: 28059 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,26.5 - parent: 22565 - - uid: 25150 + rot: -1.5707963267948966 rad + pos: 6.5,19.5 + parent: 27260 + - uid: 28060 components: - type: Transform - pos: 0.5,25.5 - parent: 22565 - - uid: 25151 + rot: -1.5707963267948966 rad + pos: 6.5,20.5 + parent: 27260 + - uid: 28061 components: - type: Transform - pos: -20.5,26.5 - parent: 22565 - - uid: 25152 + rot: -1.5707963267948966 rad + pos: 6.5,21.5 + parent: 27260 + - uid: 28062 components: - type: Transform - pos: -0.5,26.5 - parent: 22565 - - uid: 25153 + rot: -1.5707963267948966 rad + pos: -5.5,17.5 + parent: 27260 + - uid: 28063 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,12.5 - parent: 22565 - - uid: 25154 + rot: -1.5707963267948966 rad + pos: -5.5,18.5 + parent: 27260 + - uid: 28064 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -19.5,12.5 - parent: 22565 - - uid: 25155 + rot: -1.5707963267948966 rad + pos: -5.5,19.5 + parent: 27260 + - uid: 28065 components: - type: Transform - pos: -9.5,-20.5 - parent: 22565 - - uid: 25156 + rot: -1.5707963267948966 rad + pos: -5.5,20.5 + parent: 27260 + - uid: 28066 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,11.5 - parent: 22565 - - uid: 25157 + rot: -1.5707963267948966 rad + pos: -5.5,21.5 + parent: 27260 + - uid: 28067 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -5.5,11.5 - parent: 22565 - - uid: 25158 + rot: -1.5707963267948966 rad + pos: -5.5,14.5 + parent: 27260 + - uid: 28068 components: - type: Transform - pos: -8.5,-26.5 - parent: 22565 - - uid: 25159 + rot: -1.5707963267948966 rad + pos: -6.5,16.5 + parent: 27260 +- proto: WallShuttleDiagonal + entities: + - uid: 21941 components: - type: Transform rot: -1.5707963267948966 rad - pos: 5.5,9.5 - parent: 22565 - - uid: 25160 + pos: 16.5,35.5 + parent: 2 + - uid: 21942 components: - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,0.5 - parent: 22565 - - uid: 25161 + pos: -113.5,28.5 + parent: 2 + - uid: 21943 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 5.5,12.5 - parent: 22565 - - uid: 25162 + pos: -89.5,46.5 + parent: 2 + - uid: 21944 components: - type: Transform rot: -1.5707963267948966 rad - pos: 10.5,0.5 - parent: 22565 - - uid: 25163 + pos: -127.5,23.5 + parent: 2 + - uid: 21945 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 11.5,1.5 - parent: 22565 - - uid: 25164 + rot: 1.5707963267948966 rad + pos: 39.5,-34.5 + parent: 2 + - uid: 21946 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,1.5 - parent: 22565 - - uid: 25165 + pos: 56.5,-16.5 + parent: 2 + - uid: 21947 components: - type: Transform - rot: 3.141592653589793 rad - pos: -35.5,0.5 - parent: 22565 - - uid: 25166 + rot: 1.5707963267948966 rad + pos: -151.5,-15.5 + parent: 2 + - uid: 21948 components: - type: Transform - rot: 3.141592653589793 rad - pos: -34.5,0.5 - parent: 22565 - - uid: 25167 + pos: -150.5,1.5 + parent: 2 + - uid: 21949 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -29.5,12.5 - parent: 22565 - - uid: 25168 + pos: -152.5,-0.5 + parent: 2 + - uid: 21950 components: - type: Transform - rot: 3.141592653589793 rad - pos: -29.5,9.5 - parent: 22565 - - uid: 25169 + rot: -1.5707963267948966 rad + pos: -135.5,1.5 + parent: 2 + - uid: 21951 components: - type: Transform - pos: -4.5,26.5 - parent: 22565 - - uid: 25170 + pos: -119.5,23.5 + parent: 2 + - uid: 21952 components: - type: Transform - pos: -19.5,26.5 - parent: 22565 -- proto: WallRockBasaltBananium - entities: - - uid: 25171 + pos: -118.5,26.5 + parent: 2 + - uid: 21953 components: - type: Transform - pos: -26.5,-4.5 - parent: 22565 - - uid: 25172 + rot: 3.141592653589793 rad + pos: -135.5,-16.5 + parent: 2 + - uid: 21954 components: - type: Transform - pos: -25.5,-5.5 - parent: 22565 - - uid: 25173 + rot: 3.141592653589793 rad + pos: -150.5,-0.5 + parent: 2 + - uid: 21955 components: - type: Transform - pos: -37.5,1.5 - parent: 22565 - - uid: 25174 + pos: -151.5,0.5 + parent: 2 + - uid: 21956 components: - type: Transform - pos: -37.5,2.5 - parent: 22565 - - uid: 25175 + rot: -1.5707963267948966 rad + pos: -150.5,-14.5 + parent: 2 + - uid: 21957 components: - type: Transform - pos: -36.5,1.5 - parent: 22565 -- proto: WallRockBasaltGold - entities: - - uid: 25176 + rot: 1.5707963267948966 rad + pos: -150.5,-16.5 + parent: 2 + - uid: 21958 components: - type: Transform - pos: -31.5,-1.5 - parent: 22565 - - uid: 25177 + rot: 1.5707963267948966 rad + pos: -152.5,-14.5 + parent: 2 + - uid: 21959 components: - type: Transform - pos: -29.5,-0.5 - parent: 22565 - - uid: 25178 + rot: 1.5707963267948966 rad + pos: -120.5,-20.5 + parent: 2 + - uid: 21960 components: - type: Transform - pos: -27.5,-8.5 - parent: 22565 - - uid: 25179 + rot: 3.141592653589793 rad + pos: 59.5,-34.5 + parent: 2 + - uid: 21961 components: - type: Transform - pos: -26.5,-11.5 - parent: 22565 - - uid: 25180 + rot: 3.141592653589793 rad + pos: 18.5,-19.5 + parent: 2 + - uid: 21962 components: - type: Transform - pos: -23.5,-14.5 - parent: 22565 - - uid: 25181 + pos: -86.5,48.5 + parent: 2 + - uid: 21963 components: - type: Transform - pos: 5.5,-4.5 - parent: 22565 -- proto: WallRockBasaltPlasma - entities: - - uid: 25182 + pos: -10.5,26.5 + parent: 2 + - uid: 21964 components: - type: Transform - pos: -31.5,-5.5 - parent: 22565 - - uid: 25183 + rot: -1.5707963267948966 rad + pos: -17.5,26.5 + parent: 2 + - uid: 21965 components: - type: Transform - pos: -30.5,-6.5 - parent: 22565 - - uid: 25184 + pos: -41.5,34.5 + parent: 2 + - uid: 21966 components: - type: Transform - pos: -29.5,-5.5 - parent: 22565 - - uid: 25185 + rot: -1.5707963267948966 rad + pos: 28.5,34.5 + parent: 2 + - uid: 21967 components: - type: Transform - pos: -25.5,-2.5 - parent: 22565 - - uid: 25186 + rot: 3.141592653589793 rad + pos: 9.5,-24.5 + parent: 2 + - uid: 21968 components: - type: Transform - pos: -24.5,-3.5 - parent: 22565 - - uid: 25187 + rot: -1.5707963267948966 rad + pos: 66.5,14.5 + parent: 2 + - uid: 21969 components: - type: Transform - pos: -24.5,-3.5 - parent: 22565 - - uid: 25188 + rot: 3.141592653589793 rad + pos: 66.5,-5.5 + parent: 2 + - uid: 21970 components: - type: Transform - pos: -24.5,-2.5 - parent: 22565 - - uid: 25189 + rot: -1.5707963267948966 rad + pos: 37.5,28.5 + parent: 2 + - uid: 21971 components: - type: Transform - pos: -24.5,-13.5 - parent: 22565 -- proto: WallRockBasaltQuartz - entities: - - uid: 25190 + pos: -32.5,38.5 + parent: 2 + - uid: 21972 components: - type: Transform - pos: 6.5,-6.5 - parent: 22565 - - uid: 25191 + rot: -1.5707963267948966 rad + pos: -27.5,38.5 + parent: 2 + - uid: 21973 components: - type: Transform - pos: 6.5,-0.5 - parent: 22565 - - uid: 25192 + rot: 1.5707963267948966 rad + pos: 7.5,40.5 + parent: 2 + - uid: 21974 components: - type: Transform - pos: 5.5,-0.5 - parent: 22565 - - uid: 25193 + rot: -1.5707963267948966 rad + pos: 12.5,43.5 + parent: 2 + - uid: 21975 components: - type: Transform - pos: 5.5,-1.5 - parent: 22565 - - uid: 25194 + pos: -48.5,23.5 + parent: 2 + - uid: 21976 components: - type: Transform - pos: 12.5,-0.5 - parent: 22565 - - uid: 25195 + pos: 7.5,43.5 + parent: 2 + - uid: 21977 components: - type: Transform - pos: 12.5,1.5 - parent: 22565 - - uid: 25196 + rot: -1.5707963267948966 rad + pos: -81.5,23.5 + parent: 2 + - uid: 21978 components: - type: Transform - pos: 13.5,7.5 - parent: 22565 - - uid: 25197 + pos: -70.5,38.5 + parent: 2 + - uid: 21979 components: - type: Transform - pos: 13.5,10.5 - parent: 22565 -- proto: WallRockBasaltSilver - entities: - - uid: 25198 + rot: 1.5707963267948966 rad + pos: -8.5,-46.5 + parent: 2 + - uid: 21980 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-21.5 + parent: 2 + - uid: 21981 components: - type: Transform - pos: -15.5,-14.5 - parent: 22565 - - uid: 25199 + rot: 3.141592653589793 rad + pos: 5.5,-32.5 + parent: 2 + - uid: 21982 components: - type: Transform - pos: -15.5,-15.5 - parent: 22565 - - uid: 25200 + rot: -1.5707963267948966 rad + pos: 3.5,-37.5 + parent: 2 + - uid: 21983 components: - type: Transform - pos: -14.5,-15.5 - parent: 22565 - - uid: 25201 + rot: -1.5707963267948966 rad + pos: 53.5,-10.5 + parent: 2 + - uid: 21984 components: - type: Transform - pos: -14.5,-16.5 - parent: 22565 - - uid: 25202 + rot: -1.5707963267948966 rad + pos: -26.5,35.5 + parent: 2 + - uid: 21985 components: - type: Transform - pos: 1.5,-7.5 - parent: 22565 - - uid: 25203 + pos: -33.5,35.5 + parent: 2 + - uid: 21986 components: - type: Transform - pos: 3.5,-6.5 - parent: 22565 - - uid: 25204 + rot: 3.141592653589793 rad + pos: 23.5,-18.5 + parent: 2 + - uid: 21987 components: - type: Transform - pos: 4.5,-8.5 - parent: 22565 -- proto: WallRockBasaltTin - entities: - - uid: 25205 + rot: 3.141592653589793 rad + pos: -58.5,-21.5 + parent: 2 + - uid: 21988 components: - type: Transform - pos: -3.5,-3.5 - parent: 22565 - - uid: 25206 + rot: 1.5707963267948966 rad + pos: -64.5,-21.5 + parent: 2 + - uid: 21989 components: - type: Transform - pos: -4.5,-4.5 - parent: 22565 - - uid: 25207 + rot: 1.5707963267948966 rad + pos: -27.5,-28.5 + parent: 2 + - uid: 21990 components: - type: Transform - pos: -3.5,-4.5 - parent: 22565 - - uid: 25208 + pos: -69.5,23.5 + parent: 2 + - uid: 21991 components: - type: Transform - pos: -2.5,-3.5 - parent: 22565 - - uid: 25209 + rot: -1.5707963267948966 rad + pos: -50.5,23.5 + parent: 2 + - uid: 21992 components: - type: Transform - pos: -14.5,-14.5 - parent: 22565 - - uid: 25210 + rot: 1.5707963267948966 rad + pos: -116.5,-21.5 + parent: 2 + - uid: 21993 components: - type: Transform - pos: -14.5,-16.5 - parent: 22565 - - uid: 25211 + rot: -1.5707963267948966 rad + pos: 33.5,33.5 + parent: 2 + - uid: 21994 components: - type: Transform - pos: -15.5,-16.5 - parent: 22565 - - uid: 25212 + rot: -1.5707963267948966 rad + pos: -128.5,24.5 + parent: 2 + - uid: 21995 components: - type: Transform - pos: -20.5,-14.5 - parent: 22565 - - uid: 25213 + pos: -133.5,24.5 + parent: 2 + - uid: 21996 components: - type: Transform - pos: -22.5,-14.5 - parent: 22565 - - uid: 25214 + rot: -1.5707963267948966 rad + pos: 1.5,-36.5 + parent: 2 + - uid: 21997 components: - type: Transform - pos: -21.5,-14.5 - parent: 22565 -- proto: WallRockBasaltUranium - entities: - - uid: 25215 + rot: 3.141592653589793 rad + pos: -127.5,-14.5 + parent: 2 + - uid: 21998 components: - type: Transform - pos: -22.5,-7.5 - parent: 22565 - - uid: 25216 + rot: 1.5707963267948966 rad + pos: -130.5,-14.5 + parent: 2 + - uid: 21999 components: - type: Transform - pos: -3.5,-9.5 - parent: 22565 - - uid: 25217 + rot: 1.5707963267948966 rad + pos: 20.5,-18.5 + parent: 2 + - uid: 22000 components: - type: Transform - pos: -2.5,-5.5 - parent: 22565 - - uid: 25218 + pos: -42.5,27.5 + parent: 2 + - uid: 22001 components: - type: Transform - pos: -26.5,-6.5 - parent: 22565 - - uid: 25219 + rot: 1.5707963267948966 rad + pos: 33.5,-28.5 + parent: 2 + - uid: 22002 components: - type: Transform - pos: -23.5,-4.5 - parent: 22565 - - uid: 25220 + rot: -1.5707963267948966 rad + pos: 43.5,24.5 + parent: 2 + - uid: 22003 components: - type: Transform - pos: -28.5,-3.5 - parent: 22565 -- proto: WallShuttle - entities: - - uid: 724 + rot: -1.5707963267948966 rad + pos: 39.5,27.5 + parent: 2 + - uid: 22004 components: - type: Transform - pos: 18.5,28.5 - parent: 89 - - uid: 1440 + rot: 1.5707963267948966 rad + pos: -134.5,9.5 + parent: 2 + - uid: 22005 components: - type: Transform - pos: 30.5,28.5 - parent: 89 - - uid: 1779 + pos: 51.5,16.5 + parent: 2 + - uid: 22006 components: - type: Transform - pos: 31.5,28.5 - parent: 89 - - uid: 6381 + rot: 3.141592653589793 rad + pos: 66.5,9.5 + parent: 2 + - uid: 22007 components: - type: Transform - pos: 29.5,28.5 - parent: 89 - - uid: 8258 + rot: -1.5707963267948966 rad + pos: 60.5,16.5 + parent: 2 + - uid: 22008 components: - type: Transform - pos: 27.5,28.5 - parent: 89 - - uid: 10843 + rot: 1.5707963267948966 rad + pos: 53.5,1.5 + parent: 2 + - uid: 22009 components: - type: Transform - pos: 21.5,32.5 - parent: 89 - - uid: 10849 + pos: 53.5,7.5 + parent: 2 + - uid: 22010 components: - type: Transform - pos: 20.5,31.5 - parent: 89 - - uid: 10862 + rot: 3.141592653589793 rad + pos: 60.5,-7.5 + parent: 2 + - uid: 22011 components: - type: Transform - pos: 28.5,31.5 - parent: 89 - - uid: 10865 + rot: -1.5707963267948966 rad + pos: 66.5,-0.5 + parent: 2 + - uid: 22012 components: - type: Transform - pos: 32.5,31.5 - parent: 89 - - uid: 10908 + rot: 1.5707963267948966 rad + pos: -70.5,36.5 + parent: 2 + - uid: 22013 components: - type: Transform - pos: 16.5,30.5 - parent: 89 - - uid: 12674 + rot: 3.141592653589793 rad + pos: -74.5,-19.5 + parent: 2 + - uid: 22014 components: - type: Transform - pos: 17.5,28.5 - parent: 89 - - uid: 14057 + rot: 3.141592653589793 rad + pos: -57.5,-19.5 + parent: 2 + - uid: 22015 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 28.5,29.5 - parent: 89 - - uid: 14058 + pos: -70.5,31.5 + parent: 2 + - uid: 22016 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 32.5,28.5 - parent: 89 - - uid: 15091 + rot: 3.141592653589793 rad + pos: -80.5,36.5 + parent: 2 + - uid: 22017 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 32.5,29.5 - parent: 89 - - uid: 15102 + rot: 3.141592653589793 rad + pos: -80.5,29.5 + parent: 2 + - uid: 22018 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 28.5,28.5 - parent: 89 - - uid: 15109 + pos: -67.5,49.5 + parent: 2 + - uid: 22019 components: - type: Transform - pos: 27.5,32.5 - parent: 89 - - uid: 15113 + pos: -101.5,30.5 + parent: 2 + - uid: 22020 components: - type: Transform - pos: 32.5,32.5 - parent: 89 - - uid: 15114 + rot: 1.5707963267948966 rad + pos: -70.5,29.5 + parent: 2 + - uid: 22021 components: - type: Transform - pos: 30.5,32.5 - parent: 89 - - uid: 15115 + rot: -1.5707963267948966 rad + pos: 4.5,47.5 + parent: 2 + - uid: 22022 components: - type: Transform - pos: 29.5,32.5 - parent: 89 - - uid: 15116 + pos: -9.5,47.5 + parent: 2 + - uid: 22023 components: - type: Transform - pos: 31.5,32.5 - parent: 89 - - uid: 15119 + rot: 3.141592653589793 rad + pos: 8.5,-29.5 + parent: 2 + - uid: 22024 components: - type: Transform - pos: 28.5,32.5 - parent: 89 - - uid: 15156 + rot: -1.5707963267948966 rad + pos: -80.5,31.5 + parent: 2 + - uid: 22025 components: - type: Transform - pos: 16.5,31.5 - parent: 89 - - uid: 15157 + rot: 3.141592653589793 rad + pos: -49.5,38.5 + parent: 2 + - uid: 22026 components: - type: Transform - pos: 19.5,32.5 - parent: 89 - - uid: 15158 + pos: -68.5,46.5 + parent: 2 + - uid: 22027 components: - type: Transform - pos: 18.5,32.5 - parent: 89 - - uid: 15159 + rot: -1.5707963267948966 rad + pos: -49.5,49.5 + parent: 2 + - uid: 22028 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 16.5,28.5 - parent: 89 - - uid: 15160 + pos: -59.5,49.5 + parent: 2 + - uid: 22029 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 16.5,29.5 - parent: 89 - - uid: 15162 + rot: -1.5707963267948966 rad + pos: -63.5,49.5 + parent: 2 + - uid: 22030 components: - type: Transform - pos: 20.5,32.5 - parent: 89 - - uid: 15163 + rot: -1.5707963267948966 rad + pos: -18.5,33.5 + parent: 2 + - uid: 22031 components: - type: Transform - pos: 17.5,32.5 - parent: 89 - - uid: 15164 + rot: -1.5707963267948966 rad + pos: -19.5,34.5 + parent: 2 + - uid: 22032 components: - type: Transform - pos: 16.5,32.5 - parent: 89 - - uid: 15165 + rot: -1.5707963267948966 rad + pos: -80.5,38.5 + parent: 2 + - uid: 22033 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 20.5,29.5 - parent: 89 - - uid: 15166 + rot: -1.5707963267948966 rad + pos: -82.5,48.5 + parent: 2 + - uid: 22034 components: - - type: MetaData - name: Мягкая стена - type: Transform - pos: 20.5,28.5 - parent: 89 - - uid: 15251 + rot: 3.141592653589793 rad + pos: -50.5,26.5 + parent: 2 + - uid: 22035 components: - type: Transform - pos: 19.5,28.5 - parent: 89 - - uid: 15258 + pos: -47.5,26.5 + parent: 2 + - uid: 22036 components: - type: Transform - pos: 21.5,28.5 - parent: 89 - - uid: 15426 + pos: 21.5,38.5 + parent: 2 + - uid: 22037 components: - type: Transform - pos: 32.5,30.5 - parent: 89 - - uid: 21712 + rot: -1.5707963267948966 rad + pos: 34.5,30.5 + parent: 2 + - uid: 22038 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-3.5 - parent: 21627 - - uid: 21713 + rot: -1.5707963267948966 rad + pos: 59.5,-24.5 + parent: 2 + - uid: 22039 components: - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-1.5 - parent: 21627 - - uid: 21714 + rot: -1.5707963267948966 rad + pos: 27.5,38.5 + parent: 2 + - uid: 22040 components: - type: Transform - rot: 3.141592653589793 rad - pos: -1.5,-1.5 - parent: 21627 - - uid: 21715 + rot: -1.5707963267948966 rad + pos: 26.5,44.5 + parent: 2 + - uid: 22041 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,-3.5 - parent: 21627 - - uid: 21716 + rot: 3.141592653589793 rad + pos: 12.5,40.5 + parent: 2 + - uid: 22042 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 1.5,-4.5 - parent: 21627 - - uid: 21717 + pos: 22.5,44.5 + parent: 2 + - uid: 22043 components: - type: Transform rot: -1.5707963267948966 rad - pos: 1.5,-5.5 - parent: 21627 - - uid: 21718 + pos: 15.5,38.5 + parent: 2 + - uid: 22044 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -0.5,-4.5 - parent: 21627 - - uid: 21719 + pos: 20.5,34.5 + parent: 2 + - uid: 22045 components: - type: Transform rot: -1.5707963267948966 rad - pos: -0.5,-5.5 - parent: 21627 - - uid: 25585 + pos: 5.5,39.5 + parent: 2 + - uid: 22046 components: - type: Transform - pos: 1.5,-3.5 - parent: 18153 - - uid: 25586 + pos: -134.5,20.5 + parent: 2 + - uid: 22047 components: - type: Transform rot: 3.141592653589793 rad - pos: 3.5,-3.5 - parent: 18153 - - uid: 25587 + pos: 3.5,-46.5 + parent: 2 + - uid: 22048 components: - type: Transform - pos: 5.5,-3.5 - parent: 18153 - - uid: 25588 + rot: 1.5707963267948966 rad + pos: -65.5,-19.5 + parent: 2 + - uid: 22049 components: - type: Transform - pos: 2.5,-3.5 - parent: 18153 - - uid: 25589 + rot: 1.5707963267948966 rad + pos: -28.5,-19.5 + parent: 2 + - uid: 22050 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-10.5 - parent: 18153 - - uid: 25590 + pos: -14.5,-29.5 + parent: 2 + - uid: 22051 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-10.5 - parent: 18153 - - uid: 25591 + rot: 1.5707963267948966 rad + pos: -13.5,-37.5 + parent: 2 + - uid: 22052 components: - type: Transform rot: 1.5707963267948966 rad - pos: 3.5,-10.5 - parent: 18153 - - uid: 25592 + pos: -9.5,-38.5 + parent: 2 + - uid: 22053 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-9.5 - parent: 18153 - - uid: 25593 + pos: 17.5,-20.5 + parent: 2 + - uid: 22054 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 0.5,-11.5 - parent: 18153 - - uid: 25594 + pos: 33.5,-20.5 + parent: 2 + - uid: 22055 components: - type: Transform rot: 1.5707963267948966 rad - pos: 0.5,-4.5 - parent: 18153 - - uid: 25595 + pos: 33.5,-18.5 + parent: 2 + - uid: 22056 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-9.5 - parent: 18153 - - uid: 25596 + rot: -1.5707963267948966 rad + pos: 17.5,34.5 + parent: 2 + - uid: 23910 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,-10.5 - parent: 18153 - - uid: 25597 + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 23711 + - uid: 23911 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,-10.5 - parent: 18153 - - uid: 25598 + pos: 0.5,-3.5 + parent: 23711 + - uid: 23912 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-10.5 - parent: 18153 - - uid: 25599 + pos: 6.5,-3.5 + parent: 23711 + - uid: 23913 components: - type: Transform - rot: 3.141592653589793 rad - pos: 6.5,-11.5 - parent: 18153 - - uid: 25600 + rot: 1.5707963267948966 rad + pos: 0.5,-12.5 + parent: 23711 + - uid: 24331 components: - type: Transform - rot: 3.141592653589793 rad - pos: 5.5,-13.5 - parent: 18153 - - uid: 25601 + rot: 1.5707963267948966 rad + pos: 0.5,-0.5 + parent: 23919 + - uid: 24332 components: - type: Transform rot: 3.141592653589793 rad - pos: 1.5,-13.5 - parent: 18153 - - uid: 25602 + pos: 8.5,-0.5 + parent: 23919 + - uid: 24333 components: - type: Transform - pos: 2.5,-12.5 - parent: 18153 - - uid: 25603 + pos: 0.5,-7.5 + parent: 23919 + - uid: 24334 components: - type: Transform rot: 1.5707963267948966 rad - pos: 5.5,-12.5 - parent: 18153 - - uid: 25604 + pos: 2.5,-12.5 + parent: 23919 + - uid: 24335 components: - type: Transform - pos: 3.5,-12.5 - parent: 18153 - - uid: 25605 + rot: 3.141592653589793 rad + pos: 6.5,-12.5 + parent: 23919 + - uid: 24336 components: - type: Transform - pos: 4.5,-12.5 - parent: 18153 - - uid: 25606 + rot: -1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 23919 + - uid: 24337 + components: + - type: Transform + pos: 0.5,5.5 + parent: 23919 + - uid: 24441 components: - type: Transform rot: 1.5707963267948966 rad - pos: 1.5,-12.5 - parent: 18153 -- proto: WallShuttleDiagonal - entities: - - uid: 21720 + pos: -1.5,-3.5 + parent: 24340 + - uid: 24442 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-3.5 - parent: 21627 - - uid: 21721 + parent: 24340 + - uid: 24443 components: - type: Transform pos: -1.5,-5.5 - parent: 21627 - - uid: 21722 + parent: 24340 + - uid: 24444 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-5.5 - parent: 21627 - - uid: 21727 + parent: 24340 + - uid: 24445 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.5,-0.5 - parent: 21627 - - uid: 21728 + parent: 24340 + - uid: 24446 components: - type: Transform pos: -1.5,-0.5 - parent: 21627 - - uid: 21729 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,-3.5 - parent: 21627 - - uid: 21730 + parent: 24340 + - uid: 24447 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-6.5 - parent: 21627 - - uid: 21731 + parent: 24340 + - uid: 24448 components: - type: Transform rot: 1.5707963267948966 rad pos: -0.5,-6.5 - parent: 21627 - - uid: 25609 + parent: 24340 + - uid: 28069 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,17.5 + parent: 27260 + - uid: 28070 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -6.5,12.5 + parent: 27260 + - uid: 28071 + components: + - type: Transform + pos: 5.5,1.5 + parent: 27260 + - uid: 28072 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,1.5 + parent: 27260 + - uid: 28073 components: - type: Transform rot: 3.141592653589793 rad - pos: 6.5,-12.5 - parent: 18153 - - uid: 25610 + pos: 7.5,12.5 + parent: 27260 + - uid: 28074 components: - type: Transform - pos: 0.5,-3.5 - parent: 18153 - - uid: 25611 + pos: -6.5,17.5 + parent: 27260 + - uid: 28075 + components: + - type: Transform + pos: -7.5,1.5 + parent: 27260 + - uid: 28076 components: - type: Transform rot: -1.5707963267948966 rad - pos: 6.5,-3.5 - parent: 18153 - - uid: 25612 + pos: 8.5,1.5 + parent: 27260 + - uid: 28077 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,-12.5 - parent: 18153 -- proto: WallSolid + pos: -5.5,22.5 + parent: 27260 + - uid: 28078 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 6.5,22.5 + parent: 27260 +- proto: WallShuttleInterior entities: - - uid: 6 + - uid: 22057 components: - type: Transform - pos: -12.5,-14.5 - parent: 89 - - uid: 62 + rot: -1.5707963267948966 rad + pos: 26.5,29.5 + parent: 2 + - uid: 22058 components: - type: Transform - pos: -91.5,27.5 - parent: 89 - - uid: 90 + rot: -1.5707963267948966 rad + pos: 25.5,26.5 + parent: 2 + - uid: 22059 components: - type: Transform - pos: -26.5,15.5 - parent: 89 - - uid: 197 + rot: -1.5707963267948966 rad + pos: 22.5,28.5 + parent: 2 + - uid: 22060 components: - type: Transform - pos: -1.5,14.5 - parent: 89 - - uid: 228 + rot: -1.5707963267948966 rad + pos: 26.5,31.5 + parent: 2 + - uid: 22061 components: - type: Transform - pos: -16.5,-24.5 - parent: 89 - - uid: 230 + rot: -1.5707963267948966 rad + pos: 26.5,32.5 + parent: 2 + - uid: 22062 components: - type: Transform - pos: -17.5,-20.5 - parent: 89 - - uid: 231 + rot: -1.5707963267948966 rad + pos: 26.5,26.5 + parent: 2 + - uid: 22063 components: - type: Transform - pos: -17.5,-18.5 - parent: 89 - - uid: 232 + rot: -1.5707963267948966 rad + pos: 26.5,27.5 + parent: 2 + - uid: 22064 components: - type: Transform - pos: -16.5,-14.5 - parent: 89 - - uid: 233 + rot: -1.5707963267948966 rad + pos: 22.5,27.5 + parent: 2 + - uid: 22065 components: - type: Transform - pos: -23.5,-17.5 - parent: 89 - - uid: 234 + rot: -1.5707963267948966 rad + pos: 22.5,26.5 + parent: 2 + - uid: 22066 components: - type: Transform - pos: -14.5,-20.5 - parent: 89 - - uid: 235 + rot: -1.5707963267948966 rad + pos: 22.5,32.5 + parent: 2 + - uid: 22067 components: - type: Transform - pos: -13.5,-20.5 - parent: 89 - - uid: 236 + rot: -1.5707963267948966 rad + pos: 23.5,26.5 + parent: 2 + - uid: 22068 components: - type: Transform - pos: -16.5,-20.5 - parent: 89 - - uid: 237 + rot: -1.5707963267948966 rad + pos: 22.5,31.5 + parent: 2 + - uid: 22069 components: - type: Transform - pos: -17.5,-19.5 - parent: 89 - - uid: 238 + rot: -1.5707963267948966 rad + pos: 26.5,28.5 + parent: 2 + - uid: 22070 components: - type: Transform - pos: -17.5,-15.5 - parent: 89 - - uid: 239 + rot: -1.5707963267948966 rad + pos: 22.5,29.5 + parent: 2 + - uid: 22071 components: - type: Transform - pos: -17.5,-14.5 - parent: 89 - - uid: 262 + pos: 47.5,-34.5 + parent: 2 + - uid: 22072 components: - type: Transform - pos: -17.5,-17.5 - parent: 89 - - uid: 263 + pos: 54.5,-18.5 + parent: 2 +- proto: WallSolid + entities: + - uid: 22073 components: - type: Transform - pos: -23.5,-14.5 - parent: 89 - - uid: 281 + pos: -18.5,23.5 + parent: 2 + - uid: 22074 components: - type: Transform - pos: -1.5,-23.5 - parent: 89 - - uid: 283 + pos: -18.5,22.5 + parent: 2 + - uid: 22075 components: - type: Transform - pos: -7.5,-15.5 - parent: 89 - - uid: 395 + pos: -18.5,24.5 + parent: 2 + - uid: 22076 components: - type: Transform - pos: -89.5,25.5 - parent: 89 - - uid: 396 + rot: 1.5707963267948966 rad + pos: 55.5,-19.5 + parent: 2 + - uid: 22077 components: - type: Transform - pos: -93.5,26.5 - parent: 89 - - uid: 762 + pos: 27.5,24.5 + parent: 2 + - uid: 22078 components: - type: Transform - pos: -24.5,22.5 - parent: 89 - - uid: 795 + pos: -7.5,17.5 + parent: 2 + - uid: 22079 components: - type: Transform - pos: -108.5,-8.5 - parent: 89 - - uid: 1070 + pos: 21.5,27.5 + parent: 2 + - uid: 22080 components: - type: Transform - pos: -87.5,25.5 - parent: 89 - - uid: 1170 + pos: 32.5,27.5 + parent: 2 + - uid: 22081 components: - type: Transform - pos: -14.5,-14.5 - parent: 89 - - uid: 1171 + pos: 28.5,27.5 + parent: 2 + - uid: 22082 components: - type: Transform - pos: -15.5,-14.5 - parent: 89 - - uid: 1173 + pos: 27.5,27.5 + parent: 2 + - uid: 22083 components: - type: Transform - pos: -12.5,-15.5 - parent: 89 - - uid: 1174 + pos: 30.5,27.5 + parent: 2 + - uid: 22084 components: - type: Transform - pos: -7.5,-14.5 - parent: 89 - - uid: 1176 + pos: 18.5,27.5 + parent: 2 + - uid: 22085 components: - type: Transform - pos: -6.5,-14.5 - parent: 89 - - uid: 1177 + pos: 31.5,27.5 + parent: 2 + - uid: 22086 components: - type: Transform - pos: -5.5,-14.5 - parent: 89 - - uid: 1178 + pos: 20.5,27.5 + parent: 2 + - uid: 22087 components: - type: Transform - pos: -21.5,-21.5 - parent: 89 - - uid: 1179 + pos: 17.5,27.5 + parent: 2 + - uid: 22088 components: - type: Transform - pos: -4.5,-14.5 - parent: 89 - - uid: 1180 + pos: 29.5,27.5 + parent: 2 + - uid: 22089 components: - type: Transform - pos: -4.5,-15.5 - parent: 89 - - uid: 1181 + pos: -117.5,11.5 + parent: 2 + - uid: 22090 components: - type: Transform - pos: -4.5,-16.5 - parent: 89 - - uid: 1182 + rot: 1.5707963267948966 rad + pos: -21.5,16.5 + parent: 2 + - uid: 22091 components: - type: Transform - pos: -4.5,-17.5 - parent: 89 - - uid: 1183 + rot: 1.5707963267948966 rad + pos: -21.5,17.5 + parent: 2 + - uid: 22092 components: - type: Transform - pos: -4.5,-18.5 - parent: 89 - - uid: 1184 + rot: 1.5707963267948966 rad + pos: -21.5,18.5 + parent: 2 + - uid: 22093 components: - type: Transform - pos: -3.5,-18.5 - parent: 89 - - uid: 1185 + pos: -106.5,18.5 + parent: 2 + - uid: 22094 components: - type: Transform - pos: -1.5,-18.5 - parent: 89 - - uid: 1186 + pos: -117.5,10.5 + parent: 2 + - uid: 22095 components: - type: Transform - pos: 0.5,-18.5 - parent: 89 - - uid: 1190 + pos: -110.5,18.5 + parent: 2 + - uid: 22096 components: - type: Transform - pos: 3.5,-17.5 - parent: 89 - - uid: 1191 + pos: -110.5,16.5 + parent: 2 + - uid: 22097 components: - type: Transform - pos: 4.5,-17.5 - parent: 89 - - uid: 1192 + pos: -107.5,16.5 + parent: 2 + - uid: 22098 components: - type: Transform - pos: 5.5,-17.5 - parent: 89 - - uid: 1258 + pos: -109.5,16.5 + parent: 2 + - uid: 22099 components: - type: Transform - pos: -20.5,-21.5 - parent: 89 - - uid: 1260 + pos: -114.5,19.5 + parent: 2 + - uid: 22100 components: - type: Transform - pos: -23.5,-21.5 - parent: 89 - - uid: 1261 + pos: -115.5,19.5 + parent: 2 + - uid: 22101 components: - type: Transform - pos: -23.5,-20.5 - parent: 89 - - uid: 1262 + pos: -115.5,20.5 + parent: 2 + - uid: 22102 components: - type: Transform - pos: -23.5,-19.5 - parent: 89 - - uid: 1263 + rot: 1.5707963267948966 rad + pos: -9.5,-10.5 + parent: 2 + - uid: 22103 components: - type: Transform - pos: -23.5,-18.5 - parent: 89 - - uid: 1264 + rot: 1.5707963267948966 rad + pos: -11.5,-7.5 + parent: 2 + - uid: 22104 components: - type: Transform - pos: -23.5,-15.5 - parent: 89 - - uid: 1282 + rot: -1.5707963267948966 rad + pos: -8.5,6.5 + parent: 2 + - uid: 22105 components: - type: Transform - pos: -15.5,-20.5 - parent: 89 - - uid: 1338 + rot: -1.5707963267948966 rad + pos: -9.5,10.5 + parent: 2 + - uid: 22106 components: - type: Transform - pos: -10.5,-21.5 - parent: 89 - - uid: 1339 + pos: -13.5,-10.5 + parent: 2 + - uid: 22107 components: - type: Transform - pos: -10.5,-20.5 - parent: 89 - - uid: 1351 + rot: -1.5707963267948966 rad + pos: -8.5,11.5 + parent: 2 + - uid: 22108 components: - type: Transform - pos: 0.5,-19.5 - parent: 89 - - uid: 1352 + rot: -1.5707963267948966 rad + pos: -8.5,14.5 + parent: 2 + - uid: 22109 components: - type: Transform - pos: 0.5,-20.5 - parent: 89 - - uid: 1353 + rot: -1.5707963267948966 rad + pos: -12.5,10.5 + parent: 2 + - uid: 22110 components: - type: Transform - pos: 0.5,-21.5 - parent: 89 - - uid: 1354 + rot: -1.5707963267948966 rad + pos: -10.5,-4.5 + parent: 2 + - uid: 22111 components: - type: Transform - pos: 1.5,14.5 - parent: 89 - - uid: 1358 + rot: -1.5707963267948966 rad + pos: -8.5,10.5 + parent: 2 + - uid: 22112 components: - type: Transform - pos: -12.5,16.5 - parent: 89 - - uid: 1359 + pos: -36.5,-8.5 + parent: 2 + - uid: 22113 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -2.5,14.5 - parent: 89 - - uid: 1361 + pos: -38.5,-8.5 + parent: 2 + - uid: 22114 components: - type: Transform - pos: -11.5,22.5 - parent: 89 - - uid: 1362 + pos: -38.5,-9.5 + parent: 2 + - uid: 22115 components: - type: Transform - pos: -12.5,22.5 - parent: 89 - - uid: 1400 + pos: -37.5,-10.5 + parent: 2 + - uid: 22116 components: - type: Transform - pos: -23.5,-22.5 - parent: 89 - - uid: 1402 + pos: -36.5,-10.5 + parent: 2 + - uid: 22117 components: - type: Transform - pos: -23.5,-23.5 - parent: 89 - - uid: 1404 + pos: -38.5,-10.5 + parent: 2 + - uid: 22118 components: - type: Transform - pos: -23.5,-24.5 - parent: 89 - - uid: 1415 + pos: -36.5,-9.5 + parent: 2 + - uid: 22119 components: - type: Transform - pos: -22.5,-24.5 - parent: 89 - - uid: 1416 + rot: 3.141592653589793 rad + pos: 12.5,-17.5 + parent: 2 + - uid: 22120 components: - type: Transform - pos: -21.5,-24.5 - parent: 89 - - uid: 1417 + rot: 3.141592653589793 rad + pos: 28.5,-15.5 + parent: 2 + - uid: 22121 components: - type: Transform - pos: -20.5,-24.5 - parent: 89 - - uid: 1418 + rot: 3.141592653589793 rad + pos: 25.5,-15.5 + parent: 2 + - uid: 22122 components: - type: Transform - pos: -19.5,-24.5 - parent: 89 - - uid: 1419 + rot: 3.141592653589793 rad + pos: 22.5,-15.5 + parent: 2 + - uid: 22123 components: - type: Transform - pos: -18.5,-24.5 - parent: 89 - - uid: 1420 + rot: 3.141592653589793 rad + pos: 17.5,-15.5 + parent: 2 + - uid: 22124 components: - type: Transform - pos: -17.5,-24.5 - parent: 89 - - uid: 1422 + rot: 3.141592653589793 rad + pos: 16.5,-15.5 + parent: 2 + - uid: 22125 components: - type: Transform - pos: -14.5,-24.5 - parent: 89 - - uid: 1423 + rot: 3.141592653589793 rad + pos: 16.5,-17.5 + parent: 2 + - uid: 22126 components: - type: Transform - pos: -13.5,-24.5 - parent: 89 - - uid: 1424 + rot: 3.141592653589793 rad + pos: 16.5,-16.5 + parent: 2 + - uid: 22127 components: - type: Transform - pos: -15.5,-24.5 - parent: 89 - - uid: 1425 + rot: 3.141592653589793 rad + pos: -2.5,-10.5 + parent: 2 + - uid: 22128 components: - type: Transform - pos: -12.5,-24.5 - parent: 89 - - uid: 1430 + rot: 3.141592653589793 rad + pos: -2.5,-8.5 + parent: 2 + - uid: 22129 components: - type: Transform - pos: -20.5,-23.5 - parent: 89 - - uid: 1465 + rot: 3.141592653589793 rad + pos: -2.5,-6.5 + parent: 2 + - uid: 22130 components: - type: Transform - pos: -91.5,26.5 - parent: 89 - - uid: 1521 + rot: 3.141592653589793 rad + pos: -2.5,-9.5 + parent: 2 + - uid: 22131 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -10.5,-23.5 - parent: 89 - - uid: 1645 + rot: 3.141592653589793 rad + pos: -2.5,-7.5 + parent: 2 + - uid: 22132 components: - type: Transform - pos: 5.5,22.5 - parent: 89 - - uid: 1676 + rot: 3.141592653589793 rad + pos: -2.5,-0.5 + parent: 2 + - uid: 22133 components: - type: Transform - pos: 5.5,-21.5 - parent: 89 - - uid: 1677 + rot: 3.141592653589793 rad + pos: -2.5,-5.5 + parent: 2 + - uid: 22134 components: - type: Transform - pos: 5.5,-23.5 - parent: 89 - - uid: 1678 + rot: 3.141592653589793 rad + pos: -3.5,0.5 + parent: 2 + - uid: 22135 components: - type: Transform - pos: -3.5,-23.5 - parent: 89 - - uid: 1679 + rot: 3.141592653589793 rad + pos: -2.5,-4.5 + parent: 2 + - uid: 22136 components: - type: Transform - pos: 4.5,-23.5 - parent: 89 - - uid: 1680 + rot: 3.141592653589793 rad + pos: -2.5,-3.5 + parent: 2 + - uid: 22137 components: - type: Transform - pos: -3.5,-23.5 - parent: 89 - - uid: 1715 + rot: 3.141592653589793 rad + pos: -2.5,-2.5 + parent: 2 + - uid: 22138 components: - type: Transform - pos: -13.5,13.5 - parent: 89 - - uid: 1794 + rot: 3.141592653589793 rad + pos: -2.5,0.5 + parent: 2 + - uid: 22139 components: - type: Transform - pos: -21.5,-14.5 - parent: 89 - - uid: 1821 + rot: 3.141592653589793 rad + pos: -2.5,-1.5 + parent: 2 + - uid: 22140 components: - type: Transform - pos: 0.5,-23.5 - parent: 89 - - uid: 1864 + pos: -26.5,15.5 + parent: 2 + - uid: 22141 components: - type: Transform - pos: -3.5,-21.5 - parent: 89 - - uid: 1865 + pos: -1.5,14.5 + parent: 2 + - uid: 22142 components: - type: Transform - pos: -3.5,-20.5 - parent: 89 - - uid: 1872 + pos: -17.5,-17.5 + parent: 2 + - uid: 22143 components: - type: Transform - pos: -4.5,-19.5 - parent: 89 - - uid: 1873 + pos: -1.5,-23.5 + parent: 2 + - uid: 22144 components: - type: Transform - pos: -5.5,-19.5 - parent: 89 - - uid: 1875 + pos: -93.5,26.5 + parent: 2 + - uid: 22145 components: - type: Transform - pos: -7.5,-19.5 - parent: 89 - - uid: 1876 + rot: 1.5707963267948966 rad + pos: -28.5,2.5 + parent: 2 + - uid: 22146 components: - type: Transform - pos: -9.5,-19.5 - parent: 89 - - uid: 1877 + pos: -24.5,22.5 + parent: 2 + - uid: 22147 components: - type: Transform - pos: -10.5,-19.5 - parent: 89 - - uid: 1879 + rot: 1.5707963267948966 rad + pos: -54.5,15.5 + parent: 2 + - uid: 22148 components: - type: Transform - pos: -6.5,-19.5 - parent: 89 - - uid: 1881 + pos: -1.5,-18.5 + parent: 2 + - uid: 22149 components: - type: Transform - pos: -11.5,-20.5 - parent: 89 - - uid: 1882 + pos: 1.5,14.5 + parent: 2 + - uid: 22150 components: - type: Transform - pos: -12.5,-20.5 - parent: 89 - - uid: 1885 + pos: -12.5,16.5 + parent: 2 + - uid: 22151 components: - type: Transform - rot: 3.141592653589793 rad - pos: -116.5,7.5 - parent: 89 - - uid: 1886 + rot: -1.5707963267948966 rad + pos: -2.5,14.5 + parent: 2 + - uid: 22152 components: - type: Transform - pos: 5.5,-22.5 - parent: 89 - - uid: 1887 + pos: -11.5,22.5 + parent: 2 + - uid: 22153 components: - type: Transform - pos: 5.5,-18.5 - parent: 89 - - uid: 1888 + pos: -12.5,22.5 + parent: 2 + - uid: 22154 components: - type: Transform - pos: 5.5,-19.5 - parent: 89 - - uid: 1890 + pos: 5.5,22.5 + parent: 2 + - uid: 22155 components: - type: Transform - pos: -22.5,-21.5 - parent: 89 - - uid: 1998 + pos: -13.5,13.5 + parent: 2 + - uid: 22156 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -116.5,7.5 + parent: 2 + - uid: 22157 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,8.5 - parent: 89 - - uid: 2072 + parent: 2 + - uid: 22158 components: - type: Transform pos: -31.5,24.5 - parent: 89 - - uid: 2074 + parent: 2 + - uid: 22159 components: - type: Transform pos: -24.5,31.5 - parent: 89 - - uid: 3048 + parent: 2 + - uid: 22160 components: - type: Transform pos: 31.5,21.5 - parent: 89 - - uid: 3117 + parent: 2 + - uid: 22161 components: - type: Transform - pos: -90.5,27.5 - parent: 89 - - uid: 3118 + rot: 1.5707963267948966 rad + pos: -53.5,15.5 + parent: 2 + - uid: 22162 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -52.5,15.5 + parent: 2 + - uid: 22163 components: - type: Transform pos: -87.5,24.5 - parent: 89 - - uid: 3133 + parent: 2 + - uid: 22164 components: - type: Transform - pos: 46.5,-1.5 - parent: 89 - - uid: 3243 + pos: -88.5,24.5 + parent: 2 + - uid: 22165 components: - type: Transform - pos: -90.5,29.5 - parent: 89 - - uid: 3266 + pos: -89.5,24.5 + parent: 2 + - uid: 22166 components: - type: Transform - pos: -88.5,24.5 - parent: 89 - - uid: 3271 + rot: 1.5707963267948966 rad + pos: -70.5,13.5 + parent: 2 + - uid: 22167 components: - type: Transform - pos: -89.5,24.5 - parent: 89 - - uid: 3295 + rot: 1.5707963267948966 rad + pos: -70.5,14.5 + parent: 2 + - uid: 22168 components: - type: Transform - pos: -90.5,25.5 - parent: 89 - - uid: 3300 + rot: 1.5707963267948966 rad + pos: -70.5,12.5 + parent: 2 + - uid: 22169 components: - type: Transform pos: -90.5,24.5 - parent: 89 - - uid: 3339 + parent: 2 + - uid: 22170 components: - type: Transform pos: -90.5,23.5 - parent: 89 - - uid: 3342 + parent: 2 + - uid: 22171 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,6.5 - parent: 89 - - uid: 3364 - components: - - type: Transform - pos: -90.5,26.5 - parent: 89 - - uid: 3409 - components: - - type: Transform - pos: -88.5,25.5 - parent: 89 - - uid: 3427 - components: - - type: Transform - pos: -11.5,-10.5 - parent: 89 - - uid: 3450 - components: - - type: Transform - pos: -6.5,-10.5 - parent: 89 - - uid: 3451 - components: - - type: Transform - pos: -5.5,-10.5 - parent: 89 - - uid: 3452 + parent: 2 + - uid: 22172 components: - type: Transform - pos: -4.5,-10.5 - parent: 89 - - uid: 3460 + rot: 1.5707963267948966 rad + pos: -28.5,5.5 + parent: 2 + - uid: 22173 components: - type: Transform - pos: -4.5,-4.5 - parent: 89 - - uid: 3461 + rot: 1.5707963267948966 rad + pos: -38.5,2.5 + parent: 2 + - uid: 22174 components: - type: Transform - pos: -4.5,-3.5 - parent: 89 - - uid: 3462 + rot: 1.5707963267948966 rad + pos: -33.5,6.5 + parent: 2 + - uid: 22175 components: - type: Transform - pos: -4.5,-2.5 - parent: 89 - - uid: 3463 + pos: -11.5,-10.5 + parent: 2 + - uid: 22176 components: - type: Transform - pos: -4.5,-1.5 - parent: 89 - - uid: 3464 + pos: -5.5,-10.5 + parent: 2 + - uid: 22177 components: - type: Transform - pos: -4.5,-0.5 - parent: 89 - - uid: 3465 + pos: -4.5,-10.5 + parent: 2 + - uid: 22178 components: - type: Transform pos: -4.5,0.5 - parent: 89 - - uid: 3469 + parent: 2 + - uid: 22179 components: - type: Transform pos: -5.5,0.5 - parent: 89 - - uid: 3470 + parent: 2 + - uid: 22180 components: - type: Transform pos: -6.5,0.5 - parent: 89 - - uid: 3471 + parent: 2 + - uid: 22181 components: - type: Transform pos: -7.5,0.5 - parent: 89 - - uid: 3472 + parent: 2 + - uid: 22182 components: - type: Transform pos: -8.5,0.5 - parent: 89 - - uid: 3473 + parent: 2 + - uid: 22183 components: - type: Transform pos: -9.5,0.5 - parent: 89 - - uid: 3474 + parent: 2 + - uid: 22184 components: - type: Transform pos: -10.5,0.5 - parent: 89 - - uid: 3475 + parent: 2 + - uid: 22185 components: - type: Transform pos: -11.5,0.5 - parent: 89 - - uid: 3476 + parent: 2 + - uid: 22186 components: - type: Transform pos: -12.5,0.5 - parent: 89 - - uid: 3477 + parent: 2 + - uid: 22187 components: - type: Transform pos: -13.5,0.5 - parent: 89 - - uid: 3478 + parent: 2 + - uid: 22188 components: - type: Transform pos: -14.5,0.5 - parent: 89 - - uid: 3479 + parent: 2 + - uid: 22189 components: - type: Transform pos: -15.5,0.5 - parent: 89 - - uid: 3480 + parent: 2 + - uid: 22190 components: - type: Transform pos: -16.5,0.5 - parent: 89 - - uid: 3481 + parent: 2 + - uid: 22191 components: - type: Transform pos: -16.5,-0.5 - parent: 89 - - uid: 3485 + parent: 2 + - uid: 22192 components: - type: Transform pos: -10.5,-0.5 - parent: 89 - - uid: 3489 + parent: 2 + - uid: 22193 components: - type: Transform pos: -10.5,-6.5 - parent: 89 - - uid: 3490 + parent: 2 + - uid: 22194 components: - type: Transform pos: -11.5,-6.5 - parent: 89 - - uid: 3491 + parent: 2 + - uid: 22195 components: - type: Transform pos: -12.5,-6.5 - parent: 89 - - uid: 3494 + parent: 2 + - uid: 22196 components: - type: Transform pos: -10.5,-10.5 - parent: 89 - - uid: 3498 + parent: 2 + - uid: 22197 components: - type: Transform pos: -14.5,-6.5 - parent: 89 - - uid: 3499 + parent: 2 + - uid: 22198 components: - type: Transform pos: -15.5,-6.5 - parent: 89 - - uid: 3500 + parent: 2 + - uid: 22199 components: - type: Transform pos: -16.5,-6.5 - parent: 89 - - uid: 3501 + parent: 2 + - uid: 22200 components: - type: Transform pos: -16.5,-8.5 - parent: 89 - - uid: 3502 + parent: 2 + - uid: 22201 components: - type: Transform pos: -16.5,-9.5 - parent: 89 - - uid: 3503 + parent: 2 + - uid: 22202 components: - type: Transform pos: -16.5,-10.5 - parent: 89 - - uid: 3504 + parent: 2 + - uid: 22203 components: - type: Transform pos: -15.5,-10.5 - parent: 89 - - uid: 3506 + parent: 2 + - uid: 22204 components: - type: Transform pos: -14.5,-10.5 - parent: 89 - - uid: 3507 + parent: 2 + - uid: 22205 components: - type: Transform pos: -12.5,-10.5 - parent: 89 - - uid: 3544 + parent: 2 + - uid: 22206 components: - type: Transform rot: -1.5707963267948966 rad pos: -10.5,16.5 - parent: 89 - - uid: 3553 - components: - - type: Transform - pos: -7.5,-8.5 - parent: 89 - - uid: 3555 - components: - - type: Transform - pos: -7.5,-7.5 - parent: 89 - - uid: 3602 - components: - - type: Transform - pos: -11.5,-8.5 - parent: 89 - - uid: 3603 + parent: 2 + - uid: 22207 components: - type: Transform pos: -11.5,-9.5 - parent: 89 - - uid: 3868 - components: - - type: Transform - pos: -7.5,-9.5 - parent: 89 - - uid: 3869 + parent: 2 + - uid: 22208 components: - type: Transform pos: -7.5,-10.5 - parent: 89 - - uid: 3871 + parent: 2 + - uid: 22209 components: - type: Transform pos: -8.5,-10.5 - parent: 89 - - uid: 3880 + parent: 2 + - uid: 22210 components: - type: Transform pos: -23.5,-9.5 - parent: 89 - - uid: 3883 + parent: 2 + - uid: 22211 components: - type: Transform pos: -19.5,-9.5 - parent: 89 - - uid: 3884 + parent: 2 + - uid: 22212 components: - type: Transform pos: -20.5,0.5 - parent: 89 - - uid: 3886 + parent: 2 + - uid: 22213 components: - type: Transform pos: -21.5,0.5 - parent: 89 - - uid: 3887 + parent: 2 + - uid: 22214 components: - type: Transform pos: -22.5,0.5 - parent: 89 - - uid: 3888 + parent: 2 + - uid: 22215 components: - type: Transform pos: -23.5,0.5 - parent: 89 - - uid: 3889 + parent: 2 + - uid: 22216 components: - type: Transform pos: -24.5,0.5 - parent: 89 - - uid: 3890 + parent: 2 + - uid: 22217 components: - type: Transform pos: -25.5,0.5 - parent: 89 - - uid: 3891 + parent: 2 + - uid: 22218 components: - type: Transform pos: -26.5,0.5 - parent: 89 - - uid: 3892 + parent: 2 + - uid: 22219 components: - type: Transform pos: -27.5,0.5 - parent: 89 - - uid: 3893 + parent: 2 + - uid: 22220 components: - type: Transform pos: -28.5,0.5 - parent: 89 - - uid: 3894 + parent: 2 + - uid: 22221 components: - type: Transform pos: -27.5,-0.5 - parent: 89 - - uid: 3895 + parent: 2 + - uid: 22222 components: - type: Transform pos: -27.5,-2.5 - parent: 89 - - uid: 3896 + parent: 2 + - uid: 22223 components: - type: Transform pos: -27.5,-3.5 - parent: 89 - - uid: 3897 + parent: 2 + - uid: 22224 components: - type: Transform pos: -28.5,-3.5 - parent: 89 - - uid: 3898 + parent: 2 + - uid: 22225 components: - type: Transform pos: -29.5,-3.5 - parent: 89 - - uid: 3899 + parent: 2 + - uid: 22226 components: - type: Transform pos: -30.5,-3.5 - parent: 89 - - uid: 3900 + parent: 2 + - uid: 22227 components: - type: Transform pos: -31.5,-3.5 - parent: 89 - - uid: 3901 + parent: 2 + - uid: 22228 components: - type: Transform pos: -32.5,-3.5 - parent: 89 - - uid: 3902 + parent: 2 + - uid: 22229 components: - type: Transform pos: -32.5,-2.5 - parent: 89 - - uid: 3903 + parent: 2 + - uid: 22230 components: - type: Transform pos: -32.5,-1.5 - parent: 89 - - uid: 3905 + parent: 2 + - uid: 22231 components: - type: Transform pos: -28.5,1.5 - parent: 89 - - uid: 3906 + parent: 2 + - uid: 22232 components: - type: Transform pos: -29.5,1.5 - parent: 89 - - uid: 3907 + parent: 2 + - uid: 22233 components: - type: Transform pos: -30.5,1.5 - parent: 89 - - uid: 3908 + parent: 2 + - uid: 22234 components: - type: Transform pos: -31.5,1.5 - parent: 89 - - uid: 3909 + parent: 2 + - uid: 22235 components: - type: Transform pos: -32.5,1.5 - parent: 89 - - uid: 3910 + parent: 2 + - uid: 22236 components: - type: Transform pos: -33.5,1.5 - parent: 89 - - uid: 3911 + parent: 2 + - uid: 22237 components: - type: Transform pos: -34.5,1.5 - parent: 89 - - uid: 3912 + parent: 2 + - uid: 22238 components: - type: Transform pos: -35.5,1.5 - parent: 89 - - uid: 3913 + parent: 2 + - uid: 22239 components: - type: Transform pos: -36.5,1.5 - parent: 89 - - uid: 3914 + parent: 2 + - uid: 22240 components: - type: Transform pos: -37.5,1.5 - parent: 89 - - uid: 3915 + parent: 2 + - uid: 22241 components: - type: Transform pos: -38.5,1.5 - parent: 89 - - uid: 3916 + parent: 2 + - uid: 22242 components: - type: Transform pos: -32.5,0.5 - parent: 89 - - uid: 3917 + parent: 2 + - uid: 22243 components: - type: Transform pos: -33.5,-2.5 - parent: 89 - - uid: 3918 + parent: 2 + - uid: 22244 components: - type: Transform pos: -34.5,-2.5 - parent: 89 - - uid: 3919 + parent: 2 + - uid: 22245 components: - type: Transform pos: -35.5,-2.5 - parent: 89 - - uid: 3920 + parent: 2 + - uid: 22246 components: - type: Transform pos: -36.5,-2.5 - parent: 89 - - uid: 3921 + parent: 2 + - uid: 22247 components: - type: Transform pos: -36.5,-3.5 - parent: 89 - - uid: 3922 + parent: 2 + - uid: 22248 components: - type: Transform pos: -36.5,-5.5 - parent: 89 - - uid: 3923 + parent: 2 + - uid: 22249 components: - type: Transform pos: -36.5,-6.5 - parent: 89 - - uid: 3924 + parent: 2 + - uid: 22250 components: - type: Transform pos: -36.5,-7.5 - parent: 89 - - uid: 3927 + parent: 2 + - uid: 22251 components: - type: Transform pos: -35.5,-10.5 - parent: 89 - - uid: 3928 + parent: 2 + - uid: 22252 components: - type: Transform pos: -34.5,-10.5 - parent: 89 - - uid: 3929 + parent: 2 + - uid: 22253 components: - type: Transform pos: -33.5,-10.5 - parent: 89 - - uid: 3930 + parent: 2 + - uid: 22254 components: - type: Transform pos: -32.5,-10.5 - parent: 89 - - uid: 3931 + parent: 2 + - uid: 22255 components: - type: Transform pos: -31.5,-10.5 - parent: 89 - - uid: 3932 + parent: 2 + - uid: 22256 components: - type: Transform pos: -30.5,-10.5 - parent: 89 - - uid: 3933 + parent: 2 + - uid: 22257 components: - type: Transform pos: -29.5,-10.5 - parent: 89 - - uid: 3934 + parent: 2 + - uid: 22258 components: - type: Transform pos: -28.5,-10.5 - parent: 89 - - uid: 3939 + parent: 2 + - uid: 22259 components: - type: Transform pos: -28.5,-9.5 - parent: 89 - - uid: 3940 + parent: 2 + - uid: 22260 components: - type: Transform pos: -27.5,-9.5 - parent: 89 - - uid: 3943 + parent: 2 + - uid: 22261 components: - type: Transform pos: -32.5,-9.5 - parent: 89 - - uid: 3945 + parent: 2 + - uid: 22262 components: - type: Transform pos: -32.5,-6.5 - parent: 89 - - uid: 3946 + parent: 2 + - uid: 22263 components: - type: Transform pos: -32.5,-5.5 - parent: 89 - - uid: 3954 + parent: 2 + - uid: 22264 components: - type: Transform pos: -38.5,-7.5 - parent: 89 - - uid: 3955 + parent: 2 + - uid: 22265 components: - type: Transform pos: -38.5,-6.5 - parent: 89 - - uid: 3956 + parent: 2 + - uid: 22266 components: - type: Transform pos: -38.5,-5.5 - parent: 89 - - uid: 3957 + parent: 2 + - uid: 22267 components: - type: Transform pos: -38.5,-2.5 - parent: 89 - - uid: 3958 + parent: 2 + - uid: 22268 components: - type: Transform pos: -38.5,-1.5 - parent: 89 - - uid: 3960 + parent: 2 + - uid: 22269 components: - type: Transform pos: -38.5,0.5 - parent: 89 - - uid: 3961 + parent: 2 + - uid: 22270 components: - type: Transform pos: -38.5,-3.5 - parent: 89 - - uid: 4185 + parent: 2 + - uid: 22271 components: - type: Transform pos: -30.5,-2.5 - parent: 89 - - uid: 4517 + parent: 2 + - uid: 22272 components: - type: Transform pos: -46.5,-11.5 - parent: 89 - - uid: 4525 + parent: 2 + - uid: 22273 components: - type: Transform pos: -70.5,-8.5 - parent: 89 - - uid: 4530 + parent: 2 + - uid: 22274 components: - type: Transform pos: -68.5,1.5 - parent: 89 - - uid: 4531 + parent: 2 + - uid: 22275 components: - type: Transform pos: -68.5,2.5 - parent: 89 - - uid: 4533 + parent: 2 + - uid: 22276 components: - type: Transform pos: -67.5,2.5 - parent: 89 - - uid: 4536 + parent: 2 + - uid: 22277 components: - type: Transform pos: -64.5,2.5 - parent: 89 - - uid: 4539 + parent: 2 + - uid: 22278 components: - type: Transform pos: -61.5,2.5 - parent: 89 - - uid: 4542 + parent: 2 + - uid: 22279 components: - type: Transform pos: -58.5,2.5 - parent: 89 - - uid: 4543 + parent: 2 + - uid: 22280 components: - type: Transform pos: -57.5,2.5 - parent: 89 - - uid: 4544 + parent: 2 + - uid: 22281 components: - type: Transform pos: -57.5,1.5 - parent: 89 - - uid: 4548 + parent: 2 + - uid: 22282 components: - type: Transform pos: -68.5,-2.5 - parent: 89 - - uid: 4553 + parent: 2 + - uid: 22283 components: - type: Transform pos: -56.5,-4.5 - parent: 89 - - uid: 4554 + parent: 2 + - uid: 22284 components: - type: Transform pos: -57.5,-3.5 - parent: 89 - - uid: 4555 + parent: 2 + - uid: 22285 components: - type: Transform pos: -54.5,-4.5 - parent: 89 - - uid: 4556 + parent: 2 + - uid: 22286 components: - type: Transform pos: -68.5,-4.5 - parent: 89 - - uid: 4557 + parent: 2 + - uid: 22287 components: - type: Transform pos: -67.5,-3.5 - parent: 89 - - uid: 4561 + parent: 2 + - uid: 22288 components: - type: Transform pos: -65.5,-3.5 - parent: 89 - - uid: 4562 + parent: 2 + - uid: 22289 components: - type: Transform pos: -69.5,-4.5 - parent: 89 - - uid: 4563 + parent: 2 + - uid: 22290 components: - type: Transform pos: -72.5,-4.5 - parent: 89 - - uid: 4565 + parent: 2 + - uid: 22291 components: - type: Transform pos: -68.5,-3.5 - parent: 89 - - uid: 4567 + parent: 2 + - uid: 22292 components: - type: Transform pos: -71.5,-4.5 - parent: 89 - - uid: 4570 + parent: 2 + - uid: 22293 components: - type: Transform pos: -60.5,-3.5 - parent: 89 - - uid: 4571 + parent: 2 + - uid: 22294 components: - type: Transform pos: -58.5,-3.5 - parent: 89 - - uid: 4573 + parent: 2 + - uid: 22295 components: - type: Transform pos: -57.5,-4.5 - parent: 89 - - uid: 4574 + parent: 2 + - uid: 22296 components: - type: Transform pos: -57.5,-5.5 - parent: 89 - - uid: 4581 + parent: 2 + - uid: 22297 components: - type: Transform pos: -45.5,-7.5 - parent: 89 - - uid: 4582 + parent: 2 + - uid: 22298 components: - type: Transform pos: -45.5,-8.5 - parent: 89 - - uid: 4586 + parent: 2 + - uid: 22299 components: - type: Transform pos: -45.5,-10.5 - parent: 89 - - uid: 4588 + parent: 2 + - uid: 22300 components: - type: Transform pos: -45.5,-11.5 - parent: 89 - - uid: 4595 - components: - - type: Transform - pos: -58.5,-18.5 - parent: 89 - - uid: 4596 + parent: 2 + - uid: 22301 components: - type: Transform pos: -46.5,-13.5 - parent: 89 - - uid: 4626 + parent: 2 + - uid: 22302 components: - type: Transform pos: -68.5,-8.5 - parent: 89 - - uid: 4652 + parent: 2 + - uid: 22303 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,-7.5 - parent: 89 - - uid: 4665 - components: - - type: Transform - pos: -64.5,-18.5 - parent: 89 - - uid: 4666 + parent: 2 + - uid: 22304 components: - type: Transform pos: -72.5,-8.5 - parent: 89 - - uid: 4668 + parent: 2 + - uid: 22305 components: - type: Transform pos: -72.5,-3.5 - parent: 89 - - uid: 4669 + parent: 2 + - uid: 22306 components: - type: Transform pos: -57.5,-2.5 - parent: 89 - - uid: 4671 + parent: 2 + - uid: 22307 components: - type: Transform pos: -53.5,-3.5 - parent: 89 - - uid: 4672 + parent: 2 + - uid: 22308 components: - type: Transform pos: -53.5,-2.5 - parent: 89 - - uid: 4673 + parent: 2 + - uid: 22309 components: - type: Transform pos: -53.5,-1.5 - parent: 89 - - uid: 4674 + parent: 2 + - uid: 22310 components: - type: Transform pos: -53.5,-0.5 - parent: 89 - - uid: 4675 + parent: 2 + - uid: 22311 components: - type: Transform pos: -53.5,0.5 - parent: 89 - - uid: 4676 + parent: 2 + - uid: 22312 components: - type: Transform pos: -53.5,1.5 - parent: 89 - - uid: 4677 + parent: 2 + - uid: 22313 components: - type: Transform pos: -53.5,2.5 - parent: 89 - - uid: 4678 + parent: 2 + - uid: 22314 components: - type: Transform pos: -52.5,2.5 - parent: 89 - - uid: 4679 + parent: 2 + - uid: 22315 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,0.5 - parent: 89 - - uid: 4684 + parent: 2 + - uid: 22316 components: - type: Transform pos: -72.5,2.5 - parent: 89 - - uid: 4721 + parent: 2 + - uid: 22317 components: - type: Transform pos: -72.5,-9.5 - parent: 89 - - uid: 4722 + parent: 2 + - uid: 22318 components: - type: Transform pos: -71.5,-8.5 - parent: 89 - - uid: 4723 + parent: 2 + - uid: 22319 components: - type: Transform pos: -68.5,-13.5 - parent: 89 - - uid: 4882 + parent: 2 + - uid: 22320 components: - type: Transform pos: -68.5,-5.5 - parent: 89 - - uid: 4883 + parent: 2 + - uid: 22321 components: - type: Transform pos: -68.5,-7.5 - parent: 89 - - uid: 5036 + parent: 2 + - uid: 22322 components: - type: Transform pos: -53.5,-4.5 - parent: 89 - - uid: 5037 + parent: 2 + - uid: 22323 components: - type: Transform pos: -53.5,-5.5 - parent: 89 - - uid: 5115 + parent: 2 + - uid: 22324 components: - type: Transform pos: -44.5,-4.5 - parent: 89 - - uid: 5116 + parent: 2 + - uid: 22325 components: - type: Transform pos: -44.5,-3.5 - parent: 89 - - uid: 5158 + parent: 2 + - uid: 22326 components: - type: Transform rot: 3.141592653589793 rad pos: -44.5,-5.5 - parent: 89 - - uid: 5172 + parent: 2 + - uid: 22327 components: - type: Transform pos: -57.5,-10.5 - parent: 89 - - uid: 5180 + parent: 2 + - uid: 22328 components: - type: Transform pos: -57.5,-7.5 - parent: 89 - - uid: 5181 + parent: 2 + - uid: 22329 components: - type: Transform pos: -53.5,-6.5 - parent: 89 - - uid: 5182 + parent: 2 + - uid: 22330 components: - type: Transform pos: -53.5,-7.5 - parent: 89 - - uid: 5183 + parent: 2 + - uid: 22331 components: - type: Transform pos: -53.5,-8.5 - parent: 89 - - uid: 5184 + parent: 2 + - uid: 22332 components: - type: Transform pos: -52.5,-8.5 - parent: 89 - - uid: 5185 + parent: 2 + - uid: 22333 components: - type: Transform pos: -51.5,-8.5 - parent: 89 - - uid: 5186 + parent: 2 + - uid: 22334 components: - type: Transform pos: -50.5,-8.5 - parent: 89 - - uid: 5187 + parent: 2 + - uid: 22335 components: - type: Transform pos: -49.5,-8.5 - parent: 89 - - uid: 5188 + parent: 2 + - uid: 22336 components: - type: Transform pos: -48.5,-8.5 - parent: 89 - - uid: 5189 + parent: 2 + - uid: 22337 components: - type: Transform pos: -47.5,-8.5 - parent: 89 - - uid: 5190 + parent: 2 + - uid: 22338 components: - type: Transform pos: -46.5,-8.5 - parent: 89 - - uid: 5452 + parent: 2 + - uid: 22339 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-5.5 - parent: 89 - - uid: 5453 + parent: 2 + - uid: 22340 components: - type: Transform rot: 3.141592653589793 rad pos: -49.5,-7.5 - parent: 89 - - uid: 5472 + parent: 2 + - uid: 22341 components: - type: Transform pos: -49.5,-6.5 - parent: 89 - - uid: 5504 + parent: 2 + - uid: 22342 components: - type: Transform pos: -46.5,-3.5 - parent: 89 - - uid: 5508 + parent: 2 + - uid: 22343 components: - type: Transform pos: -46.5,-4.5 - parent: 89 - - uid: 5511 + parent: 2 + - uid: 22344 components: - type: Transform pos: -46.5,-5.5 - parent: 89 - - uid: 5641 + parent: 2 + - uid: 22345 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-3.5 - parent: 89 - - uid: 5703 + parent: 2 + - uid: 22346 components: - type: Transform pos: -41.5,6.5 - parent: 89 - - uid: 5733 + parent: 2 + - uid: 22347 components: - type: Transform pos: 12.5,14.5 - parent: 89 - - uid: 5779 + parent: 2 + - uid: 22348 components: - type: Transform pos: -73.5,-4.5 - parent: 89 - - uid: 5788 + parent: 2 + - uid: 22349 components: - type: Transform pos: -75.5,-4.5 - parent: 89 - - uid: 5845 + parent: 2 + - uid: 22350 components: - type: Transform pos: -24.5,27.5 - parent: 89 - - uid: 5888 + parent: 2 + - uid: 22351 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,9.5 - parent: 89 - - uid: 5925 + parent: 2 + - uid: 22352 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,6.5 - parent: 89 - - uid: 5948 + parent: 2 + - uid: 22353 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,7.5 - parent: 89 - - uid: 5949 + parent: 2 + - uid: 22354 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,6.5 - parent: 89 - - uid: 5957 + parent: 2 + - uid: 22355 components: - type: Transform rot: 3.141592653589793 rad pos: -56.5,11.5 - parent: 89 - - uid: 5958 + parent: 2 + - uid: 22356 components: - type: Transform rot: 3.141592653589793 rad pos: -55.5,11.5 - parent: 89 - - uid: 5959 + parent: 2 + - uid: 22357 components: - type: Transform rot: 3.141592653589793 rad pos: -54.5,11.5 - parent: 89 - - uid: 5960 + parent: 2 + - uid: 22358 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,11.5 - parent: 89 - - uid: 6042 + parent: 2 + - uid: 22359 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,11.5 - parent: 89 - - uid: 6044 + parent: 2 + - uid: 22360 components: - type: Transform rot: 1.5707963267948966 rad pos: -51.5,12.5 - parent: 89 - - uid: 6045 + parent: 2 + - uid: 22361 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,12.5 - parent: 89 - - uid: 6046 + parent: 2 + - uid: 22362 components: - type: Transform rot: 1.5707963267948966 rad pos: -49.5,12.5 - parent: 89 - - uid: 6047 + parent: 2 + - uid: 22363 components: - type: Transform rot: 1.5707963267948966 rad pos: -48.5,12.5 - parent: 89 - - uid: 6048 + parent: 2 + - uid: 22364 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,12.5 - parent: 89 - - uid: 6049 + parent: 2 + - uid: 22365 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,12.5 - parent: 89 - - uid: 6050 + parent: 2 + - uid: 22366 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,12.5 - parent: 89 - - uid: 6051 + parent: 2 + - uid: 22367 components: - type: Transform rot: 1.5707963267948966 rad pos: -44.5,12.5 - parent: 89 - - uid: 6052 + parent: 2 + - uid: 22368 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,12.5 - parent: 89 - - uid: 6053 + parent: 2 + - uid: 22369 components: - type: Transform rot: 1.5707963267948966 rad pos: -43.5,10.5 - parent: 89 - - uid: 6054 + parent: 2 + - uid: 22370 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,10.5 - parent: 89 - - uid: 6056 + parent: 2 + - uid: 22371 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,9.5 - parent: 89 - - uid: 6057 + parent: 2 + - uid: 22372 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,8.5 - parent: 89 - - uid: 6058 + parent: 2 + - uid: 22373 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,7.5 - parent: 89 - - uid: 6059 + parent: 2 + - uid: 22374 components: - type: Transform rot: 1.5707963267948966 rad pos: -42.5,6.5 - parent: 89 - - uid: 6060 + parent: 2 + - uid: 22375 components: - type: Transform rot: 1.5707963267948966 rad pos: -47.5,6.5 - parent: 89 - - uid: 6119 + parent: 2 + - uid: 22376 components: - type: Transform pos: -52.5,12.5 - parent: 89 - - uid: 6124 + parent: 2 + - uid: 22377 components: - type: Transform pos: -47.5,2.5 - parent: 89 - - uid: 6254 + parent: 2 + - uid: 22378 components: - type: Transform rot: 1.5707963267948966 rad pos: -14.5,5.5 - parent: 89 - - uid: 6255 + parent: 2 + - uid: 22379 components: - type: Transform rot: 1.5707963267948966 rad pos: -13.5,5.5 - parent: 89 - - uid: 6262 + parent: 2 + - uid: 22380 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,5.5 - parent: 89 - - uid: 6263 + parent: 2 + - uid: 22381 components: - type: Transform rot: 1.5707963267948966 rad pos: -9.5,5.5 - parent: 89 - - uid: 6264 + parent: 2 + - uid: 22382 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,5.5 - parent: 89 - - uid: 6269 + parent: 2 + - uid: 22383 components: - type: Transform rot: 1.5707963267948966 rad pos: -8.5,4.5 - parent: 89 - - uid: 6270 + parent: 2 + - uid: 22384 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,4.5 - parent: 89 - - uid: 6271 + parent: 2 + - uid: 22385 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 89 - - uid: 6272 + parent: 2 + - uid: 22386 components: - type: Transform rot: 1.5707963267948966 rad pos: -5.5,4.5 - parent: 89 - - uid: 6273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,4.5 - parent: 89 - - uid: 6274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -3.5,4.5 - parent: 89 - - uid: 6275 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -2.5,4.5 - parent: 89 - - uid: 6276 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -1.5,4.5 - parent: 89 - - uid: 6277 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -0.5,4.5 - parent: 89 - - uid: 6278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 0.5,4.5 - parent: 89 - - uid: 6279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 1.5,4.5 - parent: 89 - - uid: 6282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 2.5,4.5 - parent: 89 - - uid: 6283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 3.5,4.5 - parent: 89 - - uid: 6284 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 89 - - uid: 6285 + parent: 2 + - uid: 22387 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,4.5 - parent: 89 - - uid: 6286 + parent: 2 + - uid: 22388 components: - type: Transform rot: 1.5707963267948966 rad pos: 6.5,4.5 - parent: 89 - - uid: 6287 + parent: 2 + - uid: 22389 components: - type: Transform rot: 1.5707963267948966 rad pos: 7.5,4.5 - parent: 89 - - uid: 6288 + parent: 2 + - uid: 22390 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,4.5 - parent: 89 - - uid: 6289 + parent: 2 + - uid: 22391 components: - type: Transform rot: 1.5707963267948966 rad pos: 9.5,4.5 - parent: 89 - - uid: 6290 + parent: 2 + - uid: 22392 components: - type: Transform rot: 1.5707963267948966 rad pos: 10.5,4.5 - parent: 89 - - uid: 6291 + parent: 2 + - uid: 22393 components: - type: Transform rot: 1.5707963267948966 rad pos: 11.5,4.5 - parent: 89 - - uid: 6292 + parent: 2 + - uid: 22394 components: - type: Transform rot: 1.5707963267948966 rad pos: 12.5,4.5 - parent: 89 - - uid: 6293 + parent: 2 + - uid: 22395 components: - type: Transform rot: 1.5707963267948966 rad pos: 13.5,4.5 - parent: 89 - - uid: 6294 + parent: 2 + - uid: 22396 components: - type: Transform rot: 1.5707963267948966 rad pos: 14.5,4.5 - parent: 89 - - uid: 6621 + parent: 2 + - uid: 22397 components: - type: Transform pos: -42.5,-3.5 - parent: 89 - - uid: 6630 + parent: 2 + - uid: 22398 components: - type: Transform pos: -42.5,-5.5 - parent: 89 - - uid: 6631 + parent: 2 + - uid: 22399 components: - type: Transform pos: -42.5,-6.5 - parent: 89 - - uid: 6632 + parent: 2 + - uid: 22400 components: - type: Transform pos: -42.5,-7.5 - parent: 89 - - uid: 6633 + parent: 2 + - uid: 22401 components: - type: Transform pos: -42.5,-8.5 - parent: 89 - - uid: 6634 + parent: 2 + - uid: 22402 components: - type: Transform pos: -42.5,-9.5 - parent: 89 - - uid: 6635 + parent: 2 + - uid: 22403 components: - type: Transform pos: -42.5,-10.5 - parent: 89 - - uid: 6636 + parent: 2 + - uid: 22404 components: - type: Transform pos: -42.5,-11.5 - parent: 89 - - uid: 6637 + parent: 2 + - uid: 22405 components: - type: Transform pos: -42.5,-12.5 - parent: 89 - - uid: 6638 + parent: 2 + - uid: 22406 components: - type: Transform pos: -42.5,-13.5 - parent: 89 - - uid: 6639 + parent: 2 + - uid: 22407 components: - type: Transform pos: -42.5,-14.5 - parent: 89 - - uid: 6640 + parent: 2 + - uid: 22408 components: - type: Transform pos: -41.5,-14.5 - parent: 89 - - uid: 6641 + parent: 2 + - uid: 22409 components: - type: Transform pos: -40.5,-14.5 - parent: 89 - - uid: 6642 + parent: 2 + - uid: 22410 components: - type: Transform pos: -39.5,-14.5 - parent: 89 - - uid: 6643 + parent: 2 + - uid: 22411 components: - type: Transform pos: -38.5,-14.5 - parent: 89 - - uid: 6644 + parent: 2 + - uid: 22412 components: - type: Transform pos: -37.5,-14.5 - parent: 89 - - uid: 6645 + parent: 2 + - uid: 22413 components: - type: Transform pos: -36.5,-14.5 - parent: 89 - - uid: 6649 + parent: 2 + - uid: 22414 components: - type: Transform pos: -32.5,-14.5 - parent: 89 - - uid: 6650 + parent: 2 + - uid: 22415 components: - type: Transform pos: -31.5,-14.5 - parent: 89 - - uid: 6651 + parent: 2 + - uid: 22416 components: - type: Transform pos: -30.5,-14.5 - parent: 89 - - uid: 6652 + parent: 2 + - uid: 22417 components: - type: Transform pos: -29.5,-14.5 - parent: 89 - - uid: 6653 + parent: 2 + - uid: 22418 components: - type: Transform pos: -28.5,-14.5 - parent: 89 - - uid: 6654 + parent: 2 + - uid: 22419 components: - type: Transform pos: -27.5,-14.5 - parent: 89 - - uid: 6655 + parent: 2 + - uid: 22420 components: - type: Transform pos: -26.5,-14.5 - parent: 89 - - uid: 6656 + parent: 2 + - uid: 22421 components: - type: Transform pos: -25.5,-14.5 - parent: 89 - - uid: 6657 + parent: 2 + - uid: 22422 components: - type: Transform pos: -24.5,-14.5 - parent: 89 - - uid: 6705 + parent: 2 + - uid: 22423 components: - type: Transform pos: -10.5,22.5 - parent: 89 - - uid: 6717 + parent: 2 + - uid: 22424 components: - type: Transform pos: -33.5,-15.5 - parent: 89 - - uid: 6734 + parent: 2 + - uid: 22425 components: - type: Transform pos: -23.5,-26.5 - parent: 89 - - uid: 6735 + parent: 2 + - uid: 22426 components: - type: Transform pos: -22.5,-26.5 - parent: 89 - - uid: 6736 + parent: 2 + - uid: 22427 components: - type: Transform pos: -21.5,-26.5 - parent: 89 - - uid: 6737 + parent: 2 + - uid: 22428 components: - type: Transform pos: -21.5,-27.5 - parent: 89 - - uid: 6842 + parent: 2 + - uid: 22429 components: - type: Transform pos: -40.5,9.5 - parent: 89 - - uid: 6843 + parent: 2 + - uid: 22430 components: - type: Transform pos: -40.5,10.5 - parent: 89 - - uid: 6844 + parent: 2 + - uid: 22431 components: - type: Transform pos: -39.5,10.5 - parent: 89 - - uid: 6845 + parent: 2 + - uid: 22432 components: - type: Transform pos: -38.5,10.5 - parent: 89 - - uid: 6847 + parent: 2 + - uid: 22433 components: - type: Transform pos: -68.5,-9.5 - parent: 89 - - uid: 6849 + parent: 2 + - uid: 22434 components: - type: Transform pos: -38.5,6.5 - parent: 89 - - uid: 6850 + parent: 2 + - uid: 22435 components: - type: Transform pos: -39.5,6.5 - parent: 89 - - uid: 6913 + parent: 2 + - uid: 22436 components: - type: Transform pos: -69.5,-8.5 - parent: 89 - - uid: 6914 + parent: 2 + - uid: 22437 components: - type: Transform pos: -34.5,9.5 - parent: 89 - - uid: 6915 + parent: 2 + - uid: 22438 components: - type: Transform pos: -34.5,8.5 - parent: 89 - - uid: 6916 + parent: 2 + - uid: 22439 components: - type: Transform pos: -34.5,7.5 - parent: 89 - - uid: 6917 + parent: 2 + - uid: 22440 components: - type: Transform pos: -34.5,6.5 - parent: 89 - - uid: 6922 + parent: 2 + - uid: 22441 components: - type: Transform pos: -41.5,9.5 - parent: 89 - - uid: 6943 + parent: 2 + - uid: 22442 components: - type: Transform pos: -74.5,11.5 - parent: 89 - - uid: 7000 - components: - - type: Transform - pos: -97.5,-5.5 - parent: 89 - - uid: 7001 - components: - - type: Transform - pos: -97.5,-4.5 - parent: 89 - - uid: 7002 - components: - - type: Transform - pos: -97.5,-3.5 - parent: 89 - - uid: 7005 + parent: 2 + - uid: 22443 components: - type: Transform pos: -97.5,-2.5 - parent: 89 - - uid: 7007 + parent: 2 + - uid: 22444 components: - type: Transform pos: -97.5,-1.5 - parent: 89 - - uid: 7008 + parent: 2 + - uid: 22445 components: - type: Transform pos: -97.5,-0.5 - parent: 89 - - uid: 7009 + parent: 2 + - uid: 22446 components: - type: Transform pos: -97.5,0.5 - parent: 89 - - uid: 7010 + parent: 2 + - uid: 22447 components: - type: Transform pos: -97.5,1.5 - parent: 89 - - uid: 7011 + parent: 2 + - uid: 22448 components: - type: Transform pos: -98.5,1.5 - parent: 89 - - uid: 7012 + parent: 2 + - uid: 22449 components: - type: Transform pos: -99.5,1.5 - parent: 89 - - uid: 7013 + parent: 2 + - uid: 22450 components: - type: Transform pos: -100.5,1.5 - parent: 89 - - uid: 7014 + parent: 2 + - uid: 22451 components: - type: Transform pos: -100.5,1.5 - parent: 89 - - uid: 7015 + parent: 2 + - uid: 22452 components: - type: Transform pos: -101.5,1.5 - parent: 89 - - uid: 7016 + parent: 2 + - uid: 22453 components: - type: Transform pos: -102.5,1.5 - parent: 89 - - uid: 7017 + parent: 2 + - uid: 22454 components: - type: Transform pos: -103.5,1.5 - parent: 89 - - uid: 7018 + parent: 2 + - uid: 22455 components: - type: Transform pos: -104.5,1.5 - parent: 89 - - uid: 7019 + parent: 2 + - uid: 22456 components: - type: Transform pos: -105.5,1.5 - parent: 89 - - uid: 7020 + parent: 2 + - uid: 22457 components: - type: Transform pos: -106.5,1.5 - parent: 89 - - uid: 7021 + parent: 2 + - uid: 22458 components: - type: Transform pos: -106.5,0.5 - parent: 89 - - uid: 7022 + parent: 2 + - uid: 22459 components: - type: Transform pos: -106.5,-0.5 - parent: 89 - - uid: 7023 + parent: 2 + - uid: 22460 components: - type: Transform pos: -106.5,-1.5 - parent: 89 - - uid: 7024 + parent: 2 + - uid: 22461 components: - type: Transform pos: -106.5,-2.5 - parent: 89 - - uid: 7025 + parent: 2 + - uid: 22462 components: - type: Transform pos: -106.5,-5.5 - parent: 89 - - uid: 7052 + parent: 2 + - uid: 22463 components: - type: Transform pos: -96.5,1.5 - parent: 89 - - uid: 7196 + parent: 2 + - uid: 22464 components: - type: Transform pos: -94.5,11.5 - parent: 89 - - uid: 7197 + parent: 2 + - uid: 22465 components: - type: Transform pos: -95.5,11.5 - parent: 89 - - uid: 7198 + parent: 2 + - uid: 22466 components: - type: Transform pos: -92.5,11.5 - parent: 89 - - uid: 7199 + parent: 2 + - uid: 22467 components: - type: Transform pos: -91.5,11.5 - parent: 89 - - uid: 7201 + parent: 2 + - uid: 22468 components: - type: Transform pos: -96.5,11.5 - parent: 89 - - uid: 7202 + parent: 2 + - uid: 22469 components: - type: Transform pos: -96.5,12.5 - parent: 89 - - uid: 7203 + parent: 2 + - uid: 22470 components: - type: Transform pos: -96.5,13.5 - parent: 89 - - uid: 7204 + parent: 2 + - uid: 22471 components: - type: Transform pos: -96.5,16.5 - parent: 89 - - uid: 7207 + parent: 2 + - uid: 22472 components: - type: Transform pos: -92.5,18.5 - parent: 89 - - uid: 7208 + parent: 2 + - uid: 22473 components: - type: Transform pos: -93.5,18.5 - parent: 89 - - uid: 7209 + parent: 2 + - uid: 22474 components: - type: Transform pos: -94.5,18.5 - parent: 89 - - uid: 7210 + parent: 2 + - uid: 22475 components: - type: Transform pos: -95.5,18.5 - parent: 89 - - uid: 7211 + parent: 2 + - uid: 22476 components: - type: Transform pos: -96.5,18.5 - parent: 89 - - uid: 7212 + parent: 2 + - uid: 22477 components: - type: Transform pos: -96.5,17.5 - parent: 89 - - uid: 7213 + parent: 2 + - uid: 22478 components: - type: Transform pos: -96.5,15.5 - parent: 89 - - uid: 7214 + parent: 2 + - uid: 22479 components: - type: Transform pos: -96.5,14.5 - parent: 89 - - uid: 7220 + parent: 2 + - uid: 22480 components: - type: Transform pos: -90.5,11.5 - parent: 89 - - uid: 7221 + parent: 2 + - uid: 22481 components: - type: Transform pos: -90.5,15.5 - parent: 89 - - uid: 7222 + parent: 2 + - uid: 22482 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,18.5 - parent: 89 - - uid: 7223 + parent: 2 + - uid: 22483 components: - type: Transform rot: 3.141592653589793 rad pos: -90.5,17.5 - parent: 89 - - uid: 7242 + parent: 2 + - uid: 22484 components: - type: Transform pos: -90.5,10.5 - parent: 89 - - uid: 7243 + parent: 2 + - uid: 22485 components: - type: Transform pos: -90.5,9.5 - parent: 89 - - uid: 7244 + parent: 2 + - uid: 22486 components: - type: Transform pos: -90.5,8.5 - parent: 89 - - uid: 7245 + parent: 2 + - uid: 22487 components: - type: Transform pos: -90.5,7.5 - parent: 89 - - uid: 7246 + parent: 2 + - uid: 22488 components: - type: Transform pos: -90.5,6.5 - parent: 89 - - uid: 7247 + parent: 2 + - uid: 22489 components: - type: Transform pos: -90.5,5.5 - parent: 89 - - uid: 7252 + parent: 2 + - uid: 22490 components: - type: Transform pos: -90.5,0.5 - parent: 89 - - uid: 7254 - components: - - type: Transform - pos: -90.5,-3.5 - parent: 89 - - uid: 7259 + parent: 2 + - uid: 22491 components: - type: Transform pos: -86.5,-2.5 - parent: 89 - - uid: 7260 + parent: 2 + - uid: 22492 components: - type: Transform pos: -86.5,-0.5 - parent: 89 - - uid: 7261 + parent: 2 + - uid: 22493 components: - type: Transform pos: -87.5,0.5 - parent: 89 - - uid: 7262 + parent: 2 + - uid: 22494 components: - type: Transform pos: -86.5,0.5 - parent: 89 - - uid: 7265 + parent: 2 + - uid: 22495 components: - type: Transform pos: -96.5,2.5 - parent: 89 - - uid: 7266 + parent: 2 + - uid: 22496 components: - type: Transform pos: -96.5,3.5 - parent: 89 - - uid: 7269 + parent: 2 + - uid: 22497 components: - type: Transform pos: -96.5,6.5 - parent: 89 - - uid: 7270 + parent: 2 + - uid: 22498 components: - type: Transform pos: -99.5,10.5 - parent: 89 - - uid: 7271 + parent: 2 + - uid: 22499 components: - type: Transform pos: -98.5,10.5 - parent: 89 - - uid: 7272 + parent: 2 + - uid: 22500 components: - type: Transform pos: -97.5,10.5 - parent: 89 - - uid: 7273 + parent: 2 + - uid: 22501 components: - type: Transform pos: -96.5,10.5 - parent: 89 - - uid: 7274 + parent: 2 + - uid: 22502 components: - type: Transform pos: -96.5,9.5 - parent: 89 - - uid: 7342 + parent: 2 + - uid: 22503 components: - type: Transform pos: -103.5,13.5 - parent: 89 - - uid: 7343 + parent: 2 + - uid: 22504 components: - type: Transform pos: -103.5,15.5 - parent: 89 - - uid: 7344 + parent: 2 + - uid: 22505 components: - type: Transform pos: -103.5,16.5 - parent: 89 - - uid: 7345 + parent: 2 + - uid: 22506 components: - type: Transform pos: -104.5,16.5 - parent: 89 - - uid: 7346 + parent: 2 + - uid: 22507 components: - type: Transform pos: -105.5,16.5 - parent: 89 - - uid: 7347 + parent: 2 + - uid: 22508 components: - type: Transform pos: -106.5,16.5 - parent: 89 - - uid: 7355 + parent: 2 + - uid: 22509 components: - type: Transform pos: -32.5,26.5 - parent: 89 - - uid: 7356 + parent: 2 + - uid: 22510 components: - type: Transform pos: -33.5,26.5 - parent: 89 - - uid: 7357 + parent: 2 + - uid: 22511 components: - type: Transform pos: -24.5,32.5 - parent: 89 - - uid: 7358 + parent: 2 + - uid: 22512 components: - type: Transform pos: -110.5,15.5 - parent: 89 - - uid: 7359 + parent: 2 + - uid: 22513 components: - type: Transform pos: -110.5,14.5 - parent: 89 - - uid: 7360 + parent: 2 + - uid: 22514 components: - type: Transform pos: -110.5,13.5 - parent: 89 - - uid: 7361 + parent: 2 + - uid: 22515 components: - type: Transform pos: -110.5,12.5 - parent: 89 - - uid: 7362 + parent: 2 + - uid: 22516 components: - type: Transform pos: -110.5,11.5 - parent: 89 - - uid: 7490 + parent: 2 + - uid: 22517 components: - type: Transform rot: 3.141592653589793 rad pos: -91.5,17.5 - parent: 89 - - uid: 7491 + parent: 2 + - uid: 22518 components: - type: Transform pos: -86.5,21.5 - parent: 89 - - uid: 7522 + parent: 2 + - uid: 22519 components: - type: Transform pos: -35.5,25.5 - parent: 89 - - uid: 7523 + parent: 2 + - uid: 22520 components: - type: Transform pos: -31.5,28.5 - parent: 89 - - uid: 7524 + parent: 2 + - uid: 22521 components: - type: Transform pos: -35.5,24.5 - parent: 89 - - uid: 7525 + parent: 2 + - uid: 22522 components: - type: Transform pos: -35.5,26.5 - parent: 89 - - uid: 7526 + parent: 2 + - uid: 22523 components: - type: Transform pos: -33.5,22.5 - parent: 89 - - uid: 7527 + parent: 2 + - uid: 22524 components: - type: Transform pos: -27.5,22.5 - parent: 89 - - uid: 7528 + parent: 2 + - uid: 22525 components: - type: Transform pos: -26.5,22.5 - parent: 89 - - uid: 7529 + parent: 2 + - uid: 22526 components: - type: Transform pos: -25.5,22.5 - parent: 89 - - uid: 7535 + parent: 2 + - uid: 22527 components: - type: Transform pos: -85.5,0.5 - parent: 89 - - uid: 7536 + parent: 2 + - uid: 22528 components: - type: Transform pos: -84.5,0.5 - parent: 89 - - uid: 7537 + parent: 2 + - uid: 22529 components: - type: Transform pos: -83.5,0.5 - parent: 89 - - uid: 7538 + parent: 2 + - uid: 22530 components: - type: Transform pos: -83.5,1.5 - parent: 89 - - uid: 7539 + parent: 2 + - uid: 22531 components: - type: Transform pos: -83.5,2.5 - parent: 89 - - uid: 7540 + parent: 2 + - uid: 22532 components: - type: Transform pos: -83.5,3.5 - parent: 89 - - uid: 7541 + parent: 2 + - uid: 22533 components: - type: Transform pos: -83.5,4.5 - parent: 89 - - uid: 7542 + parent: 2 + - uid: 22534 components: - type: Transform pos: -83.5,5.5 - parent: 89 - - uid: 7543 + parent: 2 + - uid: 22535 components: - type: Transform pos: -84.5,5.5 - parent: 89 - - uid: 7544 + parent: 2 + - uid: 22536 components: - type: Transform pos: -83.5,6.5 - parent: 89 - - uid: 7545 + parent: 2 + - uid: 22537 components: - type: Transform pos: -82.5,6.5 - parent: 89 - - uid: 7546 + parent: 2 + - uid: 22538 components: - type: Transform pos: -81.5,6.5 - parent: 89 - - uid: 7547 + parent: 2 + - uid: 22539 components: - type: Transform pos: -80.5,6.5 - parent: 89 - - uid: 7548 + parent: 2 + - uid: 22540 components: - type: Transform pos: -79.5,6.5 - parent: 89 - - uid: 7549 + parent: 2 + - uid: 22541 components: - type: Transform pos: -79.5,5.5 - parent: 89 - - uid: 7550 + parent: 2 + - uid: 22542 components: - type: Transform pos: -79.5,3.5 - parent: 89 - - uid: 7551 + parent: 2 + - uid: 22543 components: - type: Transform pos: -80.5,2.5 - parent: 89 - - uid: 7552 + parent: 2 + - uid: 22544 components: - type: Transform pos: -79.5,2.5 - parent: 89 - - uid: 7557 + parent: 2 + - uid: 22545 components: - type: Transform pos: -80.5,1.5 - parent: 89 - - uid: 7558 + parent: 2 + - uid: 22546 components: - type: Transform pos: -80.5,0.5 - parent: 89 - - uid: 7559 + parent: 2 + - uid: 22547 components: - type: Transform pos: -80.5,-1.5 - parent: 89 - - uid: 7568 + parent: 2 + - uid: 22548 components: - type: Transform pos: -81.5,-4.5 - parent: 89 - - uid: 7579 + parent: 2 + - uid: 22549 components: - type: Transform pos: -76.5,7.5 - parent: 89 - - uid: 7580 + parent: 2 + - uid: 22550 components: - type: Transform pos: -76.5,10.5 - parent: 89 - - uid: 7581 + parent: 2 + - uid: 22551 components: - type: Transform pos: -75.5,11.5 - parent: 89 - - uid: 7582 + parent: 2 + - uid: 22552 components: - type: Transform pos: -76.5,11.5 - parent: 89 - - uid: 7583 + parent: 2 + - uid: 22553 components: - type: Transform pos: -77.5,11.5 - parent: 89 - - uid: 7585 + parent: 2 + - uid: 22554 components: - type: Transform pos: -79.5,11.5 - parent: 89 - - uid: 7586 + parent: 2 + - uid: 22555 components: - type: Transform pos: -79.5,12.5 - parent: 89 - - uid: 7587 + parent: 2 + - uid: 22556 components: - type: Transform pos: -79.5,13.5 - parent: 89 - - uid: 7588 + parent: 2 + - uid: 22557 components: - type: Transform pos: -79.5,14.5 - parent: 89 - - uid: 7598 + parent: 2 + - uid: 22558 components: - type: Transform pos: -94.5,24.5 - parent: 89 - - uid: 7603 + parent: 2 + - uid: 22559 components: - type: Transform pos: -95.5,19.5 - parent: 89 - - uid: 7604 + parent: 2 + - uid: 22560 components: - type: Transform pos: -95.5,20.5 - parent: 89 - - uid: 7605 + parent: 2 + - uid: 22561 components: - type: Transform pos: -95.5,21.5 - parent: 89 - - uid: 7606 + parent: 2 + - uid: 22562 components: - type: Transform pos: -95.5,23.5 - parent: 89 - - uid: 7607 + parent: 2 + - uid: 22563 components: - type: Transform pos: -95.5,24.5 - parent: 89 - - uid: 7608 + parent: 2 + - uid: 22564 components: - type: Transform pos: -94.5,25.5 - parent: 89 - - uid: 7609 + parent: 2 + - uid: 22565 components: - type: Transform pos: -94.5,26.5 - parent: 89 - - uid: 7610 + parent: 2 + - uid: 22566 components: - type: Transform pos: -94.5,27.5 - parent: 89 - - uid: 7611 + parent: 2 + - uid: 22567 components: - type: Transform pos: -94.5,28.5 - parent: 89 - - uid: 7612 + parent: 2 + - uid: 22568 components: - type: Transform pos: -94.5,29.5 - parent: 89 - - uid: 7629 - components: - - type: Transform - pos: -109.5,22.5 - parent: 89 - - uid: 7631 + parent: 2 + - uid: 22569 components: - type: Transform pos: -89.5,5.5 - parent: 89 - - uid: 7653 + parent: 2 + - uid: 22570 components: - type: Transform pos: -100.5,23.5 - parent: 89 - - uid: 7654 + parent: 2 + - uid: 22571 components: - type: Transform pos: -98.5,23.5 - parent: 89 - - uid: 7655 + parent: 2 + - uid: 22572 components: - type: Transform pos: -97.5,23.5 - parent: 89 - - uid: 7656 + parent: 2 + - uid: 22573 components: - type: Transform pos: -96.5,23.5 - parent: 89 - - uid: 7677 - components: - - type: Transform - pos: -99.5,28.5 - parent: 89 - - uid: 7710 + parent: 2 + - uid: 22574 components: - type: Transform pos: -101.5,16.5 - parent: 89 - - uid: 7711 + parent: 2 + - uid: 22575 components: - type: Transform pos: -102.5,16.5 - parent: 89 - - uid: 7712 + parent: 2 + - uid: 22576 components: - type: Transform pos: -99.5,18.5 - parent: 89 - - uid: 7713 + parent: 2 + - uid: 22577 components: - type: Transform pos: -99.5,17.5 - parent: 89 - - uid: 7714 + parent: 2 + - uid: 22578 components: - type: Transform pos: -99.5,16.5 - parent: 89 - - uid: 7715 + parent: 2 + - uid: 22579 components: - type: Transform pos: -98.5,16.5 - parent: 89 - - uid: 7716 + parent: 2 + - uid: 22580 components: - type: Transform pos: -97.5,16.5 - parent: 89 - - uid: 7728 - components: - - type: Transform - pos: -102.5,22.5 - parent: 89 - - uid: 7729 - components: - - type: Transform - pos: -112.5,22.5 - parent: 89 - - uid: 7732 - components: - - type: Transform - pos: -107.5,22.5 - parent: 89 - - uid: 7742 + parent: 2 + - uid: 22581 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,43.5 - parent: 89 - - uid: 7747 + parent: 2 + - uid: 22582 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,43.5 - parent: 89 - - uid: 7761 + parent: 2 + - uid: 22583 components: - type: Transform pos: 2.5,43.5 - parent: 89 - - uid: 7762 + parent: 2 + - uid: 22584 components: - type: Transform pos: 2.5,44.5 - parent: 89 - - uid: 7763 + parent: 2 + - uid: 22585 components: - type: Transform pos: 2.5,45.5 - parent: 89 - - uid: 7764 + parent: 2 + - uid: 22586 components: - type: Transform pos: 2.5,46.5 - parent: 89 - - uid: 7771 - components: - - type: Transform - pos: -5.5,47.5 - parent: 89 - - uid: 7814 + parent: 2 + - uid: 22587 components: - type: Transform pos: -79.5,19.5 - parent: 89 - - uid: 7815 + parent: 2 + - uid: 22588 components: - type: Transform pos: -78.5,19.5 - parent: 89 - - uid: 7817 + parent: 2 + - uid: 22589 components: - type: Transform pos: -77.5,18.5 - parent: 89 - - uid: 7818 + parent: 2 + - uid: 22590 components: - type: Transform pos: -75.5,18.5 - parent: 89 - - uid: 7819 + parent: 2 + - uid: 22591 components: - type: Transform pos: -74.5,18.5 - parent: 89 - - uid: 7820 + parent: 2 + - uid: 22592 components: - type: Transform pos: -74.5,19.5 - parent: 89 - - uid: 7821 + parent: 2 + - uid: 22593 components: - type: Transform pos: -74.5,17.5 - parent: 89 - - uid: 7822 + parent: 2 + - uid: 22594 components: - type: Transform pos: -77.5,19.5 - parent: 89 - - uid: 7823 + parent: 2 + - uid: 22595 components: - type: Transform pos: -74.5,15.5 - parent: 89 - - uid: 7824 + parent: 2 + - uid: 22596 components: - type: Transform pos: -74.5,14.5 - parent: 89 - - uid: 7825 + parent: 2 + - uid: 22597 components: - type: Transform pos: -74.5,13.5 - parent: 89 - - uid: 7826 + parent: 2 + - uid: 22598 components: - type: Transform pos: -74.5,12.5 - parent: 89 - - uid: 7827 + parent: 2 + - uid: 22599 components: - type: Transform pos: -75.5,14.5 - parent: 89 - - uid: 7828 + parent: 2 + - uid: 22600 components: - type: Transform pos: -76.5,14.5 - parent: 89 - - uid: 7829 + parent: 2 + - uid: 22601 components: - type: Transform pos: -78.5,14.5 - parent: 89 - - uid: 7830 + parent: 2 + - uid: 22602 components: - type: Transform pos: -73.5,19.5 - parent: 89 - - uid: 7831 + parent: 2 + - uid: 22603 components: - type: Transform pos: -72.5,19.5 - parent: 89 - - uid: 7832 + parent: 2 + - uid: 22604 components: - type: Transform pos: -71.5,19.5 - parent: 89 - - uid: 7833 + parent: 2 + - uid: 22605 components: - type: Transform pos: -70.5,19.5 - parent: 89 - - uid: 7834 + parent: 2 + - uid: 22606 components: - type: Transform pos: -69.5,19.5 - parent: 89 - - uid: 7835 + parent: 2 + - uid: 22607 components: - type: Transform pos: -68.5,19.5 - parent: 89 - - uid: 7836 + parent: 2 + - uid: 22608 components: - type: Transform pos: -67.5,19.5 - parent: 89 - - uid: 7837 + parent: 2 + - uid: 22609 components: - type: Transform pos: -66.5,19.5 - parent: 89 - - uid: 7838 + parent: 2 + - uid: 22610 components: - type: Transform pos: -65.5,19.5 - parent: 89 - - uid: 7839 + parent: 2 + - uid: 22611 components: - type: Transform pos: -67.5,22.5 - parent: 89 - - uid: 7840 + parent: 2 + - uid: 22612 components: - type: Transform pos: -66.5,22.5 - parent: 89 - - uid: 7841 + parent: 2 + - uid: 22613 components: - type: Transform pos: -65.5,22.5 - parent: 89 - - uid: 7855 + parent: 2 + - uid: 22614 components: - type: Transform pos: 2.5,38.5 - parent: 89 - - uid: 7861 + parent: 2 + - uid: 22615 components: - type: Transform pos: 1.5,38.5 - parent: 89 - - uid: 7862 + parent: 2 + - uid: 22616 components: - type: Transform pos: 0.5,38.5 - parent: 89 - - uid: 7863 + parent: 2 + - uid: 22617 components: - type: Transform pos: -0.5,38.5 - parent: 89 - - uid: 7864 + parent: 2 + - uid: 22618 components: - type: Transform pos: -1.5,38.5 - parent: 89 - - uid: 7865 + parent: 2 + - uid: 22619 components: - type: Transform pos: -2.5,38.5 - parent: 89 - - uid: 7867 + parent: 2 + - uid: 22620 components: - type: Transform pos: -4.5,38.5 - parent: 89 - - uid: 7868 + parent: 2 + - uid: 22621 components: - type: Transform pos: -5.5,38.5 - parent: 89 - - uid: 7869 + parent: 2 + - uid: 22622 components: - type: Transform pos: -6.5,38.5 - parent: 89 - - uid: 7870 + parent: 2 + - uid: 22623 components: - type: Transform pos: -7.5,38.5 - parent: 89 - - uid: 7871 + parent: 2 + - uid: 22624 components: - type: Transform pos: -8.5,38.5 - parent: 89 - - uid: 7887 + parent: 2 + - uid: 22625 components: - type: Transform pos: -78.5,6.5 - parent: 89 - - uid: 7888 + parent: 2 + - uid: 22626 components: - type: Transform pos: -77.5,6.5 - parent: 89 - - uid: 7889 + parent: 2 + - uid: 22627 components: - type: Transform pos: -76.5,6.5 - parent: 89 - - uid: 7890 + parent: 2 + - uid: 22628 components: - type: Transform pos: -75.5,6.5 - parent: 89 - - uid: 7891 + parent: 2 + - uid: 22629 components: - type: Transform pos: -74.5,6.5 - parent: 89 - - uid: 7892 + parent: 2 + - uid: 22630 components: - type: Transform pos: -73.5,6.5 - parent: 89 - - uid: 7893 + parent: 2 + - uid: 22631 components: - type: Transform pos: -72.5,6.5 - parent: 89 - - uid: 7894 + parent: 2 + - uid: 22632 components: - type: Transform pos: -71.5,6.5 - parent: 89 - - uid: 7895 + parent: 2 + - uid: 22633 components: - type: Transform pos: -70.5,6.5 - parent: 89 - - uid: 7896 + parent: 2 + - uid: 22634 components: - type: Transform pos: -69.5,6.5 - parent: 89 - - uid: 7897 + parent: 2 + - uid: 22635 components: - type: Transform pos: -68.5,6.5 - parent: 89 - - uid: 7898 + parent: 2 + - uid: 22636 components: - type: Transform pos: -67.5,6.5 - parent: 89 - - uid: 7899 + parent: 2 + - uid: 22637 components: - type: Transform pos: -70.5,7.5 - parent: 89 - - uid: 7900 + parent: 2 + - uid: 22638 components: - type: Transform pos: -70.5,8.5 - parent: 89 - - uid: 7902 + parent: 2 + - uid: 22639 components: - type: Transform pos: -70.5,11.5 - parent: 89 - - uid: 7903 + parent: 2 + - uid: 22640 components: - type: Transform pos: -70.5,15.5 - parent: 89 - - uid: 7904 + parent: 2 + - uid: 22641 components: - type: Transform pos: -69.5,15.5 - parent: 89 - - uid: 7905 + parent: 2 + - uid: 22642 components: - type: Transform pos: -68.5,15.5 - parent: 89 - - uid: 7906 + parent: 2 + - uid: 22643 components: - type: Transform pos: -67.5,15.5 - parent: 89 - - uid: 7907 + parent: 2 + - uid: 22644 components: - type: Transform pos: -66.5,15.5 - parent: 89 - - uid: 7908 + parent: 2 + - uid: 22645 components: - type: Transform pos: -65.5,15.5 - parent: 89 - - uid: 7909 + parent: 2 + - uid: 22646 components: - type: Transform pos: -64.5,15.5 - parent: 89 - - uid: 7910 + parent: 2 + - uid: 22647 components: - type: Transform pos: -63.5,15.5 - parent: 89 - - uid: 7911 + parent: 2 + - uid: 22648 components: - type: Transform pos: -62.5,15.5 - parent: 89 - - uid: 7912 + parent: 2 + - uid: 22649 components: - type: Transform pos: -61.5,15.5 - parent: 89 - - uid: 7913 + parent: 2 + - uid: 22650 components: - type: Transform pos: -60.5,15.5 - parent: 89 - - uid: 7914 + parent: 2 + - uid: 22651 components: - type: Transform pos: -59.5,15.5 - parent: 89 - - uid: 7915 + parent: 2 + - uid: 22652 components: - type: Transform pos: -58.5,15.5 - parent: 89 - - uid: 7916 + parent: 2 + - uid: 22653 components: - type: Transform pos: -57.5,15.5 - parent: 89 - - uid: 7917 + parent: 2 + - uid: 22654 components: - type: Transform pos: -56.5,15.5 - parent: 89 - - uid: 7918 + parent: 2 + - uid: 22655 components: - type: Transform pos: -55.5,15.5 - parent: 89 - - uid: 7919 + parent: 2 + - uid: 22656 components: - type: Transform pos: -51.5,15.5 - parent: 89 - - uid: 7920 + parent: 2 + - uid: 22657 components: - type: Transform pos: -50.5,15.5 - parent: 89 - - uid: 7921 + parent: 2 + - uid: 22658 components: - type: Transform pos: -61.5,12.5 - parent: 89 - - uid: 7922 + parent: 2 + - uid: 22659 components: - type: Transform pos: -65.5,12.5 - parent: 89 - - uid: 7924 + parent: 2 + - uid: 22660 components: - type: Transform pos: -64.5,6.5 - parent: 89 - - uid: 7925 + parent: 2 + - uid: 22661 components: - type: Transform pos: -63.5,6.5 - parent: 89 - - uid: 7926 + parent: 2 + - uid: 22662 components: - type: Transform pos: -62.5,6.5 - parent: 89 - - uid: 7952 + parent: 2 + - uid: 22663 components: - type: Transform pos: -46.5,15.5 - parent: 89 - - uid: 7953 + parent: 2 + - uid: 22664 components: - type: Transform pos: -45.5,15.5 - parent: 89 - - uid: 7954 + parent: 2 + - uid: 22665 components: - type: Transform pos: -44.5,15.5 - parent: 89 - - uid: 7955 + parent: 2 + - uid: 22666 components: - type: Transform pos: -43.5,15.5 - parent: 89 - - uid: 7956 + parent: 2 + - uid: 22667 components: - type: Transform pos: -42.5,15.5 - parent: 89 - - uid: 7957 + parent: 2 + - uid: 22668 components: - type: Transform pos: -41.5,15.5 - parent: 89 - - uid: 7958 + parent: 2 + - uid: 22669 components: - type: Transform pos: -40.5,15.5 - parent: 89 - - uid: 7959 + parent: 2 + - uid: 22670 components: - type: Transform pos: -39.5,15.5 - parent: 89 - - uid: 7960 + parent: 2 + - uid: 22671 components: - type: Transform pos: -38.5,15.5 - parent: 89 - - uid: 7961 + parent: 2 + - uid: 22672 components: - type: Transform pos: -37.5,15.5 - parent: 89 - - uid: 7962 + parent: 2 + - uid: 22673 components: - type: Transform pos: -38.5,14.5 - parent: 89 - - uid: 7963 + parent: 2 + - uid: 22674 components: - type: Transform pos: -45.5,14.5 - parent: 89 - - uid: 7964 + parent: 2 + - uid: 22675 components: - type: Transform pos: -45.5,13.5 - parent: 89 - - uid: 7965 + parent: 2 + - uid: 22676 components: - type: Transform pos: -42.5,12.5 - parent: 89 - - uid: 7966 + parent: 2 + - uid: 22677 components: - type: Transform pos: -41.5,12.5 - parent: 89 - - uid: 7967 + parent: 2 + - uid: 22678 components: - type: Transform pos: -40.5,12.5 - parent: 89 - - uid: 7968 + parent: 2 + - uid: 22679 components: - type: Transform pos: -39.5,12.5 - parent: 89 - - uid: 7969 + parent: 2 + - uid: 22680 components: - type: Transform pos: -38.5,12.5 - parent: 89 - - uid: 7972 + parent: 2 + - uid: 22681 components: - type: Transform pos: -34.5,13.5 - parent: 89 - - uid: 7973 + parent: 2 + - uid: 22682 components: - type: Transform pos: -34.5,14.5 - parent: 89 - - uid: 7974 + parent: 2 + - uid: 22683 components: - type: Transform pos: -34.5,15.5 - parent: 89 - - uid: 7975 + parent: 2 + - uid: 22684 components: - type: Transform pos: -35.5,15.5 - parent: 89 - - uid: 7998 + parent: 2 + - uid: 22685 components: - type: Transform pos: 3.5,38.5 - parent: 89 - - uid: 8015 + parent: 2 + - uid: 22686 components: - type: Transform pos: 2.5,14.5 - parent: 89 - - uid: 8022 + parent: 2 + - uid: 22687 components: - type: Transform pos: -1.5,37.5 - parent: 89 - - uid: 8023 + parent: 2 + - uid: 22688 components: - type: Transform pos: -1.5,33.5 - parent: 89 - - uid: 8024 + parent: 2 + - uid: 22689 components: - type: Transform pos: -0.5,33.5 - parent: 89 - - uid: 8025 + parent: 2 + - uid: 22690 components: - type: Transform pos: 0.5,33.5 - parent: 89 - - uid: 8026 + parent: 2 + - uid: 22691 components: - type: Transform pos: 1.5,33.5 - parent: 89 - - uid: 8027 + parent: 2 + - uid: 22692 components: - type: Transform pos: 2.5,33.5 - parent: 89 - - uid: 8028 + parent: 2 + - uid: 22693 components: - type: Transform pos: 3.5,33.5 - parent: 89 - - uid: 8048 + parent: 2 + - uid: 22694 components: - type: Transform pos: -4.5,37.5 - parent: 89 - - uid: 8049 + parent: 2 + - uid: 22695 components: - type: Transform pos: -4.5,35.5 - parent: 89 - - uid: 8050 + parent: 2 + - uid: 22696 components: - type: Transform pos: -4.5,34.5 - parent: 89 - - uid: 8051 + parent: 2 + - uid: 22697 components: - type: Transform pos: -5.5,34.5 - parent: 89 - - uid: 8052 + parent: 2 + - uid: 22698 components: - type: Transform pos: -6.5,34.5 - parent: 89 - - uid: 8054 + parent: 2 + - uid: 22699 components: - type: Transform pos: -8.5,34.5 - parent: 89 - - uid: 8064 - components: - - type: Transform - pos: -13.5,-14.5 - parent: 89 - - uid: 8070 + parent: 2 + - uid: 22700 components: - type: Transform pos: -4.5,33.5 - parent: 89 - - uid: 8071 + parent: 2 + - uid: 22701 components: - type: Transform pos: -4.5,32.5 - parent: 89 - - uid: 8072 + parent: 2 + - uid: 22702 components: - type: Transform pos: -4.5,31.5 - parent: 89 - - uid: 8073 + parent: 2 + - uid: 22703 components: - type: Transform pos: -5.5,31.5 - parent: 89 - - uid: 8074 - components: - - type: Transform - pos: -6.5,31.5 - parent: 89 - - uid: 8075 + parent: 2 + - uid: 22704 components: - type: Transform pos: -7.5,31.5 - parent: 89 - - uid: 8076 + parent: 2 + - uid: 22705 components: - type: Transform pos: -8.5,31.5 - parent: 89 - - uid: 8088 + parent: 2 + - uid: 22706 components: - type: Transform pos: 2.5,31.5 - parent: 89 - - uid: 8089 + parent: 2 + - uid: 22707 components: - type: Transform pos: 3.5,31.5 - parent: 89 - - uid: 8090 + parent: 2 + - uid: 22708 components: - type: Transform pos: 3.5,29.5 - parent: 89 - - uid: 8091 + parent: 2 + - uid: 22709 components: - type: Transform pos: 2.5,29.5 - parent: 89 - - uid: 8092 + parent: 2 + - uid: 22710 components: - type: Transform pos: -8.5,29.5 - parent: 89 - - uid: 8093 + parent: 2 + - uid: 22711 components: - type: Transform pos: -7.5,29.5 - parent: 89 - - uid: 8100 + parent: 2 + - uid: 22712 components: - type: Transform pos: -0.5,28.5 - parent: 89 - - uid: 8101 - components: - - type: Transform - pos: -0.5,31.5 - parent: 89 - - uid: 8102 + parent: 2 + - uid: 22713 components: - type: Transform pos: 0.5,31.5 - parent: 89 - - uid: 8103 + parent: 2 + - uid: 22714 components: - type: Transform pos: 1.5,31.5 - parent: 89 - - uid: 8104 + parent: 2 + - uid: 22715 components: - type: Transform pos: 0.5,28.5 - parent: 89 - - uid: 8105 + parent: 2 + - uid: 22716 components: - type: Transform pos: 2.5,28.5 - parent: 89 - - uid: 8106 + parent: 2 + - uid: 22717 components: - type: Transform pos: 1.5,28.5 - parent: 89 - - uid: 8112 + parent: 2 + - uid: 22718 components: - type: Transform pos: -0.5,32.5 - parent: 89 - - uid: 8153 + parent: 2 + - uid: 22719 components: - type: Transform pos: 2.5,27.5 - parent: 89 - - uid: 8154 + parent: 2 + - uid: 22720 components: - type: Transform pos: 3.5,27.5 - parent: 89 - - uid: 8186 + parent: 2 + - uid: 22721 components: - type: Transform pos: -0.5,27.5 - parent: 89 - - uid: 8187 + parent: 2 + - uid: 22722 components: - type: Transform pos: -0.5,25.5 - parent: 89 - - uid: 8188 + parent: 2 + - uid: 22723 components: - type: Transform pos: -0.5,24.5 - parent: 89 - - uid: 8189 + parent: 2 + - uid: 22724 components: - type: Transform pos: 0.5,24.5 - parent: 89 - - uid: 8190 + parent: 2 + - uid: 22725 components: - type: Transform pos: 1.5,24.5 - parent: 89 - - uid: 8191 + parent: 2 + - uid: 22726 components: - type: Transform pos: 2.5,24.5 - parent: 89 - - uid: 8564 + parent: 2 + - uid: 22727 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,18.5 - parent: 89 - - uid: 8581 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,0.5 - parent: 89 - - uid: 8583 + parent: 2 + - uid: 22728 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,0.5 - parent: 89 - - uid: 8584 + parent: 2 + - uid: 22729 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,8.5 - parent: 89 - - uid: 8585 + parent: 2 + - uid: 22730 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,7.5 - parent: 89 - - uid: 8587 + parent: 2 + - uid: 22731 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,7.5 - parent: 89 - - uid: 8594 + parent: 2 + - uid: 22732 components: - type: Transform rot: 3.141592653589793 rad pos: -114.5,0.5 - parent: 89 - - uid: 8596 + parent: 2 + - uid: 22733 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,-0.5 - parent: 89 - - uid: 8597 + parent: 2 + - uid: 22734 components: - type: Transform rot: 3.141592653589793 rad pos: -116.5,0.5 - parent: 89 - - uid: 8615 + parent: 2 + - uid: 22735 components: - type: Transform pos: -113.5,-9.5 - parent: 89 - - uid: 8642 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,10.5 - parent: 89 - - uid: 8643 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -117.5,11.5 - parent: 89 - - uid: 8644 + parent: 2 + - uid: 22736 components: - type: Transform rot: 1.5707963267948966 rad pos: -116.5,11.5 - parent: 89 - - uid: 8645 + parent: 2 + - uid: 22737 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,11.5 - parent: 89 - - uid: 8646 + parent: 2 + - uid: 22738 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,11.5 - parent: 89 - - uid: 8647 + parent: 2 + - uid: 22739 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,11.5 - parent: 89 - - uid: 8648 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,12.5 - parent: 89 - - uid: 8649 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,13.5 - parent: 89 - - uid: 8650 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,14.5 - parent: 89 - - uid: 8651 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,15.5 - parent: 89 - - uid: 8652 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -113.5,16.5 - parent: 89 - - uid: 8653 + parent: 2 + - uid: 22740 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,11.5 - parent: 89 - - uid: 8654 + parent: 2 + - uid: 22741 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,10.5 - parent: 89 - - uid: 8655 + parent: 2 + - uid: 22742 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,10.5 - parent: 89 - - uid: 8656 + parent: 2 + - uid: 22743 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,8.5 - parent: 89 - - uid: 8657 + parent: 2 + - uid: 22744 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,8.5 - parent: 89 - - uid: 8658 + parent: 2 + - uid: 22745 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,7.5 - parent: 89 - - uid: 8659 + parent: 2 + - uid: 22746 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,6.5 - parent: 89 - - uid: 8660 + parent: 2 + - uid: 22747 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,6.5 - parent: 89 - - uid: 8662 + parent: 2 + - uid: 22748 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,6.5 - parent: 89 - - uid: 8663 + parent: 2 + - uid: 22749 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,6.5 - parent: 89 - - uid: 8665 + parent: 2 + - uid: 22750 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,1.5 - parent: 89 - - uid: 8666 + parent: 2 + - uid: 22751 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,1.5 - parent: 89 - - uid: 8667 + parent: 2 + - uid: 22752 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,1.5 - parent: 89 - - uid: 8668 + parent: 2 + - uid: 22753 components: - type: Transform rot: 1.5707963267948966 rad pos: -111.5,1.5 - parent: 89 - - uid: 8669 + parent: 2 + - uid: 22754 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,0.5 - parent: 89 - - uid: 8670 + parent: 2 + - uid: 22755 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-0.5 - parent: 89 - - uid: 8671 + parent: 2 + - uid: 22756 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,-0.5 - parent: 89 - - uid: 8672 + parent: 2 + - uid: 22757 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,-2.5 - parent: 89 - - uid: 8673 + parent: 2 + - uid: 22758 components: - type: Transform rot: 1.5707963267948966 rad pos: -117.5,-3.5 - parent: 89 - - uid: 8674 + parent: 2 + - uid: 22759 components: - type: Transform rot: 1.5707963267948966 rad pos: -116.5,-3.5 - parent: 89 - - uid: 8675 + parent: 2 + - uid: 22760 components: - type: Transform rot: 1.5707963267948966 rad pos: -115.5,-3.5 - parent: 89 - - uid: 8676 + parent: 2 + - uid: 22761 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,-3.5 - parent: 89 - - uid: 8677 + parent: 2 + - uid: 22762 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-3.5 - parent: 89 - - uid: 8678 + parent: 2 + - uid: 22763 components: - type: Transform rot: 1.5707963267948966 rad pos: -113.5,-2.5 - parent: 89 - - uid: 8679 + parent: 2 + - uid: 22764 components: - type: Transform rot: 1.5707963267948966 rad pos: -114.5,-2.5 - parent: 89 - - uid: 8680 - components: - - type: Transform - pos: -121.5,-13.5 - parent: 89 - - uid: 8685 + parent: 2 + - uid: 22765 components: - type: Transform rot: 1.5707963267948966 rad pos: -112.5,-3.5 - parent: 89 - - uid: 8686 + parent: 2 + - uid: 22766 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-3.5 - parent: 89 - - uid: 8687 + parent: 2 + - uid: 22767 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-4.5 - parent: 89 - - uid: 8688 + parent: 2 + - uid: 22768 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-5.5 - parent: 89 - - uid: 8689 + parent: 2 + - uid: 22769 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-6.5 - parent: 89 - - uid: 8690 + parent: 2 + - uid: 22770 components: - type: Transform rot: 1.5707963267948966 rad pos: -110.5,-7.5 - parent: 89 - - uid: 8691 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-8.5 - parent: 89 - - uid: 8692 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-9.5 - parent: 89 - - uid: 8693 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -110.5,-10.5 - parent: 89 - - uid: 8697 + parent: 2 + - uid: 22771 components: - type: Transform pos: -34.5,26.5 - parent: 89 - - uid: 8703 + parent: 2 + - uid: 22772 components: - type: Transform pos: 2.5,30.5 - parent: 89 - - uid: 8713 + parent: 2 + - uid: 22773 components: - type: Transform pos: -119.5,-11.5 - parent: 89 - - uid: 8714 + parent: 2 + - uid: 22774 components: - type: Transform pos: -121.5,-11.5 - parent: 89 - - uid: 8715 + parent: 2 + - uid: 22775 components: - type: Transform pos: -120.5,-11.5 - parent: 89 - - uid: 8760 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -118.5,7.5 - parent: 89 - - uid: 9015 - components: - - type: Transform - pos: -110.5,-11.5 - parent: 89 - - uid: 9051 + parent: 2 + - uid: 22776 components: - type: Transform pos: -20.5,11.5 - parent: 89 - - uid: 9053 + parent: 2 + - uid: 22777 components: - type: Transform pos: -28.5,6.5 - parent: 89 - - uid: 9054 + parent: 2 + - uid: 22778 components: - type: Transform pos: -28.5,7.5 - parent: 89 - - uid: 9055 + parent: 2 + - uid: 22779 components: - type: Transform pos: -28.5,8.5 - parent: 89 - - uid: 9056 + parent: 2 + - uid: 22780 components: - type: Transform pos: -28.5,9.5 - parent: 89 - - uid: 9057 + parent: 2 + - uid: 22781 components: - type: Transform pos: -28.5,10.5 - parent: 89 - - uid: 9058 + parent: 2 + - uid: 22782 components: - type: Transform pos: -28.5,11.5 - parent: 89 - - uid: 9059 + parent: 2 + - uid: 22783 components: - type: Transform pos: -28.5,12.5 - parent: 89 - - uid: 9061 + parent: 2 + - uid: 22784 components: - type: Transform pos: -27.5,10.5 - parent: 89 - - uid: 9062 + parent: 2 + - uid: 22785 components: - type: Transform pos: -26.5,10.5 - parent: 89 - - uid: 9063 + parent: 2 + - uid: 22786 components: - type: Transform pos: -25.5,10.5 - parent: 89 - - uid: 9064 + parent: 2 + - uid: 22787 components: - type: Transform pos: -24.5,10.5 - parent: 89 - - uid: 9065 + parent: 2 + - uid: 22788 components: - type: Transform pos: -23.5,10.5 - parent: 89 - - uid: 9066 + parent: 2 + - uid: 22789 components: - type: Transform pos: -22.5,10.5 - parent: 89 - - uid: 9068 + parent: 2 + - uid: 22790 components: - type: Transform pos: -20.5,12.5 - parent: 89 - - uid: 9070 + parent: 2 + - uid: 22791 components: - type: Transform pos: -20.5,14.5 - parent: 89 - - uid: 9071 + parent: 2 + - uid: 22792 components: - type: Transform pos: -20.5,15.5 - parent: 89 - - uid: 9073 + parent: 2 + - uid: 22793 components: - type: Transform pos: -21.5,15.5 - parent: 89 - - uid: 9074 + parent: 2 + - uid: 22794 components: - type: Transform pos: -22.5,15.5 - parent: 89 - - uid: 9075 + parent: 2 + - uid: 22795 components: - type: Transform pos: -23.5,15.5 - parent: 89 - - uid: 9076 + parent: 2 + - uid: 22796 components: - type: Transform pos: -24.5,15.5 - parent: 89 - - uid: 9077 + parent: 2 + - uid: 22797 components: - type: Transform pos: -25.5,15.5 - parent: 89 - - uid: 9078 + parent: 2 + - uid: 22798 components: - type: Transform pos: -27.5,15.5 - parent: 89 - - uid: 9079 + parent: 2 + - uid: 22799 components: - type: Transform pos: -28.5,14.5 - parent: 89 - - uid: 9080 + parent: 2 + - uid: 22800 components: - type: Transform pos: -28.5,15.5 - parent: 89 - - uid: 9083 + parent: 2 + - uid: 22801 components: - type: Transform pos: -28.5,18.5 - parent: 89 - - uid: 9084 + parent: 2 + - uid: 22802 components: - type: Transform pos: -28.5,19.5 - parent: 89 - - uid: 9087 + parent: 2 + - uid: 22803 components: - type: Transform pos: -34.5,21.5 - parent: 89 - - uid: 9088 + parent: 2 + - uid: 22804 components: - type: Transform pos: -25.5,21.5 - parent: 89 - - uid: 9089 + parent: 2 + - uid: 22805 components: - type: Transform pos: -31.5,19.5 - parent: 89 - - uid: 9090 + parent: 2 + - uid: 22806 components: - type: Transform pos: -32.5,19.5 - parent: 89 - - uid: 9091 + parent: 2 + - uid: 22807 components: - type: Transform pos: -33.5,19.5 - parent: 89 - - uid: 9092 + parent: 2 + - uid: 22808 components: - type: Transform pos: -34.5,19.5 - parent: 89 - - uid: 9093 + parent: 2 + - uid: 22809 components: - type: Transform pos: -35.5,19.5 - parent: 89 - - uid: 9094 + parent: 2 + - uid: 22810 components: - type: Transform pos: -36.5,19.5 - parent: 89 - - uid: 9095 + parent: 2 + - uid: 22811 components: - type: Transform pos: -37.5,19.5 - parent: 89 - - uid: 9096 + parent: 2 + - uid: 22812 components: - type: Transform pos: -38.5,19.5 - parent: 89 - - uid: 9097 + parent: 2 + - uid: 22813 components: - type: Transform pos: -39.5,19.5 - parent: 89 - - uid: 9098 + parent: 2 + - uid: 22814 components: - type: Transform pos: -40.5,19.5 - parent: 89 - - uid: 9099 + parent: 2 + - uid: 22815 components: - type: Transform pos: -41.5,19.5 - parent: 89 - - uid: 9100 + parent: 2 + - uid: 22816 components: - type: Transform pos: -42.5,19.5 - parent: 89 - - uid: 9101 + parent: 2 + - uid: 22817 components: - type: Transform pos: -43.5,19.5 - parent: 89 - - uid: 9102 + parent: 2 + - uid: 22818 components: - type: Transform pos: -44.5,19.5 - parent: 89 - - uid: 9103 + parent: 2 + - uid: 22819 components: - type: Transform pos: -45.5,19.5 - parent: 89 - - uid: 9104 + parent: 2 + - uid: 22820 components: - type: Transform pos: -46.5,19.5 - parent: 89 - - uid: 9105 + parent: 2 + - uid: 22821 components: - type: Transform pos: -47.5,19.5 - parent: 89 - - uid: 9106 + parent: 2 + - uid: 22822 components: - type: Transform pos: -26.5,12.5 - parent: 89 - - uid: 9107 + parent: 2 + - uid: 22823 components: - type: Transform pos: -26.5,11.5 - parent: 89 - - uid: 9108 + parent: 2 + - uid: 22824 components: - type: Transform pos: -24.5,12.5 - parent: 89 - - uid: 9109 + parent: 2 + - uid: 22825 components: - type: Transform pos: -24.5,11.5 - parent: 89 - - uid: 9110 + parent: 2 + - uid: 22826 components: - type: Transform pos: -22.5,12.5 - parent: 89 - - uid: 9111 + parent: 2 + - uid: 22827 components: - type: Transform pos: -22.5,11.5 - parent: 89 - - uid: 9112 - components: - - type: Transform - pos: -24.5,16.5 - parent: 89 - - uid: 9113 - components: - - type: Transform - pos: -24.5,17.5 - parent: 89 - - uid: 9114 - components: - - type: Transform - pos: -24.5,18.5 - parent: 89 - - uid: 9115 + parent: 2 + - uid: 22828 components: - type: Transform pos: -24.5,19.5 - parent: 89 - - uid: 9116 + parent: 2 + - uid: 22829 components: - type: Transform pos: -27.5,19.5 - parent: 89 - - uid: 9117 + parent: 2 + - uid: 22830 components: - type: Transform pos: -26.5,19.5 - parent: 89 - - uid: 9118 + parent: 2 + - uid: 22831 components: - type: Transform pos: -25.5,19.5 - parent: 89 - - uid: 9122 + parent: 2 + - uid: 22832 components: - type: Transform pos: -23.5,19.5 - parent: 89 - - uid: 9123 + parent: 2 + - uid: 22833 components: - type: Transform pos: -22.5,19.5 - parent: 89 - - uid: 9124 + parent: 2 + - uid: 22834 components: - type: Transform pos: -21.5,19.5 - parent: 89 - - uid: 9125 + parent: 2 + - uid: 22835 components: - type: Transform pos: -20.5,19.5 - parent: 89 - - uid: 9126 + parent: 2 + - uid: 22836 components: - type: Transform pos: -19.5,19.5 - parent: 89 - - uid: 9127 + parent: 2 + - uid: 22837 components: - type: Transform pos: -18.5,19.5 - parent: 89 - - uid: 9128 + parent: 2 + - uid: 22838 components: - type: Transform pos: -17.5,19.5 - parent: 89 - - uid: 9129 + parent: 2 + - uid: 22839 components: - type: Transform pos: -17.5,18.5 - parent: 89 - - uid: 9133 + parent: 2 + - uid: 22840 components: - type: Transform pos: -17.5,15.5 - parent: 89 - - uid: 9134 + parent: 2 + - uid: 22841 components: - type: Transform pos: -18.5,15.5 - parent: 89 - - uid: 9135 + parent: 2 + - uid: 22842 components: - type: Transform pos: -19.5,15.5 - parent: 89 - - uid: 9136 + parent: 2 + - uid: 22843 components: - type: Transform pos: -15.5,12.5 - parent: 89 - - uid: 9137 + parent: 2 + - uid: 22844 components: - type: Transform pos: -15.5,13.5 - parent: 89 - - uid: 9178 + parent: 2 + - uid: 22845 components: - type: Transform pos: -35.5,28.5 - parent: 89 - - uid: 9184 + parent: 2 + - uid: 22846 components: - type: Transform pos: -35.5,27.5 - parent: 89 - - uid: 9223 + parent: 2 + - uid: 22847 components: - type: Transform pos: -8.5,22.5 - parent: 89 - - uid: 9224 + parent: 2 + - uid: 22848 components: - type: Transform pos: -7.5,22.5 - parent: 89 - - uid: 9228 + parent: 2 + - uid: 22849 components: - type: Transform pos: -115.5,16.5 - parent: 89 - - uid: 9229 + parent: 2 + - uid: 22850 components: - type: Transform pos: -116.5,16.5 - parent: 89 - - uid: 9230 + parent: 2 + - uid: 22851 components: - type: Transform pos: -117.5,16.5 - parent: 89 - - uid: 9231 + parent: 2 + - uid: 22852 components: - type: Transform pos: -118.5,16.5 - parent: 89 - - uid: 9232 + parent: 2 + - uid: 22853 components: - type: Transform pos: -118.5,14.5 - parent: 89 - - uid: 9233 + parent: 2 + - uid: 22854 components: - type: Transform pos: -118.5,13.5 - parent: 89 - - uid: 9333 + parent: 2 + - uid: 22855 components: - type: Transform pos: 0.5,14.5 - parent: 89 - - uid: 9343 + parent: 2 + - uid: 22856 components: - type: Transform pos: -32.5,22.5 - parent: 89 - - uid: 9478 + parent: 2 + - uid: 22857 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -63.5,27.5 + parent: 2 + - uid: 22858 components: - type: Transform pos: -36.5,6.5 - parent: 89 - - uid: 9479 + parent: 2 + - uid: 22859 components: - type: Transform pos: -35.5,6.5 - parent: 89 - - uid: 9551 + parent: 2 + - uid: 22860 components: - type: Transform pos: -37.5,6.5 - parent: 89 - - uid: 9615 + parent: 2 + - uid: 22861 components: - type: Transform rot: -1.5707963267948966 rad pos: -94.5,21.5 - parent: 89 - - uid: 9616 + parent: 2 + - uid: 22862 components: - type: Transform rot: -1.5707963267948966 rad pos: -92.5,21.5 - parent: 89 - - uid: 9619 + parent: 2 + - uid: 22863 components: - type: Transform pos: -26.5,-26.5 - parent: 89 - - uid: 9620 + parent: 2 + - uid: 22864 components: - type: Transform pos: -25.5,-26.5 - parent: 89 - - uid: 9709 + parent: 2 + - uid: 22865 components: - type: Transform pos: -61.5,42.5 - parent: 89 - - uid: 9710 + parent: 2 + - uid: 22866 components: - type: Transform pos: -63.5,36.5 - parent: 89 - - uid: 9711 + parent: 2 + - uid: 22867 components: - type: Transform pos: -62.5,42.5 - parent: 89 - - uid: 9712 + parent: 2 + - uid: 22868 components: - type: Transform pos: -63.5,42.5 - parent: 89 - - uid: 9713 + parent: 2 + - uid: 22869 components: - type: Transform pos: -63.5,41.5 - parent: 89 - - uid: 9714 + parent: 2 + - uid: 22870 components: - type: Transform pos: -63.5,40.5 - parent: 89 - - uid: 9715 + parent: 2 + - uid: 22871 components: - type: Transform pos: -56.5,27.5 - parent: 89 - - uid: 9716 + parent: 2 + - uid: 22872 components: - type: Transform pos: -55.5,27.5 - parent: 89 - - uid: 9718 + parent: 2 + - uid: 22873 components: - type: Transform pos: -61.5,27.5 - parent: 89 - - uid: 9719 + parent: 2 + - uid: 22874 components: - type: Transform pos: -62.5,27.5 - parent: 89 - - uid: 9721 + parent: 2 + - uid: 22875 components: - type: Transform pos: -63.5,28.5 - parent: 89 - - uid: 9758 + parent: 2 + - uid: 22876 components: - type: Transform pos: -49.5,19.5 - parent: 89 - - uid: 9759 + parent: 2 + - uid: 22877 components: - type: Transform pos: -50.5,19.5 - parent: 89 - - uid: 9760 + parent: 2 + - uid: 22878 components: - type: Transform pos: -51.5,19.5 - parent: 89 - - uid: 9761 + parent: 2 + - uid: 22879 components: - type: Transform pos: -52.5,19.5 - parent: 89 - - uid: 9762 + parent: 2 + - uid: 22880 components: - type: Transform pos: -53.5,19.5 - parent: 89 - - uid: 9763 + parent: 2 + - uid: 22881 components: - type: Transform pos: -54.5,19.5 - parent: 89 - - uid: 9764 + parent: 2 + - uid: 22882 components: - type: Transform pos: -54.5,20.5 - parent: 89 - - uid: 9765 + parent: 2 + - uid: 22883 components: - type: Transform pos: -54.5,21.5 - parent: 89 - - uid: 9766 + parent: 2 + - uid: 22884 components: - type: Transform pos: -54.5,22.5 - parent: 89 - - uid: 9767 + parent: 2 + - uid: 22885 components: - type: Transform pos: -54.5,23.5 - parent: 89 - - uid: 9768 + parent: 2 + - uid: 22886 components: - type: Transform pos: -54.5,24.5 - parent: 89 - - uid: 9770 + parent: 2 + - uid: 22887 components: - type: Transform pos: -54.5,26.5 - parent: 89 - - uid: 9775 + parent: 2 + - uid: 22888 components: - type: Transform pos: -63.5,32.5 - parent: 89 - - uid: 10048 + parent: 2 + - uid: 22889 components: - type: Transform pos: -24.5,23.5 - parent: 89 - - uid: 10061 + parent: 2 + - uid: 22890 components: - type: Transform pos: -24.5,24.5 - parent: 89 - - uid: 10062 + parent: 2 + - uid: 22891 components: - type: Transform pos: -24.5,25.5 - parent: 89 - - uid: 10063 + parent: 2 + - uid: 22892 components: - type: Transform pos: -24.5,26.5 - parent: 89 - - uid: 10064 + parent: 2 + - uid: 22893 components: - type: Transform pos: -25.5,26.5 - parent: 89 - - uid: 10065 + parent: 2 + - uid: 22894 components: - type: Transform pos: -26.5,26.5 - parent: 89 - - uid: 10066 + parent: 2 + - uid: 22895 components: - type: Transform pos: -27.5,26.5 - parent: 89 - - uid: 10067 + parent: 2 + - uid: 22896 components: - type: Transform pos: -28.5,26.5 - parent: 89 - - uid: 10068 + parent: 2 + - uid: 22897 components: - type: Transform pos: -28.5,24.5 - parent: 89 - - uid: 10069 + parent: 2 + - uid: 22898 components: - type: Transform pos: -28.5,23.5 - parent: 89 - - uid: 10070 + parent: 2 + - uid: 22899 components: - type: Transform pos: -77.5,-5.5 - parent: 89 - - uid: 10073 + parent: 2 + - uid: 22900 components: - type: Transform pos: -31.5,25.5 - parent: 89 - - uid: 10074 + parent: 2 + - uid: 22901 components: - type: Transform pos: -31.5,26.5 - parent: 89 - - uid: 10076 + parent: 2 + - uid: 22902 components: - type: Transform pos: -77.5,-6.5 - parent: 89 - - uid: 10079 + parent: 2 + - uid: 22903 components: - type: Transform pos: -77.5,-7.5 - parent: 89 - - uid: 10080 + parent: 2 + - uid: 22904 components: - type: Transform pos: -76.5,-7.5 - parent: 89 - - uid: 10081 + parent: 2 + - uid: 22905 components: - type: Transform pos: -75.5,-7.5 - parent: 89 - - uid: 10082 + parent: 2 + - uid: 22906 components: - type: Transform pos: -24.5,28.5 - parent: 89 - - uid: 10083 + parent: 2 + - uid: 22907 components: - type: Transform pos: -73.5,-7.5 - parent: 89 - - uid: 10084 + parent: 2 + - uid: 22908 components: - type: Transform pos: -24.5,29.5 - parent: 89 - - uid: 10085 + parent: 2 + - uid: 22909 components: - type: Transform pos: -24.5,30.5 - parent: 89 - - uid: 10087 + parent: 2 + - uid: 22910 components: - type: Transform pos: -25.5,30.5 - parent: 89 - - uid: 10088 + parent: 2 + - uid: 22911 components: - type: Transform pos: -26.5,30.5 - parent: 89 - - uid: 10089 + parent: 2 + - uid: 22912 components: - type: Transform pos: -27.5,30.5 - parent: 89 - - uid: 10090 + parent: 2 + - uid: 22913 components: - type: Transform pos: -28.5,30.5 - parent: 89 - - uid: 10091 + parent: 2 + - uid: 22914 components: - type: Transform pos: -28.5,28.5 - parent: 89 - - uid: 10092 + parent: 2 + - uid: 22915 components: - type: Transform pos: -28.5,27.5 - parent: 89 - - uid: 10093 + parent: 2 + - uid: 22916 components: - type: Transform pos: -31.5,29.5 - parent: 89 - - uid: 10094 + parent: 2 + - uid: 22917 components: - type: Transform pos: -31.5,30.5 - parent: 89 - - uid: 10095 + parent: 2 + - uid: 22918 components: - type: Transform pos: -32.5,30.5 - parent: 89 - - uid: 10096 + parent: 2 + - uid: 22919 components: - type: Transform pos: -33.5,30.5 - parent: 89 - - uid: 10097 + parent: 2 + - uid: 22920 components: - type: Transform pos: -34.5,30.5 - parent: 89 - - uid: 10098 + parent: 2 + - uid: 22921 components: - type: Transform pos: -35.5,30.5 - parent: 89 - - uid: 10099 + parent: 2 + - uid: 22922 components: - type: Transform pos: -35.5,29.5 - parent: 89 - - uid: 10100 + parent: 2 + - uid: 22923 components: - type: Transform pos: -34.5,22.5 - parent: 89 - - uid: 10101 + parent: 2 + - uid: 22924 components: - type: Transform pos: -35.5,22.5 - parent: 89 - - uid: 10102 + parent: 2 + - uid: 22925 components: - type: Transform pos: -35.5,23.5 - parent: 89 - - uid: 10104 + parent: 2 + - uid: 22926 components: - type: Transform pos: -24.5,33.5 - parent: 89 - - uid: 10105 + parent: 2 + - uid: 22927 components: - type: Transform pos: -28.5,32.5 - parent: 89 - - uid: 10107 + parent: 2 + - uid: 22928 components: - type: Transform pos: -31.5,32.5 - parent: 89 - - uid: 10108 + parent: 2 + - uid: 22929 components: - type: Transform pos: -31.5,33.5 - parent: 89 - - uid: 10109 + parent: 2 + - uid: 22930 components: - type: Transform pos: -35.5,31.5 - parent: 89 - - uid: 10110 + parent: 2 + - uid: 22931 components: - type: Transform pos: -35.5,32.5 - parent: 89 - - uid: 10111 + parent: 2 + - uid: 22932 components: - type: Transform pos: -35.5,33.5 - parent: 89 - - uid: 10135 + parent: 2 + - uid: 22933 components: - type: Transform pos: -79.5,-4.5 - parent: 89 - - uid: 10160 + parent: 2 + - uid: 22934 components: - type: Transform pos: -77.5,-4.5 - parent: 89 - - uid: 10161 + parent: 2 + - uid: 22935 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-2.5 - parent: 89 - - uid: 10162 + parent: 2 + - uid: 22936 components: - type: Transform rot: 1.5707963267948966 rad pos: -81.5,-1.5 - parent: 89 - - uid: 10178 + parent: 2 + - uid: 22937 components: - type: Transform pos: -76.5,-4.5 - parent: 89 - - uid: 10201 + parent: 2 + - uid: 22938 components: - type: Transform pos: 8.5,-17.5 - parent: 89 - - uid: 10205 + parent: 2 + - uid: 22939 components: - type: Transform pos: -80.5,-0.5 - parent: 89 - - uid: 10216 + parent: 2 + - uid: 22940 components: - type: Transform pos: -80.5,-4.5 - parent: 89 - - uid: 10217 + parent: 2 + - uid: 22941 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-7.5 - parent: 89 - - uid: 10235 + parent: 2 + - uid: 22942 components: - type: Transform pos: 9.5,-17.5 - parent: 89 - - uid: 10286 - components: - - type: Transform - pos: -39.5,33.5 - parent: 89 - - uid: 10287 + parent: 2 + - uid: 22943 components: - type: Transform pos: -38.5,33.5 - parent: 89 - - uid: 10288 + parent: 2 + - uid: 22944 components: - type: Transform pos: -38.5,32.5 - parent: 89 - - uid: 10290 + parent: 2 + - uid: 22945 components: - type: Transform pos: -36.5,30.5 - parent: 89 - - uid: 10291 + parent: 2 + - uid: 22946 components: - type: Transform pos: -37.5,30.5 - parent: 89 - - uid: 10292 + parent: 2 + - uid: 22947 components: - type: Transform pos: -38.5,30.5 - parent: 89 - - uid: 10304 + parent: 2 + - uid: 22948 components: - type: Transform rot: -1.5707963267948966 rad pos: -72.5,1.5 - parent: 89 - - uid: 10306 + parent: 2 + - uid: 22949 components: - type: Transform pos: -38.5,25.5 - parent: 89 - - uid: 10307 - components: - - type: Transform - pos: -38.5,26.5 - parent: 89 - - uid: 10308 + parent: 2 + - uid: 22950 components: - type: Transform pos: -36.5,26.5 - parent: 89 - - uid: 10322 + parent: 2 + - uid: 22951 components: - type: Transform pos: -23.5,26.5 - parent: 89 - - uid: 10323 + parent: 2 + - uid: 22952 components: - type: Transform pos: -21.5,26.5 - parent: 89 - - uid: 10324 + parent: 2 + - uid: 22953 components: - type: Transform pos: -21.5,25.5 - parent: 89 - - uid: 10325 + parent: 2 + - uid: 22954 components: - type: Transform pos: -20.5,25.5 - parent: 89 - - uid: 10326 + parent: 2 + - uid: 22955 components: - type: Transform pos: -19.5,25.5 - parent: 89 - - uid: 10342 + parent: 2 + - uid: 22956 components: - type: Transform pos: -21.5,33.5 - parent: 89 - - uid: 10343 + parent: 2 + - uid: 22957 components: - type: Transform pos: -20.5,33.5 - parent: 89 - - uid: 10344 + parent: 2 + - uid: 22958 components: - type: Transform pos: -23.5,30.5 - parent: 89 - - uid: 10345 + parent: 2 + - uid: 22959 components: - type: Transform pos: -22.5,30.5 - parent: 89 - - uid: 10346 + parent: 2 + - uid: 22960 components: - type: Transform pos: -21.5,30.5 - parent: 89 - - uid: 10347 + parent: 2 + - uid: 22961 components: - type: Transform pos: -21.5,32.5 - parent: 89 - - uid: 10390 + parent: 2 + - uid: 22962 components: - type: Transform pos: -122.5,-11.5 - parent: 89 - - uid: 10401 + parent: 2 + - uid: 22963 components: - type: Transform pos: -123.5,-11.5 - parent: 89 - - uid: 10451 + parent: 2 + - uid: 22964 components: - type: Transform pos: 16.5,10.5 - parent: 89 - - uid: 10516 + parent: 2 + - uid: 22965 components: - type: Transform pos: -86.5,19.5 - parent: 89 - - uid: 10517 + parent: 2 + - uid: 22966 components: - type: Transform pos: -86.5,20.5 - parent: 89 - - uid: 10540 + parent: 2 + - uid: 22967 components: - type: Transform pos: -79.5,15.5 - parent: 89 - - uid: 10542 + parent: 2 + - uid: 22968 components: - type: Transform pos: -79.5,17.5 - parent: 89 - - uid: 10543 + parent: 2 + - uid: 22969 components: - type: Transform pos: -79.5,18.5 - parent: 89 - - uid: 10544 + parent: 2 + - uid: 22970 components: - type: Transform pos: -79.5,20.5 - parent: 89 - - uid: 10545 + parent: 2 + - uid: 22971 components: - type: Transform pos: -79.5,21.5 - parent: 89 - - uid: 10631 - components: - - type: Transform - pos: 4.5,5.5 - parent: 89 - - uid: 10632 + parent: 2 + - uid: 22972 components: - type: Transform pos: 14.5,10.5 - parent: 89 - - uid: 10633 + parent: 2 + - uid: 22973 components: - type: Transform pos: 13.5,10.5 - parent: 89 - - uid: 10634 + parent: 2 + - uid: 22974 components: - type: Transform pos: 12.5,10.5 - parent: 89 - - uid: 10637 + parent: 2 + - uid: 22975 components: - type: Transform pos: 11.5,10.5 - parent: 89 - - uid: 10638 + parent: 2 + - uid: 22976 components: - type: Transform pos: 8.5,10.5 - parent: 89 - - uid: 10639 + parent: 2 + - uid: 22977 components: - type: Transform pos: 8.5,10.5 - parent: 89 - - uid: 10640 + parent: 2 + - uid: 22978 components: - type: Transform pos: 7.5,10.5 - parent: 89 - - uid: 10641 + parent: 2 + - uid: 22979 components: - type: Transform pos: 10.5,10.5 - parent: 89 - - uid: 10642 + parent: 2 + - uid: 22980 components: - type: Transform pos: 10.5,10.5 - parent: 89 - - uid: 10643 + parent: 2 + - uid: 22981 components: - type: Transform pos: 9.5,10.5 - parent: 89 - - uid: 10644 - components: - - type: Transform - pos: 4.5,6.5 - parent: 89 - - uid: 10645 - components: - - type: Transform - pos: 4.5,7.5 - parent: 89 - - uid: 10646 - components: - - type: Transform - pos: 4.5,8.5 - parent: 89 - - uid: 10648 - components: - - type: Transform - pos: 4.5,9.5 - parent: 89 - - uid: 10649 - components: - - type: Transform - pos: 4.5,10.5 - parent: 89 - - uid: 10650 - components: - - type: Transform - pos: 4.5,10.5 - parent: 89 - - uid: 10651 + parent: 2 + - uid: 22982 components: - type: Transform pos: 5.5,10.5 - parent: 89 - - uid: 10654 + parent: 2 + - uid: 22983 components: - type: Transform pos: 15.5,10.5 - parent: 89 - - uid: 10663 - components: - - type: Transform - pos: 5.5,-20.5 - parent: 89 - - uid: 10664 - components: - - type: Transform - pos: -3.5,-22.5 - parent: 89 - - uid: 10665 - components: - - type: Transform - pos: -3.5,-19.5 - parent: 89 - - uid: 10670 - components: - - type: Transform - pos: 0.5,-22.5 - parent: 89 - - uid: 10756 + parent: 2 + - uid: 22984 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,14.5 - parent: 89 - - uid: 10762 + parent: 2 + - uid: 22985 components: - type: Transform rot: 3.141592653589793 rad pos: -115.5,0.5 - parent: 89 - - uid: 10768 + parent: 2 + - uid: 22986 components: - type: Transform pos: -13.5,16.5 - parent: 89 - - uid: 10804 + parent: 2 + - uid: 22987 components: - type: Transform pos: 12.5,16.5 - parent: 89 - - uid: 10805 + parent: 2 + - uid: 22988 components: - type: Transform pos: 12.5,18.5 - parent: 89 - - uid: 10806 + parent: 2 + - uid: 22989 components: - type: Transform pos: 12.5,17.5 - parent: 89 - - uid: 10807 + parent: 2 + - uid: 22990 components: - type: Transform pos: 12.5,19.5 - parent: 89 - - uid: 10833 + parent: 2 + - uid: 22991 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,19.5 - parent: 89 - - uid: 10844 + parent: 2 + - uid: 22992 components: - type: Transform rot: 3.141592653589793 rad pos: -117.5,7.5 - parent: 89 - - uid: 10847 + parent: 2 + - uid: 22993 components: - type: Transform pos: -9.5,16.5 - parent: 89 - - uid: 10859 + parent: 2 + - uid: 22994 components: - type: Transform rot: 3.141592653589793 rad pos: 4.5,15.5 - parent: 89 - - uid: 10867 + parent: 2 + - uid: 22995 components: - type: Transform pos: 12.5,18.5 - parent: 89 - - uid: 10892 + parent: 2 + - uid: 22996 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,19.5 - parent: 89 - - uid: 10917 + parent: 2 + - uid: 22997 components: - type: Transform pos: -11.5,16.5 - parent: 89 - - uid: 10920 + parent: 2 + - uid: 22998 components: - type: Transform pos: -3.5,21.5 - parent: 89 - - uid: 10929 + parent: 2 + - uid: 22999 components: - type: Transform pos: 4.5,18.5 - parent: 89 - - uid: 10931 + parent: 2 + - uid: 23000 components: - type: Transform pos: 4.5,17.5 - parent: 89 - - uid: 10933 + parent: 2 + - uid: 23001 components: - type: Transform pos: 12.5,15.5 - parent: 89 - - uid: 10935 + parent: 2 + - uid: 23002 components: - type: Transform pos: 4.5,16.5 - parent: 89 - - uid: 10975 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -4.5,10.5 - parent: 89 - - uid: 10982 + parent: 2 + - uid: 23003 components: - type: Transform pos: -27.5,6.5 - parent: 89 - - uid: 11051 + parent: 2 + - uid: 23004 components: - type: Transform rot: 3.141592653589793 rad pos: 9.5,19.5 - parent: 89 - - uid: 11057 - components: - - type: Transform - pos: -2.5,10.5 - parent: 89 - - uid: 11077 + parent: 2 + - uid: 23005 components: - type: Transform rot: 3.141592653589793 rad pos: 10.5,19.5 - parent: 89 - - uid: 11079 + parent: 2 + - uid: 23006 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,19.5 - parent: 89 - - uid: 11080 + parent: 2 + - uid: 23007 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,19.5 - parent: 89 - - uid: 11081 + parent: 2 + - uid: 23008 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,21.5 - parent: 89 - - uid: 11192 + parent: 2 + - uid: 23009 components: - type: Transform pos: -13.5,15.5 - parent: 89 - - uid: 11193 + parent: 2 + - uid: 23010 components: - type: Transform pos: -13.5,14.5 - parent: 89 - - uid: 11194 + parent: 2 + - uid: 23011 components: - type: Transform pos: -13.5,21.5 - parent: 89 - - uid: 11195 + parent: 2 + - uid: 23012 components: - type: Transform pos: -13.5,12.5 - parent: 89 - - uid: 11196 + parent: 2 + - uid: 23013 components: - type: Transform pos: -13.5,11.5 - parent: 89 - - uid: 11197 + parent: 2 + - uid: 23014 components: - type: Transform pos: -13.5,10.5 - parent: 89 - - uid: 11198 - components: - - type: Transform - pos: -3.5,10.5 - parent: 89 - - uid: 11311 + parent: 2 + - uid: 23015 components: - type: Transform pos: 1.5,22.5 - parent: 89 - - uid: 11352 + parent: 2 + - uid: 23016 components: - type: Transform pos: -1.5,22.5 - parent: 89 - - uid: 11377 + parent: 2 + - uid: 23017 components: - type: Transform pos: -4.5,22.5 - parent: 89 - - uid: 11379 - components: - - type: Transform - pos: -4.5,5.5 - parent: 89 - - uid: 11391 + parent: 2 + - uid: 23018 components: - type: Transform pos: 4.5,22.5 - parent: 89 - - uid: 11399 + parent: 2 + - uid: 23019 components: - type: Transform pos: 2.5,22.5 - parent: 89 - - uid: 11400 + parent: 2 + - uid: 23020 components: - type: Transform pos: 0.5,22.5 - parent: 89 - - uid: 11401 + parent: 2 + - uid: 23021 components: - type: Transform pos: -3.5,22.5 - parent: 89 - - uid: 11402 + parent: 2 + - uid: 23022 components: - type: Transform pos: -2.5,22.5 - parent: 89 - - uid: 11403 + parent: 2 + - uid: 23023 components: - type: Transform pos: -0.5,22.5 - parent: 89 - - uid: 11406 + parent: 2 + - uid: 23024 components: - type: Transform pos: 3.5,22.5 - parent: 89 - - uid: 11407 + parent: 2 + - uid: 23025 components: - type: Transform pos: -13.5,17.5 - parent: 89 - - uid: 11410 + parent: 2 + - uid: 23026 components: - type: Transform pos: -13.5,19.5 - parent: 89 - - uid: 11760 + parent: 2 + - uid: 23027 components: - type: Transform pos: -35.5,-15.5 - parent: 89 - - uid: 11764 + parent: 2 + - uid: 23028 components: - type: Transform pos: -34.5,-15.5 - parent: 89 - - uid: 12625 + parent: 2 + - uid: 23029 components: - type: Transform rot: 3.141592653589793 rad pos: 11.5,19.5 - parent: 89 - - uid: 12629 + parent: 2 + - uid: 23030 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,15.5 - parent: 89 - - uid: 12661 + parent: 2 + - uid: 23031 components: - type: Transform pos: 1.5,18.5 - parent: 89 - - uid: 12813 + parent: 2 + - uid: 23032 components: - type: Transform pos: 20.5,24.5 - parent: 89 - - uid: 12819 + parent: 2 + - uid: 23033 components: - type: Transform pos: 21.5,24.5 - parent: 89 - - uid: 12832 + parent: 2 + - uid: 23034 components: - type: Transform pos: -3.5,19.5 - parent: 89 - - uid: 14030 + parent: 2 + - uid: 23035 components: - type: Transform rot: 1.5707963267948966 rad pos: -28.5,33.5 - parent: 89 - - uid: 14037 + parent: 2 + - uid: 23036 components: - type: Transform pos: -13.5,20.5 - parent: 89 - - uid: 14038 + parent: 2 + - uid: 23037 components: - type: Transform pos: -9.5,22.5 - parent: 89 - - uid: 14078 + parent: 2 + - uid: 23038 components: - type: Transform pos: 32.5,21.5 - parent: 89 - - uid: 14180 + parent: 2 + - uid: 23039 components: - type: Transform pos: 35.5,21.5 - parent: 89 - - uid: 14295 + parent: 2 + - uid: 23040 components: - type: Transform pos: 26.5,21.5 - parent: 89 - - uid: 14366 + parent: 2 + - uid: 23041 components: - type: Transform pos: -7.5,16.5 - parent: 89 - - uid: 14524 + parent: 2 + - uid: 23042 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-6.5 - parent: 89 - - uid: 14528 + parent: 2 + - uid: 23043 components: - type: Transform rot: 1.5707963267948966 rad pos: -71.5,-5.5 - parent: 89 - - uid: 14588 + parent: 2 + - uid: 23044 components: - type: Transform pos: -127.5,21.5 - parent: 89 - - uid: 14661 - components: - - type: Transform - pos: -0.5,14.5 - parent: 89 - - uid: 14872 + parent: 2 + - uid: 23045 components: - type: Transform pos: 25.5,21.5 - parent: 89 - - uid: 14941 - components: - - type: Transform - pos: 27.5,21.5 - parent: 89 - - uid: 14942 - components: - - type: Transform - pos: 30.5,21.5 - parent: 89 - - uid: 14943 - components: - - type: Transform - pos: 29.5,21.5 - parent: 89 - - uid: 15105 - components: - - type: Transform - pos: -6.5,22.5 - parent: 89 - - uid: 15106 - components: - - type: Transform - pos: -13.5,22.5 - parent: 89 - - uid: 15170 + parent: 2 + - uid: 23046 components: - - type: Transform - pos: -3.5,17.5 - parent: 89 - - uid: 15173 + - type: Transform + pos: 27.5,21.5 + parent: 2 + - uid: 23047 components: - type: Transform - pos: -13.5,18.5 - parent: 89 - - uid: 15184 + pos: 30.5,21.5 + parent: 2 + - uid: 23048 components: - type: Transform - pos: 29.5,18.5 - parent: 89 - - uid: 15207 + pos: 29.5,21.5 + parent: 2 + - uid: 23049 components: - type: Transform - pos: -0.5,10.5 - parent: 89 - - uid: 15208 + pos: -6.5,22.5 + parent: 2 + - uid: 23050 components: - type: Transform - pos: 2.5,10.5 - parent: 89 - - uid: 15213 + pos: -3.5,17.5 + parent: 2 + - uid: 23051 components: - type: Transform - pos: 3.5,10.5 - parent: 89 - - uid: 15215 + pos: -13.5,18.5 + parent: 2 + - uid: 23052 components: - type: Transform - pos: 1.5,10.5 - parent: 89 - - uid: 15256 + pos: 29.5,18.5 + parent: 2 + - uid: 23053 components: - type: Transform pos: 3.5,14.5 - parent: 89 - - uid: 15283 + parent: 2 + - uid: 23054 components: - type: Transform pos: 28.5,21.5 - parent: 89 - - uid: 15295 + parent: 2 + - uid: 23055 components: - type: Transform pos: 29.5,20.5 - parent: 89 - - uid: 15298 + parent: 2 + - uid: 23056 components: - type: Transform pos: 22.5,22.5 - parent: 89 - - uid: 15455 + parent: 2 + - uid: 23057 components: - type: Transform pos: 3.5,24.5 - parent: 89 - - uid: 15456 + parent: 2 + - uid: 23058 components: - type: Transform pos: 3.5,25.5 - parent: 89 - - uid: 15557 + parent: 2 + - uid: 23059 components: - type: Transform pos: 19.5,24.5 - parent: 89 - - uid: 15558 + parent: 2 + - uid: 23060 components: - type: Transform pos: 18.5,24.5 - parent: 89 - - uid: 15559 + parent: 2 + - uid: 23061 components: - type: Transform pos: 16.5,24.5 - parent: 89 - - uid: 15565 + parent: 2 + - uid: 23062 components: - type: Transform pos: 5.5,25.5 - parent: 89 - - uid: 15768 + parent: 2 + - uid: 23063 components: - type: Transform pos: 5.5,24.5 - parent: 89 - - uid: 15867 + parent: 2 + - uid: 23064 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,20.5 - parent: 89 - - uid: 15879 + parent: 2 + - uid: 23065 components: - type: Transform pos: 17.5,20.5 - parent: 89 - - uid: 15885 + parent: 2 + - uid: 23066 components: - type: Transform pos: 4.5,27.5 - parent: 89 - - uid: 15898 + parent: 2 + - uid: 23067 components: - type: Transform pos: 3.5,26.5 - parent: 89 - - uid: 15899 + parent: 2 + - uid: 23068 components: - type: Transform rot: -1.5707963267948966 rad pos: 4.5,19.5 - parent: 89 - - uid: 15905 + parent: 2 + - uid: 23069 components: - type: Transform pos: 17.5,16.5 - parent: 89 - - uid: 15909 + parent: 2 + - uid: 23070 components: - type: Transform pos: 23.5,20.5 - parent: 89 - - uid: 15911 + parent: 2 + - uid: 23071 components: - type: Transform pos: 16.5,16.5 - parent: 89 - - uid: 15914 + parent: 2 + - uid: 23072 components: - type: Transform pos: 18.5,20.5 - parent: 89 - - uid: 15917 + parent: 2 + - uid: 23073 components: - type: Transform pos: 17.5,24.5 - parent: 89 - - uid: 15918 + parent: 2 + - uid: 23074 components: - type: Transform pos: 22.5,21.5 - parent: 89 - - uid: 15951 + parent: 2 + - uid: 23075 components: - type: Transform pos: 23.5,16.5 - parent: 89 - - uid: 15952 + parent: 2 + - uid: 23076 components: - type: Transform pos: 23.5,21.5 - parent: 89 - - uid: 16033 + parent: 2 + - uid: 23077 components: - type: Transform pos: 15.5,16.5 - parent: 89 - - uid: 16034 + parent: 2 + - uid: 23078 components: - type: Transform pos: 15.5,21.5 - parent: 89 - - uid: 16038 + parent: 2 + - uid: 23079 components: - type: Transform pos: 15.5,20.5 - parent: 89 - - uid: 16039 + parent: 2 + - uid: 23080 components: - type: Transform pos: 15.5,18.5 - parent: 89 - - uid: 16041 + parent: 2 + - uid: 23081 components: - type: Transform pos: 15.5,19.5 - parent: 89 - - uid: 16042 + parent: 2 + - uid: 23082 components: - type: Transform pos: 15.5,17.5 - parent: 89 - - uid: 16044 + parent: 2 + - uid: 23083 components: - type: Transform pos: 15.5,23.5 - parent: 89 - - uid: 16049 + parent: 2 + - uid: 23084 components: - type: Transform pos: 16.5,20.5 - parent: 89 - - uid: 16050 + parent: 2 + - uid: 23085 components: - type: Transform pos: 20.5,20.5 - parent: 89 - - uid: 16051 + parent: 2 + - uid: 23086 components: - type: Transform pos: 21.5,20.5 - parent: 89 - - uid: 16052 + parent: 2 + - uid: 23087 components: - type: Transform pos: 22.5,23.5 - parent: 89 - - uid: 16059 + parent: 2 + - uid: 23088 components: - type: Transform pos: 8.5,25.5 - parent: 89 - - uid: 16070 + parent: 2 + - uid: 23089 components: - type: Transform pos: 11.5,25.5 - parent: 89 - - uid: 16071 + parent: 2 + - uid: 23090 components: - type: Transform pos: 7.5,25.5 - parent: 89 - - uid: 16072 + parent: 2 + - uid: 23091 components: - type: Transform pos: 9.5,25.5 - parent: 89 - - uid: 16073 + parent: 2 + - uid: 23092 components: - type: Transform pos: 10.5,25.5 - parent: 89 - - uid: 16074 + parent: 2 + - uid: 23093 components: - type: Transform pos: 15.5,24.5 - parent: 89 - - uid: 16130 + parent: 2 + - uid: 23094 components: - type: Transform pos: 22.5,24.5 - parent: 89 - - uid: 16145 + parent: 2 + - uid: 23095 components: - type: Transform pos: 5.5,23.5 - parent: 89 - - uid: 16159 + parent: 2 + - uid: 23096 components: - type: Transform pos: 19.5,20.5 - parent: 89 - - uid: 16160 + parent: 2 + - uid: 23097 components: - type: Transform pos: 19.5,16.5 - parent: 89 - - uid: 16162 + parent: 2 + - uid: 23098 components: - type: Transform pos: 22.5,20.5 - parent: 89 - - uid: 16172 + parent: 2 + - uid: 23099 components: - type: Transform pos: 6.5,25.5 - parent: 89 - - uid: 16493 + parent: 2 + - uid: 23100 components: - type: Transform pos: 26.5,23.5 - parent: 89 - - uid: 16495 + parent: 2 + - uid: 23101 components: - type: Transform pos: 26.5,24.5 - parent: 89 - - uid: 16498 + parent: 2 + - uid: 23102 components: - type: Transform pos: 31.5,25.5 - parent: 89 - - uid: 16502 - components: - - type: Transform - pos: 29.5,26.5 - parent: 89 - - uid: 16514 + parent: 2 + - uid: 23103 components: - type: Transform pos: -7.5,21.5 - parent: 89 - - uid: 16629 + parent: 2 + - uid: 23104 components: - type: Transform pos: 34.5,21.5 - parent: 89 - - uid: 16657 + parent: 2 + - uid: 23105 components: - type: Transform pos: 33.5,21.5 - parent: 89 - - uid: 16689 + parent: 2 + - uid: 23106 components: - type: Transform pos: -36.5,-15.5 - parent: 89 - - uid: 16693 + parent: 2 + - uid: 23107 components: - type: Transform pos: -32.5,-15.5 - parent: 89 - - uid: 16887 + parent: 2 + - uid: 23108 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,21.5 - parent: 89 - - uid: 17126 + parent: 2 + - uid: 23109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -29.5,6.5 + parent: 2 + - uid: 23110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -38.5,5.5 + parent: 2 + - uid: 23111 components: - type: Transform pos: -28.5,17.5 - parent: 89 - - uid: 17147 + parent: 2 + - uid: 23112 components: - type: Transform pos: -1.5,34.5 - parent: 89 - - uid: 17896 + parent: 2 + - uid: 23113 components: - type: Transform pos: 11.5,-17.5 - parent: 89 - - uid: 17903 + parent: 2 + - uid: 23114 components: - type: Transform pos: 15.5,-17.5 - parent: 89 - - uid: 17921 + parent: 2 + - uid: 23115 components: - type: Transform pos: 11.5,-16.5 - parent: 89 - - uid: 17923 + parent: 2 + - uid: 23116 components: - type: Transform pos: 13.5,-17.5 - parent: 89 - - uid: 18143 + parent: 2 + - uid: 23117 components: - type: Transform pos: 14.5,-17.5 - parent: 89 - - uid: 18434 + parent: 2 + - uid: 23118 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,20.5 - parent: 89 - - uid: 18718 + parent: 2 + - uid: 23119 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,-5.5 - parent: 89 - - uid: 18826 - components: - - type: Transform - pos: 29.5,25.5 - parent: 89 - - uid: 19057 + parent: 2 + - uid: 23120 components: - type: Transform pos: -25.5,6.5 - parent: 89 - - uid: 19059 + parent: 2 + - uid: 23121 components: - type: Transform pos: -24.5,6.5 - parent: 89 - - uid: 19060 - components: - - type: Transform - pos: -24.5,7.5 - parent: 89 - - uid: 19066 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -4.5,-5.5 - parent: 89 - - uid: 19123 + parent: 2 + - uid: 23122 components: - type: Transform rot: 3.141592653589793 rad pos: -32.5,-7.5 - parent: 89 - - uid: 19215 - components: - - type: Transform - pos: 1.5,-16.5 - parent: 89 - - uid: 19217 - components: - - type: Transform - pos: 1.5,-17.5 - parent: 89 - - uid: 19218 - components: - - type: Transform - pos: 1.5,-18.5 - parent: 89 - - uid: 19251 + parent: 2 + - uid: 23123 components: - type: Transform pos: 31.5,26.5 - parent: 89 - - uid: 19581 + parent: 2 + - uid: 23124 components: - type: Transform pos: -8.5,16.5 - parent: 89 - - uid: 20125 + parent: 2 + - uid: 23125 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,14.5 - parent: 89 - - uid: 20873 + parent: 2 + - uid: 23126 components: - type: Transform pos: 10.5,-17.5 - parent: 89 - - uid: 20875 + parent: 2 + - uid: 23127 components: - type: Transform pos: 13.5,-16.5 - parent: 89 - - uid: 21231 + parent: 2 + - uid: 23128 components: - type: Transform rot: 3.141592653589793 rad pos: -28.5,22.5 - parent: 89 - - uid: 21233 + parent: 2 + - uid: 23129 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,22.5 - parent: 89 - - uid: 25221 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -11.5,0.5 - parent: 22565 - - uid: 25222 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,-1.5 - parent: 22565 - - uid: 25223 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -16.5,-1.5 - parent: 22565 - - uid: 25224 + parent: 2 + - uid: 23130 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,2.5 - parent: 22565 - - uid: 25225 + rot: 3.141592653589793 rad + pos: -3.5,-10.5 + parent: 2 + - uid: 23131 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -25.5,9.5 - parent: 22565 - - uid: 25226 + rot: -1.5707963267948966 rad + pos: -8.5,9.5 + parent: 2 + - uid: 23132 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,10.5 - parent: 22565 - - uid: 25227 + pos: 28.5,23.5 + parent: 2 + - uid: 23133 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,7.5 - parent: 22565 - - uid: 25228 + pos: 30.5,23.5 + parent: 2 + - uid: 23134 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,10.5 - parent: 22565 - - uid: 25229 + pos: 29.5,23.5 + parent: 2 + - uid: 23135 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,7.5 - parent: 22565 - - uid: 25230 + pos: 32.5,23.5 + parent: 2 + - uid: 27184 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,2.5 - parent: 22565 - - uid: 25231 + pos: 4.5,9.5 + parent: 24450 + - uid: 27185 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,7.5 - parent: 22565 - - uid: 25232 + pos: 4.5,8.5 + parent: 24450 + - uid: 27186 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,7.5 - parent: 22565 - - uid: 25233 + pos: 5.5,9.5 + parent: 24450 + - uid: 27187 components: - type: Transform rot: 1.5707963267948966 rad pos: -32.5,8.5 - parent: 22565 - - uid: 25234 - components: - - type: Transform - pos: -33.5,10.5 - parent: 22565 - - uid: 25235 - components: - - type: Transform - pos: -35.5,4.5 - parent: 22565 - - uid: 25236 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,6.5 - parent: 22565 - - uid: 25237 + parent: 24450 + - uid: 27188 components: - type: Transform pos: 2.5,10.5 - parent: 22565 - - uid: 25238 + parent: 24450 + - uid: 27189 components: - type: Transform - rot: 3.141592653589793 rad pos: 0.5,8.5 - parent: 22565 - - uid: 25239 + parent: 24450 + - uid: 27190 components: - type: Transform pos: 2.5,11.5 - parent: 22565 - - uid: 25240 + parent: 24450 + - uid: 27191 components: - type: Transform - rot: 3.141592653589793 rad pos: 1.5,8.5 - parent: 22565 - - uid: 25241 + parent: 24450 + - uid: 27192 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,8.5 - parent: 22565 - - uid: 25242 + parent: 24450 + - uid: 27193 components: - type: Transform pos: 2.5,9.5 - parent: 22565 - - uid: 25243 - components: - - type: Transform - pos: -9.5,-0.5 - parent: 22565 -- proto: WallSolidDiagonal - entities: - - uid: 16867 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,-8.5 - parent: 89 - - uid: 20956 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -63.5,27.5 - parent: 89 -- proto: WallSolidRust - entities: - - uid: 3259 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-14.5 - parent: 89 - - uid: 4583 - components: - - type: Transform - pos: -45.5,-9.5 - parent: 89 - - uid: 17056 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 47.5,-34.5 - parent: 89 - - uid: 21772 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 55.5,-19.5 - parent: 89 - - uid: 21896 - components: - - type: Transform - pos: 54.5,-18.5 - parent: 89 - - uid: 25244 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,4.5 - parent: 22565 - - uid: 25245 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,0.5 - parent: 22565 - - uid: 25246 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,0.5 - parent: 22565 - - uid: 25247 + parent: 24450 + - uid: 27194 components: - type: Transform - rot: 1.5707963267948966 rad pos: 4.5,7.5 - parent: 22565 - - uid: 25248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 4.5,4.5 - parent: 22565 - - uid: 25249 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -28.5,7.5 - parent: 22565 - - uid: 25250 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,-1.5 - parent: 22565 - - uid: 25251 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -7.5,-1.5 - parent: 22565 - - uid: 25252 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,0.5 - parent: 22565 - - uid: 25253 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -12.5,0.5 - parent: 22565 - - uid: 25254 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -9.5,0.5 - parent: 22565 - - uid: 25255 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,0.5 - parent: 22565 - - uid: 25256 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -15.5,0.5 - parent: 22565 - - uid: 25257 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,4.5 - parent: 22565 - - uid: 25258 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,6.5 - parent: 22565 - - uid: 25259 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -24.5,9.5 - parent: 22565 - - uid: 25260 + parent: 24450 + - uid: 27195 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,10.5 - parent: 22565 - - uid: 25261 + parent: 24450 + - uid: 27196 components: - type: Transform - rot: 1.5707963267948966 rad pos: 0.5,9.5 - parent: 22565 - - uid: 25262 + parent: 24450 + - uid: 27197 components: - type: Transform - rot: 3.141592653589793 rad pos: 2.5,7.5 - parent: 22565 - - uid: 25263 + parent: 24450 + - uid: 27198 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,10.5 - parent: 22565 - - uid: 25264 + parent: 24450 + - uid: 27199 components: - type: Transform - rot: 1.5707963267948966 rad pos: 5.5,11.5 - parent: 22565 - - uid: 25265 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,12.5 - parent: 22565 - - uid: 25266 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,10.5 - parent: 22565 - - uid: 25267 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,8.5 - parent: 22565 - - uid: 25268 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,10.5 - parent: 22565 - - uid: 25269 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,10.5 - parent: 22565 - - uid: 25270 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,10.5 - parent: 22565 - - uid: 25271 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 9.5,7.5 - parent: 22565 - - uid: 25272 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,7.5 - parent: 22565 - - uid: 25273 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 11.5,4.5 - parent: 22565 - - uid: 25274 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 10.5,4.5 - parent: 22565 - - uid: 25275 - components: - - type: Transform - pos: -29.5,10.5 - parent: 22565 - - uid: 25276 - components: - - type: Transform - pos: -29.5,11.5 - parent: 22565 - - uid: 25277 + parent: 24450 + - uid: 27200 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,7.5 - parent: 22565 - - uid: 25278 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,7.5 - parent: 22565 - - uid: 25279 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,10.5 - parent: 22565 - - uid: 25280 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -35.5,10.5 - parent: 22565 - - uid: 25281 - components: - - type: Transform - rot: 1.5707963267948966 rad pos: -32.5,12.5 - parent: 22565 - - uid: 25282 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,6.5 - parent: 22565 - - uid: 25283 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -32.5,4.5 - parent: 22565 - - uid: 25284 + parent: 24450 + - uid: 27201 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -33.5,4.5 - parent: 22565 - - uid: 25285 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -34.5,4.5 - parent: 22565 - - uid: 25286 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -14.5,-1.5 - parent: 22565 - - uid: 25287 + pos: 4.5,6.5 + parent: 24450 +- proto: WallSolidDiagonal + entities: + - uid: 23136 components: - type: Transform rot: 1.5707963267948966 rad - pos: -34.5,2.5 - parent: 22565 - - uid: 25288 + pos: -73.5,-8.5 + parent: 2 +- proto: WallSolidRust + entities: + - uid: 23137 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 8.5,4.5 - parent: 22565 - - uid: 25289 + pos: -45.5,-9.5 + parent: 2 + - uid: 27202 components: - type: Transform rot: 1.5707963267948966 rad - pos: 4.5,6.5 - parent: 22565 - - uid: 25290 + pos: 8.5,12.5 + parent: 24450 + - uid: 27203 components: - type: Transform rot: 1.5707963267948966 rad - pos: -9.5,-1.5 - parent: 22565 - - uid: 25291 - components: - - type: Transform - pos: -26.5,8.5 - parent: 22565 - - uid: 25292 - components: - - type: Transform - pos: -26.5,7.5 - parent: 22565 - - uid: 25293 - components: - - type: Transform - pos: -26.5,9.5 - parent: 22565 - - uid: 25294 - components: - - type: Transform - pos: -14.5,-0.5 - parent: 22565 + pos: 8.5,8.5 + parent: 24450 - proto: WallWeaponCapacitorRecharger entities: - - uid: 3624 - components: - - type: Transform - pos: 24.5,-6.5 - parent: 89 - - uid: 3625 - components: - - type: Transform - pos: 24.5,-5.5 - parent: 89 - - uid: 3626 + - uid: 23138 components: - type: Transform - pos: 24.5,-4.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -49.5,-14.5 + parent: 2 - proto: WallWeb entities: - - uid: 20258 + - uid: 23139 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,21.5 - parent: 89 - - uid: 20831 + parent: 2 + - uid: 23140 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,23.5 - parent: 89 - - uid: 20951 + parent: 2 + - uid: 23141 components: - type: Transform rot: 1.5707963267948966 rad pos: 42.5,22.5 - parent: 89 - - uid: 20963 + parent: 2 + - uid: 23142 components: - type: Transform rot: 1.5707963267948966 rad pos: 40.5,23.5 - parent: 89 - - uid: 20964 + parent: 2 + - uid: 23143 components: - type: Transform rot: 1.5707963267948966 rad pos: 39.5,23.5 - parent: 89 - - uid: 21010 + parent: 2 + - uid: 23144 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,23.5 - parent: 89 + parent: 2 +- proto: WardrobeAtmosphericsFilled + entities: + - uid: 23145 + components: + - type: Transform + pos: -96.5,-9.5 + parent: 2 + - uid: 23146 + components: + - type: Transform + pos: -96.5,-8.5 + parent: 2 - proto: WardrobeChemistryFilled entities: - - uid: 9799 + - uid: 1101 components: - type: Transform pos: 3.5,7.5 - parent: 89 + parent: 2 - type: EntityStorage air: volume: 200 @@ -163501,3736 +181378,4161 @@ entities: showEnts: False occludes: True ents: - - 10415 + - 1102 paper_label: !type:ContainerSlot showEnts: False occludes: True ent: null - proto: WardrobePrisonFilled entities: - - uid: 2959 + - uid: 23147 components: - type: Transform pos: 24.5,-12.5 - parent: 89 - - uid: 3022 + parent: 2 + - uid: 23148 components: - type: Transform pos: 27.5,-12.5 - parent: 89 - - uid: 3023 + parent: 2 + - uid: 23149 components: - type: Transform pos: 21.5,-12.5 - parent: 89 - - uid: 3088 + parent: 2 + - uid: 23150 components: - type: Transform pos: 18.5,-12.5 - parent: 89 - - uid: 21060 + parent: 2 + - uid: 23151 components: - type: Transform pos: -52.5,43.5 - parent: 89 - - uid: 21507 + parent: 2 + - uid: 23152 components: - type: Transform pos: -52.5,39.5 - parent: 89 - - uid: 21779 + parent: 2 + - uid: 23153 components: - type: Transform pos: 42.5,-25.5 - parent: 89 - - uid: 21782 - components: - - type: Transform - pos: 42.5,-22.5 - parent: 89 - - uid: 21797 + parent: 2 + - uid: 23154 components: - type: Transform pos: 42.5,-24.5 - parent: 89 - - uid: 21800 + parent: 2 + - uid: 23155 components: - type: Transform pos: 42.5,-23.5 - parent: 89 - - uid: 25377 + parent: 2 + - uid: 23156 components: - type: Transform pos: 46.5,-21.5 - parent: 89 - - uid: 25378 + parent: 2 + - uid: 23157 components: - type: Transform pos: 46.5,-20.5 - parent: 89 - - uid: 25379 + parent: 2 + - uid: 23158 components: - type: Transform pos: 46.5,-19.5 - parent: 89 - - uid: 25380 + parent: 2 + - uid: 23159 components: - type: Transform pos: 46.5,-18.5 - parent: 89 + parent: 2 - proto: WardrobeRoboticsFilled entities: - - uid: 21329 + - uid: 23160 components: - type: Transform pos: -12.5,-21.5 - parent: 89 - - uid: 21330 + parent: 2 + - uid: 23161 components: - type: Transform pos: -11.5,-21.5 - parent: 89 + parent: 2 +- proto: WardrobeSalvageFilled + entities: + - uid: 9012 + components: + - type: Transform + pos: -52.5,-15.5 + parent: 2 + - type: EntityStorage + air: + volume: 200 + immutable: False + temperature: 293.14673 + moles: + - 1.7459903 + - 6.568249 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - 0 + - type: ContainerContainer + containers: + entity_storage: !type:Container + showEnts: False + occludes: True + ents: + - 9013 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null + - uid: 9014 + components: + - type: Transform + pos: -52.5,-17.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: + - 9015 + paper_label: !type:ContainerSlot + showEnts: False + occludes: True + ent: null - proto: WardrobeVirologyFilled entities: - - uid: 16550 + - uid: 23162 components: - type: Transform pos: 8.5,42.5 - parent: 89 + parent: 2 - proto: WarningCO2 entities: - - uid: 1434 + - uid: 23163 components: - type: Transform rot: -1.5707963267948966 rad pos: -97.5,-22.5 - parent: 89 + parent: 2 - proto: WarningN2 entities: - - uid: 1432 + - uid: 23164 components: - type: Transform rot: -1.5707963267948966 rad pos: -99.5,-22.5 - parent: 89 + parent: 2 - proto: WarningN2O entities: - - uid: 2131 + - uid: 23165 components: - type: Transform rot: -1.5707963267948966 rad pos: -91.5,-22.5 - parent: 89 + parent: 2 - proto: WarningO2 entities: - - uid: 1431 + - uid: 23166 components: - type: Transform rot: -1.5707963267948966 rad pos: -101.5,-22.5 - parent: 89 + parent: 2 - proto: WarningPlasma entities: - - uid: 1438 + - uid: 23167 components: - type: Transform rot: -1.5707963267948966 rad pos: -93.5,-22.5 - parent: 89 + parent: 2 - proto: WarningTritium entities: - - uid: 2137 + - uid: 23168 components: - type: Transform rot: -1.5707963267948966 rad pos: -89.5,-22.5 - parent: 89 + parent: 2 - proto: WarningWaste entities: - - uid: 1463 + - uid: 23169 components: - type: Transform rot: -1.5707963267948966 rad pos: -95.5,-22.5 - parent: 89 - - uid: 2138 + parent: 2 + - uid: 23170 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,-22.5 - parent: 89 + parent: 2 - proto: WarpPoint entities: - - uid: 16800 - components: - - type: Transform - pos: -5.5,12.5 - parent: 89 - - type: WarpPoint - location: Медбей - главный зал - - uid: 19630 + - uid: 24338 components: - type: Transform - pos: -108.5,4.5 - parent: 89 + pos: 4.5,-4.5 + parent: 23919 - type: WarpPoint - location: Инженерный - главный зал - - uid: 19631 + location: Шаттл ОБР + - uid: 27204 components: - type: Transform - pos: -93.5,14.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -12.5,5.5 + parent: 24450 - type: WarpPoint - location: Общий - склад инженеров - - uid: 19635 + location: Каторга + - uid: 28079 components: - type: Transform - pos: -76.5,-1.5 - parent: 89 + pos: 0.5,-5.5 + parent: 27260 - type: WarpPoint - location: Общий - суд - - uid: 19636 + location: Охранный пост ОБР +- proto: WarpPointBombing + entities: + - uid: 23171 components: + - type: MetaData + name: РИТЭГИ - type: Transform - pos: -62.5,-10.5 - parent: 89 - - type: WarpPoint - location: Отдел доставок - главный зал - - uid: 19639 + pos: -126.5,3.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23172 components: + - type: MetaData + name: ТЭГ - type: Transform - pos: -49.5,-2.5 - parent: 89 + pos: -113.5,-16.5 + parent: 2 - type: WarpPoint - location: Общий - церковь - - uid: 19641 + location: ТЭГ + - uid: 23173 components: + - type: MetaData + name: Генератор гравитации - type: Transform - pos: -20.5,-3.5 - parent: 89 - - type: WarpPoint - location: Общий - бар - - uid: 19644 + pos: -116.5,23.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23174 components: + - type: MetaData + name: Ускоритель частиц - type: Transform - pos: 16.5,-9.5 - parent: 89 + pos: -132.5,-7.5 + parent: 2 - type: WarpPoint - location: Бриг - бриг - - uid: 19645 + location: Ускоритель частиц + - uid: 23175 components: + - type: MetaData + name: Отбытие - type: Transform - pos: -1.5,-25.5 - parent: 89 + pos: -63.5,46.5 + parent: 2 - type: WarpPoint - location: РнД - главный зал - - uid: 19647 + location: Отбытие + - uid: 23176 components: + - type: MetaData + name: Холл НИО - type: Transform - pos: -1.5,-3.5 - parent: 89 - - type: WarpPoint - location: Общий - статуи - - uid: 19649 + pos: -8.5,-21.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23177 components: + - type: MetaData + name: Отдел снабжения - type: Transform - pos: 27.5,6.5 - parent: 89 + pos: -63.5,-10.5 + parent: 2 - type: WarpPoint - location: Мостик - ЕВА - - uid: 19650 + location: Отдел снабжения + - uid: 23178 components: + - type: MetaData + name: Мостик - type: Transform pos: 57.5,4.5 - parent: 89 - - type: WarpPoint - location: Мостик - мостик - - uid: 19651 - components: - - type: Transform - pos: 34.5,13.5 - parent: 89 - - type: WarpPoint - location: Мостик - конференц зал - - uid: 19652 - components: - - type: Transform - pos: -60.5,34.5 - parent: 89 - - type: WarpPoint - location: Общий - отбытие/прибытие - - uid: 25295 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -12.5,5.5 - parent: 22565 - - type: WarpPoint - location: Каторга -- proto: WarpPointBeacon - entities: - - uid: 714 - components: - - type: Transform - pos: -90.5,-17.5 - parent: 89 - - type: NavMapBeacon - color: '#00B3FFFF' - text: Атмос - - type: WarpPoint - location: Инженерный - Атмос - - uid: 3365 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -62.5,44.5 - parent: 89 - - type: NavMapBeacon - text: отбытие - - uid: 3366 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,-9.5 - parent: 89 - - type: NavMapBeacon - color: '#C4392FFF' - text: бриг - - uid: 4879 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23179 components: + - type: MetaData + name: Жилые Помещения - type: Transform - rot: 1.5707963267948966 rad - pos: -66.5,34.5 - parent: 89 - - type: NavMapBeacon - text: Прибытие -- proto: WarpPointBombing - entities: - - uid: 1792 + pos: -30.5,29.5 + parent: 2 + missingComponents: + - WarpPoint + - uid: 23180 components: + - type: MetaData + name: Химическая лаборатория - type: Transform pos: -0.5,7.5 - parent: 89 + parent: 2 - type: WarpPoint location: Химическая лаборатория - - uid: 4928 + - uid: 23181 components: + - type: MetaData + name: Сервера камер и связи - type: Transform rot: 1.5707963267948966 rad pos: -107.5,25.5 - parent: 89 + parent: 2 - type: WarpPoint location: Сервера камер и связи - - uid: 5075 + - uid: 23182 components: + - type: MetaData + name: Оружейная - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-16.5 - parent: 89 + pos: 43.5,-8.5 + parent: 2 - type: WarpPoint - location: Генератор гравитации - - uid: 5400 + location: Оружейная + - uid: 23183 components: + - type: MetaData + name: Хранилище - type: Transform - pos: 49.5,-4.5 - parent: 89 + pos: 49.5,-2.5 + parent: 2 - type: WarpPoint location: Хранилище - - uid: 5435 - components: - - type: Transform - pos: 43.5,-8.5 - parent: 89 - - type: WarpPoint - location: Оружейная - proto: WaterCooler entities: - - uid: 198 + - uid: 23184 + components: + - type: Transform + pos: -104.5,-5.5 + parent: 2 + - uid: 23185 components: - type: Transform pos: 1.5,-20.5 - parent: 89 - - uid: 210 + parent: 2 + - uid: 23186 components: - type: Transform pos: -7.5,-20.5 - parent: 89 - - uid: 4719 + parent: 2 + - uid: 23187 components: - type: Transform pos: -46.5,11.5 - parent: 89 - - uid: 9029 - components: - - type: Transform - pos: -112.5,21.5 - parent: 89 - - uid: 10151 + parent: 2 + - uid: 23188 components: - type: Transform pos: -26.5,21.5 - parent: 89 - - uid: 10884 + parent: 2 + - uid: 23189 components: - type: Transform pos: 1.5,-5.5 - parent: 89 - - uid: 10995 + parent: 2 + - uid: 23190 components: - type: Transform pos: -77.5,10.5 - parent: 89 - - uid: 11994 + parent: 2 + - uid: 23191 components: - type: Transform pos: -7.5,10.5 - parent: 89 - - uid: 12681 + parent: 2 + - uid: 23192 components: - type: Transform pos: 7.5,11.5 - parent: 89 - - uid: 12860 + parent: 2 + - uid: 23193 components: - type: Transform pos: 16.5,13.5 - parent: 89 - - uid: 16412 + parent: 2 + - uid: 23194 components: - type: Transform pos: -117.5,-13.5 - parent: 89 - - uid: 16911 + parent: 2 + - uid: 23195 components: - type: Transform pos: -10.5,-18.5 - parent: 89 - - uid: 16967 + parent: 2 + - uid: 23196 components: - type: Transform pos: -17.5,-21.5 - parent: 89 - - uid: 17369 + parent: 2 + - uid: 23197 components: - type: Transform pos: -41.5,-13.5 - parent: 89 - - uid: 19814 + parent: 2 + - uid: 23198 components: - type: Transform pos: 26.5,11.5 - parent: 89 - - uid: 19887 + parent: 2 + - uid: 23199 components: - type: Transform pos: -2.5,17.5 - parent: 89 - - uid: 20074 + parent: 2 + - uid: 23200 components: - type: Transform pos: 25.5,34.5 - parent: 89 - - uid: 20864 + parent: 2 + - uid: 23201 components: - type: Transform pos: 44.5,12.5 - parent: 89 - - uid: 21567 + parent: 2 + - uid: 23202 components: - type: Transform pos: 21.5,19.5 - parent: 89 - - uid: 25296 + parent: 2 + - uid: 23203 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 23204 + components: + - type: Transform + pos: -96.5,-7.5 + parent: 2 + - uid: 27205 components: - type: Transform pos: -32.5,1.5 - parent: 22565 - - uid: 25297 + parent: 24450 + - uid: 27206 components: - type: Transform pos: 8.5,1.5 - parent: 22565 + parent: 24450 - proto: WaterTankFull entities: - - uid: 5327 + - uid: 23205 components: - type: Transform - pos: -46.5,-9.5 - parent: 89 - - uid: 7004 + pos: -19.5,-25.5 + parent: 2 + - uid: 23206 + components: + - type: Transform + pos: 35.5,23.5 + parent: 2 + - uid: 23207 + components: + - type: Transform + pos: -85.5,-2.5 + parent: 2 + - uid: 23208 components: - type: Transform pos: -28.5,-15.5 - parent: 89 - - uid: 8063 + parent: 2 + - uid: 23209 components: - type: Transform pos: -5.5,35.5 - parent: 89 - - uid: 12859 + parent: 2 + - uid: 23210 components: - type: Transform pos: 21.5,26.5 - parent: 89 - - uid: 14621 + parent: 2 + - uid: 23211 components: - type: Transform pos: -99.5,15.5 - parent: 89 - - uid: 14665 + parent: 2 + - uid: 23212 components: - type: Transform pos: -119.5,21.5 - parent: 89 - - uid: 14691 - components: - - type: Transform - pos: -82.5,-2.5 - parent: 89 - - uid: 14717 + parent: 2 + - uid: 23213 components: - type: Transform pos: 7.5,-14.5 - parent: 89 - - uid: 14759 + parent: 2 + - uid: 23214 components: - type: Transform pos: -78.5,21.5 - parent: 89 - - uid: 14798 + parent: 2 + - uid: 23215 components: - type: Transform pos: -39.5,14.5 - parent: 89 - - uid: 16878 + parent: 2 + - uid: 23216 components: - type: Transform - pos: 28.5,23.5 - parent: 89 -- proto: WaterTankHighCapacity - entities: - - uid: 3962 + pos: -44.5,-10.5 + parent: 2 + - uid: 23217 components: - type: Transform - pos: -9.5,-0.5 - parent: 89 - - uid: 6848 + pos: -80.5,-5.5 + parent: 2 + - uid: 23218 + components: + - type: Transform + pos: -96.5,21.5 + parent: 2 +- proto: WaterTankHighCapacity + entities: + - uid: 23219 components: - type: Transform pos: -35.5,7.5 - parent: 89 - - uid: 21354 + parent: 2 + - uid: 23220 components: - type: Transform pos: 42.5,-27.5 - parent: 89 - - uid: 25298 + parent: 2 + - uid: 23221 + components: + - type: Transform + pos: -109.5,0.5 + parent: 2 + - uid: 27207 components: - type: Transform pos: -25.5,10.5 - parent: 22565 + parent: 24450 - proto: WaterVaporCanister entities: - - uid: 1141 + - uid: 23222 + components: + - type: Transform + pos: -87.5,-4.5 + parent: 2 + - uid: 23223 components: - type: Transform pos: -94.5,-23.5 - parent: 89 - - type: AtmosDevice - joinedGrid: 89 - - uid: 25299 + parent: 2 + - uid: 27208 components: - type: Transform pos: -15.5,-8.5 - parent: 22565 - - type: AtmosDevice - joinedGrid: 22565 + parent: 24450 +- proto: WeaponAdvancedLaser + entities: + - uid: 28080 + components: + - type: Transform + pos: 6.531067,-13.423157 + parent: 27260 + - uid: 28081 + components: + - type: Transform + pos: -4.452469,-4.4048767 + parent: 27260 - proto: WeaponCapacitorRecharger entities: - - uid: 2630 + - uid: 23224 components: - type: Transform pos: 27.5,-0.5 - parent: 89 - - uid: 3087 + parent: 2 + - uid: 23225 components: - type: Transform pos: 26.5,-0.5 - parent: 89 - - uid: 3098 + parent: 2 + - uid: 23226 components: - type: Transform pos: 28.5,-0.5 - parent: 89 - - uid: 4231 - components: - - type: Transform - pos: 15.5,-7.5 - parent: 89 - - uid: 4232 + parent: 2 + - uid: 23227 components: - type: Transform - pos: 15.5,-6.5 - parent: 89 - - uid: 18364 + rot: 1.5707963267948966 rad + pos: -60.5,20.5 + parent: 2 + - uid: 23228 components: - type: Transform pos: 55.5,10.5 - parent: 89 - - uid: 19491 + parent: 2 + - uid: 23229 components: - type: Transform rot: -1.5707963267948966 rad pos: 63.5,8.5 - parent: 89 - - uid: 19512 + parent: 2 + - uid: 23230 components: - type: Transform pos: -1.5,39.5 - parent: 89 - - uid: 22491 + parent: 2 + - uid: 23231 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-13.5 - parent: 89 - - uid: 22492 + parent: 2 + - uid: 23232 components: - type: Transform rot: 1.5707963267948966 rad pos: 44.5,-14.5 - parent: 89 - - uid: 25300 + parent: 2 + - uid: 23233 components: - type: Transform - pos: -14.5,4.5 - parent: 22565 - - uid: 25613 + rot: -1.5707963267948966 rad + pos: 11.5,-8.5 + parent: 2 + - uid: 23914 components: - type: Transform rot: 3.141592653589793 rad pos: 2.5,-2.5 - parent: 18153 + parent: 23711 + - uid: 27209 + components: + - type: Transform + pos: -14.5,4.5 + parent: 24450 + - uid: 28082 + components: + - type: Transform + pos: 6.5,-13.5 + parent: 27260 + - uid: 28083 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 27260 - proto: WeaponDisabler entities: - - uid: 4572 + - uid: 23234 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -60.442963,22.52186 + parent: 2 + - uid: 23235 components: - type: Transform pos: 28.476303,-4.3247886 - parent: 89 - - uid: 5220 + parent: 2 + - uid: 23236 components: - type: Transform rot: 3.141592653589793 rad pos: 28.616928,-4.5122886 - parent: 89 - - uid: 5385 + parent: 2 + - uid: 23237 components: - type: Transform rot: 3.141592653589793 rad pos: 28.546337,-5.245876 - parent: 89 - - uid: 5628 + parent: 2 + - uid: 23238 components: - type: Transform rot: -1.5707963267948966 rad pos: -20.318733,7.6707277 - parent: 89 - - uid: 8485 + parent: 2 + - uid: 23239 components: - type: Transform pos: 28.468212,-5.089626 - parent: 89 - - uid: 10563 + parent: 2 + - uid: 23240 components: - type: Transform pos: -85.53375,17.593575 - parent: 89 - - uid: 22663 + parent: 2 + - uid: 23915 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 2.7244563,-2.351399 + parent: 23711 + - uid: 24548 components: - type: Transform - parent: 22641 + parent: 24526 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 22664 + - uid: 24549 components: - type: Transform - parent: 22641 + parent: 24526 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 25614 + - uid: 27551 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 2.7244563,-2.351399 - parent: 18153 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponDisablerPractice entities: - - uid: 12673 - components: - - type: Transform - pos: 29.287773,29.245794 - parent: 89 - - uid: 22450 + - uid: 15704 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 22451 + - uid: 15705 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 22452 + - uid: 15706 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage + - uid: 23241 + components: + - type: Transform + pos: 29.287773,29.245794 + parent: 2 - proto: WeaponFlareGun entities: - - uid: 14763 + - uid: 23242 components: - type: Transform pos: -75.52437,13.66118 - parent: 89 - - uid: 21155 + parent: 2 + - uid: 23243 components: - type: Transform pos: 48.5,17.5 - parent: 89 + parent: 2 - proto: WeaponLaserCarbinePractice entities: - - uid: 22448 + - uid: 15707 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponLaserGun entities: - - uid: 2141 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.760654,-8.493906 - parent: 89 - - uid: 2567 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 44.48259,-8.587656 - parent: 89 - - uid: 2775 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 44.26384,-8.525156 - parent: 89 - - uid: 25615 + - uid: 23916 components: - type: Transform rot: -1.5707963267948966 rad pos: 2.3358917,-2.48485 - parent: 18153 -- proto: WeaponPistolMk58 + parent: 23711 +- proto: WeaponLaserSvalinn entities: - - uid: 17116 - components: - - type: Transform - pos: 42.50808,-4.722499 - parent: 89 - - uid: 19541 - components: - - type: Transform - pos: 42.50808,-4.597499 - parent: 89 - - uid: 19542 - components: - - type: Transform - pos: 42.523705,-4.472499 - parent: 89 - - uid: 19545 + - uid: 23244 components: - type: Transform - rot: 3.141592653589793 rad - pos: 42.586205,-4.659999 - parent: 89 -- proto: WeaponPistolMk58Nonlethal + pos: 44.53328,-11.367193 + parent: 2 +- proto: WeaponPistolMk58 entities: - - uid: 22454 + - uid: 15708 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponRevolverDeckard - entities: - - uid: 7482 - components: - - type: Transform - pos: 50.255257,-5.402153 - parent: 89 -- proto: WeaponRevolverInspector +- proto: WeaponPistolN1984 entities: - - uid: 17097 - components: - - type: Transform - pos: 44.53305,-7.414389 - parent: 89 - - uid: 20742 + - uid: 27552 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.55059,-7.5789223 - parent: 89 + parent: 27546 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponRevolverMateba entities: - - uid: 17009 + - uid: 23245 components: - type: Transform pos: 35.433388,-0.3926619 - parent: 89 + parent: 2 - proto: WeaponRifleAk entities: - - uid: 19538 + - uid: 1170 components: - type: Transform - pos: 37.522846,-2.2730527 - parent: 89 + parent: 1163 + - type: Physics + canCollide: False + - type: InsideEntityStorage - proto: WeaponRifleLecter entities: - - uid: 531 + - uid: 28084 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage - - uid: 532 + pos: 6.508209,-11.401001 + parent: 27260 + - uid: 28085 components: - type: Transform - parent: 523 - - type: Physics - canCollide: False - - type: InsideEntityStorage -- proto: WeaponShotgunDoubleBarreled + pos: 6.577652,-11.609314 + parent: 27260 +- proto: WeaponShotgunBulldog entities: - - uid: 1856 + - uid: 28086 components: - type: Transform - pos: 41.47183,-4.592104 - parent: 89 - - uid: 2652 + pos: 4.5026855,-13.328033 + parent: 27260 +- proto: WeaponShotgunDoubleBarreledRubber + entities: + - uid: 23246 components: - type: Transform - pos: 41.47183,-4.435854 - parent: 89 - - uid: 2766 + rot: 1.5707963267948966 rad + pos: 49.466095,-6.4547386 + parent: 2 + - uid: 23247 components: - type: Transform - pos: 41.47183,-4.701479 - parent: 89 - - uid: 2767 + rot: 1.5707963267948966 rad + pos: 49.622345,-6.4703636 + parent: 2 + - uid: 23248 components: - type: Transform - pos: 41.50308,-4.826479 - parent: 89 - - uid: 3395 + rot: 1.5707963267948966 rad + pos: 49.309845,-6.4703636 + parent: 2 + - uid: 23249 components: - type: Transform - pos: 41.44058,-4.295229 - parent: 89 + rot: 1.5707963267948966 rad + pos: 49.778595,-6.4703636 + parent: 2 - proto: WeaponShotgunEnforcerRubber entities: - - uid: 8913 + - uid: 15709 components: - type: Transform - parent: 22447 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage - proto: WeaponShotgunImprovisedLoaded entities: - - uid: 25302 + - uid: 27210 components: - type: Transform pos: 3.6177773,11.346749 - parent: 22565 - - uid: 25303 + parent: 24450 + - uid: 27211 components: - type: Transform pos: 4.4302773,11.299874 - parent: 22565 + parent: 24450 - proto: WeaponShotgunKammerer entities: - - uid: 2653 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 44.518703,-5.310854 - parent: 89 - - uid: 2764 + - uid: 24550 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.50308,-5.607729 - parent: 89 - - uid: 22665 + parent: 24526 + - type: Physics + canCollide: False + - type: InsideEntityStorage +- proto: WeaponSubMachineGunDrozd + entities: + - uid: 15710 components: - type: Transform - parent: 22641 + parent: 15703 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponSubMachineGunDrozdRubber - entities: - - uid: 22453 + - uid: 27317 components: - type: Transform - parent: 22447 + parent: 27315 - type: Physics canCollide: False - type: InsideEntityStorage -- proto: WeaponTurretSyndicateBroken + - uid: 28087 + components: + - type: Transform + pos: 5.7313232,-10.509827 + parent: 27260 +- proto: WeaponTurretHostile entities: - - uid: 14582 + - uid: 28088 components: - type: Transform - pos: -126.5,21.5 - parent: 89 - - uid: 17108 + rot: 3.141592653589793 rad + pos: -0.5,-16.5 + parent: 27260 + - uid: 28089 components: - type: Transform - pos: -28.5,40.5 - parent: 89 - - uid: 17115 + rot: 3.141592653589793 rad + pos: 1.5,-16.5 + parent: 27260 + - uid: 28090 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 10.5,-8.5 + parent: 27260 + - uid: 28091 + components: + - type: Transform + pos: 10.5,-15.5 + parent: 27260 + - uid: 28092 + components: + - type: Transform + pos: -9.5,-15.5 + parent: 27260 + - uid: 28093 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -9.5,-8.5 + parent: 27260 + - uid: 28094 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,7.5 + parent: 27260 + - uid: 28095 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,7.5 + parent: 27260 + - uid: 28096 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-0.5 + parent: 27260 + - uid: 28097 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-2.5 + parent: 27260 + - uid: 28098 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 3.5,-2.5 + parent: 27260 + - uid: 28099 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -2.5,-0.5 + parent: 27260 + - uid: 28100 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-1.5 + parent: 27260 + - uid: 28101 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-1.5 + parent: 27260 + - uid: 28102 components: - type: Transform - pos: -31.5,40.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -5.5,15.5 + parent: 27260 + - uid: 28103 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 6.5,15.5 + parent: 27260 +- proto: WeaponTurretSyndicateBroken + entities: + - uid: 23250 + components: + - type: Transform + pos: -126.5,21.5 + parent: 2 - proto: WeaponTurretSyndicateDisposable entities: - - uid: 2773 + - uid: 23251 components: - type: Transform rot: -1.5707963267948966 rad pos: -87.5,28.5 - parent: 89 - - uid: 6892 + parent: 2 + - uid: 23252 components: - type: Transform pos: -130.5,20.5 - parent: 89 + parent: 2 - proto: WeaponWaterBlaster entities: - - uid: 985 + - uid: 23253 components: - type: Transform pos: -27.527832,24.188652 - parent: 89 - - uid: 10236 + parent: 2 + - uid: 23254 components: - type: Transform rot: 3.141592653589793 rad pos: -27.402832,24.094902 - parent: 89 + parent: 2 - proto: WebBed entities: - - uid: 20965 + - uid: 23255 components: - type: Transform pos: 39.5,21.5 - parent: 89 + parent: 2 - proto: WelderIndustrial entities: - - uid: 2577 + - uid: 23256 components: - type: Transform - pos: -89.55153,-13.382351 - parent: 89 - - uid: 14626 + rot: 3.141592653589793 rad + pos: -91.5473,-11.4043255 + parent: 2 + - uid: 23257 components: - type: Transform pos: -98.54668,12.505528 - parent: 89 + parent: 2 - proto: WelderIndustrialAdvanced entities: - - uid: 20966 + - uid: 23258 components: - type: Transform - pos: 49.37088,-8.452206 - parent: 89 + pos: 52.33191,-8.259685 + parent: 2 - proto: WelderMini entities: - - uid: 17424 + - uid: 23259 components: - type: Transform pos: -41.586243,-11.103921 - parent: 89 + parent: 2 - proto: WeldingFuelTankFull entities: - - uid: 6926 + - uid: 23260 + components: + - type: Transform + pos: -44.5,-11.5 + parent: 2 + - uid: 23261 + components: + - type: Transform + pos: -18.5,-25.5 + parent: 2 + - uid: 23262 + components: + - type: Transform + pos: -83.5,-2.5 + parent: 2 + - uid: 23263 + components: + - type: Transform + pos: -122.5,20.5 + parent: 2 + - uid: 23264 + components: + - type: Transform + pos: -124.5,20.5 + parent: 2 + - uid: 23265 + components: + - type: Transform + pos: 36.5,-14.5 + parent: 2 + - uid: 23266 components: - type: Transform pos: -96.5,-0.5 - parent: 89 - - uid: 8130 + parent: 2 + - uid: 23267 components: - type: Transform pos: -4.5,29.5 - parent: 89 - - uid: 14124 + parent: 2 + - uid: 23268 components: - type: Transform pos: 27.5,23.5 - parent: 89 - - uid: 14620 + parent: 2 + - uid: 23269 components: - type: Transform pos: -98.5,15.5 - parent: 89 - - uid: 14664 + parent: 2 + - uid: 23270 components: - type: Transform pos: -118.5,21.5 - parent: 89 - - uid: 14692 - components: - - type: Transform - pos: -82.5,-3.5 - parent: 89 - - uid: 14718 + parent: 2 + - uid: 23271 components: - type: Transform pos: 8.5,-14.5 - parent: 89 - - uid: 14758 + parent: 2 + - uid: 23272 components: - type: Transform pos: -78.5,20.5 - parent: 89 - - uid: 14799 + parent: 2 + - uid: 23273 components: - type: Transform pos: -40.5,14.5 - parent: 89 - - uid: 20259 + parent: 2 + - uid: 23274 components: - type: Transform pos: -96.5,19.5 - parent: 89 - - uid: 21361 + parent: 2 + - uid: 23275 components: - type: Transform pos: 56.5,-22.5 - parent: 89 + parent: 2 + - uid: 23276 + components: + - type: Transform + pos: -79.5,-5.5 + parent: 2 - proto: WeldingFuelTankHighCapacity entities: - - uid: 25304 + - uid: 23277 + components: + - type: Transform + pos: -109.5,-0.5 + parent: 2 + - uid: 27212 components: - type: Transform pos: -26.5,10.5 - parent: 22565 + parent: 24450 - proto: WetFloorSign entities: - - uid: 19449 + - uid: 23278 components: - type: Transform pos: -2.0847826,1.914092 - parent: 89 - - uid: 25305 + parent: 2 + - uid: 27213 components: - type: Transform pos: -10.658296,-24.390667 - parent: 22565 + parent: 24450 - proto: Windoor entities: - - uid: 16 + - uid: 23279 components: - type: Transform rot: 3.141592653589793 rad - pos: -22.5,-14.5 - parent: 89 - - uid: 717 + pos: -94.5,-3.5 + parent: 2 + - uid: 23280 components: - type: Transform - pos: 50.5,14.5 - parent: 89 - - uid: 950 + rot: 3.141592653589793 rad + pos: -22.5,-14.5 + parent: 2 + - uid: 23281 components: - type: Transform - rot: 3.141592653589793 rad - pos: -94.5,-6.5 - parent: 89 - - uid: 5100 + pos: 50.5,14.5 + parent: 2 + - uid: 23282 components: - type: Transform rot: 3.141592653589793 rad pos: -63.5,-3.5 - parent: 89 - - uid: 5101 + parent: 2 + - uid: 23283 components: - type: Transform rot: 3.141592653589793 rad pos: -62.5,-3.5 - parent: 89 - - uid: 5825 + parent: 2 + - uid: 23284 components: - type: Transform pos: -73.5,-12.5 - parent: 89 - - uid: 6158 - components: - - type: Transform - pos: -8.5,-13.5 - parent: 89 - - uid: 7696 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,25.5 - parent: 89 - - uid: 8389 + parent: 2 + - uid: 23285 components: - type: Transform rot: 3.141592653589793 rad pos: -8.5,-15.5 - parent: 89 - - uid: 10421 - components: - - type: Transform - pos: -11.5,-13.5 - parent: 89 - - uid: 16414 + parent: 2 + - uid: 23286 components: - type: Transform rot: 1.5707963267948966 rad pos: -96.5,5.5 - parent: 89 - - uid: 22429 + parent: 2 + - uid: 23287 components: - type: Transform pos: 51.5,-19.5 - parent: 89 + parent: 2 - proto: WindoorBarLocked entities: - - uid: 2931 + - uid: 23288 components: - type: Transform rot: 1.5707963267948966 rad pos: -22.5,-0.5 - parent: 89 -- proto: WindoorChapelLocked + parent: 2 +- proto: WindoorHydroponicsLocked entities: - - uid: 5418 + - uid: 23289 components: - type: Transform - rot: 3.141592653589793 rad - pos: -51.5,-5.5 - parent: 89 -- proto: WindoorKitchenHydroponicsLocked + pos: -8.5,-5.5 + parent: 2 + - uid: 23290 + components: + - type: Transform + pos: -4.5,-5.5 + parent: 2 + - uid: 23291 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-3.5 + parent: 2 + - uid: 23292 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-2.5 + parent: 2 + - uid: 23293 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -10.5,-1.5 + parent: 2 +- proto: WindoorKitchenLocked entities: - - uid: 3628 + - uid: 23294 components: - type: Transform - rot: 3.141592653589793 rad - pos: -6.5,-6.5 - parent: 89 + rot: 1.5707963267948966 rad + pos: -11.5,-3.5 + parent: 2 + - uid: 23295 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-2.5 + parent: 2 + - uid: 23296 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -11.5,-1.5 + parent: 2 - proto: WindoorSecure entities: - - uid: 1997 + - uid: 23297 components: - type: Transform rot: -1.5707963267948966 rad pos: 41.5,9.5 - parent: 89 - - uid: 3631 + parent: 2 + - uid: 23298 components: - type: Transform rot: -1.5707963267948966 rad pos: 6.5,-11.5 - parent: 89 - - uid: 7792 + parent: 2 + - uid: 23299 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,25.5 + parent: 2 + - uid: 23300 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,43.5 - parent: 89 - - uid: 7793 + parent: 2 + - uid: 23301 components: - type: Transform rot: 3.141592653589793 rad pos: -0.5,43.5 - parent: 89 - - uid: 14541 + parent: 2 + - uid: 23302 components: - type: Transform pos: -76.5,0.5 - parent: 89 - - uid: 25306 + parent: 2 + - uid: 27214 components: - type: Transform pos: -13.5,-27.5 - parent: 22565 - - uid: 25307 + parent: 24450 + - uid: 27215 components: - type: Transform rot: 3.141592653589793 rad pos: -30.5,4.5 - parent: 22565 - - uid: 25308 + parent: 24450 + - uid: 27216 components: - type: Transform rot: 3.141592653589793 rad pos: 6.5,4.5 - parent: 22565 + parent: 24450 - proto: WindoorSecureArmoryLocked entities: - - uid: 29 + - uid: 23303 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-11.5 - parent: 89 - - uid: 4279 + rot: 3.141592653589793 rad + pos: 40.5,-4.5 + parent: 2 + - uid: 23304 components: - type: Transform - pos: 41.5,-8.5 - parent: 89 - - uid: 17109 + rot: 3.141592653589793 rad + pos: 37.5,-2.5 + parent: 2 + - uid: 23305 components: - type: Transform - pos: 40.5,-8.5 - parent: 89 - - uid: 17110 + rot: 1.5707963267948966 rad + pos: 6.5,-11.5 + parent: 2 + - uid: 23306 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-8.5 - parent: 89 - - uid: 17112 + rot: -1.5707963267948966 rad + pos: 44.5,-5.5 + parent: 2 + - uid: 23307 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-5.5 - parent: 89 - - uid: 17113 + pos: 35.5,-0.5 + parent: 2 + - uid: 23308 components: - type: Transform rot: 1.5707963267948966 rad - pos: 43.5,-7.5 - parent: 89 - - uid: 17118 + pos: 40.5,-9.5 + parent: 2 +- proto: WindoorSecureAtmosphericsLocked + entities: + - uid: 23309 components: - type: Transform - pos: 43.5,-8.5 - parent: 89 - - uid: 17121 + rot: 3.141592653589793 rad + pos: -84.5,-7.5 + parent: 2 + - uid: 23310 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 43.5,-6.5 - parent: 89 - - uid: 17131 + rot: 3.141592653589793 rad + pos: -87.5,-7.5 + parent: 2 + - uid: 23311 components: - type: Transform - pos: 42.5,-8.5 - parent: 89 - - uid: 17659 + rot: 3.141592653589793 rad + pos: -86.5,-7.5 + parent: 2 + - uid: 23312 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-2.5 - parent: 89 - - uid: 17661 + rot: 3.141592653589793 rad + pos: -85.5,-7.5 + parent: 2 + - uid: 23313 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 36.5,-1.5 - parent: 89 + rot: 3.141592653589793 rad + pos: -88.5,-7.5 + parent: 2 - proto: WindoorSecureBrigLocked entities: - - uid: 10163 + - uid: 23314 components: - type: Transform rot: -1.5707963267948966 rad pos: -79.5,-2.5 - parent: 89 + parent: 2 - proto: WindoorSecureCargoLocked entities: - - uid: 5092 + - uid: 23315 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 + - uid: 23316 components: - type: Transform rot: 3.141592653589793 rad pos: -66.5,-4.5 - parent: 89 - - uid: 5093 + parent: 2 + - uid: 23317 components: - type: Transform rot: 3.141592653589793 rad pos: -59.5,-4.5 - parent: 89 - - uid: 5095 + parent: 2 + - uid: 23318 components: - type: Transform pos: -63.5,-3.5 - parent: 89 - - uid: 5096 + parent: 2 + - uid: 23319 components: - type: Transform pos: -62.5,-3.5 - parent: 89 + parent: 2 + - uid: 23320 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -57.5,-8.5 + parent: 2 +- proto: WindoorSecureCentralCommandLocked + entities: + - uid: 28104 + components: + - type: Transform + pos: -4.5,-4.5 + parent: 27260 + - uid: 28105 + components: + - type: Transform + pos: 4.5,-8.5 + parent: 27260 + - uid: 28106 + components: + - type: Transform + pos: 5.5,-8.5 + parent: 27260 + - uid: 28107 + components: + - type: Transform + pos: 6.5,-8.5 + parent: 27260 + - uid: 28108 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-11.5 + parent: 27260 + - uid: 28109 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 3.5,-12.5 + parent: 27260 - proto: WindoorSecureChemistryLocked entities: - - uid: 10922 + - uid: 23321 components: - type: Transform pos: -1.5,10.5 - parent: 89 - - uid: 11442 + parent: 2 + - uid: 23322 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,8.5 - parent: 89 - - uid: 11458 + parent: 2 + - uid: 23323 components: - type: Transform rot: 1.5707963267948966 rad pos: -4.5,7.5 - parent: 89 + parent: 2 - proto: WindoorSecureCommandLocked entities: - - uid: 574 + - uid: 23324 + components: + - type: Transform + pos: 31.5,7.5 + parent: 2 + - uid: 23325 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,6.5 + parent: 2 + - uid: 23326 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 32.5,5.5 + parent: 2 + - uid: 23327 + components: + - type: Transform + pos: 30.5,7.5 + parent: 2 + - uid: 23328 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,7.5 - parent: 89 - - uid: 577 + parent: 2 + - uid: 23329 components: - type: Transform pos: 58.5,1.5 - parent: 89 - - uid: 1988 + parent: 2 + - uid: 23330 components: - type: Transform rot: 1.5707963267948966 rad pos: 41.5,9.5 - parent: 89 - - uid: 3390 + parent: 2 + - uid: 23331 components: - type: Transform rot: 1.5707963267948966 rad pos: 48.5,20.5 - parent: 89 - - uid: 3400 + parent: 2 + - uid: 23332 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,20.5 - parent: 89 - - uid: 14268 + parent: 2 + - uid: 23333 components: - type: Transform rot: 3.141592653589793 rad pos: 18.5,-0.5 - parent: 89 - - uid: 21732 + parent: 2 + - uid: 24449 components: - type: Transform pos: 0.5,-5.5 - parent: 21627 + parent: 24340 - proto: WindoorSecureEngineeringLocked entities: - - uid: 938 - components: - - type: Transform - pos: -94.5,-6.5 - parent: 89 - - uid: 972 - components: - - type: Transform - pos: -92.5,-6.5 - parent: 89 - - uid: 8553 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -123.5,17.5 - parent: 89 - - uid: 8554 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -124.5,17.5 - parent: 89 - - uid: 8557 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -125.5,17.5 - parent: 89 - - uid: 8569 + - uid: 23334 components: - type: Transform - rot: 3.141592653589793 rad - pos: -121.5,17.5 - parent: 89 - - uid: 8570 + pos: -92.5,-3.5 + parent: 2 + - uid: 23335 components: - type: Transform - rot: 3.141592653589793 rad - pos: -122.5,17.5 - parent: 89 - - uid: 12049 + pos: -94.5,-3.5 + parent: 2 + - uid: 23336 components: - type: Transform rot: -1.5707963267948966 rad pos: -96.5,5.5 - parent: 89 - - uid: 15733 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-14.5 - parent: 89 - - uid: 17028 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -120.5,17.5 - parent: 89 + parent: 2 - proto: WindoorSecureMedicalLocked entities: - - uid: 118 + - uid: 23337 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,14.5 - parent: 89 - - uid: 149 + parent: 2 + - uid: 23338 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,14.5 - parent: 89 - - uid: 1862 + parent: 2 + - uid: 23339 components: - type: Transform rot: 3.141592653589793 rad pos: -10.5,10.5 - parent: 89 - - uid: 10858 + parent: 2 + - uid: 23340 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,13.5 - parent: 89 - - uid: 10873 + parent: 2 + - uid: 23341 components: - type: Transform rot: -1.5707963267948966 rad pos: -8.5,12.5 - parent: 89 - - uid: 10919 + parent: 2 + - uid: 23342 components: - type: Transform rot: 3.141592653589793 rad pos: -11.5,10.5 - parent: 89 - - uid: 15016 + parent: 2 + - uid: 23343 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,18.5 - parent: 89 - - uid: 15317 + parent: 2 + - uid: 23344 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,17.5 - parent: 89 - - uid: 19899 + parent: 2 + - uid: 23345 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,36.5 - parent: 89 - - uid: 19900 + parent: 2 + - uid: 23346 components: - type: Transform rot: 1.5707963267948966 rad pos: 22.5,35.5 - parent: 89 + parent: 2 +- proto: WindoorSecureSalvageLocked + entities: + - uid: 23347 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-10.5 + parent: 2 - proto: WindoorSecureScienceLocked entities: - - uid: 15 + - uid: 23348 components: - type: Transform pos: -22.5,-14.5 - parent: 89 - - uid: 4900 + parent: 2 + - uid: 23349 components: - type: Transform rot: 3.141592653589793 rad pos: -6.5,-42.5 - parent: 89 - - uid: 7941 + parent: 2 + - uid: 23350 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-35.5 - parent: 89 - - uid: 8388 + parent: 2 + - uid: 23351 components: - type: Transform pos: -8.5,-15.5 - parent: 89 - - uid: 16799 + parent: 2 + - uid: 23352 components: - type: Transform pos: -9.5,-31.5 - parent: 89 - - uid: 16801 + parent: 2 + - uid: 23353 components: - type: Transform pos: -8.5,-31.5 - parent: 89 - - uid: 16805 + parent: 2 + - uid: 23354 components: - type: Transform rot: 3.141592653589793 rad pos: 1.5,-42.5 - parent: 89 - - uid: 16901 + parent: 2 + - uid: 23355 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,-20.5 - parent: 89 - - uid: 16902 + parent: 2 + - uid: 23356 components: - type: Transform pos: -1.5,-21.5 - parent: 89 - - uid: 20073 + parent: 2 + - uid: 23357 components: - type: Transform pos: -7.5,-31.5 - parent: 89 + parent: 2 - proto: WindoorSecureSecurityLocked entities: - - uid: 2034 + - uid: 23358 components: - type: Transform rot: -1.5707963267948966 rad pos: -83.5,16.5 - parent: 89 - - uid: 3682 + parent: 2 + - uid: 23359 components: - type: Transform rot: 3.141592653589793 rad pos: 19.5,-11.5 - parent: 89 + parent: 2 - type: DeviceLinkSink links: - - 7134 - - uid: 3686 + - 1208 + - uid: 23360 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,-11.5 - parent: 89 + parent: 2 - type: DeviceLinkSink links: - - 7364 - - uid: 3693 + - 1210 + - type: DeviceLinkSource + linkedPorts: + 1208: [] + - uid: 23361 components: - type: Transform rot: 3.141592653589793 rad pos: 25.5,-11.5 - parent: 89 + parent: 2 - type: DeviceLinkSink links: - - 7363 - - uid: 3694 + - 1209 + - uid: 23362 components: - type: Transform rot: 3.141592653589793 rad pos: 28.5,-11.5 - parent: 89 - - type: DeviceLinkSink - links: - - 7137 - - uid: 6148 + parent: 2 + - uid: 23363 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-2.5 - parent: 89 - - uid: 6149 + parent: 2 + - uid: 23364 components: - type: Transform rot: -1.5707963267948966 rad pos: 24.5,-1.5 - parent: 89 - - uid: 6210 + parent: 2 + - uid: 23365 components: - type: Transform rot: -1.5707963267948966 rad pos: -15.5,7.5 - parent: 89 - - uid: 6795 + parent: 2 + - uid: 23366 components: - type: Transform pos: -44.5,2.5 - parent: 89 - - uid: 7745 + parent: 2 + - uid: 23367 components: - type: Transform rot: 3.141592653589793 rad pos: -85.5,11.5 - parent: 89 - - uid: 8158 + parent: 2 + - uid: 23368 components: - type: Transform rot: 1.5707963267948966 rad pos: -61.5,8.5 - parent: 89 - - uid: 8243 + parent: 2 + - uid: 23369 components: - type: Transform rot: -1.5707963267948966 rad pos: -58.5,21.5 - parent: 89 - - uid: 10430 + parent: 2 + - uid: 23370 components: - type: Transform rot: 3.141592653589793 rad pos: 21.5,7.5 - parent: 89 - - uid: 17016 + parent: 2 + - uid: 23371 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-25.5 - parent: 89 - - uid: 17018 + parent: 2 + - uid: 23372 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-26.5 - parent: 89 - - uid: 17019 + parent: 2 + - uid: 23373 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-25.5 - parent: 89 - - uid: 20418 + parent: 2 + - uid: 23374 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-26.5 - parent: 89 - - uid: 21798 + parent: 2 + - uid: 23375 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-23.5 - parent: 89 - - uid: 21799 + parent: 2 + - uid: 23376 components: - type: Transform rot: -1.5707963267948966 rad pos: 40.5,-24.5 - parent: 89 - - uid: 21801 + parent: 2 + - uid: 23377 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-23.5 - parent: 89 - - uid: 21802 + parent: 2 + - uid: 23378 components: - type: Transform rot: 1.5707963267948966 rad pos: 38.5,-24.5 - parent: 89 - - uid: 25309 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -13.5,-27.5 - parent: 22565 - - uid: 25310 + parent: 2 + - uid: 23379 components: - type: Transform rot: 3.141592653589793 rad - pos: -13.5,-22.5 - parent: 22565 - - uid: 25311 - components: - - type: Transform - pos: -13.5,-23.5 - parent: 22565 - - uid: 25616 + pos: 12.5,-11.5 + parent: 2 + - uid: 23917 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-4.5 - parent: 18153 - - uid: 25617 + parent: 23711 + - uid: 23918 components: - type: Transform rot: 1.5707963267948966 rad pos: 5.5,-6.5 - parent: 18153 + parent: 23711 + - uid: 27217 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-27.5 + parent: 24450 + - uid: 27218 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -13.5,-22.5 + parent: 24450 + - uid: 27219 + components: + - type: Transform + pos: -13.5,-23.5 + parent: 24450 - proto: WindoorServiceLocked entities: - - uid: 6040 + - uid: 23380 components: - type: Transform rot: 1.5707963267948966 rad pos: -52.5,10.5 - parent: 89 + parent: 2 - proto: WindoorTheatreLocked entities: - - uid: 4294 + - uid: 23381 components: - type: Transform rot: 1.5707963267948966 rad pos: -27.5,-7.5 - parent: 89 + parent: 2 - proto: Window entities: - - uid: 1721 + - uid: 23382 components: - type: Transform - rot: 3.141592653589793 rad - pos: 10.5,15.5 - parent: 89 - - uid: 3543 + pos: -23.5,6.5 + parent: 2 + - uid: 23383 components: - type: Transform - pos: -8.5,-6.5 - parent: 89 - - uid: 3554 + pos: -60.5,2.5 + parent: 2 + - uid: 23384 components: - type: Transform - pos: -7.5,-6.5 - parent: 89 - - uid: 3852 + pos: -59.5,2.5 + parent: 2 + - uid: 23385 components: - type: Transform - pos: -4.5,-6.5 - parent: 89 - - uid: 3853 + pos: -66.5,2.5 + parent: 2 + - uid: 23386 components: - type: Transform - pos: -4.5,-7.5 - parent: 89 - - uid: 3854 + pos: -65.5,2.5 + parent: 2 + - uid: 23387 components: - type: Transform - pos: -4.5,-8.5 - parent: 89 - - uid: 3855 + pos: -72.5,-0.5 + parent: 2 + - uid: 23388 components: - type: Transform - pos: -4.5,-9.5 - parent: 89 - - uid: 4680 + pos: -64.5,12.5 + parent: 2 + - uid: 23389 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-1.5 - parent: 89 - - uid: 4683 + pos: -63.5,12.5 + parent: 2 + - uid: 23390 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -72.5,-2.5 - parent: 89 - - uid: 4724 + pos: -62.5,12.5 + parent: 2 + - uid: 23391 components: - type: Transform - pos: -68.5,-11.5 - parent: 89 - - uid: 4725 + pos: -72.5,-2.5 + parent: 2 + - uid: 23392 components: - type: Transform - pos: -68.5,-12.5 - parent: 89 - - uid: 4832 + pos: -77.5,2.5 + parent: 2 + - uid: 23393 components: - type: Transform - pos: -26.5,-9.5 - parent: 89 - - uid: 4833 + pos: -78.5,2.5 + parent: 2 + - uid: 23394 components: - type: Transform - pos: -25.5,-9.5 - parent: 89 - - uid: 4834 + pos: -73.5,2.5 + parent: 2 + - uid: 23395 components: - type: Transform - pos: -24.5,-9.5 - parent: 89 - - uid: 4835 + pos: 12.5,6.5 + parent: 2 + - uid: 23396 components: - type: Transform - pos: -21.5,-9.5 - parent: 89 - - uid: 4836 + pos: 12.5,8.5 + parent: 2 + - uid: 23397 components: - type: Transform - pos: -18.5,-9.5 - parent: 89 - - uid: 4837 + pos: 23.5,18.5 + parent: 2 + - uid: 23398 components: - type: Transform - pos: -17.5,-9.5 - parent: 89 - - uid: 4840 + pos: 22.5,16.5 + parent: 2 + - uid: 23399 components: - type: Transform - pos: -18.5,0.5 - parent: 89 - - uid: 4907 + pos: 20.5,16.5 + parent: 2 + - uid: 23400 components: - type: Transform - pos: -66.5,2.5 - parent: 89 - - uid: 4908 + pos: 4.5,12.5 + parent: 2 + - uid: 23401 components: - type: Transform - pos: -65.5,2.5 - parent: 89 - - uid: 4910 + pos: 11.5,15.5 + parent: 2 + - uid: 23402 components: - type: Transform - pos: -63.5,2.5 - parent: 89 - - uid: 4911 + pos: 12.5,21.5 + parent: 2 + - uid: 23403 components: - type: Transform - pos: -62.5,2.5 - parent: 89 - - uid: 4913 + pos: -22.5,6.5 + parent: 2 + - uid: 23404 components: - type: Transform - pos: -60.5,2.5 - parent: 89 - - uid: 4914 + pos: 3.5,18.5 + parent: 2 + - uid: 23405 components: - type: Transform - pos: -59.5,2.5 - parent: 89 - - uid: 5263 + pos: 2.5,18.5 + parent: 2 + - uid: 23406 components: - type: Transform - pos: -57.5,-8.5 - parent: 89 - - uid: 5264 + pos: -0.5,14.5 + parent: 2 + - uid: 23407 components: - type: Transform - pos: -57.5,-9.5 - parent: 89 - - uid: 5265 + pos: -18.5,0.5 + parent: 2 + - uid: 23408 components: - type: Transform - pos: -51.5,2.5 - parent: 89 - - uid: 5266 + pos: -18.5,-9.5 + parent: 2 + - uid: 23409 components: - type: Transform - pos: -48.5,2.5 - parent: 89 - - uid: 6065 + pos: -26.5,-9.5 + parent: 2 + - uid: 23410 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -53.5,6.5 - parent: 89 - - uid: 6066 + pos: -25.5,-9.5 + parent: 2 + - uid: 23411 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -52.5,6.5 - parent: 89 - - uid: 6067 + pos: -24.5,-9.5 + parent: 2 + - uid: 23412 components: - type: Transform rot: 1.5707963267948966 rad - pos: -50.5,6.5 - parent: 89 - - uid: 6068 + pos: -53.5,6.5 + parent: 2 + - uid: 23413 components: - type: Transform rot: 1.5707963267948966 rad - pos: -48.5,6.5 - parent: 89 - - uid: 6073 + pos: -50.5,6.5 + parent: 2 + - uid: 23414 components: - type: Transform rot: 1.5707963267948966 rad pos: -46.5,6.5 - parent: 89 - - uid: 6074 + parent: 2 + - uid: 23415 components: - type: Transform rot: 1.5707963267948966 rad pos: -45.5,6.5 - parent: 89 - - uid: 6075 + parent: 2 + - uid: 23416 components: - type: Transform rot: 1.5707963267948966 rad - pos: -44.5,6.5 - parent: 89 - - uid: 6607 - components: - - type: Transform - pos: -8.5,6.5 - parent: 89 - - uid: 6628 - components: - - type: Transform - pos: -43.5,6.5 - parent: 89 - - uid: 7658 - components: - - type: Transform - pos: -100.5,28.5 - parent: 89 - - uid: 7942 - components: - - type: Transform - pos: -70.5,13.5 - parent: 89 - - uid: 7943 - components: - - type: Transform - pos: -70.5,14.5 - parent: 89 - - uid: 7946 - components: - - type: Transform - pos: -64.5,12.5 - parent: 89 - - uid: 7948 - components: - - type: Transform - pos: -62.5,12.5 - parent: 89 - - uid: 7949 - components: - - type: Transform - pos: -50.5,14.5 - parent: 89 - - uid: 7950 - components: - - type: Transform - pos: -50.5,13.5 - parent: 89 - - uid: 7951 - components: - - type: Transform - pos: -53.5,15.5 - parent: 89 - - uid: 8350 - components: - - type: Transform - pos: -63.5,12.5 - parent: 89 - - uid: 9033 - components: - - type: Transform - pos: -70.5,12.5 - parent: 89 - - uid: 9034 - components: - - type: Transform - pos: -90.5,4.5 - parent: 89 - - uid: 9035 - components: - - type: Transform - pos: -90.5,3.5 - parent: 89 - - uid: 9036 - components: - - type: Transform - pos: -90.5,2.5 - parent: 89 - - uid: 9037 + pos: -51.5,2.5 + parent: 2 + - uid: 23417 components: - type: Transform - pos: -90.5,1.5 - parent: 89 - - uid: 9140 + rot: 1.5707963267948966 rad + pos: -60.5,27.5 + parent: 2 + - uid: 23418 components: - type: Transform - pos: -28.5,2.5 - parent: 89 - - uid: 9141 + rot: 1.5707963267948966 rad + pos: -58.5,27.5 + parent: 2 + - uid: 23419 components: - type: Transform - pos: -28.5,5.5 - parent: 89 - - uid: 9142 + rot: 1.5707963267948966 rad + pos: -57.5,27.5 + parent: 2 + - uid: 23420 components: - type: Transform - pos: -29.5,6.5 - parent: 89 - - uid: 9143 + pos: -68.5,-11.5 + parent: 2 + - uid: 23421 components: - type: Transform - pos: -33.5,6.5 - parent: 89 - - uid: 9144 + pos: -68.5,-12.5 + parent: 2 + - uid: 23422 components: - type: Transform - pos: -38.5,5.5 - parent: 89 - - uid: 9145 + pos: -21.5,-9.5 + parent: 2 + - uid: 23423 components: - type: Transform - pos: -38.5,2.5 - parent: 89 - - uid: 9350 + pos: -17.5,-9.5 + parent: 2 + - uid: 23424 components: - type: Transform - pos: 20.5,16.5 - parent: 89 - - uid: 9805 + pos: -62.5,2.5 + parent: 2 + - uid: 23425 components: - type: Transform - pos: -57.5,27.5 - parent: 89 - - uid: 9806 + pos: -63.5,2.5 + parent: 2 + - uid: 23426 components: - type: Transform - pos: -58.5,27.5 - parent: 89 - - uid: 9807 + pos: -57.5,-9.5 + parent: 2 + - uid: 23427 components: - type: Transform + rot: 1.5707963267948966 rad pos: -59.5,27.5 - parent: 89 - - uid: 9808 + parent: 2 + - uid: 23428 components: - type: Transform - pos: -60.5,27.5 - parent: 89 - - uid: 10180 + pos: -72.5,-1.5 + parent: 2 + - uid: 23429 components: - type: Transform pos: -74.5,2.5 - parent: 89 - - uid: 10186 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -72.5,-0.5 - parent: 89 - - uid: 10189 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -77.5,2.5 - parent: 89 - - uid: 10195 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -73.5,2.5 - parent: 89 - - uid: 10197 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -78.5,2.5 - parent: 89 - - uid: 10225 + parent: 2 + - uid: 23430 components: - type: Transform pos: -75.5,2.5 - parent: 89 - - uid: 10656 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 22.5,16.5 - parent: 89 - - uid: 10658 + parent: 2 + - uid: 23431 components: - type: Transform pos: 12.5,5.5 - parent: 89 - - uid: 10659 - components: - - type: Transform - pos: 12.5,6.5 - parent: 89 - - uid: 10660 - components: - - type: Transform - pos: 12.5,8.5 - parent: 89 - - uid: 10661 + parent: 2 + - uid: 23432 components: - type: Transform pos: 12.5,9.5 - parent: 89 - - uid: 10672 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 11.5,15.5 - parent: 89 - - uid: 10831 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,18.5 - parent: 89 - - uid: 10842 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -8.5,14.5 - parent: 89 - - uid: 10852 + parent: 2 + - uid: 23433 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -22.5,7.5 - parent: 89 - - uid: 10853 + pos: 10.5,15.5 + parent: 2 + - uid: 23434 components: - type: Transform - rot: -1.5707963267948966 rad - pos: -23.5,7.5 - parent: 89 - - uid: 10863 + pos: 23.5,17.5 + parent: 2 + - uid: 23435 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 4.5,12.5 - parent: 89 - - uid: 10894 + pos: 21.5,16.5 + parent: 2 + - uid: 23436 components: - type: Transform - rot: -1.5707963267948966 rad pos: 23.5,19.5 - parent: 89 - - uid: 12628 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 12.5,12.5 - parent: 89 - - uid: 14322 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 23.5,17.5 - parent: 89 - - uid: 15203 + parent: 2 + - uid: 23437 components: - type: Transform - rot: -1.5707963267948966 rad - pos: 21.5,16.5 - parent: 89 - - uid: 15875 + pos: 12.5,20.5 + parent: 2 + - uid: 23438 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,11.5 - parent: 89 - - uid: 15882 + pos: -63.5,35.5 + parent: 2 + - uid: 23439 components: - type: Transform rot: 1.5707963267948966 rad - pos: -2.5,13.5 - parent: 89 - - uid: 15884 + pos: -63.5,34.5 + parent: 2 + - uid: 23440 components: - type: Transform rot: 1.5707963267948966 rad - pos: -8.5,11.5 - parent: 89 - - uid: 16289 + pos: -63.5,33.5 + parent: 2 + - uid: 23441 components: - type: Transform - pos: 12.5,20.5 - parent: 89 - - uid: 16290 + pos: -3.5,20.5 + parent: 2 + - uid: 23442 components: - type: Transform - pos: 12.5,21.5 - parent: 89 - - uid: 16499 + rot: 1.5707963267948966 rad + pos: -52.5,6.5 + parent: 2 + - uid: 23443 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,35.5 - parent: 89 - - uid: 16501 + pos: -48.5,6.5 + parent: 2 + - uid: 23444 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,34.5 - parent: 89 - - uid: 16503 + pos: -44.5,6.5 + parent: 2 + - uid: 23445 components: - type: Transform rot: 1.5707963267948966 rad - pos: -63.5,33.5 - parent: 89 - - uid: 16526 + pos: -43.5,6.5 + parent: 2 + - uid: 23446 components: - type: Transform - pos: -3.5,20.5 - parent: 89 - - uid: 20133 + rot: 1.5707963267948966 rad + pos: -48.5,2.5 + parent: 2 + - uid: 23447 components: - type: Transform pos: -3.5,16.5 - parent: 89 - - uid: 20141 + parent: 2 + - uid: 23448 components: - type: Transform rot: -1.5707963267948966 rad pos: -3.5,15.5 - parent: 89 - - uid: 20936 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -8.5,9.5 - parent: 89 + parent: 2 - proto: WindowDirectional entities: - - uid: 1255 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 46.5,12.5 - parent: 89 - - uid: 2765 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 46.5,12.5 - parent: 89 - - uid: 2929 + - uid: 23449 components: - type: Transform rot: 3.141592653589793 rad pos: -22.5,-1.5 - parent: 89 - - uid: 3630 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -5.5,-6.5 - parent: 89 - - uid: 4861 + parent: 2 + - uid: 23450 components: - type: Transform rot: 3.141592653589793 rad pos: -52.5,9.5 - parent: 89 - - uid: 5370 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -52.5,-5.5 - parent: 89 - - uid: 5425 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -50.5,-5.5 - parent: 89 - - uid: 7680 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,26.5 - parent: 89 - - uid: 7681 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,27.5 - parent: 89 - - uid: 7682 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -97.5,24.5 - parent: 89 - - uid: 7683 - components: - - type: Transform - pos: -98.5,28.5 - parent: 89 - - uid: 10242 + parent: 2 + - uid: 23451 components: - type: Transform pos: -79.5,0.5 - parent: 89 - - uid: 10243 + parent: 2 + - uid: 23452 components: - type: Transform pos: -78.5,0.5 - parent: 89 - - uid: 10244 + parent: 2 + - uid: 23453 components: - type: Transform pos: -77.5,0.5 - parent: 89 - - uid: 10245 + parent: 2 + - uid: 23454 components: - type: Transform pos: -75.5,0.5 - parent: 89 - - uid: 10246 + parent: 2 + - uid: 23455 components: - type: Transform pos: -74.5,0.5 - parent: 89 - - uid: 10247 + parent: 2 + - uid: 23456 components: - type: Transform pos: -73.5,0.5 - parent: 89 - - uid: 14548 + parent: 2 + - uid: 23457 components: - type: Transform rot: -1.5707963267948966 rad pos: 8.5,-16.5 - parent: 89 - - uid: 14745 + parent: 2 + - uid: 23458 components: - type: Transform rot: 3.141592653589793 rad pos: 8.5,-16.5 - parent: 89 - - uid: 14746 + parent: 2 + - uid: 23459 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,-16.5 - parent: 89 - - uid: 15691 - components: - - type: Transform - pos: 46.5,12.5 - parent: 89 - - uid: 16053 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 46.5,12.5 - parent: 89 - - uid: 17714 - components: - - type: Transform - pos: 35.5,-0.5 - parent: 89 - - uid: 17719 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 35.5,-0.5 - parent: 89 - - uid: 17721 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 89 - - uid: 19592 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 35.5,-0.5 - parent: 89 - - uid: 21064 + parent: 2 + - uid: 23460 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-26.5 - parent: 89 - - uid: 21284 - components: - - type: Transform - pos: -97.5,28.5 - parent: 89 - - uid: 21307 + parent: 2 + - uid: 23461 components: - type: Transform pos: 47.5,-28.5 - parent: 89 - - uid: 21344 + parent: 2 + - uid: 23462 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-25.5 - parent: 89 - - uid: 21345 + parent: 2 + - uid: 23463 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-28.5 - parent: 89 - - uid: 21346 + parent: 2 + - uid: 23464 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-27.5 - parent: 89 - - uid: 21387 + parent: 2 + - uid: 23465 components: - type: Transform pos: 48.5,-28.5 - parent: 89 - - uid: 21388 + parent: 2 + - uid: 23466 components: - type: Transform pos: 46.5,-28.5 - parent: 89 - - uid: 21750 + parent: 2 + - uid: 23467 components: - type: Transform rot: 3.141592653589793 rad pos: 48.5,-24.5 - parent: 89 - - uid: 21751 + parent: 2 + - uid: 23468 components: - type: Transform rot: 3.141592653589793 rad pos: 47.5,-24.5 - parent: 89 - - uid: 21752 + parent: 2 + - uid: 23469 components: - type: Transform rot: 3.141592653589793 rad pos: 46.5,-24.5 - parent: 89 - - uid: 21756 + parent: 2 + - uid: 23470 components: - type: Transform rot: -1.5707963267948966 rad pos: 46.5,-24.5 - parent: 89 - - uid: 25385 + parent: 2 + - uid: 23471 components: - type: Transform rot: -1.5707963267948966 rad pos: 35.5,-27.5 - parent: 89 + parent: 2 - proto: WindowFrostedDirectional entities: - - uid: 119 + - uid: 23472 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -50.5,-12.5 + parent: 2 + - uid: 23473 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 23474 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 23475 components: - type: Transform rot: 1.5707963267948966 rad pos: -11.5,15.5 - parent: 89 - - uid: 2899 + parent: 2 + - uid: 23476 components: - type: Transform rot: 3.141592653589793 rad pos: 36.5,6.5 - parent: 89 - - uid: 2901 + parent: 2 + - uid: 23477 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,5.5 - parent: 89 - - uid: 2902 + parent: 2 + - uid: 23478 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,6.5 - parent: 89 - - uid: 3004 + parent: 2 + - uid: 23479 components: - type: Transform pos: 36.5,3.5 - parent: 89 - - uid: 3007 + parent: 2 + - uid: 23480 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,6.5 - parent: 89 - - uid: 3008 + parent: 2 + - uid: 23481 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,3.5 - parent: 89 - - uid: 3009 + parent: 2 + - uid: 23482 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,4.5 - parent: 89 - - uid: 3013 + parent: 2 + - uid: 23483 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,5.5 - parent: 89 - - uid: 3014 + parent: 2 + - uid: 23484 components: - type: Transform rot: 1.5707963267948966 rad pos: 36.5,3.5 - parent: 89 - - uid: 3015 + parent: 2 + - uid: 23485 components: - type: Transform pos: 37.5,3.5 - parent: 89 - - uid: 3016 + parent: 2 + - uid: 23486 components: - type: Transform rot: -1.5707963267948966 rad pos: 37.5,4.5 - parent: 89 - - uid: 3017 + parent: 2 + - uid: 23487 components: - type: Transform rot: 3.141592653589793 rad pos: 37.5,6.5 - parent: 89 - - uid: 5523 + parent: 2 + - uid: 23488 components: - type: Transform pos: -45.5,-3.5 - parent: 89 - - uid: 6110 + parent: 2 + - uid: 23489 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,9.5 - parent: 89 - - uid: 6111 + parent: 2 + - uid: 23490 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,8.5 - parent: 89 - - uid: 6112 + parent: 2 + - uid: 23491 components: - type: Transform rot: -1.5707963267948966 rad pos: -46.5,7.5 - parent: 89 - - uid: 11459 + parent: 2 + - uid: 23492 components: - type: Transform rot: 1.5707963267948966 rad pos: -7.5,-32.5 - parent: 89 - - uid: 12606 + parent: 2 + - uid: 23493 components: - type: Transform rot: -1.5707963267948966 rad pos: 11.5,42.5 - parent: 89 - - uid: 15435 + parent: 2 + - uid: 23494 components: - type: Transform rot: 1.5707963267948966 rad pos: 8.5,42.5 - parent: 89 - - uid: 16379 + parent: 2 + - uid: 23495 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,21.5 - parent: 89 - - uid: 16380 + parent: 2 + - uid: 23496 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,19.5 - parent: 89 - - uid: 16510 + parent: 2 + - uid: 23497 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,18.5 - parent: 89 - - uid: 16996 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-2.5 - parent: 89 - - uid: 17001 + parent: 2 + - uid: 23498 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-0.5 - parent: 89 - - uid: 17002 + pos: 7.5,-0.5 + parent: 2 + - uid: 23499 components: - type: Transform - rot: 1.5707963267948966 rad - pos: 6.5,-1.5 - parent: 89 - - uid: 17660 + pos: 7.5,-2.5 + parent: 2 + - uid: 23500 components: - type: Transform - rot: 3.141592653589793 rad - pos: 37.5,-3.5 - parent: 89 - - uid: 17692 + pos: 7.5,-1.5 + parent: 2 + - uid: 23501 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,20.5 - parent: 89 - - uid: 17700 + parent: 2 + - uid: 23502 components: - type: Transform rot: 1.5707963267948966 rad pos: -10.5,17.5 - parent: 89 - - uid: 17711 + parent: 2 + - uid: 23503 components: - type: Transform rot: -1.5707963267948966 rad pos: 7.5,16.5 - parent: 89 - - uid: 18293 + parent: 2 + - uid: 23504 components: - type: Transform rot: 3.141592653589793 rad pos: 44.5,-14.5 - parent: 89 - - uid: 18294 + parent: 2 + - uid: 23505 components: - type: Transform pos: 44.5,-13.5 - parent: 89 - - uid: 19888 + parent: 2 + - uid: 23506 components: - type: Transform rot: -1.5707963267948966 rad pos: 20.5,23.5 - parent: 89 - - uid: 19897 + parent: 2 + - uid: 23507 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,36.5 - parent: 89 - - uid: 19898 + parent: 2 + - uid: 23508 components: - type: Transform pos: 22.5,35.5 - parent: 89 - - uid: 20818 + parent: 2 + - uid: 23509 components: - type: Transform rot: -1.5707963267948966 rad pos: 0.5,15.5 - parent: 89 - - uid: 25312 + parent: 2 + - uid: 23510 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 23511 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 23512 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 23513 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 23514 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 2 + - uid: 23515 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 2 + - uid: 23516 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 2 + - uid: 23517 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -49.5,-12.5 + parent: 2 + - uid: 23518 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -48.5,-12.5 + parent: 2 + - uid: 23519 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: -47.5,-12.5 + parent: 2 + - uid: 23520 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-11.5 + parent: 2 + - uid: 23521 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -50.5,-9.5 + parent: 2 + - uid: 27220 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-26.5 - parent: 22565 - - uid: 25313 + parent: 24450 + - uid: 27221 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-26.5 - parent: 22565 - - uid: 25314 + parent: 24450 + - uid: 27222 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-25.5 - parent: 22565 - - uid: 25315 + parent: 24450 + - uid: 27223 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-25.5 - parent: 22565 - - uid: 25316 + parent: 24450 + - uid: 27224 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-24.5 - parent: 22565 - - uid: 25317 + parent: 24450 + - uid: 27225 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-24.5 - parent: 22565 - - uid: 25318 + parent: 24450 + - uid: 27226 components: - type: Transform pos: -14.5,-23.5 - parent: 22565 - - uid: 25319 + parent: 24450 + - uid: 27227 components: - type: Transform pos: -12.5,-23.5 - parent: 22565 + parent: 24450 - proto: WindowReinforcedDirectional entities: - - uid: 344 + - uid: 23522 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-5.5 + parent: 2 + - uid: 23523 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 31.5,7.5 + parent: 2 + - uid: 23524 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 30.5,7.5 + parent: 2 + - uid: 23525 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 32.5,7.5 + parent: 2 + - uid: 23526 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-6.5 + parent: 2 + - uid: 23527 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 29.5,-5.5 + parent: 2 + - uid: 23528 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-5.5 + parent: 2 + - uid: 23529 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 34.5,-6.5 + parent: 2 + - uid: 23530 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-6.5 + parent: 2 + - uid: 23531 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-6.5 + parent: 2 + - uid: 23532 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-6.5 + parent: 2 + - uid: 23533 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-6.5 + parent: 2 + - uid: 23534 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-6.5 + parent: 2 + - uid: 23535 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 39.5,-4.5 + parent: 2 + - uid: 23536 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 37.5,-1.5 + parent: 2 + - uid: 23537 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 23538 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 44.5,-6.5 + parent: 2 + - uid: 23539 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 48.5,-8.5 + parent: 2 + - uid: 23540 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 47.5,-8.5 + parent: 2 + - uid: 23541 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 46.5,-8.5 + parent: 2 + - uid: 23542 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 49.5,-8.5 + parent: 2 + - uid: 23543 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 45.5,-8.5 + parent: 2 + - uid: 23544 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,6.5 - parent: 89 - - uid: 345 + parent: 2 + - uid: 23545 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,5.5 - parent: 89 - - uid: 346 + parent: 2 + - uid: 23546 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,4.5 - parent: 89 - - uid: 348 + parent: 2 + - uid: 23547 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,2.5 - parent: 89 - - uid: 355 + parent: 2 + - uid: 23548 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,10.5 - parent: 89 - - uid: 356 + parent: 2 + - uid: 23549 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,10.5 - parent: 89 - - uid: 357 + parent: 2 + - uid: 23550 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,10.5 - parent: 89 - - uid: 358 + parent: 2 + - uid: 23551 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,10.5 - parent: 89 - - uid: 359 + parent: 2 + - uid: 23552 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,10.5 - parent: 89 - - uid: 360 + parent: 2 + - uid: 23553 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,10.5 - parent: 89 - - uid: 365 + parent: 2 + - uid: 23554 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,15.5 - parent: 89 - - uid: 366 + parent: 2 + - uid: 23555 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,15.5 - parent: 89 - - uid: 367 + parent: 2 + - uid: 23556 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,14.5 - parent: 89 - - uid: 368 + parent: 2 + - uid: 23557 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,14.5 - parent: 89 - - uid: 1068 + parent: 2 + - uid: 23558 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-6.5 - parent: 89 - - uid: 1592 + parent: 2 + - uid: 23559 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-6.5 - parent: 89 - - uid: 3121 + parent: 2 + - uid: 23560 components: - type: Transform pos: 57.5,-1.5 - parent: 89 - - uid: 3126 + parent: 2 + - uid: 23561 components: - type: Transform pos: 55.5,-1.5 - parent: 89 - - uid: 3127 + parent: 2 + - uid: 23562 components: - type: Transform pos: 56.5,-1.5 - parent: 89 - - uid: 3162 + parent: 2 + - uid: 23563 components: - type: Transform pos: 54.5,-1.5 - parent: 89 - - uid: 3175 + parent: 2 + - uid: 23564 components: - type: Transform rot: -1.5707963267948966 rad pos: 54.5,-1.5 - parent: 89 - - uid: 3368 + parent: 2 + - uid: 23565 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,2.5 - parent: 89 - - uid: 3369 + parent: 2 + - uid: 23566 components: - type: Transform pos: 54.5,6.5 - parent: 89 - - uid: 5522 + parent: 2 + - uid: 23567 components: - type: Transform rot: 3.141592653589793 rad pos: -45.5,-4.5 - parent: 89 - - uid: 5988 + parent: 2 + - uid: 23568 components: - type: Transform rot: 1.5707963267948966 rad pos: 57.5,-1.5 - parent: 89 - - uid: 6230 + parent: 2 + - uid: 23569 components: - type: Transform pos: -80.5,-2.5 - parent: 89 - - uid: 6458 + parent: 2 + - uid: 23570 components: - type: Transform rot: 1.5707963267948966 rad pos: 59.5,3.5 - parent: 89 - - uid: 6496 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -57.5,49.5 - parent: 89 - - uid: 6497 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: -57.5,49.5 - parent: 89 - - uid: 6517 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: -57.5,49.5 - parent: 89 - - uid: 7248 + parent: 2 + - uid: 23571 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-34.5 - parent: 89 - - uid: 7741 + parent: 2 + - uid: 23572 components: - type: Transform rot: 3.141592653589793 rad pos: -1.5,43.5 - parent: 89 - - uid: 7746 + parent: 2 + - uid: 23573 components: - type: Transform rot: 3.141592653589793 rad pos: -7.5,43.5 - parent: 89 - - uid: 7790 + parent: 2 + - uid: 23574 components: - type: Transform rot: 3.141592653589793 rad pos: 0.5,43.5 - parent: 89 - - uid: 7791 + parent: 2 + - uid: 23575 components: - type: Transform rot: 3.141592653589793 rad pos: -5.5,43.5 - parent: 89 - - uid: 8750 + parent: 2 + - uid: 23576 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,2.5 - parent: 89 - - uid: 8751 + parent: 2 + - uid: 23577 components: - type: Transform rot: 1.5707963267948966 rad pos: 54.5,6.5 - parent: 89 - - uid: 9025 + parent: 2 + - uid: 23578 components: - type: Transform rot: -1.5707963267948966 rad pos: -6.5,-36.5 - parent: 89 - - uid: 9493 + parent: 2 + - uid: 23579 components: - type: Transform pos: -57.5,47.5 - parent: 89 - - uid: 9832 + parent: 2 + - uid: 23580 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,47.5 - parent: 89 - - uid: 9833 + parent: 2 + - uid: 23581 components: - type: Transform rot: -1.5707963267948966 rad pos: -57.5,48.5 - parent: 89 - - uid: 9835 + parent: 2 + - uid: 23582 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,48.5 - parent: 89 - - uid: 9836 + parent: 2 + - uid: 23583 components: - type: Transform rot: 1.5707963267948966 rad pos: -57.5,47.5 - parent: 89 - - uid: 9838 + parent: 2 + - uid: 23584 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,45.5 - parent: 89 - - uid: 9839 + parent: 2 + - uid: 23585 components: - type: Transform pos: -53.5,45.5 - parent: 89 - - uid: 9840 + parent: 2 + - uid: 23586 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,45.5 - parent: 89 - - uid: 9841 + parent: 2 + - uid: 23587 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,45.5 - parent: 89 - - uid: 9842 + parent: 2 + - uid: 23588 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,43.5 - parent: 89 - - uid: 9843 + parent: 2 + - uid: 23589 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,41.5 - parent: 89 - - uid: 9844 + parent: 2 + - uid: 23590 components: - type: Transform rot: 3.141592653589793 rad pos: -53.5,39.5 - parent: 89 - - uid: 9845 + parent: 2 + - uid: 23591 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,39.5 - parent: 89 - - uid: 9846 + parent: 2 + - uid: 23592 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,41.5 - parent: 89 - - uid: 9847 + parent: 2 + - uid: 23593 components: - type: Transform rot: 1.5707963267948966 rad pos: -53.5,43.5 - parent: 89 - - uid: 9848 + parent: 2 + - uid: 23594 components: - type: Transform pos: -53.5,43.5 - parent: 89 - - uid: 9849 + parent: 2 + - uid: 23595 components: - type: Transform pos: -53.5,41.5 - parent: 89 - - uid: 9850 + parent: 2 + - uid: 23596 components: - type: Transform pos: -53.5,39.5 - parent: 89 - - uid: 9851 + parent: 2 + - uid: 23597 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,39.5 - parent: 89 - - uid: 9852 + parent: 2 + - uid: 23598 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,41.5 - parent: 89 - - uid: 9853 + parent: 2 + - uid: 23599 components: - type: Transform rot: -1.5707963267948966 rad pos: -53.5,43.5 - parent: 89 - - uid: 10469 + parent: 2 + - uid: 23600 components: - type: Transform rot: 3.141592653589793 rad pos: 22.5,7.5 - parent: 89 - - uid: 14109 + parent: 2 + - uid: 23601 components: - type: Transform rot: -1.5707963267948966 rad pos: 56.5,-5.5 - parent: 89 - - uid: 14120 + parent: 2 + - uid: 23602 components: - type: Transform rot: 1.5707963267948966 rad pos: 55.5,-5.5 - parent: 89 - - uid: 14904 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,35.5 - parent: 89 - - uid: 15248 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,36.5 - parent: 89 - - uid: 15281 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: 20.5,35.5 - parent: 89 - - uid: 15296 - components: - - type: Transform - pos: 23.5,45.5 - parent: 89 - - uid: 15686 - components: - - type: Transform - pos: 25.5,45.5 - parent: 89 - - uid: 15731 - components: - - type: Transform - rot: 1.5707963267948966 rad - pos: -112.5,-13.5 - parent: 89 - - uid: 15761 + parent: 2 + - uid: 23603 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-20.5 - parent: 89 - - uid: 16559 + parent: 2 + - uid: 23604 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-21.5 - parent: 89 - - uid: 16899 + parent: 2 + - uid: 23605 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,-21.5 - parent: 89 - - uid: 16900 + parent: 2 + - uid: 23606 components: - type: Transform rot: -1.5707963267948966 rad pos: -1.5,-20.5 - parent: 89 - - uid: 17120 + parent: 2 + - uid: 23607 components: - type: Transform - rot: 3.141592653589793 rad - pos: 44.5,-5.5 - parent: 89 - - uid: 17270 + rot: 1.5707963267948966 rad + pos: -98.5,24.5 + parent: 2 + - uid: 23608 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -98.5,26.5 + parent: 2 + - uid: 23609 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,48.5 - parent: 89 - - uid: 17274 + parent: 2 + - uid: 23610 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,48.5 - parent: 89 - - uid: 17284 + parent: 2 + - uid: 23611 components: - type: Transform rot: -1.5707963267948966 rad pos: -50.5,47.5 - parent: 89 - - uid: 17295 + parent: 2 + - uid: 23612 components: - type: Transform rot: 1.5707963267948966 rad pos: -50.5,47.5 - parent: 89 - - uid: 17616 + parent: 2 + - uid: 23613 components: - type: Transform - pos: 24.5,45.5 - parent: 89 - - uid: 17799 + rot: 1.5707963267948966 rad + pos: -98.5,27.5 + parent: 2 + - uid: 23614 components: - type: Transform rot: 3.141592653589793 rad pos: 62.5,13.5 - parent: 89 - - uid: 17824 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 1.5,-33.5 - parent: 89 - - uid: 17825 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 2.5,-33.5 - parent: 89 - - uid: 17826 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 3.5,-33.5 - parent: 89 - - uid: 17827 - components: - - type: Transform - rot: 3.141592653589793 rad - pos: 4.5,-33.5 - parent: 89 - - uid: 17833 + parent: 2 + - uid: 23615 components: - type: Transform rot: 3.141592653589793 rad pos: 52.5,15.5 - parent: 89 - - uid: 17834 + parent: 2 + - uid: 23616 components: - type: Transform rot: 3.141592653589793 rad pos: 53.5,15.5 - parent: 89 - - uid: 17835 + parent: 2 + - uid: 23617 components: - type: Transform rot: 3.141592653589793 rad pos: 54.5,15.5 - parent: 89 - - uid: 17836 + parent: 2 + - uid: 23618 components: - type: Transform rot: 3.141592653589793 rad pos: 55.5,15.5 - parent: 89 - - uid: 17837 + parent: 2 + - uid: 23619 components: - type: Transform rot: 3.141592653589793 rad pos: 56.5,15.5 - parent: 89 - - uid: 17838 + parent: 2 + - uid: 23620 components: - type: Transform rot: 3.141592653589793 rad pos: 57.5,15.5 - parent: 89 - - uid: 17839 + parent: 2 + - uid: 23621 components: - type: Transform rot: 3.141592653589793 rad pos: 58.5,15.5 - parent: 89 - - uid: 17840 + parent: 2 + - uid: 23622 components: - type: Transform rot: 3.141592653589793 rad pos: 59.5,15.5 - parent: 89 - - uid: 17841 + parent: 2 + - uid: 23623 components: - type: Transform pos: 65.5,-4.5 - parent: 89 - - uid: 17842 + parent: 2 + - uid: 23624 components: - type: Transform rot: 3.141592653589793 rad pos: 63.5,13.5 - parent: 89 - - uid: 17843 + parent: 2 + - uid: 23625 components: - type: Transform rot: 3.141592653589793 rad pos: 64.5,13.5 - parent: 89 - - uid: 17844 + parent: 2 + - uid: 23626 components: - type: Transform rot: 3.141592653589793 rad pos: 65.5,13.5 - parent: 89 - - uid: 17845 + parent: 2 + - uid: 23627 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,13.5 - parent: 89 - - uid: 17846 + parent: 2 + - uid: 23628 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,12.5 - parent: 89 - - uid: 17847 + parent: 2 + - uid: 23629 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,11.5 - parent: 89 - - uid: 17848 + parent: 2 + - uid: 23630 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,10.5 - parent: 89 - - uid: 17849 + parent: 2 + - uid: 23631 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,8.5 - parent: 89 - - uid: 17850 + parent: 2 + - uid: 23632 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,7.5 - parent: 89 - - uid: 17851 + parent: 2 + - uid: 23633 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,6.5 - parent: 89 - - uid: 17852 + parent: 2 + - uid: 23634 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,5.5 - parent: 89 - - uid: 17853 + parent: 2 + - uid: 23635 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,3.5 - parent: 89 - - uid: 17854 + parent: 2 + - uid: 23636 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,2.5 - parent: 89 - - uid: 17855 + parent: 2 + - uid: 23637 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,1.5 - parent: 89 - - uid: 17856 + parent: 2 + - uid: 23638 components: - type: Transform rot: 1.5707963267948966 rad pos: 63.5,0.5 - parent: 89 - - uid: 17857 + parent: 2 + - uid: 23639 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-1.5 - parent: 89 - - uid: 17858 + parent: 2 + - uid: 23640 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-2.5 - parent: 89 - - uid: 17859 + parent: 2 + - uid: 23641 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-3.5 - parent: 89 - - uid: 17860 + parent: 2 + - uid: 23642 components: - type: Transform rot: 1.5707963267948966 rad pos: 65.5,-4.5 - parent: 89 - - uid: 17862 + parent: 2 + - uid: 23643 components: - type: Transform pos: 64.5,-4.5 - parent: 89 - - uid: 17863 + parent: 2 + - uid: 23644 components: - type: Transform pos: 63.5,-4.5 - parent: 89 - - uid: 17864 + parent: 2 + - uid: 23645 components: - type: Transform pos: 62.5,-4.5 - parent: 89 - - uid: 17866 + parent: 2 + - uid: 23646 components: - type: Transform pos: 59.5,-6.5 - parent: 89 - - uid: 17867 + parent: 2 + - uid: 23647 components: - type: Transform pos: 58.5,-6.5 - parent: 89 - - uid: 17868 + parent: 2 + - uid: 23648 components: - type: Transform pos: 57.5,-6.5 - parent: 89 - - uid: 17869 + parent: 2 + - uid: 23649 components: - type: Transform pos: 56.5,-6.5 - parent: 89 - - uid: 17870 + parent: 2 + - uid: 23650 components: - type: Transform pos: 55.5,-6.5 - parent: 89 - - uid: 17871 + parent: 2 + - uid: 23651 components: - type: Transform pos: 54.5,-6.5 - parent: 89 - - uid: 17872 - components: - - type: Transform - pos: 53.5,-6.5 - parent: 89 - - uid: 17873 - components: - - type: Transform - pos: 52.5,-6.5 - parent: 89 - - uid: 18325 + parent: 2 + - uid: 23652 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-25.5 - parent: 89 - - uid: 19709 - components: - - type: Transform - rot: -1.5707963267948966 rad - pos: 28.5,36.5 - parent: 89 - - uid: 20415 + parent: 2 + - uid: 23653 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-25.5 - parent: 89 - - uid: 21375 + parent: 2 + - uid: 23654 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-26.5 - parent: 89 - - uid: 21377 + parent: 2 + - uid: 23655 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-26.5 - parent: 89 - - uid: 21466 + parent: 2 + - uid: 23656 components: - type: Transform pos: 50.5,-19.5 - parent: 89 - - uid: 21759 + parent: 2 + - uid: 23657 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-19.5 - parent: 89 - - uid: 21761 + parent: 2 + - uid: 23658 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-20.5 - parent: 89 - - uid: 21762 + parent: 2 + - uid: 23659 components: - type: Transform rot: -1.5707963267948966 rad pos: 50.5,-18.5 - parent: 89 - - uid: 21803 + parent: 2 + - uid: 23660 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-23.5 - parent: 89 - - uid: 21804 + parent: 2 + - uid: 23661 components: - type: Transform rot: 3.141592653589793 rad pos: 40.5,-24.5 - parent: 89 - - uid: 21805 + parent: 2 + - uid: 23662 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-24.5 - parent: 89 - - uid: 21806 + parent: 2 + - uid: 23663 components: - type: Transform rot: 3.141592653589793 rad pos: 38.5,-23.5 - parent: 89 - - uid: 25320 + parent: 2 + - uid: 23664 + components: + - type: Transform + rot: 3.141592653589793 rad + pos: 41.5,-4.5 + parent: 2 + - uid: 23665 + components: + - type: Transform + pos: 40.5,-8.5 + parent: 2 + - uid: 23666 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-2.5 + parent: 2 + - uid: 23667 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 42.5,-3.5 + parent: 2 + - uid: 23668 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 23669 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 35.5,-0.5 + parent: 2 + - uid: 23670 + components: + - type: Transform + pos: 32.5,-7.5 + parent: 2 + - uid: 23671 + components: + - type: Transform + pos: 34.5,-11.5 + parent: 2 + - uid: 23672 + components: + - type: Transform + pos: 33.5,-11.5 + parent: 2 + - uid: 23673 + components: + - type: Transform + pos: 30.5,-11.5 + parent: 2 + - uid: 23674 + components: + - type: Transform + pos: 31.5,-11.5 + parent: 2 + - uid: 23675 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-4.5 + parent: 2 + - uid: 23676 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-2.5 + parent: 2 + - uid: 23677 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-11.5 + parent: 2 + - uid: 23678 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-10.5 + parent: 2 + - uid: 23679 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-9.5 + parent: 2 + - uid: 23680 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -136.5,-3.5 + parent: 2 + - uid: 27228 components: - type: Transform rot: 1.5707963267948966 rad pos: -12.5,-21.5 - parent: 22565 - - uid: 25321 + parent: 24450 + - uid: 27229 components: - type: Transform rot: -1.5707963267948966 rad pos: -14.5,-21.5 - parent: 22565 - - uid: 25322 + parent: 24450 + - uid: 27230 components: - type: Transform rot: 3.141592653589793 rad pos: -12.5,-22.5 - parent: 22565 - - uid: 25323 + parent: 24450 + - uid: 27231 components: - type: Transform rot: 3.141592653589793 rad pos: -14.5,-22.5 - parent: 22565 - - uid: 25324 + parent: 24450 + - uid: 27232 components: - type: Transform rot: 3.141592653589793 rad pos: 7.5,4.5 - parent: 22565 - - uid: 25325 + parent: 24450 + - uid: 27233 components: - type: Transform rot: 3.141592653589793 rad pos: 5.5,4.5 - parent: 22565 - - uid: 25326 + parent: 24450 + - uid: 27234 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,1.5 - parent: 22565 - - uid: 25327 + parent: 24450 + - uid: 27235 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,2.5 - parent: 22565 - - uid: 25328 + parent: 24450 + - uid: 27236 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,3.5 - parent: 22565 - - uid: 25329 + parent: 24450 + - uid: 27237 components: - type: Transform rot: -1.5707963267948966 rad pos: -17.5,4.5 - parent: 22565 - - uid: 25330 + parent: 24450 + - uid: 27238 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,1.5 - parent: 22565 - - uid: 25331 + parent: 24450 + - uid: 27239 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,2.5 - parent: 22565 - - uid: 25332 + parent: 24450 + - uid: 27240 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,3.5 - parent: 22565 - - uid: 25333 + parent: 24450 + - uid: 27241 components: - type: Transform rot: -1.5707963267948966 rad pos: -22.5,4.5 - parent: 22565 - - uid: 25334 + parent: 24450 + - uid: 27242 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,1.5 - parent: 22565 - - uid: 25335 + parent: 24450 + - uid: 27243 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,4.5 - parent: 22565 - - uid: 25336 + parent: 24450 + - uid: 27244 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,2.5 - parent: 22565 - - uid: 25337 + parent: 24450 + - uid: 27245 components: - type: Transform rot: 1.5707963267948966 rad pos: -21.5,3.5 - parent: 22565 - - uid: 25338 + parent: 24450 + - uid: 27246 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,1.5 - parent: 22565 - - uid: 25339 + parent: 24450 + - uid: 27247 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,2.5 - parent: 22565 - - uid: 25340 + parent: 24450 + - uid: 27248 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,3.5 - parent: 22565 - - uid: 25341 + parent: 24450 + - uid: 27249 components: - type: Transform rot: 1.5707963267948966 rad pos: -6.5,4.5 - parent: 22565 - - uid: 25342 + parent: 24450 + - uid: 27250 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,4.5 - parent: 22565 - - uid: 25343 + parent: 24450 + - uid: 27251 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,3.5 - parent: 22565 - - uid: 25344 + parent: 24450 + - uid: 27252 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,2.5 - parent: 22565 - - uid: 25345 + parent: 24450 + - uid: 27253 components: - type: Transform rot: -1.5707963267948966 rad pos: -2.5,1.5 - parent: 22565 - - uid: 25346 + parent: 24450 + - uid: 27254 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,1.5 - parent: 22565 - - uid: 25347 + parent: 24450 + - uid: 27255 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,2.5 - parent: 22565 - - uid: 25348 + parent: 24450 + - uid: 27256 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,3.5 - parent: 22565 - - uid: 25349 + parent: 24450 + - uid: 27257 components: - type: Transform rot: 1.5707963267948966 rad pos: -1.5,4.5 - parent: 22565 - - uid: 25350 + parent: 24450 + - uid: 27258 components: - type: Transform rot: 3.141592653589793 rad pos: -29.5,4.5 - parent: 22565 - - uid: 25351 + parent: 24450 + - uid: 27259 components: - type: Transform rot: 3.141592653589793 rad pos: -31.5,4.5 - parent: 22565 + parent: 24450 + - uid: 28110 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-1.5 + parent: 27260 + - uid: 28111 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-2.5 + parent: 27260 + - uid: 28112 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 7.5,-0.5 + parent: 27260 + - uid: 28113 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-4.5 + parent: 27260 + - uid: 28114 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-5.5 + parent: 27260 + - uid: 28115 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-6.5 + parent: 27260 + - uid: 28116 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-7.5 + parent: 27260 + - uid: 28117 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-10.5 + parent: 27260 + - uid: 28118 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-11.5 + parent: 27260 + - uid: 28119 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-12.5 + parent: 27260 + - uid: 28120 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: 8.5,-13.5 + parent: 27260 + - uid: 28121 + components: + - type: Transform + pos: 6.5,-15.5 + parent: 27260 + - uid: 28122 + components: + - type: Transform + pos: 5.5,-15.5 + parent: 27260 + - uid: 28123 + components: + - type: Transform + pos: 4.5,-15.5 + parent: 27260 + - uid: 28124 + components: + - type: Transform + pos: 1.5,-14.5 + parent: 27260 + - uid: 28125 + components: + - type: Transform + pos: 0.5,-14.5 + parent: 27260 + - uid: 28126 + components: + - type: Transform + pos: -0.5,-14.5 + parent: 27260 + - uid: 28127 + components: + - type: Transform + pos: -3.5,-15.5 + parent: 27260 + - uid: 28128 + components: + - type: Transform + pos: -4.5,-15.5 + parent: 27260 + - uid: 28129 + components: + - type: Transform + pos: -5.5,-15.5 + parent: 27260 + - uid: 28130 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-13.5 + parent: 27260 + - uid: 28131 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-12.5 + parent: 27260 + - uid: 28132 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-11.5 + parent: 27260 + - uid: 28133 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-10.5 + parent: 27260 + - uid: 28134 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-7.5 + parent: 27260 + - uid: 28135 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-6.5 + parent: 27260 + - uid: 28136 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-5.5 + parent: 27260 + - uid: 28137 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -7.5,-4.5 + parent: 27260 + - uid: 28138 + components: + - type: Transform + rot: 1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 27260 + - uid: 28139 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -4.5,-4.5 + parent: 27260 + - uid: 28140 + components: + - type: Transform + pos: 5.5,-10.5 + parent: 27260 + - uid: 28141 + components: + - type: Transform + pos: 6.5,-10.5 + parent: 27260 + - uid: 28142 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: 5.5,-10.5 + parent: 27260 + - uid: 28143 + components: + - type: Transform + pos: -4.5,-10.5 + parent: 27260 + - uid: 28144 + components: + - type: Transform + pos: -5.5,-10.5 + parent: 27260 + - uid: 28145 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-0.5 + parent: 27260 + - uid: 28146 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-1.5 + parent: 27260 + - uid: 28147 + components: + - type: Transform + rot: -1.5707963267948966 rad + pos: -6.5,-2.5 + parent: 27260 - proto: Wirecutter entities: - - uid: 14930 + - uid: 23681 components: - type: Transform pos: -10.198816,-35.316505 - parent: 89 - - uid: 20100 - components: - - type: Transform - pos: -131.61685,-2.3357248 - parent: 89 - - uid: 22011 + parent: 2 + - uid: 23682 components: - type: Transform pos: 43.995945,-35.30719 - parent: 89 + parent: 2 - proto: WoodDoor entities: - - uid: 5512 + - uid: 23683 components: - type: Transform pos: -46.5,-2.5 - parent: 89 - - uid: 5520 + parent: 2 + - uid: 23684 components: - type: Transform pos: -45.5,-5.5 - parent: 89 - - uid: 8000 + parent: 2 + - uid: 23685 components: - type: Transform pos: 3.5,43.5 - parent: 89 - - uid: 10309 + parent: 2 + - uid: 23686 components: - type: Transform pos: -37.5,26.5 - parent: 89 - - uid: 10310 + parent: 2 + - uid: 23687 components: - type: Transform pos: -38.5,31.5 - parent: 89 - - uid: 10348 + parent: 2 + - uid: 23688 components: - type: Transform pos: -21.5,31.5 - parent: 89 + parent: 2 - type: Door state: Open - type: Physics @@ -167239,79 +185541,83 @@ entities: airBlocked: False - type: Occluder enabled: False - - uid: 10349 + - uid: 23689 components: - type: Transform pos: -22.5,26.5 - parent: 89 + parent: 2 - proto: Wrench entities: - - uid: 8207 + - uid: 23690 components: - type: Transform pos: 1.4219074,27.620178 - parent: 89 - - uid: 14608 + parent: 2 + - uid: 23691 components: - type: Transform pos: -97.55266,20.55884 - parent: 89 - - uid: 14956 + parent: 2 + - uid: 23692 components: - type: Transform pos: -12.251301,-35.889294 - parent: 89 - - uid: 16948 + parent: 2 + - uid: 23693 components: - type: Transform pos: -3.385431,-41.401688 - parent: 89 - - uid: 17609 + parent: 2 + - uid: 23694 components: - type: Transform pos: 9.5475025,20.643253 - parent: 89 - - uid: 20370 + parent: 2 + - uid: 23695 components: - type: Transform - rot: 1.5707963267948966 rad - pos: -129.43199,-11.495144 - parent: 89 + pos: 42.30865,-4.765355 + parent: 2 + - uid: 24339 + components: + - type: Transform + pos: 5.633301,0.8654289 + parent: 23919 - proto: Zipties entities: - - uid: 11301 + - uid: 8936 components: - type: Transform - parent: 11201 + parent: 8931 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11303 + - uid: 8937 components: - type: Transform - parent: 11201 + parent: 8931 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11307 + - uid: 8943 components: - type: Transform - parent: 11304 + parent: 8938 - type: Physics canCollide: False - type: InsideEntityStorage - - uid: 11309 + - uid: 8944 components: - type: Transform - parent: 11304 + parent: 8938 - type: Physics canCollide: False - type: InsideEntityStorage - proto: ZiptiesBroken entities: - - uid: 11508 + - uid: 23696 components: - type: Transform pos: 17.97879,31.046028 - parent: 89 + parent: 2 ... diff --git a/Resources/Prototypes/Accents/word_replacements.yml b/Resources/Prototypes/Accents/word_replacements.yml index 0365068b454..0c5e2a7d10e 100644 --- a/Resources/Prototypes/Accents/word_replacements.yml +++ b/Resources/Prototypes/Accents/word_replacements.yml @@ -597,3 +597,50 @@ corvax-chatsan-word-124: corvax-chatsan-replacement-124 corvax-chatsan-word-125: corvax-chatsan-replacement-125 # Corvax-ChatSanitize-End + +- type: accent + id: liar + wordReplacements: + liar-word-1: liar-word-replacement-1 + liar-word-2: liar-word-replacement-2 + liar-word-3: liar-word-replacement-3 + liar-word-4: liar-word-replacement-4 + liar-word-5: liar-word-replacement-5 + liar-word-6: liar-word-replacement-6 + liar-word-7: liar-word-replacement-7 + liar-word-8: liar-word-replacement-8 + liar-word-9: liar-word-replacement-9 + liar-word-10: liar-word-replacement-10 + liar-word-11: liar-word-replacement-11 + liar-word-12: liar-word-replacement-12 + liar-word-13: liar-word-replacement-13 + liar-word-14: liar-word-replacement-14 + liar-word-15: liar-word-replacement-15 + liar-word-16: liar-word-replacement-16 + liar-word-17: liar-word-replacement-17 + liar-word-18: liar-word-replacement-18 + liar-word-19: liar-word-replacement-19 + liar-word-20: liar-word-replacement-20 + liar-word-21: liar-word-replacement-21 + liar-word-22: liar-word-replacement-22 + liar-word-23: liar-word-replacement-23 + liar-word-24: liar-word-replacement-24 + liar-word-25: liar-word-replacement-25 + liar-word-26: liar-word-replacement-26 + liar-word-27: liar-word-replacement-27 + liar-word-28: liar-word-replacement-28 + liar-word-29: liar-word-replacement-29 + liar-word-30: liar-word-replacement-30 + liar-word-31: liar-word-replacement-31 + liar-word-32: liar-word-replacement-32 + liar-word-33: liar-word-replacement-33 + liar-word-34: liar-word-replacement-34 + liar-word-34-2: liar-word-replacement-34 + liar-word-35: liar-word-replacement-35 + liar-word-36: liar-word-replacement-36 + liar-word-37: liar-word-replacement-37 + liar-word-38: liar-word-replacement-38 + liar-word-39: liar-word-replacement-39 + liar-word-40: liar-word-replacement-40 + liar-word-41: liar-word-replacement-41 + liar-word-42: liar-word-replacement-42 diff --git a/Resources/Prototypes/Actions/types.yml b/Resources/Prototypes/Actions/types.yml index be666915640..fb156a732e6 100644 --- a/Resources/Prototypes/Actions/types.yml +++ b/Resources/Prototypes/Actions/types.yml @@ -129,6 +129,7 @@ noSpawn: true components: - type: InstantAction + checkCanInteract: false charges: 3 useDelay: 5 itemIconStyle: BigAction diff --git a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml index 975541a502a..4689e26f8e6 100644 --- a/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml +++ b/Resources/Prototypes/Catalog/ReagentDispensers/beverage.yml @@ -6,6 +6,7 @@ - DrinkColaBottleFull - DrinkCreamCartonXL - DrinkDrGibbJug + - DrinkEnergyDrinkJug - DrinkGreenTeaJug - DrinkIceJug - DrinkJuiceLimeCartonXL diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml index bec0946a6d0..e327f5a0fc0 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/boozeomat.yml @@ -19,6 +19,7 @@ DrinkCognacBottleFull: 4 DrinkCoconutWaterCarton: 3 DrinkColaBottleFull: 4 + DrinkEnergyDrinkCan: 8 DrinkMilkCarton: 2 DrinkCreamCarton: 5 DrinkGinBottleFull: 3 diff --git a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml index ddf79432175..fc8492dcf19 100644 --- a/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml +++ b/Resources/Prototypes/Catalog/VendingMachines/Inventories/discount.yml @@ -4,6 +4,7 @@ FoodSnackCheesie: 3 FoodSnackChips: 3 FoodSnackBoritos: 3 + DrinkEnergyDrinkCan: 4 FoodSnackPopcorn: 3 FoodSnackEnergy: 3 CigPackMixed: 2 diff --git a/Resources/Prototypes/Corvax/Maps/ishimura.yml b/Resources/Prototypes/Corvax/Maps/ishimura.yml index 944e4491da1..150ec12bbe5 100644 --- a/Resources/Prototypes/Corvax/Maps/ishimura.yml +++ b/Resources/Prototypes/Corvax/Maps/ishimura.yml @@ -8,13 +8,16 @@ Ishimura: stationProto: StandardNanotrasenStation components: + - type: StationRandomTransform + enableStationRotation: false + maxStationOffset: null - type: StationNameSetup mapNameTemplate: '{0} USG Ishimura {1}' nameGenerator: !type:NanotrasenNameGenerator prefixCreator: 'SY' - type: StationEmergencyShuttle - emergencyShuttlePath: /Maps/Shuttles/corvax_emergency.yml + emergencyShuttlePath: /Maps/Shuttles/emergency_omega.yml - type: StationJobs overflowJobs: - Passenger @@ -25,11 +28,11 @@ Botanist: [ 3, 3 ] Chef: [ 2, 2 ] Clown: [ 1, 1 ] - Janitor: [ 1, 1 ] + Janitor: [ 2, 2 ] Mime: [ 1, 1 ] Captain: [ 1, 1 ] IAA: [ 1, 1 ] - Reporter: [ 2, 2 ] + Reporter: [ 1, 1 ] HeadOfPersonnel: [ 1, 1 ] ChiefEngineer: [ 1, 1 ] StationEngineer: [ 4, 4 ] @@ -48,7 +51,7 @@ Musician: [ 1, 1 ] AtmosphericTechnician: [ 3, 3 ] TechnicalAssistant: [ 2, 2 ] - ResearchAssistant: [ 1, 2 ] + ResearchAssistant: [ 2, 2 ] MedicalIntern: [ 2, 2 ] ServiceWorker: [ 2, 2 ] SecurityCadet: [ 2, 2 ] diff --git a/Resources/Prototypes/Damage/modifier_sets.yml b/Resources/Prototypes/Damage/modifier_sets.yml index 0db13274311..02223b6a9fe 100644 --- a/Resources/Prototypes/Damage/modifier_sets.yml +++ b/Resources/Prototypes/Damage/modifier_sets.yml @@ -242,7 +242,7 @@ Piercing: 0.2 Shock: 0.0 Cold: 0.0 - Heat: -1 # heat damage cauterizes wounds, but will still hurt obviously. + Heat: -0.5 # heat damage cauterizes wounds, but will still hurt obviously. Poison: 0.0 Radiation: 0.0 Asphyxiation: 0.0 diff --git a/Resources/Prototypes/DeviceLinking/source_ports.yml b/Resources/Prototypes/DeviceLinking/source_ports.yml index 18b9b831e6b..1988f29e45c 100644 --- a/Resources/Prototypes/DeviceLinking/source_ports.yml +++ b/Resources/Prototypes/DeviceLinking/source_ports.yml @@ -45,6 +45,11 @@ description: signal-port-description-doorstatus defaultLinks: [ DoorBolt ] +- type: sourcePort + id: DockStatus + name: signal-port-name-dockstatus + description: signal-port-description-dockstatus + - type: sourcePort id: OrderSender name: signal-port-name-order-sender diff --git a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml index 2462d3d0411..66a9c60511b 100644 --- a/Resources/Prototypes/Entities/Clothing/Belt/belts.yml +++ b/Resources/Prototypes/Entities/Clothing/Belt/belts.yml @@ -31,6 +31,7 @@ - AppraisalTool - JawsOfLife - GPS + - WeldingMask components: - SprayPainter - NetworkConfigurator @@ -482,6 +483,10 @@ - Handcuff - BallisticAmmoProvider - CartridgeAmmo + - DoorRemote + - Whistle + - HolosignProjector + - BalloonPopper - type: ItemMapper mapLayers: flashbang: @@ -612,7 +617,7 @@ sprite: Clothing/Belt/securitywebbing.rsi - type: Clothing sprite: Clothing/Belt/securitywebbing.rsi - + - type: entity parent: ClothingBeltStorageBase id: ClothingBeltMercWebbing diff --git a/Resources/Prototypes/Entities/Clothing/Head/welding.yml b/Resources/Prototypes/Entities/Clothing/Head/welding.yml index cd5c63d7ec7..c0ae440a56e 100644 --- a/Resources/Prototypes/Entities/Clothing/Head/welding.yml +++ b/Resources/Prototypes/Entities/Clothing/Head/welding.yml @@ -19,6 +19,7 @@ - type: Tag tags: - WhitelistChameleon + - WeldingMask - type: HideLayerClothing slots: - Snout @@ -37,6 +38,7 @@ tags: - HamsterWearable - WhitelistChameleon + - WeldingMask - type: entity parent: WeldingMaskBase diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml index ff9e5124328..f8fc2998d7f 100644 --- a/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml @@ -32,6 +32,7 @@ - DrinkBloodyMaryGlass - DrinkBooger - DrinkBraveBullGlass + - BudgetInsulsDrinkGlass - DrinkCarrotJuice - DrinkCoconutRum - DrinkChocolateGlass @@ -57,6 +58,7 @@ - DrinkIcedGreenTeaGlass - DrinkIcedBeerGlass - DrinkIceCreamGlass + - IrishBoolGlass - DrinkIrishCarBomb - DrinkIrishCoffeeGlass - DrinkLemonadeGlass @@ -78,6 +80,7 @@ - DrinkRewriter - DrinkRoyRogersGlass - DrinkRootBeerFloatGlass + - RubberneckGlass - DrinkRumGlass - DrinkSakeGlass - DrinkSbitenGlass @@ -91,12 +94,15 @@ - DrinkThreeMileIslandGlass - DrinkToxinsSpecialGlass - DrinkVodkaMartiniGlass + - DrinkVodkaRedBool - DrinkVodkaTonicGlass - DrinkWatermelonJuice + - DrinkWatermelonWakeup - DrinkWhiskeyColaGlass - DrinkWhiskeySodaGlass - DrinkWhiteRussianGlass - DrinkWineGlass + - XenoBasherGlass - DrinkShakeBlue - DrinkShakeWhite - DrinkTheMartinez diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml index d4cc4b00e31..6ec5f8999a1 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_facial_hair.yml @@ -1,40 +1,44 @@ - type: marking - id: VoxFacialHairColonel + id: VoxFacialHairBeard bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_colonel_s + state: beard_s + - type: marking - id: VoxFacialHairFu + id: VoxFacialHairColonel bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_fu_s + state: colonel_s + - type: marking - id: VoxFacialHairNeck + id: VoxFacialHairFu bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_neck_s + state: fu_s + - type: marking - id: VoxFacialHairBeard + id: VoxFacialHairMane bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_beard_s + state: mane_s + - type: marking - id: VoxFacialHairRuffBeard + id: VoxFacialHairNeck bodyPart: FacialHair markingCategory: FacialHair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_facial_hair.rsi - state: vox_ruff_beard_s + state: neck_s diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml index 975de63204d..9a847b40a99 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_hair.yml @@ -1,91 +1,102 @@ - type: marking - id: VoxHairShortQuills + id: VoxHairAfro bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_shortquills_s + state: afro_s + - type: marking - id: VoxHairKingly + id: VoxHairBraids bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_kingly_s + state: braid_s + - type: marking - id: VoxHairAfro + id: VoxHairCrestedQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_afro_s + state: crestedquills_s + - type: marking - id: VoxHairMohawk + id: VoxHairEmperorQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_mohawk_s + state: emperorquills_s + - type: marking - id: VoxHairYasuhiro + id: VoxHairFlowing bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_yasu_s + state: flowing_s + - type: marking - id: VoxHairHorns + id: VoxHairHawk bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_horns_s + state: hawk_s + - type: marking - id: VoxHairNights + id: VoxHairHorns bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_nights_s + state: horns_s + - type: marking - id: VoxHairSurf + id: VoxHairKeelQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_surf_s + state: keelquills_s + - type: marking - id: VoxHairCropped + id: VoxHairKeetQuills bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_cropped_s + state: keetquills_s + - type: marking - id: VoxHairRuffhawk + id: VoxHairKingly bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_ruff_hawk_s + state: kingly_s + - type: marking - id: VoxHairRows + id: VoxHairLongBraid bodyPart: Hair markingCategory: Hair speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_rows_s + state: afro_s + - type: marking id: VoxHairMange bodyPart: Hair @@ -93,7 +104,26 @@ speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_mange_s + state: mange_s + +- type: marking + id: VoxHairMohawk + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: mohawk_s + +- type: marking + id: VoxHairNights + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: nights_s + - type: marking id: VoxHairPony bodyPart: Hair @@ -101,4 +131,67 @@ speciesRestriction: [Vox] sprites: - sprite: Mobs/Customization/vox_hair.rsi - state: vox_pony_s + state: ponytail_s + +- type: marking + id: VoxHairRazorClipped + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: razor_clipped_s + +- type: marking + id: VoxHairRazor + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: razor_s + +- type: marking + id: VoxHairSortBraid + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: short_braid_s + +- type: marking + id: VoxHairShortQuills + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: shortquills_s + +- type: marking + id: VoxHairSurf + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: surf_s + +- type: marking + id: VoxHairTielQuills + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: tielquills_s + +- type: marking + id: VoxHairYasu + bodyPart: Hair + markingCategory: Hair + speciesRestriction: [Vox] + sprites: + - sprite: Mobs/Customization/vox_hair.rsi + state: yasu_s \ No newline at end of file diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml new file mode 100644 index 00000000000..c61cfea0c60 --- /dev/null +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/vox_tattoos.yml @@ -0,0 +1,55 @@ +- type: marking + id: TattooVoxHeartLeftArm + bodyPart: LArm + markingCategory: Arms + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: heart_l_arm + +- type: marking + id: TattooVoxHeartRightArm + bodyPart: RArm + markingCategory: Arms + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: heart_r_arm + +- type: marking + id: TattooVoxHiveChest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: hive_s + +- type: marking + id: TattooVoxNightlingChest + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Vox] + coloring: + default: + type: + !type:TattooColoring + fallbackColor: "#666666" + sprites: + - sprite: Mobs/Customization/vox_tattoos.rsi + state: nightling_s diff --git a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml index 600e5cbe5b2..775678b4cd7 100644 --- a/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml +++ b/Resources/Prototypes/Entities/Mobs/NPCs/slimes.yml @@ -149,6 +149,16 @@ noSpawn: true components: # they portable... + - type: MovementSpeedModifier + baseWalkSpeed: 3 + baseSprintSpeed: 5 # +.5 from normal movement speed + - type: MobThresholds + thresholds: + 0: Alive + 80: Dead # weak af tho + - type: NpcFactionMember + factions: + - NanoTrasen - type: MultiHandedItem - type: Item size: Huge diff --git a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml index b9f265e0bcf..b332f573fb5 100644 --- a/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml +++ b/Resources/Prototypes/Entities/Mobs/Player/reptilian.yml @@ -1,6 +1,7 @@ - type: entity save: false - name: Urisst' Mzhand + name: Urist McScales + suffix: Urisst' Mzhand parent: BaseMobReptilian id: MobReptilian diff --git a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml index a729eed9c8f..42814f7fd87 100644 --- a/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml +++ b/Resources/Prototypes/Entities/Objects/Consumable/Drinks/drinks.yml @@ -503,6 +503,22 @@ sprite: Objects/Consumable/Drinks/bravebullglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: BudgetInsulsDrinkGlass + suffix: budget insuls + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: BudgetInsulsDrink + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/budgetinsulsdrink.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkCarrotJuice @@ -535,6 +551,22 @@ sprite: Objects/Consumable/Drinks/chocolateglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: RubberneckGlass + suffix: rubberneck + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: Rubberneck + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/rubberneck.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkCoconutRum @@ -1061,6 +1093,22 @@ sprite: Objects/Consumable/Drinks/icecreamglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: IrishBoolGlass + suffix: irish bool + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: IrishBool + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/beerglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkIrishCarBomb @@ -2054,6 +2102,22 @@ sprite: Objects/Consumable/Drinks/martiniglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: DrinkVodkaRedBool + suffix: vodka red bool + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: VodkaRedBool + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/ginvodkaglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkVodkaTonicGlass @@ -2100,6 +2164,22 @@ - ReagentId: JuiceWatermelon Quantity: 30 +- type: entity + parent: DrinkGlass + id: DrinkWatermelonWakeup + suffix: watermelon wakeup + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: WatermelonWakeup + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/champagneglass.rsi + state: icon + - type: entity parent: DrinkGlass id: DrinkWhiskeyColaGlass @@ -2180,6 +2260,22 @@ sprite: Objects/Consumable/Drinks/wineglass.rsi state: icon +- type: entity + parent: DrinkGlass + id: XenoBasherGlass + suffix: xeno basher + components: + - type: SolutionContainerManager + solutions: + drink: + maxVol: 30 + reagents: + - ReagentId: XenoBasher + Quantity: 30 + - type: Icon + sprite: Objects/Consumable/Drinks/xenobasher.rsi + state: icon + # TODO: MOVE - type: entity diff --git a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml index b104b5787ad..4d36af44592 100644 --- a/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml +++ b/Resources/Prototypes/Entities/Objects/Devices/pinpointer.yml @@ -106,5 +106,5 @@ - type: Icon state: pinpointer-station - type: Pinpointer - component: BecomesStation + component: ResearchServer targetName: the station diff --git a/Resources/Prototypes/Entities/Objects/Fun/whistles.yml b/Resources/Prototypes/Entities/Objects/Fun/whistles.yml index 10c41efc54a..667d5da11ca 100644 --- a/Resources/Prototypes/Entities/Objects/Fun/whistles.yml +++ b/Resources/Prototypes/Entities/Objects/Fun/whistles.yml @@ -6,8 +6,12 @@ description: Someone forgot to turn off kettle? components: - type: Item + sprite: Objects/Fun/whistles.rsi size: Tiny + - type: Sprite + sprite: Objects/Fun/whistles.rsi - type: Clothing + sprite: Objects/Fun/whistles.rsi quickEquip: false slots: neck - type: UseDelay @@ -16,7 +20,14 @@ sound: collection: BaseWhistle - type: Whistle - distance: 5 + distance: 3 + +- type: entity + parent: BaseWhistle + id: Whistle + components: + - type: Sprite + state: whistle - type: entity parent: BaseWhistle @@ -24,10 +35,11 @@ description: Sound of it make you feel fear. components: - type: Sprite - sprite: Objects/Fun/whistle.rsi - state: securityWhistle - - type: Item - sprite: Objects/Fun/whistle.rsi + state: sec + - type: Clothing + equippedPrefix: sec + - type: Whistle + distance: 5 - type: entity parent: BaseWhistle @@ -36,13 +48,9 @@ description: A whistle used by Syndicate commanders to draw attention. Avanti! components: - type: Sprite - sprite: Clothing/Neck/Misc/whistles.rsi - state: icon + state: trench - type: Clothing - sprite: Clothing/Neck/Misc/whistles.rsi - quickEquip: False - slots: - - neck + equippedPrefix: trench - type: EmitSoundOnUse sound: collection: TrenchWhistle diff --git a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml index 83c325d5d8e..3f892d924e4 100644 --- a/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml +++ b/Resources/Prototypes/Entities/Objects/Misc/fluff_lights.yml @@ -215,6 +215,11 @@ enabled: false radius: 8 energy: 5 + - type: ItemSlots + slots: + cell_slot: + name: power-cell-slot-component-slot-name-default + startingItem: PowerCellMedium - type: Anchorable - type: Damageable damageContainer: Inorganic diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml index 3005f6b947a..6fdb77fe5fc 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-bottles.yml @@ -42,6 +42,8 @@ - type: SolutionTransfer maxTransferAmount: 30 canChangeTransferAmount: true + - type: SolutionItemStatus + solution: drink - type: UserInterface interfaces: enum.TransferAmountUiKey.Key: diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml index ed36861bb26..39a35dba8c6 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry-vials.yml @@ -48,6 +48,8 @@ - type: SolutionTransfer maxTransferAmount: 30 canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: enum.TransferAmountUiKey.Key: diff --git a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml index db81ebbe497..ce0e0b629a3 100644 --- a/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml +++ b/Resources/Prototypes/Entities/Objects/Specific/chemistry.yml @@ -136,6 +136,8 @@ solution: beaker - type: SolutionTransfer canChangeTransferAmount: true + - type: SolutionItemStatus + solution: beaker - type: UserInterface interfaces: enum.TransferAmountUiKey.Key: diff --git a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml index 65942e330ea..7bdd32f4579 100644 --- a/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml +++ b/Resources/Prototypes/Entities/Objects/Tools/gas_tanks.yml @@ -1,4 +1,4 @@ -- type: entity +- type: entity abstract: true parent: BaseItem id: GasTankBase @@ -238,3 +238,6 @@ outputPressure: 101.3 - type: Clothing sprite: Objects/Tanks/plasma.rsi + slots: + - Belt + - suitStorage diff --git a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml index 5d6b1088f12..43d1228a408 100644 --- a/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml +++ b/Resources/Prototypes/Entities/Structures/Doors/Airlocks/shuttle.yml @@ -6,6 +6,11 @@ description: Necessary for connecting two space craft together. components: - type: Docking + - type: DockingSignalControl + - type: DeviceLinkSource + ports: + - DoorStatus + - DockStatus - type: Fixtures fixtures: fix1: @@ -75,7 +80,6 @@ suffix: Glass, Docking description: Necessary for connecting two space craft together. components: - - type: Docking - type: Sprite sprite: Structures/Doors/Airlocks/Glass/shuttle.rsi snapCardinals: false @@ -127,7 +131,6 @@ suffix: Glass, Docking description: Necessary for connecting two space craft together. components: - - type: Docking - type: Sprite sprite: Structures/Doors/Airlocks/Glass/shuttle_syndicate.rsi snapCardinals: false diff --git a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml index 167b3762141..436eaa2697f 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/base_lighting.yml @@ -91,7 +91,7 @@ bulb: Tube damage: types: - Heat: 5 + Heat: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot @@ -132,7 +132,7 @@ hasLampOnSpawn: LightTube damage: types: - Heat: 5 + Heat: 2 - type: AmbientOnPowered - type: AmbientSound volume: -15 @@ -151,7 +151,7 @@ hasLampOnSpawn: LedLightTube damage: types: - Heat: 2.5 + Heat: 1 #LEDs don't get as hot - type: PointLight radius: 15 energy: 1 @@ -173,19 +173,19 @@ - type: entity id: PoweredlightExterior description: "A light fixture. Draws power and produces light when equipped with a light tube." - suffix: Blue + suffix: Exterior parent: Poweredlight components: - type: PoweredLight hasLampOnSpawn: ExteriorLightTube damage: types: - Heat: 5 + Heat: 4 #brighter light gets hotter - type: entity parent: AlwaysPoweredWallLight id: AlwaysPoweredLightExterior - suffix: Always Powered, Blue + suffix: Always Powered, Exterior components: - type: PointLight radius: 12 @@ -204,7 +204,7 @@ hasLampOnSpawn: SodiumLightTube damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 10 energy: 2.5 @@ -291,7 +291,7 @@ bulb: Bulb damage: types: - Heat: 5 + Heat: 2 - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork @@ -330,7 +330,7 @@ hasLampOnSpawn: LedLightBulb damage: types: - Heat: 2.5 + Heat: 1 - type: entity id: PoweredSmallLight @@ -345,7 +345,7 @@ hasLampOnSpawn: LightBulb damage: types: - Heat: 5 + Heat: 2 #Emergency Lights - type: entity @@ -400,7 +400,7 @@ hasLampOnSpawn: LightTubeCrystalCyan damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -427,7 +427,7 @@ hasLampOnSpawn: LightTubeCrystalBlue damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -454,7 +454,7 @@ hasLampOnSpawn: LightTubeCrystalPink damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -481,7 +481,7 @@ hasLampOnSpawn: LightTubeCrystalOrange damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -508,7 +508,7 @@ hasLampOnSpawn: LightTubeCrystalRed damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 @@ -535,7 +535,7 @@ hasLampOnSpawn: LightTubeCrystalGreen damage: types: - Heat: 5 + Heat: 2 - type: PointLight radius: 8 energy: 3 diff --git a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml index 34a6f08294e..2afde4ef3fc 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/ground_lighting.yml @@ -79,7 +79,7 @@ bulb: Tube damage: types: - Heat: 20 + Heat: 2 - type: ContainerContainer containers: light_bulb: !type:ContainerSlot @@ -124,7 +124,7 @@ hasLampOnSpawn: LightTube damage: types: - Heat: 20 + Heat: 2 - type: StaticPrice price: 25 - type: AmbientOnPowered @@ -153,7 +153,7 @@ hasLampOnSpawn: LedLightTube damage: types: - Heat: 20 + Heat: 1 - type: StaticPrice price: 25 - type: AmbientOnPowered diff --git a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml index 8eceb76b639..72f54396469 100644 --- a/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml +++ b/Resources/Prototypes/Entities/Structures/Lighting/strobe_lighting.yml @@ -89,7 +89,7 @@ on: false damage: types: - Heat: 5 + Heat: 2 - type: ApcPowerReceiver - type: ExtensionCableReceiver - type: DeviceNetwork @@ -145,4 +145,4 @@ volume: 0 range: 10 sound: - path: "/Audio/Effects/Lightning/strobeepsilon.ogg" \ No newline at end of file + path: "/Audio/Effects/Lightning/strobeepsilon.ogg" diff --git a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml index 6a351d47f0b..8b2cb5d5c7b 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/Computers/arcades.yml @@ -129,6 +129,7 @@ - PlushiePenguin - PlushieHuman - ClothingHeadHatCowboyRed + - Whistle - type: WiresPanel - type: Wires layoutId: Arcade diff --git a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml index b9a7be219b2..7305cf27f95 100644 --- a/Resources/Prototypes/Entities/Structures/Machines/lathe.yml +++ b/Resources/Prototypes/Entities/Structures/Machines/lathe.yml @@ -165,7 +165,6 @@ emagStaticRecipes: - BoxLethalshot - BoxShotgunFlare - - GrenadeBlast - MagazineBoxLightRifle - MagazineBoxMagnum - MagazineBoxPistol @@ -187,6 +186,7 @@ - BoxBeanbag - BoxShotgunIncendiary - BoxShotgunUranium + - GrenadeBlast - GrenadeEMP - GrenadeFlash - MagazineBoxLightRifleIncendiary @@ -712,6 +712,7 @@ - BoxShotgunUranium - ExplosivePayload - FlashPayload + - GrenadeBlast - GrenadeEMP - GrenadeFlash - HoloprojectorSecurity @@ -732,6 +733,7 @@ - MagazineRifleUranium - MagazineShotgunBeanbag - MagazineShotgunIncendiary + - PortableRecharger - PowerCageHigh - PowerCageMedium - PowerCageSmall @@ -754,14 +756,6 @@ - WeaponLaserCannon - WeaponLaserCarbine - WeaponXrayCannon - - PowerCageSmall - - PowerCageMedium - - PowerCageHigh - - ShuttleGunSvalinnMachineGunCircuitboard - - ShuttleGunPerforatorCircuitboard - - ShuttleGunFriendshipCircuitboard - - ShuttleGunDusterCircuitboard - - PortableRecharger - type: MaterialStorage whitelist: tags: diff --git a/Resources/Prototypes/Flavors/flavors.yml b/Resources/Prototypes/Flavors/flavors.yml index 47a1bc71aa6..73ded93e0f2 100644 --- a/Resources/Prototypes/Flavors/flavors.yml +++ b/Resources/Prototypes/Flavors/flavors.yml @@ -589,6 +589,36 @@ flavorType: Complex description: flavor-complex-irish-car-bomb +- type: flavor + id: vodkaredbool + flavorType: Complex + description: flavor-complex-vodka-red-bool + +- type: flavor + id: xenobasher + flavorType: Complex + description: flavor-complex-xeno-basher + +- type: flavor + id: irishbool + flavorType: Complex + description: flavor-complex-irish-bool + +- type: flavor + id: budgetinsulsdrink + flavorType: Complex + description: flavor-complex-budget-insuls-drink + +- type: flavor + id: watermelonwakeup + flavorType: Complex + description: flavor-complex-watermelon-wakeup + +- type: flavor + id: rubberneck + flavorType: Complex + description: flavor-complex-rubberneck + - type: flavor id: blackrussian flavorType: Complex diff --git a/Resources/Prototypes/GameRules/cargo_gifts.yml b/Resources/Prototypes/GameRules/cargo_gifts.yml index 799805272d6..3787f4e6034 100644 --- a/Resources/Prototypes/GameRules/cargo_gifts.yml +++ b/Resources/Prototypes/GameRules/cargo_gifts.yml @@ -4,7 +4,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 startDelay: 10 duration: 120 earliestStart: 20 @@ -24,11 +24,10 @@ noSpawn: true components: - type: StationEvent - weight: 6 + weight: 2 startDelay: 10 duration: 240 - minimumPlayers: 50 - earliestStart: 40 + earliestStart: 20 - type: CargoGiftsRule description: cargo-gift-pizza-large sender: cargo-gift-default-sender @@ -44,7 +43,7 @@ noSpawn: true components: - type: StationEvent - weight: 4 + weight: 5 startDelay: 10 duration: 240 earliestStart: 30 @@ -90,7 +89,7 @@ noSpawn: true components: - type: StationEvent - weight: 8 + weight: 6 startDelay: 10 duration: 120 minimumPlayers: 30 @@ -132,7 +131,7 @@ noSpawn: true components: - type: StationEvent - weight: 6 + weight: 4 startDelay: 10 duration: 120 earliestStart: 10 @@ -154,7 +153,7 @@ noSpawn: true components: - type: StationEvent - weight: 3 + weight: 4 startDelay: 10 duration: 120 earliestStart: 20 @@ -174,7 +173,7 @@ noSpawn: true components: - type: StationEvent - weight: 2 + weight: 3 startDelay: 10 duration: 120 earliestStart: 20 diff --git a/Resources/Prototypes/GameRules/events.yml b/Resources/Prototypes/GameRules/events.yml index 939dafa657c..3ba80566e63 100644 --- a/Resources/Prototypes/GameRules/events.yml +++ b/Resources/Prototypes/GameRules/events.yml @@ -4,7 +4,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 8 startDelay: 30 duration: 35 startAudio: # Corvax-Announcements @@ -19,7 +19,7 @@ noSpawn: true components: - type: StationEvent - weight: 5 + weight: 8 startDelay: 30 duration: 35 startAudio: # Corvax-Announcements @@ -34,7 +34,7 @@ noSpawn: true components: - type: StationEvent - weight: 1 + weight: 2 reoccurrenceDelay: 5 earliestStart: 1 duration: 1 @@ -46,7 +46,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 7 duration: 1 minimumPlayers: 15 - type: BreakerFlipRule @@ -59,7 +59,7 @@ - type: StationEvent startAnnouncement: station-event-bureaucratic-error-announcement minimumPlayers: 25 - weight: 5 + weight: 3 duration: 1 - type: BureaucraticErrorRule @@ -81,7 +81,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 duration: 1 minimumPlayers: 10 - type: RandomEntityStorageSpawnRule @@ -93,10 +93,10 @@ noSpawn: true components: - type: StationEvent - weight: 5 + weight: 6.5 duration: 1 - earliestStart: 45 - reoccurrenceDelay: 60 + earliestStart: 40 + reoccurrenceDelay: 20 minimumPlayers: 20 - type: RandomSpawnRule prototype: SpawnPointGhostDragon @@ -107,11 +107,11 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 6 duration: 1 earliestStart: 30 - reoccurrenceDelay: 60 - minimumPlayers: 40 + reoccurrenceDelay: 20 + minimumPlayers: 30 - type: NinjaSpawnRule - type: entity @@ -127,15 +127,16 @@ - type: RandomSpawnRule prototype: MobRevenant -- type: entity - id: FalseAlarm - parent: BaseGameRule - noSpawn: true - components: - - type: StationEvent - weight: 15 - duration: 1 - - type: FalseAlarmRule +# disabled until event is rewritten to be more interesting +#- type: entity +# id: FalseAlarm +# parent: BaseGameRule +# noSpawn: true +# components: +# - type: StationEvent +# weight: 15 +# duration: 1 +# - type: FalseAlarmRule - type: entity id: GasLeak @@ -149,13 +150,11 @@ params: volume: -4 endAnnouncement: station-event-gas-leak-end-announcement + weight: 8 endAudio: path: /Audio/Announcements/gasleak_end.ogg # Corvax-Announcements params: volume: -4 - earliestStart: 10 - minimumPlayers: 5 - weight: 10 startDelay: 20 - type: GasLeakRule @@ -167,7 +166,7 @@ - type: StationEvent earliestStart: 15 minimumPlayers: 15 - weight: 5 + weight: 7 startDelay: 50 duration: 240 - type: KudzuGrowthRule @@ -205,9 +204,8 @@ startAudio: path: /Audio/Announcements/attention.ogg startDelay: 10 - earliestStart: 30 - minimumPlayers: 35 - weight: 5 + earliestStart: 15 + weight: 6 duration: 50 - type: VentCrittersRule entries: @@ -221,7 +219,7 @@ prob: 0.001 specialEntries: - id: SpawnPointGhostRatKing - prob: 0.005 + prob: 0.008 - type: entity id: CockroachMigration @@ -233,7 +231,7 @@ startAudio: path: /Audio/Announcements/attention.ogg startDelay: 10 - weight: 5 + weight: 6 duration: 50 - type: VentCrittersRule entries: @@ -248,7 +246,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 5 startAnnouncement: station-event-power-grid-check-start-announcement endAnnouncement: station-event-power-grid-check-end-announcement startAudio: @@ -266,8 +264,9 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 6 duration: 1 + maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it startAudio: path: /Audio/Announcements/sentience.ogg # Corvax-Announcements params: @@ -280,7 +279,7 @@ noSpawn: true components: - type: StationEvent - weight: 10 + weight: 8 startAnnouncement: station-event-solar-flare-start-announcement endAnnouncement: station-event-solar-flare-end-announcement startAudio: # Corvax-Announcements @@ -323,31 +322,6 @@ duration: 60 - type: VentClogRule -- type: entity - id: VentCritters - parent: BaseGameRule - noSpawn: true - components: - - type: StationEvent - startAnnouncement: station-event-vent-creatures-start-announcement - startAudio: - path: /Audio/Announcements/attention.ogg - startDelay: 10 - earliestStart: 15 - minimumPlayers: 15 - weight: 5 - duration: 60 - - type: VentCrittersRule - entries: - - id: MobMouse - prob: 0.02 - - id: MobMouse1 - prob: 0.02 - - id: MobMouse2 - prob: 0.02 - - id: MobMouseCancer - prob: 0.001 - - type: entity id: SlimesSpawn parent: BaseGameRule @@ -401,8 +375,8 @@ path: /Audio/Announcements/attention.ogg startDelay: 10 earliestStart: 20 - minimumPlayers: 15 - weight: 1 + minimumPlayers: 20 + weight: 1.5 duration: 60 - type: VentCrittersRule entries: @@ -416,8 +390,8 @@ components: - type: StationEvent earliestStart: 50 - minimumPlayers: 15 - weight: 3 + minimumPlayers: 30 + weight: 2 duration: 1 - type: ZombieRule - type: AntagSelection @@ -449,10 +423,9 @@ noSpawn: true components: - type: StationEvent - earliestStart: 45 - weight: 5 + earliestStart: 35 + weight: 5.5 minimumPlayers: 20 - reoccurrenceDelay: 30 duration: 1 - type: LoadMapRule mapPath: /Maps/Shuttles/striker.yml @@ -478,15 +451,41 @@ - type: NukeopsRole prototype: Nukeops +- type: entity + id: SleeperAgentsRule + parent: BaseGameRule + noSpawn: true + components: + - type: StationEvent + earliestStart: 25 + weight: 8 + minimumPlayers: 15 + reoccurrenceDelay: 30 + startAnnouncement: station-event-communication-interception + startAudio: + path: /Audio/Announcements/intercept.ogg + - type: AlertLevelInterceptionRule + - type: TraitorRule + - type: AntagSelection + definitions: + - prefRoles: [ Traitor ] + min: 1 + max: 2 + playerRatio: 10 + mindComponents: + - type: TraitorRole + prototype: Traitor + - type: entity id: MassHallucinations parent: BaseGameRule noSpawn: true components: - type: StationEvent - weight: 10 + weight: 7 duration: 150 maxDuration: 300 + reoccurrenceDelay: 30 - type: MassHallucinationsRule minTimeBetweenIncidents: 0.1 maxTimeBetweenIncidents: 300 @@ -500,12 +499,12 @@ noSpawn: true components: - type: StationEvent - endAnnouncement: station-event-immovable-rod-start-announcement - endAudio: + startAnnouncement: station-event-immovable-rod-start-announcement + startAudio: path: /Audio/Announcements/attention.ogg - weight: 5 - duration: 25 - earliestStart: 45 + weight: 3.5 + duration: 1 + earliestStart: 30 minimumPlayers: 20 - type: ImmovableRodRule rodPrototypes: @@ -540,7 +539,7 @@ id: IonStorm components: - type: StationEvent - weight: 10 + weight: 8 reoccurrenceDelay: 20 duration: 1 - type: IonStormRule @@ -553,5 +552,6 @@ - type: StationEvent earliestStart: 0 minimumPlayers: 20 + maxOccurrences: 1 # this event has diminishing returns on interesting-ness, so we cap it weight: 5 - type: MobReplacementRule diff --git a/Resources/Prototypes/GameRules/midround.yml b/Resources/Prototypes/GameRules/midround.yml index 47df0aaf807..105f6a3624b 100644 --- a/Resources/Prototypes/GameRules/midround.yml +++ b/Resources/Prototypes/GameRules/midround.yml @@ -43,7 +43,7 @@ playerRatio: 1 lateJoinAdditional: true allowNonHumans: true - multiAntagSetting: All + multiAntagSetting: NotExclusive startingGear: ThiefGear # components: # Corvax-MRP # - type: Pacified diff --git a/Resources/Prototypes/Maps/Pools/default.yml b/Resources/Prototypes/Maps/Pools/default.yml index 62e05c3a02b..245ccce4b7b 100644 --- a/Resources/Prototypes/Maps/Pools/default.yml +++ b/Resources/Prototypes/Maps/Pools/default.yml @@ -15,4 +15,4 @@ - Saltern - Packed - Reach - #- Train <- return after station anchoring PR is finished and merged + - Train diff --git a/Resources/Prototypes/Maps/train.yml b/Resources/Prototypes/Maps/train.yml index 3203a5b3872..efe60dea727 100644 --- a/Resources/Prototypes/Maps/train.yml +++ b/Resources/Prototypes/Maps/train.yml @@ -50,8 +50,8 @@ #security HeadOfSecurity: [ 1, 1 ] Warden: [ 1, 1 ] - SecurityOfficer: [ 4, 4 ] - SecurityCadet: [ 2, 3 ] + SecurityOfficer: [ 6, 6 ] + SecurityCadet: [ 3, 3 ] #Lawyer: [ 1, 2 ] # Corvax-IAA #supply Quartermaster: [ 1, 1 ] diff --git a/Resources/Prototypes/Polymorphs/polymorph.yml b/Resources/Prototypes/Polymorphs/polymorph.yml index ce89f41d374..582f69b744e 100644 --- a/Resources/Prototypes/Polymorphs/polymorph.yml +++ b/Resources/Prototypes/Polymorphs/polymorph.yml @@ -79,7 +79,7 @@ id: SlimeMorphGeras configuration: entity: MobSlimesGeras - transferName: false + transferName: true transferHumanoidAppearance: false inventory: Drop transferDamage: true diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml index 963e5fcf45a..8028b6376c8 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/alcohol.yml @@ -1769,3 +1769,165 @@ - !type:AdjustReagent reagent: Ethanol amount: 0.15 + +- type: reagent + id: VodkaRedBool + name: reagent-name-vodka-red-bool + parent: BaseAlcohol + desc: reagent-desc-vodka-red-bool + physicalDesc: reagent-physical-desc-strong-smelling + flavor: vodkaredbool + color: "#c4c27655" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/ginvodkaglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 + +- type: reagent + id: XenoBasher + name: reagent-name-xeno-basher + parent: BaseAlcohol + desc: reagent-desc-xeno-basher + physicalDesc: reagent-physical-desc-fizzy-and-creamy + flavor: xenobasher + color: "#4d6600" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/xenobasher.rsi + state: icon_empty + metamorphicMaxFillLevels: 2 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: IrishBool + name: reagent-name-irish-bool + parent: BaseAlcohol + desc: reagent-desc-irish-bool + physicalDesc: reagent-physical-desc-bubbly + flavor: irishbool + color: "#71672e99" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/beerglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 6 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.10 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: BudgetInsulsDrink + name: reagent-name-budget-insuls + parent: BaseAlcohol + desc: reagent-desc-budget-insuls + physicalDesc: reagent-physical-desc-strong-smelling + flavor: budgetinsulsdrink + color: "#dede73" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/budgetinsulsdrink.rsi + state: icon_empty + metamorphicMaxFillLevels: 3 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 + +- type: reagent + id: WatermelonWakeup + name: reagent-name-watermelon-wakeup + parent: BaseAlcohol + desc: reagent-desc-watermelon-wakeup + physicalDesc: reagent-physical-desc-sweet + flavor: watermelonwakeup + color: "#d49dca" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/champagneglass.rsi + state: icon_empty + metamorphicMaxFillLevels: 4 + metamorphicFillBaseName: fill- + metamorphicChangeColor: true + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.07 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.15 + +- type: reagent + id: Rubberneck + name: reagent-name-rubberneck + parent: BaseAlcohol + desc: reagent-desc-rubberneck + physicalDesc: reagent-physical-desc-strong-smelling + flavor: rubberneck + color: "#f0d74a" + metamorphicSprite: + sprite: Objects/Consumable/Drinks/rubberneck.rsi + state: icon_empty + metamorphicMaxFillLevels: 3 + metamorphicFillBaseName: fill- + metamorphicChangeColor: false + metabolisms: + Drink: + effects: + - !type:SatiateThirst + factor: 1 + - !type:AdjustReagent + reagent: Ethanol + amount: 0.15 + - !type:AdjustReagent + reagent: Theobromine + amount: 0.05 + fizziness: 0.25 diff --git a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml index f8d3f41af9b..d78b0351cee 100644 --- a/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml +++ b/Resources/Prototypes/Reagents/Consumable/Drink/soda.yml @@ -70,7 +70,7 @@ factor: 2 - !type:AdjustReagent reagent: Theobromine - amount: 0.05 + amount: 0.1 fizziness: 0.4 - type: reagent diff --git a/Resources/Prototypes/Recipes/Lathes/security.yml b/Resources/Prototypes/Recipes/Lathes/security.yml index 2ab8e18372e..1efbd3b42dc 100644 --- a/Resources/Prototypes/Recipes/Lathes/security.yml +++ b/Resources/Prototypes/Recipes/Lathes/security.yml @@ -678,9 +678,9 @@ result: GrenadeBlast completetime: 3 materials: - Steel: 150 - Plastic: 100 - Gold: 50 + Steel: 450 + Plastic: 300 + Gold: 150 - type: latheRecipe id: GrenadeFlash @@ -700,4 +700,4 @@ Uranium: 2000 Plastic: 1000 Plasma: 500 - Glass: 500 \ No newline at end of file + Glass: 500 diff --git a/Resources/Prototypes/Recipes/Reactions/drinks.yml b/Resources/Prototypes/Recipes/Reactions/drinks.yml index c810ebb0ce5..2a14c0ecd29 100644 --- a/Resources/Prototypes/Recipes/Reactions/drinks.yml +++ b/Resources/Prototypes/Recipes/Reactions/drinks.yml @@ -86,6 +86,16 @@ products: B52: 3 +- type: reaction + id: BudgetInsulsDrink + reactants: + Tequila: + amount: 1 + VodkaRedBool: + amount: 2 + products: + BudgetInsulsDrink: 3 + - type: reaction id: BlueHawaiian reactants: @@ -516,6 +526,16 @@ products: IcedTea: 3 +- type: reaction + id: IrishBool + reactants: + EnergyDrink: + amount: 1 + IrishCarBomb: + amount: 1 + products: + IrishBool: 2 + - type: reaction id: IrishCarBomb reactants: @@ -794,6 +814,18 @@ products: RoyRogers: 3 +- type: reaction + id: Rubberneck + reactants: + EnergyDrink: + amount: 2 + Moonshine: + amount: 1 + Sugar: + amount: 1 + products: + Rubberneck: 4 + - type: reaction id: Sbiten reactants: @@ -943,6 +975,16 @@ products: VodkaMartini: 3 +- type: reaction + id: VodkaRedBool + reactants: + Vodka: + amount: 1 + EnergyDrink: + amount: 2 + products: + VodkaRedBool: 3 + - type: reaction id: VodkaTonic reactants: @@ -963,6 +1005,18 @@ products: WhiskeyCola: 3 +- type: reaction + id: WatermelonWakeup + reactants: + JuiceWatermelon: + amount: 1 + Whiskey: + amount: 1 + EnergyDrink: + amount: 1 + products: + WatermelonWakeup: 3 + - type: reaction id: WhiteRussian reactants: @@ -983,6 +1037,16 @@ products: WhiskeySoda: 3 +- type: reaction + id: XenoBasher + reactants: + ManlyDorf: + amount: 2 + EnergyDrink: + amount: 1 + products: + XenoBasher: 3 + - type: reaction id: HotRamen minTemp: 323.15 diff --git a/Resources/Prototypes/Research/arsenal.yml b/Resources/Prototypes/Research/arsenal.yml index 6c0e94e9e5e..97b0c1e82b1 100644 --- a/Resources/Prototypes/Research/arsenal.yml +++ b/Resources/Prototypes/Research/arsenal.yml @@ -156,6 +156,7 @@ - PowerCageMedium - MagazineGrenadeEmpty - GrenadeFlash + - GrenadeBlast - ShuttleGunSvalinnMachineGunCircuitboard - ShuttleGunPerforatorCircuitboard - ShuttleGunFriendshipCircuitboard diff --git a/Resources/Prototypes/SoundCollections/expeditions.yml b/Resources/Prototypes/SoundCollections/expeditions.yml new file mode 100644 index 00000000000..526a16f3c2c --- /dev/null +++ b/Resources/Prototypes/SoundCollections/expeditions.yml @@ -0,0 +1,5 @@ +- type: soundCollection + id: ExpeditionEnd + files: + - /Audio/Expedition/tension_session.ogg + - /Audio/Expedition/deadline.ogg diff --git a/Resources/Prototypes/Traits/neutral.yml b/Resources/Prototypes/Traits/neutral.yml index ba9bd8d8868..d1e0afc83c1 100644 --- a/Resources/Prototypes/Traits/neutral.yml +++ b/Resources/Prototypes/Traits/neutral.yml @@ -23,3 +23,12 @@ description: trait-southern-desc components: - type: SouthernAccent + +- type: trait + id: Liar + name: trait-liar-name + description: trait-liar-desc + components: + - type: ReplacementAccent + replacementChance: 0.15 + accent: liar diff --git a/Resources/Prototypes/Voice/disease_emotes.yml b/Resources/Prototypes/Voice/disease_emotes.yml index d8b017a4074..79382e0eb60 100644 --- a/Resources/Prototypes/Voice/disease_emotes.yml +++ b/Resources/Prototypes/Voice/disease_emotes.yml @@ -7,6 +7,7 @@ - type: emote id: Cough name: chat-emote-name-cough + icon: Interface/Emotes/cough.png category: Vocal whitelist: components: @@ -50,6 +51,7 @@ - type: emote id: Yawn name: chat-emote-name-yawn + icon: Interface/Emotes/yawn.png category: Vocal whitelist: components: diff --git a/Resources/Prototypes/Voice/speech_emotes.yml b/Resources/Prototypes/Voice/speech_emotes.yml index 879d89d2094..6216f4bfadf 100644 --- a/Resources/Prototypes/Voice/speech_emotes.yml +++ b/Resources/Prototypes/Voice/speech_emotes.yml @@ -52,7 +52,7 @@ id: Laugh name: chat-emote-name-laugh category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/laugh.png whitelist: components: - Vocal @@ -110,7 +110,7 @@ id: Honk name: chat-emote-name-honk category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/honk.png whitelist: requireAll: true components: @@ -140,7 +140,7 @@ id: Sigh name: chat-emote-name-sigh category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/sigh.png whitelist: components: - Vocal @@ -168,7 +168,7 @@ id: Whistle name: chat-emote-name-whistle category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/whistle.png whitelist: components: - Vocal @@ -199,7 +199,7 @@ id: Crying name: chat-emote-name-crying category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/cry.png whitelist: components: - Vocal @@ -239,7 +239,7 @@ name: chat-emote-name-squish category: Vocal available: false - icon: Interface/Actions/scream.png + icon: Interface/Emotes/squish.png whitelist: components: - Vocal @@ -268,7 +268,7 @@ name: chat-emote-name-chitter category: Vocal available: false - icon: Interface/Actions/scream.png + icon: Interface/Emotes/chitter.png whitelist: components: - Vocal @@ -297,6 +297,7 @@ name: chat-emote-name-squeak category: Vocal available: false + icon: Interface/Emotes/squeak.png whitelist: components: - Vocal @@ -325,7 +326,7 @@ name: chat-emote-name-click category: Vocal available: false - icon: Interface/Actions/scream.png + icon: Interface/Emotes/click.png whitelist: components: - Vocal @@ -354,7 +355,7 @@ id: Clap name: chat-emote-name-clap category: Hands - icon: Interface/Actions/scream.png + icon: Interface/Emotes/clap.png whitelist: components: - Hands @@ -389,7 +390,7 @@ id: Snap name: chat-emote-name-snap category: Hands - icon: Interface/Actions/scream.png + icon: Interface/Emotes/snap.png whitelist: components: - Hands @@ -438,7 +439,7 @@ id: Salute name: chat-emote-name-salute category: Hands - icon: Interface/Actions/scream.png + icon: Interface/Emotes/salute.png whitelist: components: - Hands @@ -471,7 +472,7 @@ - type: emote id: DefaultDeathgasp name: chat-emote-name-deathgasp - icon: Interface/Actions/scream.png + icon: Interface/Emotes/deathgasp.png whitelist: components: - MobState @@ -482,14 +483,14 @@ - type: emote id: MonkeyDeathgasp name: chat-emote-name-deathgasp - icon: Interface/Actions/scream.png + icon: Interface/Emotes/deathgasp.png chatMessages: ["chat-emote-msg-deathgasp-monkey"] - type: emote id: Buzz name: chat-emote-name-buzz category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/buzz.png whitelist: requireAll: true components: @@ -525,13 +526,14 @@ id: Weh name: chat-emote-name-weh category: Vocal + icon: Interface/Emotes/weh.png chatMessages: [издаёт вех!] - type: emote id: Chirp name: chat-emote-name-chirp category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/chirp.png whitelist: requireAll: true components: @@ -561,7 +563,7 @@ id: Beep name: chat-emote-name-beep category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/beep.png whitelist: requireAll: true components: @@ -591,7 +593,7 @@ id: Chime name: chat-emote-name-chime category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/chime.png whitelist: requireAll: true components: @@ -621,7 +623,7 @@ id: Buzz-Two name: chat-emote-name-buzztwo category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/buzztwo.png whitelist: requireAll: true components: @@ -684,7 +686,7 @@ id: Ping name: chat-emote-name-ping category: Vocal - icon: Interface/Actions/scream.png + icon: Interface/Emotes/ping.png whitelist: requireAll: true components: diff --git a/Resources/Prototypes/lobbyscreens.yml b/Resources/Prototypes/lobbyscreens.yml index 5dac050fd1f..decee65b243 100644 --- a/Resources/Prototypes/lobbyscreens.yml +++ b/Resources/Prototypes/lobbyscreens.yml @@ -41,3 +41,7 @@ - type: lobbyBackground id: TerminalStation background: /Textures/LobbyScreens/terminalstation.webp + +- type: lobbyBackground + id: JustAWeekAway + background: /Textures/LobbyScreens/justaweekaway.webp \ No newline at end of file diff --git a/Resources/Prototypes/tags.yml b/Resources/Prototypes/tags.yml index 3424d5a4e59..253aa485653 100644 --- a/Resources/Prototypes/tags.yml +++ b/Resources/Prototypes/tags.yml @@ -1283,6 +1283,9 @@ - type: Tag id: WeaponShotgunKammerer +- type: Tag + id: WeldingMask + - type: Tag id: WetFloorSign diff --git a/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/equipped-EYES.png index 4d3465ff71f..dc4cba87dd2 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/equipped-EYES.png and b/Resources/Textures/Clothing/Eyes/Glasses/glasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/equipped-EYES.png index 5c26d746d98..46379d49147 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/equipped-EYES.png and b/Resources/Textures/Clothing/Eyes/Glasses/meson.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/science.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/science.rsi/equipped-EYES.png index beeec0ca505..de13a55e964 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/science.rsi/equipped-EYES.png and b/Resources/Textures/Clothing/Eyes/Glasses/science.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES.png index b5dd4a7ae06..fddb8233db5 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES.png and b/Resources/Textures/Clothing/Eyes/Glasses/secglasses.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/equipped-EYES.png index 7ae9028c33a..1252a9d62ac 100644 Binary files a/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/equipped-EYES.png and b/Resources/Textures/Clothing/Eyes/Glasses/thermal.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/equipped-EYES.png b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/equipped-EYES.png index d2af43448b7..f9cd7e67bfd 100644 Binary files a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/equipped-EYES.png and b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/equipped-EYES.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/icon.png b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/icon.png index 39823c84465..80b9c8699eb 100644 Binary files a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/icon.png and b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/icon.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-left.png b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-left.png index 7c9605a87b0..74455e96b50 100644 Binary files a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-left.png and b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-left.png differ diff --git a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-right.png b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-right.png index ec2b0de5c9a..02df73ce2ee 100644 Binary files a/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-right.png and b/Resources/Textures/Clothing/Eyes/Hud/beergoggles.rsi/inhand-right.png differ diff --git a/Resources/Textures/Interface/Emotes/attributions.yml b/Resources/Textures/Interface/Emotes/attributions.yml new file mode 100644 index 00000000000..125651e4194 --- /dev/null +++ b/Resources/Textures/Interface/Emotes/attributions.yml @@ -0,0 +1,117 @@ +# Attempted to keep the files in alphabetical order so its easier to audit. +# Finding individual authors is an unfeasible task. If you can reference the author please do so. + +- files: ["beep.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from borg_chest.png and borg_head.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["buzz.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bee texture (0.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["buzztwo.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bee texture (0.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chime.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing desk bell texture (normal.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chirp.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing nymph texture (icon.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["chitter.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from mothroach.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["clap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["click.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing crab.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["cough.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["cry.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["deathgasp.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["honk.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from existing bikehorn texture (icon.png) by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["laugh.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["ping.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["salute.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["sigh.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["snap.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["squeak.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from mouse-0.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["squish.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from blue_adult_slime.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["vocal.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" + +- files: ["weh.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from plushie_lizard.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["whistle.png"] + license: "CC-BY-SA-3.0" + copyright: "Modified from scream.png by TyAshley (AllenTheGreat)" + source: "https://github.com/TyAshley" + +- files: ["yawn.png"] + license: "CC-BY-SA-3.0" + copyright: "Created by TyAshley (AllenTheGreat) at commit 7f6c7cd82943dbc9a1fe8a79d6a924ac600b3fdb" + source: "https://github.com/TyAshley" diff --git a/Resources/Textures/Interface/Emotes/beep.png b/Resources/Textures/Interface/Emotes/beep.png new file mode 100644 index 00000000000..f59b0925ab5 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/beep.png differ diff --git a/Resources/Textures/Interface/Emotes/buzz.png b/Resources/Textures/Interface/Emotes/buzz.png new file mode 100644 index 00000000000..da7ac363a47 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/buzz.png differ diff --git a/Resources/Textures/Interface/Emotes/buzztwo.png b/Resources/Textures/Interface/Emotes/buzztwo.png new file mode 100644 index 00000000000..460a8868a52 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/buzztwo.png differ diff --git a/Resources/Textures/Interface/Emotes/chime.png b/Resources/Textures/Interface/Emotes/chime.png new file mode 100644 index 00000000000..ca595be5d3b Binary files /dev/null and b/Resources/Textures/Interface/Emotes/chime.png differ diff --git a/Resources/Textures/Interface/Emotes/chirp.png b/Resources/Textures/Interface/Emotes/chirp.png new file mode 100644 index 00000000000..57e8b671439 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/chirp.png differ diff --git a/Resources/Textures/Interface/Emotes/chitter.png b/Resources/Textures/Interface/Emotes/chitter.png new file mode 100644 index 00000000000..f6e11012237 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/chitter.png differ diff --git a/Resources/Textures/Interface/Emotes/clap.png b/Resources/Textures/Interface/Emotes/clap.png new file mode 100644 index 00000000000..a0ef9e1316a Binary files /dev/null and b/Resources/Textures/Interface/Emotes/clap.png differ diff --git a/Resources/Textures/Interface/Emotes/click.png b/Resources/Textures/Interface/Emotes/click.png new file mode 100644 index 00000000000..539aea7b928 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/click.png differ diff --git a/Resources/Textures/Interface/Emotes/cough.png b/Resources/Textures/Interface/Emotes/cough.png new file mode 100644 index 00000000000..cb1c2832acc Binary files /dev/null and b/Resources/Textures/Interface/Emotes/cough.png differ diff --git a/Resources/Textures/Interface/Emotes/cry.png b/Resources/Textures/Interface/Emotes/cry.png new file mode 100644 index 00000000000..2793a11b9dc Binary files /dev/null and b/Resources/Textures/Interface/Emotes/cry.png differ diff --git a/Resources/Textures/Interface/Emotes/deathgasp.png b/Resources/Textures/Interface/Emotes/deathgasp.png new file mode 100644 index 00000000000..e27d0bb5734 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/deathgasp.png differ diff --git a/Resources/Textures/Interface/Emotes/honk.png b/Resources/Textures/Interface/Emotes/honk.png new file mode 100644 index 00000000000..19441e4a0ee Binary files /dev/null and b/Resources/Textures/Interface/Emotes/honk.png differ diff --git a/Resources/Textures/Interface/Emotes/laugh.png b/Resources/Textures/Interface/Emotes/laugh.png new file mode 100644 index 00000000000..a688fdb4432 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/laugh.png differ diff --git a/Resources/Textures/Interface/Emotes/ping.png b/Resources/Textures/Interface/Emotes/ping.png new file mode 100644 index 00000000000..7408eb1f28f Binary files /dev/null and b/Resources/Textures/Interface/Emotes/ping.png differ diff --git a/Resources/Textures/Interface/Emotes/salute.png b/Resources/Textures/Interface/Emotes/salute.png new file mode 100644 index 00000000000..5727d8fd854 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/salute.png differ diff --git a/Resources/Textures/Interface/Emotes/sigh.png b/Resources/Textures/Interface/Emotes/sigh.png new file mode 100644 index 00000000000..ff49a56360f Binary files /dev/null and b/Resources/Textures/Interface/Emotes/sigh.png differ diff --git a/Resources/Textures/Interface/Emotes/snap.png b/Resources/Textures/Interface/Emotes/snap.png new file mode 100644 index 00000000000..ae6d81c19d8 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/snap.png differ diff --git a/Resources/Textures/Interface/Emotes/squeak.png b/Resources/Textures/Interface/Emotes/squeak.png new file mode 100644 index 00000000000..e32a89f5989 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/squeak.png differ diff --git a/Resources/Textures/Interface/Emotes/squish.png b/Resources/Textures/Interface/Emotes/squish.png new file mode 100644 index 00000000000..efa1ce6c5ea Binary files /dev/null and b/Resources/Textures/Interface/Emotes/squish.png differ diff --git a/Resources/Textures/Interface/Emotes/vocal.png b/Resources/Textures/Interface/Emotes/vocal.png new file mode 100644 index 00000000000..9b129ec4669 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/vocal.png differ diff --git a/Resources/Textures/Interface/Emotes/weh.png b/Resources/Textures/Interface/Emotes/weh.png new file mode 100644 index 00000000000..fea5ad3b731 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/weh.png differ diff --git a/Resources/Textures/Interface/Emotes/whistle.png b/Resources/Textures/Interface/Emotes/whistle.png new file mode 100644 index 00000000000..029a52af231 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/whistle.png differ diff --git a/Resources/Textures/Interface/Emotes/yawn.png b/Resources/Textures/Interface/Emotes/yawn.png new file mode 100644 index 00000000000..8130fc9ab44 Binary files /dev/null and b/Resources/Textures/Interface/Emotes/yawn.png differ diff --git a/Resources/Textures/LobbyScreens/attributions.yml b/Resources/Textures/LobbyScreens/attributions.yml index 3b81fc68fd4..1e35162cbfb 100644 --- a/Resources/Textures/LobbyScreens/attributions.yml +++ b/Resources/Textures/LobbyScreens/attributions.yml @@ -42,3 +42,8 @@ license: "CC-BY-SA-3.0" copyright: "aserovich on discord" source: "https://github.com/space-wizards/space-station-14" + +- files: ["justaweekaway.webp"] + license: "CC-BY-SA-3.0" + copyright: "plantyfern on discord" + source: "https://github.com/space-wizards/space-station-14" \ No newline at end of file diff --git a/Resources/Textures/LobbyScreens/justaweekaway.webp b/Resources/Textures/LobbyScreens/justaweekaway.webp new file mode 100644 index 00000000000..6e8205043c9 Binary files /dev/null and b/Resources/Textures/LobbyScreens/justaweekaway.webp differ diff --git a/Resources/Textures/LobbyScreens/justaweekaway.yml b/Resources/Textures/LobbyScreens/justaweekaway.yml new file mode 100644 index 00000000000..5c43e233050 --- /dev/null +++ b/Resources/Textures/LobbyScreens/justaweekaway.yml @@ -0,0 +1,2 @@ +sample: + filter: true diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png new file mode 100644 index 00000000000..92aeea8f360 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/beard_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/colonel_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/colonel_s.png new file mode 100644 index 00000000000..2e657d675af Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/colonel_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png new file mode 100644 index 00000000000..87f97eeaeeb Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/fu_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png new file mode 100644 index 00000000000..08b120f500e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/mane_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json index c52ad8a2a2e..64eebb88830 100644 --- a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/meta.json @@ -1 +1,31 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/vgstation-coders/vgstation13/blob/02ff588d59b3c560c685d9ca75e882d32a72d8cb/icons/mob/human_face.dmi", "states": [{"name": "vox_beard_s", "directions": 4}, {"name": "vox_colonel_s", "directions": 4}, {"name": "vox_fu_s", "directions": 4}, {"name": "vox_neck_s", "directions": 4}, {"name": "vox_ruff_beard_s", "directions": 4}, {"name": "vox_ruff_beard_s2", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/0f9ef5962f4422836c0a42f289fb24d018918cbc/icons/mob/sprite_accessories/vox/vox_facial_hair.dmi and greyscaled", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "colonel_s", + "directions": 4 + }, + { + "name": "fu_s", + "directions": 4 + }, + { + "name": "neck_s", + "directions": 4 + }, + { + "name": "beard_s", + "directions": 4 + }, + { + "name": "mane_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png new file mode 100644 index 00000000000..f630e8ce8bc Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/neck_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png deleted file mode 100644 index 8e922e58dea..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_beard_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png deleted file mode 100644 index 8de4dd68030..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_colonel_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_fu_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_fu_s.png deleted file mode 100644 index e49e84baf0d..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_fu_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png deleted file mode 100644 index 9009717cee3..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_neck_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png deleted file mode 100644 index 365f134c44f..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png b/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_facial_hair.rsi/vox_ruff_beard_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png new file mode 100644 index 00000000000..74b09a0635a Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/afro_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png new file mode 100644 index 00000000000..ff2aa4acbc7 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/braid_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/crestedquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/crestedquills_s.png new file mode 100644 index 00000000000..f089905438f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/crestedquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/emperorquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/emperorquills_s.png new file mode 100644 index 00000000000..899918e694c Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/emperorquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/flowing_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/flowing_s.png new file mode 100644 index 00000000000..98139350d4e Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/flowing_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/hawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/hawk_s.png new file mode 100644 index 00000000000..c262fc1d918 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/hawk_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png new file mode 100644 index 00000000000..8891151c9fd Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/horns_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png new file mode 100644 index 00000000000..c3c947bcce9 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keelquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png new file mode 100644 index 00000000000..910542dde13 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/keetquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png new file mode 100644 index 00000000000..1d0a1d8d894 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/kingly_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png new file mode 100644 index 00000000000..3df31052dbe Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/long_braid_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png new file mode 100644 index 00000000000..afa934e8807 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mange_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json index 2f141784244..9b08260bd64 100644 --- a/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/vox_hair.rsi/meta.json @@ -1 +1,99 @@ -{"version": 1, "size": {"x": 32, "y": 32}, "license": "CC-BY-SA-3.0", "copyright": "https://github.com/vgstation-coders/vgstation13/blob/02ff588d59b3c560c685d9ca75e882d32a72d8cb/icons/mob/human_face.dmi", "states": [{"name": "vox_afro_s", "directions": 4}, {"name": "vox_afro_s2", "directions": 4}, {"name": "vox_bald_s", "directions": 4}, {"name": "vox_cropped_s", "directions": 4}, {"name": "vox_cropped_s2", "directions": 4}, {"name": "vox_horns_s", "directions": 4}, {"name": "vox_horns_s2", "directions": 4}, {"name": "vox_kingly_s", "directions": 4}, {"name": "vox_kingly_s2", "directions": 4}, {"name": "vox_mange_s", "directions": 4}, {"name": "vox_mange_s2", "directions": 4}, {"name": "vox_mohawk_s", "directions": 4}, {"name": "vox_mohawk_s2", "directions": 4}, {"name": "vox_nights_s", "directions": 4}, {"name": "vox_nights_s2", "directions": 4}, {"name": "vox_pony_s", "directions": 4}, {"name": "vox_pony_s2", "directions": 4}, {"name": "vox_rows_s", "directions": 4}, {"name": "vox_rows_s2", "directions": 4}, {"name": "vox_ruff_hawk_s", "directions": 4}, {"name": "vox_ruff_hawk_s2", "directions": 4}, {"name": "vox_shortquills_s", "directions": 4}, {"name": "vox_shortquills_s2", "directions": 4}, {"name": "vox_surf_s", "directions": 4}, {"name": "vox_surf_s2", "directions": 4}, {"name": "vox_yasu_s", "directions": 4}, {"name": "vox_yasu_s2", "directions": 4}]} +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/dcd1f5d88a8c5ba9634fc3fce67a76ada45f71dc/icons/mob/sprite_accessories/vox/vox_hair.dmi and greyscaled", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "crestedquills_s", + "directions": 4 + }, + { + "name": "emperorquills_s", + "directions": 4 + }, + { + "name": "keelquills_s", + "directions": 4 + }, + { + "name": "keetquills_s", + "directions": 4 + }, + { + "name": "shortquills_s", + "directions": 4 + }, + { + "name": "tielquills_s", + "directions": 4 + }, + { + "name": "kingly_s", + "directions": 4 + }, + { + "name": "afro_s", + "directions": 4 + }, + { + "name": "yasu_s", + "directions": 4 + }, + { + "name": "razor_s", + "directions": 4 + }, + { + "name": "razor_clipped_s", + "directions": 4 + }, + { + "name": "mohawk_s", + "directions": 4 + }, + { + "name": "horns_s", + "directions": 4 + }, + { + "name": "nights_s", + "directions": 4 + }, + { + "name": "hawk_s", + "directions": 4 + }, + { + "name": "long_braid_s", + "directions": 4 + }, + { + "name": "short_braid_s", + "directions": 4 + }, + { + "name": "mange_s", + "directions": 4 + }, + { + "name": "ponytail_s", + "directions": 4 + }, + { + "name": "braid_s", + "directions": 4 + }, + { + "name": "surf_s", + "directions": 4 + }, + { + "name": "flowing_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png new file mode 100644 index 00000000000..b8466620b8d Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/mohawk_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png new file mode 100644 index 00000000000..68d2654dcd1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/nights_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png new file mode 100644 index 00000000000..316f08fe9a5 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/ponytail_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_clipped_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_clipped_s.png new file mode 100644 index 00000000000..e5ffe57daa0 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_clipped_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png new file mode 100644 index 00000000000..0b57cec2c12 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/razor_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png new file mode 100644 index 00000000000..6f7a1e86ca3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/short_braid_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/shortquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/shortquills_s.png new file mode 100644 index 00000000000..a0d496aeed8 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/shortquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png new file mode 100644 index 00000000000..712ccb542f3 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/surf_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png new file mode 100644 index 00000000000..aa121bd3313 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/tielquills_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png deleted file mode 100644 index 60b9b18c21e..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_afro_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_bald_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png deleted file mode 100644 index 67574355ee4..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_cropped_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png deleted file mode 100644 index dbb4ae8f28e..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_horns_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png deleted file mode 100644 index 3f35429e14f..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_kingly_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png deleted file mode 100644 index 138c58e690a..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mange_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png deleted file mode 100644 index 0a5589b0bae..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_mohawk_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png deleted file mode 100644 index 0a587eafceb..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_nights_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png deleted file mode 100644 index a9ff211389f..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_pony_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png deleted file mode 100644 index cee8b9a1030..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_rows_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png deleted file mode 100644 index 41c3cb6decc..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_ruff_hawk_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png deleted file mode 100644 index c83ef673a54..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_shortquills_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png deleted file mode 100644 index df2191cacd2..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_surf_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png deleted file mode 100644 index 6461305e85e..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png deleted file mode 100644 index 0858c19f052..00000000000 Binary files a/Resources/Textures/Mobs/Customization/vox_hair.rsi/vox_yasu_s2.png and /dev/null differ diff --git a/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png b/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png new file mode 100644 index 00000000000..6ee3de1dad2 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_hair.rsi/yasu_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png new file mode 100644 index 00000000000..0ff82bbaf26 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_l_arm.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png new file mode 100644 index 00000000000..774c96692c1 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/heart_r_arm.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png new file mode 100644 index 00000000000..8361f55864b Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/hive_s.png differ diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json new file mode 100644 index 00000000000..725fbb6a0db --- /dev/null +++ b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/meta.json @@ -0,0 +1,27 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "Taken from Paradise at https://github.com/ParadiseSS13/Paradise/blob/ef7a4d962915cb36b138eeb59663f0053d4906fe/icons/mob/sprite_accessories/vox/vox_body_markings.dmi and modified by Flareguy", + "size": { + "x": 32, + "y": 32 + }, + "states": [ + { + "name": "heart_l_arm", + "directions": 4 + }, + { + "name": "heart_r_arm", + "directions": 4 + }, + { + "name": "hive_s", + "directions": 4 + }, + { + "name": "nightling_s", + "directions": 4 + } + ] +} \ No newline at end of file diff --git a/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightling_s.png b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightling_s.png new file mode 100644 index 00000000000..72b0b30fd5f Binary files /dev/null and b/Resources/Textures/Mobs/Customization/vox_tattoos.rsi/nightling_s.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png new file mode 100644 index 00000000000..aca8f4931d8 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-2.png new file mode 100644 index 00000000000..4715162ebe2 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-3.png new file mode 100644 index 00000000000..04bfd58d03a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png new file mode 100644 index 00000000000..04bfd58d03a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png new file mode 100644 index 00000000000..4d446abc54e Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json new file mode 100644 index 00000000000..14c43f186f3 --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/budgetinsulsdrink.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "size": + { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "Glass and fillstates by Hanzdegloker on Github.", + "states": + [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-1.png new file mode 100644 index 00000000000..f5afa0bed8a Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png new file mode 100644 index 00000000000..79bcdcfb8cb Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-3.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-3.png new file mode 100644 index 00000000000..772aa80d6a7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/fill-3.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png new file mode 100644 index 00000000000..772aa80d6a7 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png new file mode 100644 index 00000000000..416d1f77176 Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/icon_empty.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json new file mode 100644 index 00000000000..a26c7355aeb --- /dev/null +++ b/Resources/Textures/Objects/Consumable/Drinks/rubberneck.rsi/meta.json @@ -0,0 +1,28 @@ +{ + "version": 1, + "size": + { + "x": 32, + "y": 32 + }, + "license": "CC-BY-SA-3.0", + "copyright": "https://tgstation13.org/wiki/images/archive/4/4e/20220514022531%21Rubberneck.png. Fill levels by Hanzdegloker on GitHub.", + "states": + [ + { + "name": "icon" + }, + { + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" + }, + { + "name": "fill-3" + } + ] +} diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png new file mode 100644 index 00000000000..3aef3bd8abd Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-1.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-2.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-2.png new file mode 100644 index 00000000000..ce4411ee1ef Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/fill-2.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon.png new file mode 100644 index 00000000000..ce4411ee1ef Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon.png differ diff --git a/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon_empty.png b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon_empty.png new file mode 100644 index 00000000000..85097b80cca Binary files /dev/null and b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/icon_empty.png differ diff --git a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json similarity index 50% rename from Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json rename to Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json index 31cda14261e..9743bd909e0 100644 --- a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/meta.json +++ b/Resources/Textures/Objects/Consumable/Drinks/xenobasher.rsi/meta.json @@ -1,19 +1,23 @@ { "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Drawn by Firewatchin on Discord.", "size": { "x": 32, "y": 32 }, - + "license": "CC-BY-SA-3.0", + "copyright": "Created by Hanzdegloker on github", "states": [ { - "name": "equipped-NECK", - "directions": 4 + "name": "icon" }, { - "name": "icon" + "name": "icon_empty" + }, + { + "name": "fill-1" + }, + { + "name": "fill-2" } ] } diff --git a/Resources/Textures/Objects/Fun/whistle.rsi/meta.json b/Resources/Textures/Objects/Fun/whistle.rsi/meta.json deleted file mode 100644 index 59159ff6170..00000000000 --- a/Resources/Textures/Objects/Fun/whistle.rsi/meta.json +++ /dev/null @@ -1,14 +0,0 @@ -{ - "version": 1, - "license": "CC-BY-SA-3.0", - "copyright": "Made by Foleps (discord)", - "size": { - "x": 32, - "y": 32 - }, - "states": [ - { - "name": "securityWhistle" - } - ] -} diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png b/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png new file mode 100644 index 00000000000..89fdd599b2b Binary files /dev/null and b/Resources/Textures/Objects/Fun/whistles.rsi/equipped-NECK.png differ diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/meta.json b/Resources/Textures/Objects/Fun/whistles.rsi/meta.json new file mode 100644 index 00000000000..4f59ad60e0f --- /dev/null +++ b/Resources/Textures/Objects/Fun/whistles.rsi/meta.json @@ -0,0 +1,33 @@ +{ + "version": 1, + "license": "CC-BY-SA-3.0", + "copyright": "sec and whistle made by Foleps (discord), trench by Firewatchin (discord)", + "size": { + "x": 32, + "y": 32 + }, + + "states": [ + { + "name": "equipped-NECK", + "directions": 4 + }, + { + "name": "whistle" + }, + { + "name": "sec-equipped-NECK", + "directions": 4 + }, + { + "name": "sec" + }, + { + "name": "trench-equipped-NECK", + "directions": 4 + }, + { + "name": "trench" + } + ] +} diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/sec-equipped-NECK.png b/Resources/Textures/Objects/Fun/whistles.rsi/sec-equipped-NECK.png new file mode 100644 index 00000000000..053c457f03c Binary files /dev/null and b/Resources/Textures/Objects/Fun/whistles.rsi/sec-equipped-NECK.png differ diff --git a/Resources/Textures/Objects/Fun/whistle.rsi/securityWhistle.png b/Resources/Textures/Objects/Fun/whistles.rsi/sec.png similarity index 100% rename from Resources/Textures/Objects/Fun/whistle.rsi/securityWhistle.png rename to Resources/Textures/Objects/Fun/whistles.rsi/sec.png diff --git a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/equipped-NECK.png b/Resources/Textures/Objects/Fun/whistles.rsi/trench-equipped-NECK.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/whistles.rsi/equipped-NECK.png rename to Resources/Textures/Objects/Fun/whistles.rsi/trench-equipped-NECK.png diff --git a/Resources/Textures/Clothing/Neck/Misc/whistles.rsi/icon.png b/Resources/Textures/Objects/Fun/whistles.rsi/trench.png similarity index 100% rename from Resources/Textures/Clothing/Neck/Misc/whistles.rsi/icon.png rename to Resources/Textures/Objects/Fun/whistles.rsi/trench.png diff --git a/Resources/Textures/Objects/Fun/whistles.rsi/whistle.png b/Resources/Textures/Objects/Fun/whistles.rsi/whistle.png new file mode 100644 index 00000000000..35db0ffca4b Binary files /dev/null and b/Resources/Textures/Objects/Fun/whistles.rsi/whistle.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..a37261e3f7b Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json index 9dd4186ecdd..59aada80e00 100644 --- a/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..dd19aa56804 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json index 489cf3072ae..21d23712e98 100644 --- a/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_clown.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_double.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_double.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..f139bc6db21 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json index a1661aee78c..fe19dcec1cf 100644 --- a/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_double.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..7e2f947d343 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json index ce287bf2779..74fc108c09c 100644 --- a/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_double_red.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..0470c6895f3 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json index a1661aee78c..fe19dcec1cf 100644 --- a/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_extended.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..db800b2a3bf Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json index ce287bf2779..74fc108c09c 100644 --- a/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_extended_red.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..db800b2a3bf Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_red.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json index ce3d401ca2f..d71cdae541c 100644 --- a/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_red.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..0470c6895f3 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json index a1661aee78c..fe19dcec1cf 100644 --- a/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/emergency_yellow.rsi/meta.json @@ -66,6 +66,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png b/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png new file mode 100644 index 00000000000..e282da2e6d2 Binary files /dev/null and b/Resources/Textures/Objects/Tanks/plasma.rsi/equipped-SUITSTORAGE.png differ diff --git a/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json b/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json index a88e367a852..2d3199f75cd 100644 --- a/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json +++ b/Resources/Textures/Objects/Tanks/plasma.rsi/meta.json @@ -21,6 +21,10 @@ { "name": "inhand-right", "directions": 4 + }, + { + "name": "equipped-SUITSTORAGE", + "directions": 4 } ] } diff --git a/RobustToolbox b/RobustToolbox index 7cb3aeccc23..970da5f717c 160000 --- a/RobustToolbox +++ b/RobustToolbox @@ -1 +1 @@ -Subproject commit 7cb3aeccc23a894b149b4547e5fecb399c8c507f +Subproject commit 970da5f717c921bfa110aa5dc31e74edb96dcf99 diff --git a/runclient.bat b/runclient.bat index f580d41e9d6..96237c34411 100644 --- a/runclient.bat +++ b/runclient.bat @@ -1,6 +1,2 @@ @echo off -set PDIR=%~dp0 -cd %PDIR%Bin\Content.Client -start Content.Client.exe %* -cd %PDIR% -set PDIR= +dotnet run --project Content.Client diff --git a/runserver.bat b/runserver.bat index 573de0a15d8..5c3f8acecdf 100644 --- a/runserver.bat +++ b/runserver.bat @@ -1,7 +1,3 @@ @echo off -set PDIR=%~dp0 -cd %PDIR%Bin\Content.Server -call Content.Server.exe %* -cd %PDIR% -set PDIR= +dotnet run --project Content.Server pause